org-agenda.el 395 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223
  1. ;;; org-agenda.el --- Dynamic task and appointment lists for Org
  2. ;; Copyright (C) 2004-2016 Free Software Foundation, Inc.
  3. ;; Author: Carsten Dominik <carsten at orgmode dot org>
  4. ;; Keywords: outlines, hypermedia, calendar, wp
  5. ;; Homepage: http://orgmode.org
  6. ;;
  7. ;; This file is part of GNU Emacs.
  8. ;;
  9. ;; GNU Emacs is free software: you can redistribute it and/or modify
  10. ;; it under the terms of the GNU General Public License as published by
  11. ;; the Free Software Foundation, either version 3 of the License, or
  12. ;; (at your option) any later version.
  13. ;; GNU Emacs is distributed in the hope that it will be useful,
  14. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. ;; GNU General Public License for more details.
  17. ;; You should have received a copy of the GNU General Public License
  18. ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
  19. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  20. ;;
  21. ;;; Commentary:
  22. ;; This file contains the code for creating and using the Agenda for Org.
  23. ;;
  24. ;; The functions `org-batch-agenda', `org-batch-agenda-csv', and
  25. ;; `org-batch-store-agenda-views' are implemented as macros to provide
  26. ;; a convenient way for extracting agenda information from the command
  27. ;; line. The Lisp does not evaluate parameters of a macro call; thus
  28. ;; it is not necessary to quote the parameters passed to one of those
  29. ;; functions. E.g. you can write:
  30. ;;
  31. ;; emacs -batch -l ~/.emacs -eval '(org-batch-agenda "a" org-agenda-span 7)'
  32. ;;
  33. ;; To export an agenda spanning 7 days. If `org-batch-agenda' would
  34. ;; have been implemented as a regular function you'd have to quote the
  35. ;; symbol org-agenda-span. Moreover: To use a symbol as parameter
  36. ;; value you would have to double quote the symbol.
  37. ;;
  38. ;; This is a hack, but it works even when running Org byte-compiled.
  39. ;;
  40. ;;; Code:
  41. (require 'cl-lib)
  42. (require 'org)
  43. (require 'org-macs)
  44. (declare-function diary-add-to-list "diary-lib"
  45. (date string specifier &optional marker globcolor literal))
  46. (declare-function calendar-iso-to-absolute "cal-iso" (date))
  47. (declare-function calendar-astro-date-string "cal-julian" (&optional date))
  48. (declare-function calendar-bahai-date-string "cal-bahai" (&optional date))
  49. (declare-function calendar-chinese-date-string "cal-china" (&optional date))
  50. (declare-function calendar-coptic-date-string "cal-coptic" (&optional date))
  51. (declare-function calendar-ethiopic-date-string "cal-coptic" (&optional date))
  52. (declare-function calendar-french-date-string "cal-french" (&optional date))
  53. (declare-function calendar-goto-date "cal-move" (date))
  54. (declare-function calendar-hebrew-date-string "cal-hebrew" (&optional date))
  55. (declare-function calendar-islamic-date-string "cal-islam" (&optional date))
  56. (declare-function calendar-iso-date-string "cal-iso" (&optional date))
  57. (declare-function calendar-iso-from-absolute "cal-iso" (date))
  58. (declare-function calendar-julian-date-string "cal-julian" (&optional date))
  59. (declare-function calendar-mayan-date-string "cal-mayan" (&optional date))
  60. (declare-function calendar-persian-date-string "cal-persia" (&optional date))
  61. (declare-function calendar-check-holidays "holidays" (date))
  62. (declare-function org-columns-remove-overlays "org-colview" ())
  63. (declare-function org-datetree-find-date-create "org-datetree"
  64. (date &optional keep-restriction))
  65. (declare-function org-columns-quit "org-colview" ())
  66. (declare-function diary-date-display-form "diary-lib" (&optional type))
  67. (declare-function org-mobile-write-agenda-for-mobile "org-mobile" (file))
  68. (declare-function org-habit-insert-consistency-graphs
  69. "org-habit" (&optional line))
  70. (declare-function org-is-habit-p "org-habit" (&optional pom))
  71. (declare-function org-habit-parse-todo "org-habit" (&optional pom))
  72. (declare-function org-habit-get-priority "org-habit" (habit &optional moment))
  73. (declare-function org-agenda-columns "org-colview" ())
  74. (declare-function org-add-archive-files "org-archive" (files))
  75. (declare-function org-capture "org-capture" (&optional goto keys))
  76. (defvar calendar-mode-map)
  77. (defvar org-clock-current-task)
  78. (defvar org-current-tag-alist)
  79. (defvar org-mobile-force-id-on-agenda-items)
  80. (defvar org-habit-show-habits)
  81. (defvar org-habit-show-habits-only-for-today)
  82. (defvar org-habit-show-all-today)
  83. ;; Defined somewhere in this file, but used before definition.
  84. (defvar org-agenda-buffer-name "*Org Agenda*")
  85. (defvar org-agenda-overriding-header nil)
  86. (defvar org-agenda-title-append nil)
  87. (with-no-warnings (defvar entry)) ;; unprefixed, from calendar.el
  88. (with-no-warnings (defvar date)) ;; unprefixed, from calendar.el
  89. (defvar original-date) ; dynamically scoped, calendar.el does scope this
  90. (defvar org-agenda-undo-list nil
  91. "List of undoable operations in the agenda since last refresh.")
  92. (defvar org-agenda-pending-undo-list nil
  93. "In a series of undo commands, this is the list of remaining undo items.")
  94. (defcustom org-agenda-confirm-kill 1
  95. "When set, remote killing from the agenda buffer needs confirmation.
  96. When t, a confirmation is always needed. When a number N, confirmation is
  97. only needed when the text to be killed contains more than N non-white lines."
  98. :group 'org-agenda
  99. :type '(choice
  100. (const :tag "Never" nil)
  101. (const :tag "Always" t)
  102. (integer :tag "When more than N lines")))
  103. (defcustom org-agenda-compact-blocks nil
  104. "Non-nil means make the block agenda more compact.
  105. This is done globally by leaving out lines like the agenda span
  106. name and week number or the separator lines."
  107. :group 'org-agenda
  108. :type 'boolean)
  109. (defcustom org-agenda-block-separator ?=
  110. "The separator between blocks in the agenda.
  111. If this is a string, it will be used as the separator, with a newline added.
  112. If it is a character, it will be repeated to fill the window width.
  113. If nil the separator is disabled. In `org-agenda-custom-commands' this
  114. addresses the separator between the current and the previous block."
  115. :group 'org-agenda
  116. :type '(choice
  117. (const :tag "Disabled" nil)
  118. (character)
  119. (string)))
  120. (defgroup org-agenda-export nil
  121. "Options concerning exporting agenda views in Org mode."
  122. :tag "Org Agenda Export"
  123. :group 'org-agenda)
  124. (defcustom org-agenda-with-colors t
  125. "Non-nil means use colors in agenda views."
  126. :group 'org-agenda-export
  127. :type 'boolean)
  128. (defcustom org-agenda-exporter-settings nil
  129. "Alist of variable/value pairs that should be active during agenda export.
  130. This is a good place to set options for ps-print and for htmlize.
  131. Note that the way this is implemented, the values will be evaluated
  132. before assigned to the variables. So make sure to quote values you do
  133. *not* want evaluated, for example
  134. (setq org-agenda-exporter-settings
  135. \\='((ps-print-color-p \\='black-white)))"
  136. :group 'org-agenda-export
  137. :type '(repeat
  138. (list
  139. (variable)
  140. (sexp :tag "Value"))))
  141. (defcustom org-agenda-before-write-hook '(org-agenda-add-entry-text)
  142. "Hook run in a temporary buffer before writing the agenda to an export file.
  143. A useful function for this hook is `org-agenda-add-entry-text'."
  144. :group 'org-agenda-export
  145. :type 'hook
  146. :options '(org-agenda-add-entry-text))
  147. (defcustom org-agenda-add-entry-text-maxlines 0
  148. "Maximum number of entry text lines to be added to agenda.
  149. This is only relevant when `org-agenda-add-entry-text' is part of
  150. `org-agenda-before-write-hook', which is the default.
  151. When this is 0, nothing will happen. When it is greater than 0, it
  152. specifies the maximum number of lines that will be added for each entry
  153. that is listed in the agenda view.
  154. Note that this variable is not used during display, only when exporting
  155. the agenda. For agenda display, see the variables `org-agenda-entry-text-mode'
  156. and `org-agenda-entry-text-maxlines'."
  157. :group 'org-agenda
  158. :type 'integer)
  159. (defcustom org-agenda-add-entry-text-descriptive-links t
  160. "Non-nil means export org-links as descriptive links in agenda added text.
  161. This variable applies to the text added to the agenda when
  162. `org-agenda-add-entry-text-maxlines' is larger than 0.
  163. When this variable nil, the URL will (also) be shown."
  164. :group 'org-agenda
  165. :type 'boolean)
  166. (defcustom org-agenda-export-html-style nil
  167. "The style specification for exported HTML Agenda files.
  168. If this variable contains a string, it will replace the default <style>
  169. section as produced by `htmlize'.
  170. Since there are different ways of setting style information, this variable
  171. needs to contain the full HTML structure to provide a style, including the
  172. surrounding HTML tags. The style specifications should include definitions
  173. the fonts used by the agenda, here is an example:
  174. <style type=\"text/css\">
  175. p { font-weight: normal; color: gray; }
  176. .org-agenda-structure {
  177. font-size: 110%;
  178. color: #003399;
  179. font-weight: 600;
  180. }
  181. .org-todo {
  182. color: #cc6666;
  183. font-weight: bold;
  184. }
  185. .org-agenda-done {
  186. color: #339933;
  187. }
  188. .org-done {
  189. color: #339933;
  190. }
  191. .title { text-align: center; }
  192. .todo, .deadline { color: red; }
  193. .done { color: green; }
  194. </style>
  195. or, if you want to keep the style in a file,
  196. <link rel=\"stylesheet\" type=\"text/css\" href=\"mystyles.css\">
  197. As the value of this option simply gets inserted into the HTML <head> header,
  198. you can \"misuse\" it to also add other text to the header."
  199. :group 'org-agenda-export
  200. :group 'org-export-html
  201. :type '(choice
  202. (const nil)
  203. (string)))
  204. (defcustom org-agenda-persistent-filter nil
  205. "When set, keep filters from one agenda view to the next."
  206. :group 'org-agenda
  207. :type 'boolean)
  208. (defgroup org-agenda-custom-commands nil
  209. "Options concerning agenda views in Org mode."
  210. :tag "Org Agenda Custom Commands"
  211. :group 'org-agenda)
  212. (defconst org-sorting-choice
  213. '(choice
  214. (const time-up) (const time-down)
  215. (const timestamp-up) (const timestamp-down)
  216. (const scheduled-up) (const scheduled-down)
  217. (const deadline-up) (const deadline-down)
  218. (const ts-up) (const ts-down)
  219. (const tsia-up) (const tsia-down)
  220. (const category-keep) (const category-up) (const category-down)
  221. (const tag-down) (const tag-up)
  222. (const priority-up) (const priority-down)
  223. (const todo-state-up) (const todo-state-down)
  224. (const effort-up) (const effort-down)
  225. (const habit-up) (const habit-down)
  226. (const alpha-up) (const alpha-down)
  227. (const user-defined-up) (const user-defined-down))
  228. "Sorting choices.")
  229. ;; Keep custom values for `org-agenda-filter-preset' compatible with
  230. ;; the new variable `org-agenda-tag-filter-preset'.
  231. (defvaralias 'org-agenda-filter-preset 'org-agenda-tag-filter-preset)
  232. (defvaralias 'org-agenda-filter 'org-agenda-tag-filter)
  233. (defvar org-agenda-entry-types '(:deadline :scheduled :timestamp :sexp)
  234. "List of types searched for when creating the daily/weekly agenda.
  235. This variable is a list of symbols that controls the types of
  236. items that appear in the daily/weekly agenda. Allowed symbols in this
  237. list are are
  238. :timestamp List items containing a date stamp or date range matching
  239. the selected date. This includes sexp entries in angular
  240. brackets.
  241. :sexp List entries resulting from plain diary-like sexps.
  242. :deadline List deadline due on that date. When the date is today,
  243. also list any deadlines past due, or due within
  244. `org-deadline-warning-days'. `:deadline' must appear before
  245. `:scheduled' if the setting of
  246. `org-agenda-skip-scheduled-if-deadline-is-shown' is to have
  247. any effect.
  248. :deadline* Same as above, but only include the deadline if it has an
  249. hour specification as [h]h:mm.
  250. :scheduled List all items which are scheduled for the given date.
  251. The diary for *today* also contains items which were
  252. scheduled earlier and are not yet marked DONE.
  253. :scheduled* Same as above, but only include the scheduled item if it
  254. has an hour specification as [h]h:mm.
  255. By default, all four non-starred types are turned on.
  256. When :scheduled* or :deadline* are included, :schedule or :deadline
  257. will be ignored.
  258. Never set this variable globally using `setq', because then it
  259. will apply to all future agenda commands. Instead, bind it with
  260. `let' to scope it dynamically into the agenda-constructing
  261. command. A good way to set it is through options in
  262. `org-agenda-custom-commands'. For a more flexible (though
  263. somewhat less efficient) way of determining what is included in
  264. the daily/weekly agenda, see `org-agenda-skip-function'.")
  265. (defconst org-agenda-custom-commands-local-options
  266. `(repeat :tag "Local settings for this command. Remember to quote values"
  267. (choice :tag "Setting"
  268. (list :tag "Heading for this block"
  269. (const org-agenda-overriding-header)
  270. (string :tag "Headline"))
  271. (list :tag "Files to be searched"
  272. (const org-agenda-files)
  273. (list
  274. (const :format "" quote)
  275. (repeat (file))))
  276. (list :tag "Sorting strategy"
  277. (const org-agenda-sorting-strategy)
  278. (list
  279. (const :format "" quote)
  280. (repeat
  281. ,org-sorting-choice)))
  282. (list :tag "Prefix format"
  283. (const org-agenda-prefix-format :value " %-12:c%?-12t% s")
  284. (string))
  285. (list :tag "Number of days in agenda"
  286. (const org-agenda-span)
  287. (choice (const :tag "Day" day)
  288. (const :tag "Week" week)
  289. (const :tag "Fortnight" fortnight)
  290. (const :tag "Month" month)
  291. (const :tag "Year" year)
  292. (integer :tag "Custom")))
  293. (list :tag "Fixed starting date"
  294. (const org-agenda-start-day)
  295. (string :value "2007-11-01"))
  296. (list :tag "Start on day of week"
  297. (const org-agenda-start-on-weekday)
  298. (choice :value 1
  299. (const :tag "Today" nil)
  300. (integer :tag "Weekday No.")))
  301. (list :tag "Include data from diary"
  302. (const org-agenda-include-diary)
  303. (boolean))
  304. (list :tag "Deadline Warning days"
  305. (const org-deadline-warning-days)
  306. (integer :value 1))
  307. (list :tag "Category filter preset"
  308. (const org-agenda-category-filter-preset)
  309. (list
  310. (const :format "" quote)
  311. (repeat
  312. (string :tag "+category or -category"))))
  313. (list :tag "Tags filter preset"
  314. (const org-agenda-tag-filter-preset)
  315. (list
  316. (const :format "" quote)
  317. (repeat
  318. (string :tag "+tag or -tag"))))
  319. (list :tag "Effort filter preset"
  320. (const org-agenda-effort-filter-preset)
  321. (list
  322. (const :format "" quote)
  323. (repeat
  324. (string :tag "+=10 or -=10 or +<10 or ->10"))))
  325. (list :tag "Regexp filter preset"
  326. (const org-agenda-regexp-filter-preset)
  327. (list
  328. (const :format "" quote)
  329. (repeat
  330. (string :tag "+regexp or -regexp"))))
  331. (list :tag "Set daily/weekly entry types"
  332. (const org-agenda-entry-types)
  333. (list
  334. (const :format "" quote)
  335. (set :greedy t :value ,org-agenda-entry-types
  336. (const :deadline)
  337. (const :scheduled)
  338. (const :deadline*)
  339. (const :scheduled*)
  340. (const :timestamp)
  341. (const :sexp))))
  342. (list :tag "Standard skipping condition"
  343. :value (org-agenda-skip-function '(org-agenda-skip-entry-if))
  344. (const org-agenda-skip-function)
  345. (list
  346. (const :format "" quote)
  347. (list
  348. (choice
  349. :tag "Skipping range"
  350. (const :tag "Skip entry" org-agenda-skip-entry-if)
  351. (const :tag "Skip subtree" org-agenda-skip-subtree-if))
  352. (repeat :inline t :tag "Conditions for skipping"
  353. (choice
  354. :tag "Condition type"
  355. (list :tag "Regexp matches" :inline t
  356. (const :format "" 'regexp)
  357. (regexp))
  358. (list :tag "Regexp does not match" :inline t
  359. (const :format "" 'notregexp)
  360. (regexp))
  361. (list :tag "TODO state is" :inline t
  362. (const 'todo)
  363. (choice
  364. (const :tag "Any not-done state" 'todo)
  365. (const :tag "Any done state" 'done)
  366. (const :tag "Any state" 'any)
  367. (list :tag "Keyword list"
  368. (const :format "" quote)
  369. (repeat (string :tag "Keyword")))))
  370. (list :tag "TODO state is not" :inline t
  371. (const 'nottodo)
  372. (choice
  373. (const :tag "Any not-done state" 'todo)
  374. (const :tag "Any done state" 'done)
  375. (const :tag "Any state" 'any)
  376. (list :tag "Keyword list"
  377. (const :format "" quote)
  378. (repeat (string :tag "Keyword")))))
  379. (const :tag "scheduled" 'scheduled)
  380. (const :tag "not scheduled" 'notscheduled)
  381. (const :tag "deadline" 'deadline)
  382. (const :tag "no deadline" 'notdeadline)
  383. (const :tag "timestamp" 'timestamp)
  384. (const :tag "no timestamp" 'nottimestamp))))))
  385. (list :tag "Non-standard skipping condition"
  386. :value (org-agenda-skip-function)
  387. (const org-agenda-skip-function)
  388. (sexp :tag "Function or form (quoted!)"))
  389. (list :tag "Any variable"
  390. (variable :tag "Variable")
  391. (sexp :tag "Value (sexp)"))))
  392. "Selection of examples for agenda command settings.
  393. This will be spliced into the custom type of
  394. `org-agenda-custom-commands'.")
  395. (defcustom org-agenda-custom-commands
  396. '(("n" "Agenda and all TODOs" ((agenda "") (alltodo ""))))
  397. "Custom commands for the agenda.
  398. \\<org-mode-map>
  399. These commands will be offered on the splash screen displayed by the
  400. agenda dispatcher `\\[org-agenda]'. Each entry is a list like this:
  401. (key desc type match settings files)
  402. key The key (one or more characters as a string) to be associated
  403. with the command.
  404. desc A description of the command, when omitted or nil, a default
  405. description is built using MATCH.
  406. type The command type, any of the following symbols:
  407. agenda The daily/weekly agenda.
  408. todo Entries with a specific TODO keyword, in all agenda files.
  409. search Entries containing search words entry or headline.
  410. tags Tags/Property/TODO match in all agenda files.
  411. tags-todo Tags/P/T match in all agenda files, TODO entries only.
  412. todo-tree Sparse tree of specific TODO keyword in *current* file.
  413. tags-tree Sparse tree with all tags matches in *current* file.
  414. occur-tree Occur sparse tree for *current* file.
  415. ... A user-defined function.
  416. match What to search for:
  417. - a single keyword for TODO keyword searches
  418. - a tags match expression for tags searches
  419. - a word search expression for text searches.
  420. - a regular expression for occur searches
  421. For all other commands, this should be the empty string.
  422. settings A list of option settings, similar to that in a let form, so like
  423. this: ((opt1 val1) (opt2 val2) ...). The values will be
  424. evaluated at the moment of execution, so quote them when needed.
  425. files A list of files file to write the produced agenda buffer to
  426. with the command `org-store-agenda-views'.
  427. If a file name ends in \".html\", an HTML version of the buffer
  428. is written out. If it ends in \".ps\", a postscript version is
  429. produced. Otherwise, only the plain text is written to the file.
  430. You can also define a set of commands, to create a composite agenda buffer.
  431. In this case, an entry looks like this:
  432. (key desc (cmd1 cmd2 ...) general-settings-for-whole-set files)
  433. where
  434. desc A description string to be displayed in the dispatcher menu.
  435. cmd An agenda command, similar to the above. However, tree commands
  436. are not allowed, but instead you can get agenda and global todo list.
  437. So valid commands for a set are:
  438. (agenda \"\" settings)
  439. (alltodo \"\" settings)
  440. (stuck \"\" settings)
  441. (todo \"match\" settings files)
  442. (search \"match\" settings files)
  443. (tags \"match\" settings files)
  444. (tags-todo \"match\" settings files)
  445. Each command can carry a list of options, and another set of options can be
  446. given for the whole set of commands. Individual command options take
  447. precedence over the general options.
  448. When using several characters as key to a command, the first characters
  449. are prefix commands. For the dispatcher to display useful information, you
  450. should provide a description for the prefix, like
  451. (setq org-agenda-custom-commands
  452. \\='((\"h\" . \"HOME + Name tag searches\") ; describe prefix \"h\"
  453. (\"hl\" tags \"+HOME+Lisa\")
  454. (\"hp\" tags \"+HOME+Peter\")
  455. (\"hk\" tags \"+HOME+Kim\")))"
  456. :group 'org-agenda-custom-commands
  457. :type `(repeat
  458. (choice :value ("x" "Describe command here" tags "" nil)
  459. (list :tag "Single command"
  460. (string :tag "Access Key(s) ")
  461. (option (string :tag "Description"))
  462. (choice
  463. (const :tag "Agenda" agenda)
  464. (const :tag "TODO list" alltodo)
  465. (const :tag "Search words" search)
  466. (const :tag "Stuck projects" stuck)
  467. (const :tag "Tags/Property match (all agenda files)" tags)
  468. (const :tag "Tags/Property match of TODO entries (all agenda files)" tags-todo)
  469. (const :tag "TODO keyword search (all agenda files)" todo)
  470. (const :tag "Tags sparse tree (current buffer)" tags-tree)
  471. (const :tag "TODO keyword tree (current buffer)" todo-tree)
  472. (const :tag "Occur tree (current buffer)" occur-tree)
  473. (sexp :tag "Other, user-defined function"))
  474. (string :tag "Match (only for some commands)")
  475. ,org-agenda-custom-commands-local-options
  476. (option (repeat :tag "Export" (file :tag "Export to"))))
  477. (list :tag "Command series, all agenda files"
  478. (string :tag "Access Key(s)")
  479. (string :tag "Description ")
  480. (repeat :tag "Component"
  481. (choice
  482. (list :tag "Agenda"
  483. (const :format "" agenda)
  484. (const :tag "" :format "" "")
  485. ,org-agenda-custom-commands-local-options)
  486. (list :tag "TODO list (all keywords)"
  487. (const :format "" alltodo)
  488. (const :tag "" :format "" "")
  489. ,org-agenda-custom-commands-local-options)
  490. (list :tag "Search words"
  491. (const :format "" search)
  492. (string :tag "Match")
  493. ,org-agenda-custom-commands-local-options)
  494. (list :tag "Stuck projects"
  495. (const :format "" stuck)
  496. (const :tag "" :format "" "")
  497. ,org-agenda-custom-commands-local-options)
  498. (list :tag "Tags search"
  499. (const :format "" tags)
  500. (string :tag "Match")
  501. ,org-agenda-custom-commands-local-options)
  502. (list :tag "Tags search, TODO entries only"
  503. (const :format "" tags-todo)
  504. (string :tag "Match")
  505. ,org-agenda-custom-commands-local-options)
  506. (list :tag "TODO keyword search"
  507. (const :format "" todo)
  508. (string :tag "Match")
  509. ,org-agenda-custom-commands-local-options)
  510. (list :tag "Other, user-defined function"
  511. (symbol :tag "function")
  512. (string :tag "Match")
  513. ,org-agenda-custom-commands-local-options)))
  514. (repeat :tag "Settings for entire command set"
  515. (list (variable :tag "Any variable")
  516. (sexp :tag "Value")))
  517. (option (repeat :tag "Export" (file :tag "Export to"))))
  518. (cons :tag "Prefix key documentation"
  519. (string :tag "Access Key(s)")
  520. (string :tag "Description ")))))
  521. (defcustom org-agenda-query-register ?o
  522. "The register holding the current query string.
  523. The purpose of this is that if you construct a query string interactively,
  524. you can then use it to define a custom command."
  525. :group 'org-agenda-custom-commands
  526. :type 'character)
  527. (defcustom org-stuck-projects
  528. '("+LEVEL=2/-DONE" ("TODO" "NEXT" "NEXTACTION") nil "")
  529. "How to identify stuck projects.
  530. This is a list of four items:
  531. 1. A tags/todo/property matcher string that is used to identify a project.
  532. See the manual for a description of tag and property searches.
  533. The entire tree below a headline matched by this is considered one project.
  534. 2. A list of TODO keywords identifying non-stuck projects.
  535. If the project subtree contains any headline with one of these todo
  536. keywords, the project is considered to be not stuck. If you specify
  537. \"*\" as a keyword, any TODO keyword will mark the project unstuck.
  538. 3. A list of tags identifying non-stuck projects.
  539. If the project subtree contains any headline with one of these tags,
  540. the project is considered to be not stuck. If you specify \"*\" as
  541. a tag, any tag will mark the project unstuck. Note that this is about
  542. the explicit presence of a tag somewhere in the subtree, inherited
  543. tags do not count here. If inherited tags make a project not stuck,
  544. use \"-TAG\" in the tags part of the matcher under (1.) above.
  545. 4. An arbitrary regular expression matching non-stuck projects.
  546. If the project turns out to be not stuck, search continues also in the
  547. subtree to see if any of the subtasks have project status.
  548. See also the variable `org-tags-match-list-sublevels' which applies
  549. to projects matched by this search as well.
  550. After defining this variable, you may use `\\[org-agenda-list-stuck-projects]'
  551. \(bound to `C-c a #') to produce the list."
  552. :group 'org-agenda-custom-commands
  553. :type '(list
  554. (string :tag "Tags/TODO match to identify a project")
  555. (repeat :tag "Projects are *not* stuck if they have an entry with \
  556. TODO keyword any of" (string))
  557. (repeat :tag "Projects are *not* stuck if they have an entry with \
  558. TAG being any of" (string))
  559. (regexp :tag "Projects are *not* stuck if this regexp matches inside \
  560. the subtree")))
  561. (defgroup org-agenda-skip nil
  562. "Options concerning skipping parts of agenda files."
  563. :tag "Org Agenda Skip"
  564. :group 'org-agenda)
  565. (defcustom org-agenda-skip-function-global nil
  566. "Function to be called at each match during agenda construction.
  567. If this function returns nil, the current match should not be skipped.
  568. If the function decided to skip an agenda match, is must return the
  569. buffer position from which the search should be continued.
  570. This may also be a Lisp form, which will be evaluated.
  571. This variable will be applied to every agenda match, including
  572. tags/property searches and TODO lists. So try to make the test function
  573. do its checking as efficiently as possible. To implement a skipping
  574. condition just for specific agenda commands, use the variable
  575. `org-agenda-skip-function' which can be set in the options section
  576. of custom agenda commands."
  577. :group 'org-agenda-skip
  578. :type 'sexp)
  579. (defgroup org-agenda-daily/weekly nil
  580. "Options concerning the daily/weekly agenda."
  581. :tag "Org Agenda Daily/Weekly"
  582. :group 'org-agenda)
  583. (defgroup org-agenda-todo-list nil
  584. "Options concerning the global todo list agenda view."
  585. :tag "Org Agenda Todo List"
  586. :group 'org-agenda)
  587. (defgroup org-agenda-match-view nil
  588. "Options concerning the general tags/property/todo match agenda view."
  589. :tag "Org Agenda Match View"
  590. :group 'org-agenda)
  591. (defgroup org-agenda-search-view nil
  592. "Options concerning the search agenda view."
  593. :tag "Org Agenda Search View"
  594. :group 'org-agenda)
  595. (defvar org-agenda-archives-mode nil
  596. "Non-nil means the agenda will include archived items.
  597. If this is the symbol `trees', trees in the selected agenda scope
  598. that are marked with the ARCHIVE tag will be included anyway. When this is
  599. t, also all archive files associated with the current selection of agenda
  600. files will be included.")
  601. (defcustom org-agenda-restriction-lock-highlight-subtree t
  602. "Non-nil means highlight the whole subtree when restriction is active.
  603. Otherwise only highlight the headline. Highlighting the whole subtree is
  604. useful to ensure no edits happen beyond the restricted region."
  605. :group 'org-agenda
  606. :type 'boolean)
  607. (defcustom org-agenda-skip-comment-trees t
  608. "Non-nil means skip trees that start with the COMMENT keyword.
  609. When nil, these trees are also scanned by agenda commands."
  610. :group 'org-agenda-skip
  611. :type 'boolean)
  612. (defcustom org-agenda-todo-list-sublevels t
  613. "Non-nil means check also the sublevels of a TODO entry for TODO entries.
  614. When nil, the sublevels of a TODO entry are not checked, resulting in
  615. potentially much shorter TODO lists."
  616. :group 'org-agenda-skip
  617. :group 'org-agenda-todo-list
  618. :type 'boolean)
  619. (defcustom org-agenda-todo-ignore-with-date nil
  620. "Non-nil means don't show entries with a date in the global todo list.
  621. You can use this if you prefer to mark mere appointments with a TODO keyword,
  622. but don't want them to show up in the TODO list.
  623. When this is set, it also covers deadlines and scheduled items, the settings
  624. of `org-agenda-todo-ignore-scheduled' and `org-agenda-todo-ignore-deadlines'
  625. will be ignored.
  626. See also the variable `org-agenda-tags-todo-honor-ignore-options'."
  627. :group 'org-agenda-skip
  628. :group 'org-agenda-todo-list
  629. :type 'boolean)
  630. (defcustom org-agenda-todo-ignore-timestamp nil
  631. "Non-nil means don't show entries with a timestamp.
  632. This applies when creating the global todo list.
  633. Valid values are:
  634. past Don't show entries for today or in the past.
  635. future Don't show entries with a timestamp in the future.
  636. The idea behind this is that if it has a future
  637. timestamp, you don't want to think about it until the
  638. date.
  639. all Don't show any entries with a timestamp in the global todo list.
  640. The idea behind this is that by setting a timestamp, you
  641. have already \"taken care\" of this item.
  642. This variable can also have an integer as a value. If positive (N),
  643. todos with a timestamp N or more days in the future will be ignored. If
  644. negative (-N), todos with a timestamp N or more days in the past will be
  645. ignored. If 0, todos with a timestamp either today or in the future will
  646. be ignored. For example, a value of -1 will exclude todos with a
  647. timestamp in the past (yesterday or earlier), while a value of 7 will
  648. exclude todos with a timestamp a week or more in the future.
  649. See also `org-agenda-todo-ignore-with-date'.
  650. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  651. to make his option also apply to the tags-todo list."
  652. :group 'org-agenda-skip
  653. :group 'org-agenda-todo-list
  654. :version "24.1"
  655. :type '(choice
  656. (const :tag "Ignore future timestamp todos" future)
  657. (const :tag "Ignore past or present timestamp todos" past)
  658. (const :tag "Ignore all timestamp todos" all)
  659. (const :tag "Show timestamp todos" nil)
  660. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  661. (defcustom org-agenda-todo-ignore-scheduled nil
  662. "Non-nil means, ignore some scheduled TODO items when making TODO list.
  663. This applies when creating the global todo list.
  664. Valid values are:
  665. past Don't show entries scheduled today or in the past.
  666. future Don't show entries scheduled in the future.
  667. The idea behind this is that by scheduling it, you don't want to
  668. think about it until the scheduled date.
  669. all Don't show any scheduled entries in the global todo list.
  670. The idea behind this is that by scheduling it, you have already
  671. \"taken care\" of this item.
  672. t Same as `all', for backward compatibility.
  673. This variable can also have an integer as a value. See
  674. `org-agenda-todo-ignore-timestamp' for more details.
  675. See also `org-agenda-todo-ignore-with-date'.
  676. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  677. to make his option also apply to the tags-todo list."
  678. :group 'org-agenda-skip
  679. :group 'org-agenda-todo-list
  680. :type '(choice
  681. (const :tag "Ignore future-scheduled todos" future)
  682. (const :tag "Ignore past- or present-scheduled todos" past)
  683. (const :tag "Ignore all scheduled todos" all)
  684. (const :tag "Ignore all scheduled todos (compatibility)" t)
  685. (const :tag "Show scheduled todos" nil)
  686. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  687. (defcustom org-agenda-todo-ignore-deadlines nil
  688. "Non-nil means ignore some deadline TODO items when making TODO list.
  689. There are different motivations for using different values, please think
  690. carefully when configuring this variable.
  691. This applies when creating the global TODO list.
  692. Valid values are:
  693. near Don't show near deadline entries. A deadline is near when it is
  694. closer than `org-deadline-warning-days' days. The idea behind this
  695. is that such items will appear in the agenda anyway.
  696. far Don't show TODO entries where a deadline has been defined, but
  697. is not going to happen anytime soon. This is useful if you want to use
  698. the TODO list to figure out what to do now.
  699. past Don't show entries with a deadline timestamp for today or in the past.
  700. future Don't show entries with a deadline timestamp in the future, not even
  701. when they become `near' ones. Use it with caution.
  702. all Ignore all TODO entries that do have a deadline.
  703. t Same as `near', for backward compatibility.
  704. This variable can also have an integer as a value. See
  705. `org-agenda-todo-ignore-timestamp' for more details.
  706. See also `org-agenda-todo-ignore-with-date'.
  707. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  708. to make his option also apply to the tags-todo list."
  709. :group 'org-agenda-skip
  710. :group 'org-agenda-todo-list
  711. :type '(choice
  712. (const :tag "Ignore near deadlines" near)
  713. (const :tag "Ignore near deadlines (compatibility)" t)
  714. (const :tag "Ignore far deadlines" far)
  715. (const :tag "Ignore all TODOs with a deadlines" all)
  716. (const :tag "Show all TODOs, even if they have a deadline" nil)
  717. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  718. (defcustom org-agenda-todo-ignore-time-comparison-use-seconds nil
  719. "Time unit to use when possibly ignoring an agenda item.
  720. See the docstring of various `org-agenda-todo-ignore-*' options.
  721. The default is to compare time stamps using days. An item is thus
  722. considered to be in the future if it is at least one day after today.
  723. Non-nil means to compare time stamps using seconds. An item is then
  724. considered future if it has a time value later than current time."
  725. :group 'org-agenda-skip
  726. :group 'org-agenda-todo-list
  727. :version "24.4"
  728. :package-version '(Org . "8.0")
  729. :type '(choice
  730. (const :tag "Compare time with days" nil)
  731. (const :tag "Compare time with seconds" t)))
  732. (defcustom org-agenda-tags-todo-honor-ignore-options nil
  733. "Non-nil means honor todo-list ignores options also in tags-todo search.
  734. The variables
  735. `org-agenda-todo-ignore-with-date',
  736. `org-agenda-todo-ignore-timestamp',
  737. `org-agenda-todo-ignore-scheduled',
  738. `org-agenda-todo-ignore-deadlines'
  739. make the global TODO list skip entries that have time stamps of certain
  740. kinds. If this option is set, the same options will also apply for the
  741. tags-todo search, which is the general tags/property matcher
  742. restricted to unfinished TODO entries only."
  743. :group 'org-agenda-skip
  744. :group 'org-agenda-todo-list
  745. :group 'org-agenda-match-view
  746. :type 'boolean)
  747. (defcustom org-agenda-skip-scheduled-if-done nil
  748. "Non-nil means don't show scheduled items in agenda when they are done.
  749. This is relevant for the daily/weekly agenda, not for the TODO list. And
  750. it applies only to the actual date of the scheduling. Warnings about
  751. an item with a past scheduling dates are always turned off when the item
  752. is DONE."
  753. :group 'org-agenda-skip
  754. :group 'org-agenda-daily/weekly
  755. :type 'boolean)
  756. (defcustom org-agenda-skip-scheduled-if-deadline-is-shown nil
  757. "Non-nil means skip scheduling line if same entry shows because of deadline.
  758. In the agenda of today, an entry can show up multiple times
  759. because it is both scheduled and has a nearby deadline, and maybe
  760. a plain time stamp as well.
  761. When this variable is nil, the entry will be shown several times.
  762. When set to t, then only the deadline is shown and the fact that
  763. the entry is scheduled today or was scheduled previously is not
  764. shown.
  765. When set to the symbol `not-today', skip scheduled previously,
  766. but not scheduled today.
  767. When set to the symbol `repeated-after-deadline', skip scheduled
  768. items if they are repeated beyond the current deadline."
  769. :group 'org-agenda-skip
  770. :group 'org-agenda-daily/weekly
  771. :type '(choice
  772. (const :tag "Never" nil)
  773. (const :tag "Always" t)
  774. (const :tag "Not when scheduled today" not-today)
  775. (const :tag "When repeated past deadline" repeated-after-deadline)))
  776. (defcustom org-agenda-skip-timestamp-if-deadline-is-shown nil
  777. "Non-nil means skip timestamp line if same entry shows because of deadline.
  778. In the agenda of today, an entry can show up multiple times
  779. because it has both a plain timestamp and has a nearby deadline.
  780. When this variable is t, then only the deadline is shown and the
  781. fact that the entry has a timestamp for or including today is not
  782. shown. When this variable is nil, the entry will be shown
  783. several times."
  784. :group 'org-agenda-skip
  785. :group 'org-agenda-daily/weekly
  786. :version "24.1"
  787. :type '(choice
  788. (const :tag "Never" nil)
  789. (const :tag "Always" t)))
  790. (defcustom org-agenda-skip-deadline-if-done nil
  791. "Non-nil means don't show deadlines when the corresponding item is done.
  792. When nil, the deadline is still shown and should give you a happy feeling.
  793. This is relevant for the daily/weekly agenda. And it applied only to the
  794. actually date of the deadline. Warnings about approaching and past-due
  795. deadlines are always turned off when the item is DONE."
  796. :group 'org-agenda-skip
  797. :group 'org-agenda-daily/weekly
  798. :type 'boolean)
  799. (defcustom org-agenda-skip-deadline-prewarning-if-scheduled nil
  800. "Non-nil means skip deadline prewarning when entry is also scheduled.
  801. This will apply on all days where a prewarning for the deadline would
  802. be shown, but not at the day when the entry is actually due. On that day,
  803. the deadline will be shown anyway.
  804. This variable may be set to nil, t, the symbol `pre-scheduled',
  805. or a number which will then give the number of days before the actual
  806. deadline when the prewarnings should resume. The symbol `pre-scheduled'
  807. eliminates the deadline prewarning only prior to the scheduled date.
  808. This can be used in a workflow where the first showing of the deadline will
  809. trigger you to schedule it, and then you don't want to be reminded of it
  810. because you will take care of it on the day when scheduled."
  811. :group 'org-agenda-skip
  812. :group 'org-agenda-daily/weekly
  813. :version "24.1"
  814. :type '(choice
  815. (const :tag "Always show prewarning" nil)
  816. (const :tag "Remove prewarning prior to scheduled date" pre-scheduled)
  817. (const :tag "Remove prewarning if entry is scheduled" t)
  818. (integer :tag "Restart prewarning N days before deadline")))
  819. (defcustom org-agenda-skip-scheduled-delay-if-deadline nil
  820. "Non-nil means skip scheduled delay when entry also has a deadline.
  821. This variable may be set to nil, t, the symbol `post-deadline',
  822. or a number which will then give the number of days after the actual
  823. scheduled date when the delay should expire. The symbol `post-deadline'
  824. eliminates the schedule delay when the date is posterior to the deadline."
  825. :group 'org-agenda-skip
  826. :group 'org-agenda-daily/weekly
  827. :version "24.4"
  828. :package-version '(Org . "8.0")
  829. :type '(choice
  830. (const :tag "Always honor delay" nil)
  831. (const :tag "Ignore delay if posterior to the deadline" post-deadline)
  832. (const :tag "Ignore delay if entry has a deadline" t)
  833. (integer :tag "Honor delay up until N days after the scheduled date")))
  834. (defcustom org-agenda-skip-additional-timestamps-same-entry nil
  835. "When nil, multiple same-day timestamps in entry make multiple agenda lines.
  836. When non-nil, after the search for timestamps has matched once in an
  837. entry, the rest of the entry will not be searched."
  838. :group 'org-agenda-skip
  839. :type 'boolean)
  840. (defcustom org-agenda-skip-timestamp-if-done nil
  841. "Non-nil means don't select item by timestamp or -range if it is DONE."
  842. :group 'org-agenda-skip
  843. :group 'org-agenda-daily/weekly
  844. :type 'boolean)
  845. (defcustom org-agenda-dim-blocked-tasks t
  846. "Non-nil means dim blocked tasks in the agenda display.
  847. This causes some overhead during agenda construction, but if you
  848. have turned on `org-enforce-todo-dependencies',
  849. `org-enforce-todo-checkbox-dependencies', or any other blocking
  850. mechanism, this will create useful feedback in the agenda.
  851. Instead of t, this variable can also have the value `invisible'.
  852. Then blocked tasks will be invisible and only become visible when
  853. they become unblocked. An exemption to this behavior is when a task is
  854. blocked because of unchecked checkboxes below it. Since checkboxes do
  855. not show up in the agenda views, making this task invisible you remove any
  856. trace from agenda views that there is something to do. Therefore, a task
  857. that is blocked because of checkboxes will never be made invisible, it
  858. will only be dimmed."
  859. :group 'org-agenda-daily/weekly
  860. :group 'org-agenda-todo-list
  861. :version "24.3"
  862. :type '(choice
  863. (const :tag "Do not dim" nil)
  864. (const :tag "Dim to a gray face" t)
  865. (const :tag "Make invisible" invisible)))
  866. (defcustom org-timeline-show-empty-dates 3
  867. "Non-nil means `org-timeline' also shows dates without an entry.
  868. When nil, only the days which actually have entries are shown.
  869. When t, all days between the first and the last date are shown.
  870. When an integer, show also empty dates, but if there is a gap of more than
  871. N days, just insert a special line indicating the size of the gap."
  872. :group 'org-agenda-skip
  873. :type '(choice
  874. (const :tag "None" nil)
  875. (const :tag "All" t)
  876. (integer :tag "at most")))
  877. (defgroup org-agenda-startup nil
  878. "Options concerning initial settings in the Agenda in Org Mode."
  879. :tag "Org Agenda Startup"
  880. :group 'org-agenda)
  881. (defcustom org-agenda-menu-show-matcher t
  882. "Non-nil means show the match string in the agenda dispatcher menu.
  883. When nil, the matcher string is not shown, but is put into the help-echo
  884. property so than moving the mouse over the command shows it.
  885. Setting it to nil is good if matcher strings are very long and/or if
  886. you want to use two-columns display (see `org-agenda-menu-two-columns')."
  887. :group 'org-agenda
  888. :version "24.1"
  889. :type 'boolean)
  890. (defcustom org-agenda-menu-two-columns nil
  891. "Non-nil means, use two columns to show custom commands in the dispatcher.
  892. If you use this, you probably want to set `org-agenda-menu-show-matcher'
  893. to nil."
  894. :group 'org-agenda
  895. :version "24.1"
  896. :type 'boolean)
  897. (defcustom org-agenda-finalize-hook nil
  898. "Hook run just before displaying an agenda buffer.
  899. The buffer is still writable when the hook is called.
  900. You can modify some of the buffer substrings but you should be
  901. extra careful not to modify the text properties of the agenda
  902. headlines as the agenda display heavily relies on them."
  903. :group 'org-agenda-startup
  904. :type 'hook)
  905. (defcustom org-agenda-mouse-1-follows-link nil
  906. "Non-nil means mouse-1 on a link will follow the link in the agenda.
  907. A longer mouse click will still set point. Needs to be set
  908. before org.el is loaded."
  909. :group 'org-agenda-startup
  910. :type 'boolean)
  911. (defcustom org-agenda-start-with-follow-mode nil
  912. "The initial value of follow mode in a newly created agenda window."
  913. :group 'org-agenda-startup
  914. :type 'boolean)
  915. (defcustom org-agenda-follow-indirect nil
  916. "Non-nil means `org-agenda-follow-mode' displays only the
  917. current item's tree, in an indirect buffer."
  918. :group 'org-agenda
  919. :version "24.1"
  920. :type 'boolean)
  921. (defcustom org-agenda-show-outline-path t
  922. "Non-nil means show outline path in echo area after line motion."
  923. :group 'org-agenda-startup
  924. :type 'boolean)
  925. (defcustom org-agenda-start-with-entry-text-mode nil
  926. "The initial value of entry-text-mode in a newly created agenda window."
  927. :group 'org-agenda-startup
  928. :type 'boolean)
  929. (defcustom org-agenda-entry-text-maxlines 5
  930. "Number of text lines to be added when `E' is pressed in the agenda.
  931. Note that this variable only used during agenda display. To add entry text
  932. when exporting the agenda, configure the variable
  933. `org-agenda-add-entry-text-maxlines'."
  934. :group 'org-agenda
  935. :type 'integer)
  936. (defcustom org-agenda-entry-text-exclude-regexps nil
  937. "List of regular expressions to clean up entry text.
  938. The complete matches of all regular expressions in this list will be
  939. removed from entry text before it is shown in the agenda."
  940. :group 'org-agenda
  941. :type '(repeat (regexp)))
  942. (defcustom org-agenda-entry-text-leaders " > "
  943. "Text prepended to the entry text in agenda buffers."
  944. :version "24.4"
  945. :package-version '(Org . "8.0")
  946. :group 'org-agenda
  947. :type 'string)
  948. (defvar org-agenda-entry-text-cleanup-hook nil
  949. "Hook that is run after basic cleanup of entry text to be shown in agenda.
  950. This cleanup is done in a temporary buffer, so the function may inspect and
  951. change the entire buffer.
  952. Some default stuff like drawers and scheduling/deadline dates will already
  953. have been removed when this is called, as will any matches for regular
  954. expressions listed in `org-agenda-entry-text-exclude-regexps'.")
  955. (defvar org-agenda-include-inactive-timestamps nil
  956. "Non-nil means include inactive time stamps in agenda and timeline.
  957. Dynamically scoped.")
  958. (defgroup org-agenda-windows nil
  959. "Options concerning the windows used by the Agenda in Org Mode."
  960. :tag "Org Agenda Windows"
  961. :group 'org-agenda)
  962. (defcustom org-agenda-window-setup 'reorganize-frame
  963. "How the agenda buffer should be displayed.
  964. Possible values for this option are:
  965. current-window Show agenda in the current window, keeping all other windows.
  966. other-window Use `switch-to-buffer-other-window' to display agenda.
  967. only-window Show agenda, deleting all other windows.
  968. reorganize-frame Show only two windows on the current frame, the current
  969. window and the agenda.
  970. other-frame Use `switch-to-buffer-other-frame' to display agenda.
  971. Also, when exiting the agenda, kill that frame.
  972. See also the variable `org-agenda-restore-windows-after-quit'."
  973. :group 'org-agenda-windows
  974. :type '(choice
  975. (const current-window)
  976. (const other-frame)
  977. (const other-window)
  978. (const only-window)
  979. (const reorganize-frame)))
  980. (defcustom org-agenda-window-frame-fractions '(0.5 . 0.75)
  981. "The min and max height of the agenda window as a fraction of frame height.
  982. The value of the variable is a cons cell with two numbers between 0 and 1.
  983. It only matters if `org-agenda-window-setup' is `reorganize-frame'."
  984. :group 'org-agenda-windows
  985. :type '(cons (number :tag "Minimum") (number :tag "Maximum")))
  986. (defcustom org-agenda-restore-windows-after-quit nil
  987. "Non-nil means restore window configuration upon exiting agenda.
  988. Before the window configuration is changed for displaying the agenda,
  989. the current status is recorded. When the agenda is exited with
  990. `q' or `x' and this option is set, the old state is restored. If
  991. `org-agenda-window-setup' is `other-frame', the value of this
  992. option will be ignored."
  993. :group 'org-agenda-windows
  994. :type 'boolean)
  995. (defcustom org-agenda-span 'week
  996. "Number of days to include in overview display.
  997. Can be day, week, month, year, or any number of days.
  998. Custom commands can set this variable in the options section."
  999. :group 'org-agenda-daily/weekly
  1000. :type '(choice (const :tag "Day" day)
  1001. (const :tag "Week" week)
  1002. (const :tag "Fortnight" fortnight)
  1003. (const :tag "Month" month)
  1004. (const :tag "Year" year)
  1005. (integer :tag "Custom")))
  1006. (defcustom org-agenda-start-on-weekday 1
  1007. "Non-nil means start the overview always on the specified weekday.
  1008. 0 denotes Sunday, 1 denotes Monday, etc.
  1009. When nil, always start on the current day.
  1010. Custom commands can set this variable in the options section."
  1011. :group 'org-agenda-daily/weekly
  1012. :type '(choice (const :tag "Today" nil)
  1013. (integer :tag "Weekday No.")))
  1014. (defcustom org-agenda-show-all-dates t
  1015. "Non-nil means `org-agenda' shows every day in the selected range.
  1016. When nil, only the days which actually have entries are shown."
  1017. :group 'org-agenda-daily/weekly
  1018. :type 'boolean)
  1019. (defcustom org-agenda-format-date 'org-agenda-format-date-aligned
  1020. "Format string for displaying dates in the agenda.
  1021. Used by the daily/weekly agenda and by the timeline. This should be
  1022. a format string understood by `format-time-string', or a function returning
  1023. the formatted date as a string. The function must take a single argument,
  1024. a calendar-style date list like (month day year)."
  1025. :group 'org-agenda-daily/weekly
  1026. :type '(choice
  1027. (string :tag "Format string")
  1028. (function :tag "Function")))
  1029. (defun org-agenda-format-date-aligned (date)
  1030. "Format a DATE string for display in the daily/weekly agenda, or timeline.
  1031. This function makes sure that dates are aligned for easy reading."
  1032. (require 'cal-iso)
  1033. (let* ((dayname (calendar-day-name date))
  1034. (day (cadr date))
  1035. (day-of-week (calendar-day-of-week date))
  1036. (month (car date))
  1037. (monthname (calendar-month-name month))
  1038. (year (nth 2 date))
  1039. (iso-week (org-days-to-iso-week
  1040. (calendar-absolute-from-gregorian date)))
  1041. (weekyear (cond ((and (= month 1) (>= iso-week 52))
  1042. (1- year))
  1043. ((and (= month 12) (<= iso-week 1))
  1044. (1+ year))
  1045. (t year)))
  1046. (weekstring (if (= day-of-week 1)
  1047. (format " W%02d" iso-week)
  1048. "")))
  1049. (format "%-10s %2d %s %4d%s"
  1050. dayname day monthname year weekstring)))
  1051. (defcustom org-agenda-time-leading-zero nil
  1052. "Non-nil means use leading zero for military times in agenda.
  1053. For example, 9:30am would become 09:30 rather than 9:30."
  1054. :group 'org-agenda-daily/weekly
  1055. :version "24.1"
  1056. :type 'boolean)
  1057. (defcustom org-agenda-timegrid-use-ampm nil
  1058. "When set, show AM/PM style timestamps on the timegrid."
  1059. :group 'org-agenda
  1060. :version "24.1"
  1061. :type 'boolean)
  1062. (defun org-agenda-time-of-day-to-ampm (time)
  1063. "Convert TIME of a string like \"13:45\" to an AM/PM style time string."
  1064. (let* ((hour-number (string-to-number (substring time 0 -3)))
  1065. (minute (substring time -2))
  1066. (ampm "am"))
  1067. (cond
  1068. ((equal hour-number 12)
  1069. (setq ampm "pm"))
  1070. ((> hour-number 12)
  1071. (setq ampm "pm")
  1072. (setq hour-number (- hour-number 12))))
  1073. (concat
  1074. (if org-agenda-time-leading-zero
  1075. (format "%02d" hour-number)
  1076. (format "%02s" (number-to-string hour-number)))
  1077. ":" minute ampm)))
  1078. (defun org-agenda-time-of-day-to-ampm-maybe (time)
  1079. "Conditionally convert TIME to AM/PM format based on `org-agenda-timegrid-use-ampm'."
  1080. (if org-agenda-timegrid-use-ampm
  1081. (org-agenda-time-of-day-to-ampm time)
  1082. time))
  1083. (defcustom org-agenda-weekend-days '(6 0)
  1084. "Which days are weekend?
  1085. These days get the special face `org-agenda-date-weekend' in the agenda
  1086. and timeline buffers."
  1087. :group 'org-agenda-daily/weekly
  1088. :type '(set :greedy t
  1089. (const :tag "Monday" 1)
  1090. (const :tag "Tuesday" 2)
  1091. (const :tag "Wednesday" 3)
  1092. (const :tag "Thursday" 4)
  1093. (const :tag "Friday" 5)
  1094. (const :tag "Saturday" 6)
  1095. (const :tag "Sunday" 0)))
  1096. (defcustom org-agenda-move-date-from-past-immediately-to-today t
  1097. "Non-nil means jump to today when moving a past date forward in time.
  1098. When using S-right in the agenda to move a a date forward, and the date
  1099. stamp currently points to the past, the first key press will move it
  1100. to today. WHen nil, just move one day forward even if the date stays
  1101. in the past."
  1102. :group 'org-agenda-daily/weekly
  1103. :version "24.1"
  1104. :type 'boolean)
  1105. (defcustom org-agenda-include-diary nil
  1106. "If non-nil, include in the agenda entries from the Emacs Calendar's diary.
  1107. Custom commands can set this variable in the options section."
  1108. :group 'org-agenda-daily/weekly
  1109. :type 'boolean)
  1110. (defcustom org-agenda-include-deadlines t
  1111. "If non-nil, include entries within their deadline warning period.
  1112. Custom commands can set this variable in the options section."
  1113. :group 'org-agenda-daily/weekly
  1114. :version "24.1"
  1115. :type 'boolean)
  1116. (defcustom org-agenda-repeating-timestamp-show-all t
  1117. "Non-nil means show all occurrences of a repeating stamp in the agenda.
  1118. When set to a list of strings, only show occurrences of repeating
  1119. stamps for these TODO keywords. When nil, only one occurrence is
  1120. shown, either today or the nearest into the future."
  1121. :group 'org-agenda-daily/weekly
  1122. :type '(choice
  1123. (const :tag "Show repeating stamps" t)
  1124. (repeat :tag "Show repeating stamps for these TODO keywords"
  1125. (string :tag "TODO Keyword"))
  1126. (const :tag "Don't show repeating stamps" nil)))
  1127. (defcustom org-scheduled-past-days 10000
  1128. "Number of days to continue listing scheduled items not marked DONE.
  1129. When an item is scheduled on a date, it shows up in the agenda on
  1130. this day and will be listed until it is marked done or for the
  1131. number of days given here."
  1132. :group 'org-agenda-daily/weekly
  1133. :type 'integer)
  1134. (defcustom org-agenda-log-mode-items '(closed clock)
  1135. "List of items that should be shown in agenda log mode.
  1136. \\<org-agenda-mode-map>\
  1137. This list may contain the following symbols:
  1138. closed Show entries that have been closed on that day.
  1139. clock Show entries that have received clocked time on that day.
  1140. state Show all logged state changes.
  1141. Note that instead of changing this variable, you can also press \
  1142. `\\[universal-argument] \\[org-agenda-log-mode]' in
  1143. the agenda to display all available LOG items temporarily."
  1144. :group 'org-agenda-daily/weekly
  1145. :type '(set :greedy t (const closed) (const clock) (const state)))
  1146. (defcustom org-agenda-clock-consistency-checks
  1147. '(:max-duration "10:00" :min-duration 0 :max-gap "0:05"
  1148. :gap-ok-around ("4:00")
  1149. :default-face ((:background "DarkRed") (:foreground "white"))
  1150. :overlap-face nil :gap-face nil :no-end-time-face nil
  1151. :long-face nil :short-face nil)
  1152. "This is a property list, with the following keys:
  1153. :max-duration Mark clocking chunks that are longer than this time.
  1154. This is a time string like \"HH:MM\", or the number
  1155. of minutes as an integer.
  1156. :min-duration Mark clocking chunks that are shorter that this.
  1157. This is a time string like \"HH:MM\", or the number
  1158. of minutes as an integer.
  1159. :max-gap Mark gaps between clocking chunks that are longer than
  1160. this duration. A number of minutes, or a string
  1161. like \"HH:MM\".
  1162. :gap-ok-around List of times during the day which are usually not working
  1163. times. When a gap is detected, but the gap contains any
  1164. of these times, the gap is *not* reported. For example,
  1165. if this is (\"4:00\" \"13:00\") then gaps that contain
  1166. 4:00 in the morning (i.e. the night) and 13:00
  1167. (i.e. a typical lunch time) do not cause a warning.
  1168. You should have at least one time during the night in this
  1169. list, or otherwise the first task each morning will trigger
  1170. a warning because it follows a long gap.
  1171. Furthermore, the following properties can be used to define faces for
  1172. issue display.
  1173. :default-face the default face, if the specific face is undefined
  1174. :overlap-face face for overlapping clocks
  1175. :gap-face face for gaps between clocks
  1176. :no-end-time-face face for incomplete clocks
  1177. :long-face face for clock intervals that are too long
  1178. :short-face face for clock intervals that are too short"
  1179. :group 'org-agenda-daily/weekly
  1180. :group 'org-clock
  1181. :version "24.1"
  1182. :type 'plist)
  1183. (defcustom org-agenda-log-mode-add-notes t
  1184. "Non-nil means add first line of notes to log entries in agenda views.
  1185. If a log item like a state change or a clock entry is associated with
  1186. notes, the first line of these notes will be added to the entry in the
  1187. agenda display."
  1188. :group 'org-agenda-daily/weekly
  1189. :type 'boolean)
  1190. (defcustom org-agenda-start-with-log-mode nil
  1191. "The initial value of log-mode in a newly created agenda window.
  1192. See `org-agenda-log-mode' and `org-agenda-log-mode-items' for further
  1193. explanations on the possible values."
  1194. :group 'org-agenda-startup
  1195. :group 'org-agenda-daily/weekly
  1196. :type '(choice (const :tag "Don't show log items" nil)
  1197. (const :tag "Show only log items" only)
  1198. (const :tag "Show all possible log items" clockcheck)
  1199. (repeat :tag "Choose among possible values for `org-agenda-log-mode-items'"
  1200. (choice (const :tag "Show closed log items" closed)
  1201. (const :tag "Show clocked log items" clock)
  1202. (const :tag "Show all logged state changes" state)))))
  1203. (defcustom org-agenda-start-with-clockreport-mode nil
  1204. "The initial value of clockreport-mode in a newly created agenda window."
  1205. :group 'org-agenda-startup
  1206. :group 'org-agenda-daily/weekly
  1207. :type 'boolean)
  1208. (defcustom org-agenda-clockreport-parameter-plist '(:link t :maxlevel 2)
  1209. "Property list with parameters for the clocktable in clockreport mode.
  1210. This is the display mode that shows a clock table in the daily/weekly
  1211. agenda, the properties for this dynamic block can be set here.
  1212. The usual clocktable parameters are allowed here, but you cannot set
  1213. the properties :name, :tstart, :tend, :block, and :scope - these will
  1214. be overwritten to make sure the content accurately reflects the
  1215. current display in the agenda."
  1216. :group 'org-agenda-daily/weekly
  1217. :type 'plist)
  1218. (defcustom org-agenda-search-view-always-boolean nil
  1219. "Non-nil means the search string is interpreted as individual parts.
  1220. The search string for search view can either be interpreted as a phrase,
  1221. or as a list of snippets that define a boolean search for a number of
  1222. strings.
  1223. When this is non-nil, the string will be split on whitespace, and each
  1224. snippet will be searched individually, and all must match in order to
  1225. select an entry. A snippet is then a single string of non-white
  1226. characters, or a string in double quotes, or a regexp in {} braces.
  1227. If a snippet is preceded by \"-\", the snippet must *not* match.
  1228. \"+\" is syntactic sugar for positive selection. Each snippet may
  1229. be found as a full word or a partial word, but see the variable
  1230. `org-agenda-search-view-force-full-words'.
  1231. When this is nil, search will look for the entire search phrase as one,
  1232. with each space character matching any amount of whitespace, including
  1233. line breaks.
  1234. Even when this is nil, you can still switch to Boolean search dynamically
  1235. by preceding the first snippet with \"+\" or \"-\". If the first snippet
  1236. is a regexp marked with braces like \"{abc}\", this will also switch to
  1237. boolean search."
  1238. :group 'org-agenda-search-view
  1239. :version "24.1"
  1240. :type 'boolean)
  1241. (defvaralias 'org-agenda-search-view-search-words-only
  1242. 'org-agenda-search-view-always-boolean)
  1243. (defcustom org-agenda-search-view-force-full-words nil
  1244. "Non-nil means, search words must be matches as complete words.
  1245. When nil, they may also match part of a word."
  1246. :group 'org-agenda-search-view
  1247. :version "24.1"
  1248. :type 'boolean)
  1249. (defcustom org-agenda-search-view-max-outline-level 0
  1250. "Maximum outline level to display in search view.
  1251. E.g. when this is set to 1, the search view will only
  1252. show headlines of level 1. When set to 0, the default
  1253. value, don't limit agenda view by outline level."
  1254. :group 'org-agenda-search-view
  1255. :version "24.4"
  1256. :package-version '(Org . "8.3")
  1257. :type 'integer)
  1258. (defgroup org-agenda-time-grid nil
  1259. "Options concerning the time grid in the Org Agenda."
  1260. :tag "Org Agenda Time Grid"
  1261. :group 'org-agenda)
  1262. (defcustom org-agenda-search-headline-for-time t
  1263. "Non-nil means search headline for a time-of-day.
  1264. If the headline contains a time-of-day in one format or another, it will
  1265. be used to sort the entry into the time sequence of items for a day.
  1266. Some people have time stamps in the headline that refer to the creation
  1267. time or so, and then this produces an unwanted side effect. If this is
  1268. the case for your, use this variable to turn off searching the headline
  1269. for a time."
  1270. :group 'org-agenda-time-grid
  1271. :type 'boolean)
  1272. (defcustom org-agenda-use-time-grid t
  1273. "Non-nil means show a time grid in the agenda schedule.
  1274. A time grid is a set of lines for specific times (like every two hours between
  1275. 8:00 and 20:00). The items scheduled for a day at specific times are
  1276. sorted in between these lines.
  1277. For details about when the grid will be shown, and what it will look like, see
  1278. the variable `org-agenda-time-grid'."
  1279. :group 'org-agenda-time-grid
  1280. :type 'boolean)
  1281. (defcustom org-agenda-time-grid
  1282. '((daily today require-timed)
  1283. "----------------"
  1284. (800 1000 1200 1400 1600 1800 2000))
  1285. "The settings for time grid for agenda display.
  1286. This is a list of three items. The first item is again a list. It contains
  1287. symbols specifying conditions when the grid should be displayed:
  1288. daily if the agenda shows a single day
  1289. weekly if the agenda shows an entire week
  1290. today show grid on current date, independent of daily/weekly display
  1291. require-timed show grid only if at least one item has a time specification
  1292. remove-match skip grid times already present in an entry
  1293. The second item is a string which will be placed behind the grid time.
  1294. The third item is a list of integers, indicating the times that should have
  1295. a grid line."
  1296. :group 'org-agenda-time-grid
  1297. :type
  1298. '(list
  1299. (set :greedy t :tag "Grid Display Options"
  1300. (const :tag "Show grid in single day agenda display" daily)
  1301. (const :tag "Show grid in weekly agenda display" weekly)
  1302. (const :tag "Always show grid for today" today)
  1303. (const :tag "Show grid only if any timed entries are present"
  1304. require-timed)
  1305. (const :tag "Skip grid times already present in an entry"
  1306. remove-match))
  1307. (string :tag "Grid String")
  1308. (repeat :tag "Grid Times" (integer :tag "Time"))))
  1309. (defcustom org-agenda-show-current-time-in-grid t
  1310. "Non-nil means show the current time in the time grid."
  1311. :group 'org-agenda-time-grid
  1312. :version "24.1"
  1313. :type 'boolean)
  1314. (defcustom org-agenda-current-time-string
  1315. "now - - - - - - - - - - - - - - - - - - - - - - - - -"
  1316. "The string for the current time marker in the agenda."
  1317. :group 'org-agenda-time-grid
  1318. :version "24.1"
  1319. :type 'string)
  1320. (defgroup org-agenda-sorting nil
  1321. "Options concerning sorting in the Org Agenda."
  1322. :tag "Org Agenda Sorting"
  1323. :group 'org-agenda)
  1324. (defcustom org-agenda-sorting-strategy
  1325. '((agenda habit-down time-up priority-down category-keep)
  1326. (todo priority-down category-keep)
  1327. (tags priority-down category-keep)
  1328. (search category-keep))
  1329. "Sorting structure for the agenda items of a single day.
  1330. This is a list of symbols which will be used in sequence to determine
  1331. if an entry should be listed before another entry. The following
  1332. symbols are recognized:
  1333. time-up Put entries with time-of-day indications first, early first
  1334. time-down Put entries with time-of-day indications first, late first
  1335. timestamp-up Sort by any timestamp, early first
  1336. timestamp-down Sort by any timestamp, late first
  1337. scheduled-up Sort by scheduled timestamp, early first
  1338. scheduled-down Sort by scheduled timestamp, late first
  1339. deadline-up Sort by deadline timestamp, early first
  1340. deadline-down Sort by deadline timestamp, late first
  1341. ts-up Sort by active timestamp, early first
  1342. ts-down Sort by active timestamp, late first
  1343. tsia-up Sort by inactive timestamp, early first
  1344. tsia-down Sort by inactive timestamp, late first
  1345. category-keep Keep the default order of categories, corresponding to the
  1346. sequence in `org-agenda-files'.
  1347. category-up Sort alphabetically by category, A-Z.
  1348. category-down Sort alphabetically by category, Z-A.
  1349. tag-up Sort alphabetically by last tag, A-Z.
  1350. tag-down Sort alphabetically by last tag, Z-A.
  1351. priority-up Sort numerically by priority, high priority last.
  1352. priority-down Sort numerically by priority, high priority first.
  1353. todo-state-up Sort by todo state, tasks that are done last.
  1354. todo-state-down Sort by todo state, tasks that are done first.
  1355. effort-up Sort numerically by estimated effort, high effort last.
  1356. effort-down Sort numerically by estimated effort, high effort first.
  1357. user-defined-up Sort according to `org-agenda-cmp-user-defined', high last.
  1358. user-defined-down Sort according to `org-agenda-cmp-user-defined', high first.
  1359. habit-up Put entries that are habits first
  1360. habit-down Put entries that are habits last
  1361. alpha-up Sort headlines alphabetically
  1362. alpha-down Sort headlines alphabetically, reversed
  1363. The different possibilities will be tried in sequence, and testing stops
  1364. if one comparison returns a \"not-equal\". For example, the default
  1365. '(time-up category-keep priority-down)
  1366. means: Pull out all entries having a specified time of day and sort them,
  1367. in order to make a time schedule for the current day the first thing in the
  1368. agenda listing for the day. Of the entries without a time indication, keep
  1369. the grouped in categories, don't sort the categories, but keep them in
  1370. the sequence given in `org-agenda-files'. Within each category sort by
  1371. priority.
  1372. Leaving out `category-keep' would mean that items will be sorted across
  1373. categories by priority.
  1374. Instead of a single list, this can also be a set of list for specific
  1375. contents, with a context symbol in the car of the list, any of
  1376. `agenda', `todo', `tags', `search' for the corresponding agenda views.
  1377. Custom commands can bind this variable in the options section."
  1378. :group 'org-agenda-sorting
  1379. :type `(choice
  1380. (repeat :tag "General" ,org-sorting-choice)
  1381. (list :tag "Individually"
  1382. (cons (const :tag "Strategy for Weekly/Daily agenda" agenda)
  1383. (repeat ,org-sorting-choice))
  1384. (cons (const :tag "Strategy for TODO lists" todo)
  1385. (repeat ,org-sorting-choice))
  1386. (cons (const :tag "Strategy for Tags matches" tags)
  1387. (repeat ,org-sorting-choice))
  1388. (cons (const :tag "Strategy for search matches" search)
  1389. (repeat ,org-sorting-choice)))))
  1390. (defcustom org-agenda-cmp-user-defined nil
  1391. "A function to define the comparison `user-defined'.
  1392. This function must receive two arguments, agenda entry a and b.
  1393. If a>b, return +1. If a<b, return -1. If they are equal as seen by
  1394. the user comparison, return nil.
  1395. When this is defined, you can make `user-defined-up' and `user-defined-down'
  1396. part of an agenda sorting strategy."
  1397. :group 'org-agenda-sorting
  1398. :type 'symbol)
  1399. (defcustom org-sort-agenda-notime-is-late t
  1400. "Non-nil means items without time are considered late.
  1401. This is only relevant for sorting. When t, items which have no explicit
  1402. time like 15:30 will be considered as 99:01, i.e. later than any items which
  1403. do have a time. When nil, the default time is before 0:00. You can use this
  1404. option to decide if the schedule for today should come before or after timeless
  1405. agenda entries."
  1406. :group 'org-agenda-sorting
  1407. :type 'boolean)
  1408. (defcustom org-sort-agenda-noeffort-is-high t
  1409. "Non-nil means items without effort estimate are sorted as high effort.
  1410. This also applies when filtering an agenda view with respect to the
  1411. < or > effort operator. Then, tasks with no effort defined will be treated
  1412. as tasks with high effort.
  1413. When nil, such items are sorted as 0 minutes effort."
  1414. :group 'org-agenda-sorting
  1415. :type 'boolean)
  1416. (defgroup org-agenda-line-format nil
  1417. "Options concerning the entry prefix in the Org agenda display."
  1418. :tag "Org Agenda Line Format"
  1419. :group 'org-agenda)
  1420. (defcustom org-agenda-prefix-format
  1421. '((agenda . " %i %-12:c%?-12t% s")
  1422. (timeline . " % s")
  1423. (todo . " %i %-12:c")
  1424. (tags . " %i %-12:c")
  1425. (search . " %i %-12:c"))
  1426. "Format specifications for the prefix of items in the agenda views.
  1427. An alist with five entries, each for the different agenda types. The
  1428. keys of the sublists are `agenda', `timeline', `todo', `search' and `tags'.
  1429. The values are format strings.
  1430. This format works similar to a printf format, with the following meaning:
  1431. %c the category of the item, \"Diary\" for entries from the diary,
  1432. or as given by the CATEGORY keyword or derived from the file name
  1433. %e the effort required by the item
  1434. %l the level of the item (insert X space(s) if item is of level X)
  1435. %i the icon category of the item, see `org-agenda-category-icon-alist'
  1436. %T the last tag of the item (ignore inherited tags, which come first)
  1437. %t the HH:MM time-of-day specification if one applies to the entry
  1438. %s Scheduling/Deadline information, a short string
  1439. %b show breadcrumbs, i.e., the names of the higher levels
  1440. %(expression) Eval EXPRESSION and replace the control string
  1441. by the result
  1442. All specifiers work basically like the standard `%s' of printf, but may
  1443. contain two additional characters: a question mark just after the `%'
  1444. and a whitespace/punctuation character just before the final letter.
  1445. If the first character after `%' is a question mark, the entire field
  1446. will only be included if the corresponding value applies to the current
  1447. entry. This is useful for fields which should have fixed width when
  1448. present, but zero width when absent. For example, \"%?-12t\" will
  1449. result in a 12 character time field if a time of the day is specified,
  1450. but will completely disappear in entries which do not contain a time.
  1451. If there is punctuation or whitespace character just before the
  1452. final format letter, this character will be appended to the field
  1453. value if the value is not empty. For example, the format
  1454. \"%-12:c\" leads to \"Diary: \" if the category is \"Diary\". If
  1455. the category is empty, no additional colon is inserted.
  1456. The default value for the agenda sublist is \" %-12:c%?-12t% s\",
  1457. which means:
  1458. - Indent the line with two space characters
  1459. - Give the category a 12 chars wide field, padded with whitespace on
  1460. the right (because of `-'). Append a colon if there is a category
  1461. (because of `:').
  1462. - If there is a time-of-day, put it into a 12 chars wide field. If no
  1463. time, don't put in an empty field, just skip it (because of '?').
  1464. - Finally, put the scheduling information.
  1465. See also the variables `org-agenda-remove-times-when-in-prefix' and
  1466. `org-agenda-remove-tags'.
  1467. Custom commands can set this variable in the options section."
  1468. :type '(choice
  1469. (string :tag "General format")
  1470. (list :greedy t :tag "View dependent"
  1471. (cons (const agenda) (string :tag "Format"))
  1472. (cons (const timeline) (string :tag "Format"))
  1473. (cons (const todo) (string :tag "Format"))
  1474. (cons (const tags) (string :tag "Format"))
  1475. (cons (const search) (string :tag "Format"))))
  1476. :group 'org-agenda-line-format)
  1477. (defvar org-prefix-format-compiled nil
  1478. "The compiled prefix format and associated variables.
  1479. This is a list where first element is a list of variable bindings, and second
  1480. element is the compiled format expression. See the variable
  1481. `org-agenda-prefix-format'.")
  1482. (defcustom org-agenda-todo-keyword-format "%-1s"
  1483. "Format for the TODO keyword in agenda lines.
  1484. Set this to something like \"%-12s\" if you want all TODO keywords
  1485. to occupy a fixed space in the agenda display."
  1486. :group 'org-agenda-line-format
  1487. :type 'string)
  1488. (defcustom org-agenda-diary-sexp-prefix nil
  1489. "A regexp that matches part of a diary sexp entry
  1490. which should be treated as scheduling/deadline information in
  1491. `org-agenda'.
  1492. For example, you can use this to extract the `diary-remind-message' from
  1493. `diary-remind' entries."
  1494. :group 'org-agenda-line-format
  1495. :type '(choice (const :tag "None" nil) (regexp :tag "Regexp")))
  1496. (defcustom org-agenda-timerange-leaders '("" "(%d/%d): ")
  1497. "Text preceding timerange entries in the agenda view.
  1498. This is a list with two strings. The first applies when the range
  1499. is entirely on one day. The second applies if the range spans several days.
  1500. The strings may have two \"%d\" format specifiers which will be filled
  1501. with the sequence number of the days, and the total number of days in the
  1502. range, respectively."
  1503. :group 'org-agenda-line-format
  1504. :type '(list
  1505. (string :tag "Deadline today ")
  1506. (choice :tag "Deadline relative"
  1507. (string :tag "Format string")
  1508. (function))))
  1509. (defcustom org-agenda-scheduled-leaders '("Scheduled: " "Sched.%2dx: ")
  1510. "Text preceding scheduled items in the agenda view.
  1511. This is a list with two strings. The first applies when the item is
  1512. scheduled on the current day. The second applies when it has been scheduled
  1513. previously, it may contain a %d indicating that this is the nth time that
  1514. this item is scheduled, due to automatic rescheduling of unfinished items
  1515. for the following day. So this number is one larger than the number of days
  1516. that passed since this item was scheduled first."
  1517. :group 'org-agenda-line-format
  1518. :version "24.4"
  1519. :package-version '(Org . "8.0")
  1520. :type '(list
  1521. (string :tag "Scheduled today ")
  1522. (string :tag "Scheduled previously")))
  1523. (defcustom org-agenda-inactive-leader "["
  1524. "Text preceding item pulled into the agenda by inactive time stamps.
  1525. These entries are added to the agenda when pressing \"[\"."
  1526. :group 'org-agenda-line-format
  1527. :version "24.1"
  1528. :type 'string)
  1529. (defcustom org-agenda-deadline-leaders '("Deadline: " "In %3d d.: " "%2d d. ago: ")
  1530. "Text preceding deadline items in the agenda view.
  1531. This is a list with three strings. The first applies when the item has its
  1532. deadline on the current day. The second applies when the deadline is in the
  1533. future, the third one when it is in the past. The strings may contain %d
  1534. to capture the number of days."
  1535. :group 'org-agenda-line-format
  1536. :version "24.4"
  1537. :package-version '(Org . "8.0")
  1538. :type '(list
  1539. (string :tag "Deadline today ")
  1540. (string :tag "Deadline in the future ")
  1541. (string :tag "Deadline in the past ")))
  1542. (defcustom org-agenda-remove-times-when-in-prefix t
  1543. "Non-nil means remove duplicate time specifications in agenda items.
  1544. When the format `org-agenda-prefix-format' contains a `%t' specifier, a
  1545. time-of-day specification in a headline or diary entry is extracted and
  1546. placed into the prefix. If this option is non-nil, the original specification
  1547. \(a timestamp or -range, or just a plain time(range) specification like
  1548. 11:30-4pm) will be removed for agenda display. This makes the agenda less
  1549. cluttered.
  1550. The option can be t or nil. It may also be the symbol `beg', indicating
  1551. that the time should only be removed when it is located at the beginning of
  1552. the headline/diary entry."
  1553. :group 'org-agenda-line-format
  1554. :type '(choice
  1555. (const :tag "Always" t)
  1556. (const :tag "Never" nil)
  1557. (const :tag "When at beginning of entry" beg)))
  1558. (defcustom org-agenda-remove-timeranges-from-blocks nil
  1559. "Non-nil means remove time ranges specifications in agenda
  1560. items that span on several days."
  1561. :group 'org-agenda-line-format
  1562. :version "24.1"
  1563. :type 'boolean)
  1564. (defcustom org-agenda-default-appointment-duration nil
  1565. "Default duration for appointments that only have a starting time.
  1566. When nil, no duration is specified in such cases.
  1567. When non-nil, this must be the number of minutes, e.g. 60 for one hour."
  1568. :group 'org-agenda-line-format
  1569. :type '(choice
  1570. (integer :tag "Minutes")
  1571. (const :tag "No default duration")))
  1572. (defcustom org-agenda-show-inherited-tags t
  1573. "Non-nil means show inherited tags in each agenda line.
  1574. When this option is set to `always', it take precedences over
  1575. `org-agenda-use-tag-inheritance' and inherited tags are shown
  1576. in every agenda.
  1577. When this option is set to t (the default), inherited tags are
  1578. shown when they are available, i.e. when the value of
  1579. `org-agenda-use-tag-inheritance' enables tag inheritance for the
  1580. given agenda type.
  1581. This can be set to a list of agenda types in which the agenda
  1582. must display the inherited tags. Available types are `todo',
  1583. `agenda', `search' and `timeline'.
  1584. When set to nil, never show inherited tags in agenda lines."
  1585. :group 'org-agenda-line-format
  1586. :group 'org-agenda
  1587. :version "24.3"
  1588. :type '(choice
  1589. (const :tag "Show inherited tags when available" t)
  1590. (const :tag "Always show inherited tags" always)
  1591. (repeat :tag "Show inherited tags only in selected agenda types"
  1592. (symbol :tag "Agenda type"))))
  1593. (defcustom org-agenda-use-tag-inheritance '(todo search timeline agenda)
  1594. "List of agenda view types where to use tag inheritance.
  1595. In tags/tags-todo/tags-tree agenda views, tag inheritance is
  1596. controlled by `org-use-tag-inheritance'. In other agenda types,
  1597. `org-use-tag-inheritance' is not used for the selection of the
  1598. agenda entries. Still, you may want the agenda to be aware of
  1599. the inherited tags anyway, e.g. for later tag filtering.
  1600. Allowed value are `todo', `search', `timeline' and `agenda'.
  1601. This variable has no effect if `org-agenda-show-inherited-tags'
  1602. is set to `always'. In that case, the agenda is aware of those
  1603. tags.
  1604. The default value sets tags in every agenda type. Setting this
  1605. option to nil will speed up non-tags agenda view a lot."
  1606. :group 'org-agenda
  1607. :version "24.3"
  1608. :type '(choice
  1609. (const :tag "Use tag inheritance in all agenda types" t)
  1610. (repeat :tag "Use tag inheritance in selected agenda types"
  1611. (symbol :tag "Agenda type"))))
  1612. (defcustom org-agenda-hide-tags-regexp nil
  1613. "Regular expression used to filter away specific tags in agenda views.
  1614. This means that these tags will be present, but not be shown in the agenda
  1615. line. Secondary filtering will still work on the hidden tags.
  1616. Nil means don't hide any tags."
  1617. :group 'org-agenda-line-format
  1618. :type '(choice
  1619. (const :tag "Hide none" nil)
  1620. (string :tag "Regexp ")))
  1621. (defcustom org-agenda-remove-tags nil
  1622. "Non-nil means remove the tags from the headline copy in the agenda.
  1623. When this is the symbol `prefix', only remove tags when
  1624. `org-agenda-prefix-format' contains a `%T' specifier."
  1625. :group 'org-agenda-line-format
  1626. :type '(choice
  1627. (const :tag "Always" t)
  1628. (const :tag "Never" nil)
  1629. (const :tag "When prefix format contains %T" prefix)))
  1630. (defvaralias 'org-agenda-remove-tags-when-in-prefix
  1631. 'org-agenda-remove-tags)
  1632. (defcustom org-agenda-tags-column -80
  1633. "Shift tags in agenda items to this column.
  1634. If this number is positive, it specifies the column. If it is negative,
  1635. it means that the tags should be flushright to that column. For example,
  1636. -80 works well for a normal 80 character screen."
  1637. :group 'org-agenda-line-format
  1638. :type 'integer)
  1639. (defvaralias 'org-agenda-align-tags-to-column 'org-agenda-tags-column)
  1640. (defcustom org-agenda-fontify-priorities 'cookies
  1641. "Non-nil means highlight low and high priorities in agenda.
  1642. When t, the highest priority entries are bold, lowest priority italic.
  1643. However, settings in `org-priority-faces' will overrule these faces.
  1644. When this variable is the symbol `cookies', only fontify the
  1645. cookies, not the entire task.
  1646. This may also be an association list of priority faces, whose
  1647. keys are the character values of `org-highest-priority',
  1648. `org-default-priority', and `org-lowest-priority' (the default values
  1649. are ?A, ?B, and ?C, respectively). The face may be a named face, a
  1650. color as a string, or a list like `(:background \"Red\")'.
  1651. If it is a color, the variable `org-faces-easy-properties'
  1652. determines if it is a foreground or a background color."
  1653. :group 'org-agenda-line-format
  1654. :type '(choice
  1655. (const :tag "Never" nil)
  1656. (const :tag "Defaults" t)
  1657. (const :tag "Cookies only" cookies)
  1658. (repeat :tag "Specify"
  1659. (list (character :tag "Priority" :value ?A)
  1660. (choice :tag "Face "
  1661. (string :tag "Color")
  1662. (sexp :tag "Face"))))))
  1663. (defcustom org-agenda-day-face-function nil
  1664. "Function called to determine what face should be used to display a day.
  1665. The only argument passed to that function is the day. It should
  1666. returns a face, or nil if does not want to specify a face and let
  1667. the normal rules apply."
  1668. :group 'org-agenda-line-format
  1669. :version "24.1"
  1670. :type '(choice (const nil) (function)))
  1671. (defcustom org-agenda-category-icon-alist nil
  1672. "Alist of category icon to be displayed in agenda views.
  1673. Each entry should have the following format:
  1674. (CATEGORY-REGEXP FILE-OR-DATA TYPE DATA-P PROPS)
  1675. Where CATEGORY-REGEXP is a regexp matching the categories where
  1676. the icon should be displayed.
  1677. FILE-OR-DATA either a file path or a string containing image data.
  1678. The other fields can be omitted safely if not needed:
  1679. TYPE indicates the image type.
  1680. DATA-P is a boolean indicating whether the FILE-OR-DATA string is
  1681. image data.
  1682. PROPS are additional image attributes to assign to the image,
  1683. like, e.g. `:ascent center'.
  1684. (\"Org\" \"/path/to/icon.png\" nil nil :ascent center)
  1685. If you want to set the display properties yourself, just put a
  1686. list as second element:
  1687. (CATEGORY-REGEXP (MY PROPERTY LIST))
  1688. For example, to display a 16px horizontal space for Emacs
  1689. category, you can use:
  1690. (\"Emacs\" \\='(space . (:width (16))))"
  1691. :group 'org-agenda-line-format
  1692. :version "24.1"
  1693. :type '(alist :key-type (string :tag "Regexp matching category")
  1694. :value-type (choice (list :tag "Icon"
  1695. (string :tag "File or data")
  1696. (symbol :tag "Type")
  1697. (boolean :tag "Data?")
  1698. (repeat :tag "Extra image properties" :inline t symbol))
  1699. (list :tag "Display properties" sexp))))
  1700. (defgroup org-agenda-column-view nil
  1701. "Options concerning column view in the agenda."
  1702. :tag "Org Agenda Column View"
  1703. :group 'org-agenda)
  1704. (defcustom org-agenda-view-columns-initially nil
  1705. "When non-nil, switch to columns view right after creating the agenda."
  1706. :group 'org-agenda-column-view
  1707. :type 'boolean
  1708. :version "25.2"
  1709. :package-version '(Org . "9.0")
  1710. :safe #'booleanp)
  1711. (defcustom org-agenda-columns-show-summaries t
  1712. "Non-nil means show summaries for columns displayed in the agenda view."
  1713. :group 'org-agenda-column-view
  1714. :type 'boolean)
  1715. (defcustom org-agenda-columns-compute-summary-properties t
  1716. "Non-nil means recompute all summary properties before column view.
  1717. When column view in the agenda is listing properties that have a summary
  1718. operator, it can go to all relevant buffers and recompute the summaries
  1719. there. This can mean overhead for the agenda column view, but is necessary
  1720. to have thing up to date.
  1721. As a special case, a CLOCKSUM property also makes sure that the clock
  1722. computations are current."
  1723. :group 'org-agenda-column-view
  1724. :type 'boolean)
  1725. (defcustom org-agenda-columns-add-appointments-to-effort-sum nil
  1726. "Non-nil means the duration of an appointment will add to day effort.
  1727. The property to which appointment durations will be added is the one given
  1728. in the option `org-effort-property'. If an appointment does not have
  1729. an end time, `org-agenda-default-appointment-duration' will be used. If that
  1730. is not set, an appointment without end time will not contribute to the time
  1731. estimate."
  1732. :group 'org-agenda-column-view
  1733. :type 'boolean)
  1734. (defcustom org-agenda-auto-exclude-function nil
  1735. "A function called with a tag to decide if it is filtered on \
  1736. \\<org-agenda-mode-map>`\\[org-agenda-filter-by-tag] RET'.
  1737. The sole argument to the function, which is called once for each
  1738. possible tag, is a string giving the name of the tag. The
  1739. function should return either nil if the tag should be included
  1740. as normal, or \"-<TAG>\" to exclude the tag.
  1741. Note that for the purpose of tag filtering, only the lower-case version of
  1742. all tags will be considered, so that this function will only ever see
  1743. the lower-case version of all tags."
  1744. :group 'org-agenda
  1745. :type '(choice (const nil) (function)))
  1746. (defcustom org-agenda-bulk-custom-functions nil
  1747. "Alist of characters and custom functions for bulk actions.
  1748. For example, this value makes those two functions available:
  1749. \\='((?R set-category)
  1750. (?C bulk-cut))
  1751. With selected entries in an agenda buffer, `B R' will call
  1752. the custom function `set-category' on the selected entries.
  1753. Note that functions in this alist don't need to be quoted."
  1754. :type '(alist :key-type character :value-type (group function))
  1755. :version "24.1"
  1756. :group 'org-agenda)
  1757. (defmacro org-agenda-with-point-at-orig-entry (string &rest body)
  1758. "Execute BODY with point at location given by `org-hd-marker' property.
  1759. If STRING is non-nil, the text property will be fetched from position 0
  1760. in that string. If STRING is nil, it will be fetched from the beginning
  1761. of the current line."
  1762. (org-with-gensyms (marker)
  1763. `(let ((,marker (get-text-property (if ,string 0 (point-at-bol))
  1764. 'org-hd-marker ,string)))
  1765. (with-current-buffer (marker-buffer ,marker)
  1766. (save-excursion
  1767. (goto-char ,marker)
  1768. ,@body)))))
  1769. (def-edebug-spec org-agenda-with-point-at-orig-entry (form body))
  1770. (defun org-add-agenda-custom-command (entry)
  1771. "Replace or add a command in `org-agenda-custom-commands'.
  1772. This is mostly for hacking and trying a new command - once the command
  1773. works you probably want to add it to `org-agenda-custom-commands' for good."
  1774. (let ((ass (assoc (car entry) org-agenda-custom-commands)))
  1775. (if ass
  1776. (setcdr ass (cdr entry))
  1777. (push entry org-agenda-custom-commands))))
  1778. ;;; Define the org-agenda-mode
  1779. (defvar org-agenda-mode-map (make-sparse-keymap)
  1780. "Keymap for `org-agenda-mode'.")
  1781. (defvaralias 'org-agenda-keymap 'org-agenda-mode-map)
  1782. (defvar org-agenda-menu) ; defined later in this file.
  1783. (defvar org-agenda-restrict nil) ; defined later in this file.
  1784. (defvar org-agenda-follow-mode nil)
  1785. (defvar org-agenda-entry-text-mode nil)
  1786. (defvar org-agenda-clockreport-mode nil)
  1787. (defvar org-agenda-show-log nil)
  1788. (defvar org-agenda-redo-command nil)
  1789. (defvar org-agenda-query-string nil)
  1790. (defvar org-agenda-mode-hook nil
  1791. "Hook run after `org-agenda-mode' is turned on.
  1792. The buffer is still writable when this hook is called.")
  1793. (defvar org-agenda-type nil)
  1794. (defvar org-agenda-force-single-file nil)
  1795. (defvar org-agenda-bulk-marked-entries nil
  1796. "List of markers that refer to marked entries in the agenda.")
  1797. (defvar org-agenda-current-date nil
  1798. "Active date when building the agenda.")
  1799. ;;; Multiple agenda buffers support
  1800. (defcustom org-agenda-sticky nil
  1801. "Non-nil means agenda q key will bury agenda buffers.
  1802. Agenda commands will then show existing buffer instead of generating new ones.
  1803. When nil, `q' will kill the single agenda buffer."
  1804. :group 'org-agenda
  1805. :version "24.3"
  1806. :type 'boolean)
  1807. ;;;###autoload
  1808. (defun org-toggle-sticky-agenda (&optional arg)
  1809. "Toggle `org-agenda-sticky'."
  1810. (interactive "P")
  1811. (let ((new-value (if arg
  1812. (> (prefix-numeric-value arg) 0)
  1813. (not org-agenda-sticky))))
  1814. (if (equal new-value org-agenda-sticky)
  1815. (and (called-interactively-p 'interactive)
  1816. (message "Sticky agenda was already %s"
  1817. (if org-agenda-sticky "enabled" "disabled")))
  1818. (setq org-agenda-sticky new-value)
  1819. (org-agenda-kill-all-agenda-buffers)
  1820. (and (called-interactively-p 'interactive)
  1821. (message "Sticky agenda %s"
  1822. (if org-agenda-sticky "enabled" "disabled"))))))
  1823. (defvar org-agenda-buffer nil
  1824. "Agenda buffer currently being generated.")
  1825. (defvar org-agenda-last-prefix-arg nil)
  1826. (defvar org-agenda-this-buffer-name nil)
  1827. (defvar org-agenda-doing-sticky-redo nil)
  1828. (defvar org-agenda-this-buffer-is-sticky nil)
  1829. (defvar org-agenda-last-indirect-buffer nil
  1830. "Last buffer loaded by `org-agenda-tree-to-indirect-buffer'.")
  1831. (defconst org-agenda-local-vars
  1832. '(org-agenda-this-buffer-name
  1833. org-agenda-undo-list
  1834. org-agenda-pending-undo-list
  1835. org-agenda-follow-mode
  1836. org-agenda-entry-text-mode
  1837. org-agenda-clockreport-mode
  1838. org-agenda-show-log
  1839. org-agenda-redo-command
  1840. org-agenda-query-string
  1841. org-agenda-type
  1842. org-agenda-bulk-marked-entries
  1843. org-agenda-undo-has-started-in
  1844. org-agenda-info
  1845. org-agenda-pre-window-conf
  1846. org-agenda-columns-active
  1847. org-agenda-tag-filter
  1848. org-agenda-category-filter
  1849. org-agenda-top-headline-filter
  1850. org-agenda-regexp-filter
  1851. org-agenda-effort-filter
  1852. org-agenda-markers
  1853. org-agenda-last-search-view-search-was-boolean
  1854. org-agenda-last-indirect-buffer
  1855. org-agenda-filtered-by-category
  1856. org-agenda-filter-form
  1857. org-agenda-cycle-counter
  1858. org-agenda-last-prefix-arg)
  1859. "Variables that must be local in agenda buffers to allow multiple buffers.")
  1860. (defun org-agenda-mode ()
  1861. "Mode for time-sorted view on action items in Org files.
  1862. The following commands are available:
  1863. \\{org-agenda-mode-map}"
  1864. (interactive)
  1865. (cond (org-agenda-doing-sticky-redo
  1866. ;; Refreshing sticky agenda-buffer
  1867. ;;
  1868. ;; Preserve the value of `org-agenda-local-vars' variables,
  1869. ;; while letting `kill-all-local-variables' kill the rest
  1870. (let ((save (buffer-local-variables)))
  1871. (kill-all-local-variables)
  1872. (mapc 'make-local-variable org-agenda-local-vars)
  1873. (dolist (elem save)
  1874. (let ((var (car elem))
  1875. (val (cdr elem)))
  1876. (when (and val
  1877. (member var org-agenda-local-vars))
  1878. (set var val)))))
  1879. (setq-local org-agenda-this-buffer-is-sticky t))
  1880. (org-agenda-sticky
  1881. ;; Creating a sticky Agenda buffer for the first time
  1882. (kill-all-local-variables)
  1883. (mapc 'make-local-variable org-agenda-local-vars)
  1884. (setq-local org-agenda-this-buffer-is-sticky t))
  1885. (t
  1886. ;; Creating a non-sticky agenda buffer
  1887. (kill-all-local-variables)
  1888. (setq-local org-agenda-this-buffer-is-sticky nil)))
  1889. (setq org-agenda-undo-list nil
  1890. org-agenda-pending-undo-list nil
  1891. org-agenda-bulk-marked-entries nil)
  1892. (setq major-mode 'org-agenda-mode)
  1893. ;; Keep global-font-lock-mode from turning on font-lock-mode
  1894. (setq-local font-lock-global-modes (list 'not major-mode))
  1895. (setq mode-name "Org-Agenda")
  1896. (setq indent-tabs-mode nil)
  1897. (use-local-map org-agenda-mode-map)
  1898. (easy-menu-add org-agenda-menu)
  1899. (if org-startup-truncated (setq truncate-lines t))
  1900. (setq-local line-move-visual nil)
  1901. (add-hook 'post-command-hook 'org-agenda-update-agenda-type nil 'local)
  1902. (add-hook 'pre-command-hook 'org-unhighlight nil 'local)
  1903. ;; Make sure properties are removed when copying text
  1904. (add-hook 'filter-buffer-substring-functions
  1905. (lambda (fun start end delete)
  1906. (substring-no-properties (funcall fun start end delete)))
  1907. nil t)
  1908. (unless org-agenda-keep-modes
  1909. (setq org-agenda-follow-mode org-agenda-start-with-follow-mode
  1910. org-agenda-entry-text-mode org-agenda-start-with-entry-text-mode))
  1911. (setq org-agenda-show-log org-agenda-start-with-log-mode)
  1912. (setq org-agenda-clockreport-mode org-agenda-start-with-clockreport-mode)
  1913. (add-to-invisibility-spec '(org-filtered))
  1914. (add-to-invisibility-spec '(org-link))
  1915. (easy-menu-change
  1916. '("Agenda") "Agenda Files"
  1917. (append
  1918. (list
  1919. (vector
  1920. (if (get 'org-agenda-files 'org-restrict)
  1921. "Restricted to single file"
  1922. "Edit File List")
  1923. '(org-edit-agenda-file-list)
  1924. (not (get 'org-agenda-files 'org-restrict)))
  1925. "--")
  1926. (mapcar 'org-file-menu-entry (org-agenda-files))))
  1927. (org-agenda-set-mode-name)
  1928. (apply
  1929. (if (fboundp 'run-mode-hooks) 'run-mode-hooks 'run-hooks)
  1930. (list 'org-agenda-mode-hook)))
  1931. (substitute-key-definition 'undo 'org-agenda-undo
  1932. org-agenda-mode-map global-map)
  1933. (org-defkey org-agenda-mode-map "\C-i" 'org-agenda-goto)
  1934. (org-defkey org-agenda-mode-map [(tab)] 'org-agenda-goto)
  1935. (org-defkey org-agenda-mode-map "\C-m" 'org-agenda-switch-to)
  1936. (org-defkey org-agenda-mode-map "\C-k" 'org-agenda-kill)
  1937. (org-defkey org-agenda-mode-map "\C-c\C-w" 'org-agenda-refile)
  1938. (org-defkey org-agenda-mode-map [(meta down)] 'org-agenda-drag-line-forward)
  1939. (org-defkey org-agenda-mode-map [(meta up)] 'org-agenda-drag-line-backward)
  1940. (org-defkey org-agenda-mode-map "m" 'org-agenda-bulk-mark)
  1941. (org-defkey org-agenda-mode-map "\M-m" 'org-agenda-bulk-toggle)
  1942. (org-defkey org-agenda-mode-map "*" 'org-agenda-bulk-mark-all)
  1943. (org-defkey org-agenda-mode-map "\M-*" 'org-agenda-bulk-toggle-all)
  1944. (org-defkey org-agenda-mode-map "#" 'org-agenda-dim-blocked-tasks)
  1945. (org-defkey org-agenda-mode-map "%" 'org-agenda-bulk-mark-regexp)
  1946. (org-defkey org-agenda-mode-map "u" 'org-agenda-bulk-unmark)
  1947. (org-defkey org-agenda-mode-map "U" 'org-agenda-bulk-unmark-all)
  1948. (org-defkey org-agenda-mode-map "B" 'org-agenda-bulk-action)
  1949. (org-defkey org-agenda-mode-map "k" 'org-agenda-capture)
  1950. (org-defkey org-agenda-mode-map "A" 'org-agenda-append-agenda)
  1951. (org-defkey org-agenda-mode-map "\C-c\C-x!" 'org-reload)
  1952. (org-defkey org-agenda-mode-map "\C-c\C-x\C-a" 'org-agenda-archive-default)
  1953. (org-defkey org-agenda-mode-map "\C-c\C-xa" 'org-agenda-toggle-archive-tag)
  1954. (org-defkey org-agenda-mode-map "\C-c\C-xA" 'org-agenda-archive-to-archive-sibling)
  1955. (org-defkey org-agenda-mode-map "\C-c\C-x\C-s" 'org-agenda-archive)
  1956. (org-defkey org-agenda-mode-map "\C-c$" 'org-agenda-archive)
  1957. (org-defkey org-agenda-mode-map "$" 'org-agenda-archive)
  1958. (org-defkey org-agenda-mode-map "\C-c\C-o" 'org-agenda-open-link)
  1959. (org-defkey org-agenda-mode-map " " 'org-agenda-show-and-scroll-up)
  1960. (org-defkey org-agenda-mode-map [backspace] 'org-agenda-show-scroll-down)
  1961. (org-defkey org-agenda-mode-map "\d" 'org-agenda-show-scroll-down)
  1962. (org-defkey org-agenda-mode-map [(control shift right)] 'org-agenda-todo-nextset)
  1963. (org-defkey org-agenda-mode-map [(control shift left)] 'org-agenda-todo-previousset)
  1964. (org-defkey org-agenda-mode-map "\C-c\C-xb" 'org-agenda-tree-to-indirect-buffer)
  1965. (org-defkey org-agenda-mode-map "o" 'delete-other-windows)
  1966. (org-defkey org-agenda-mode-map "L" 'org-agenda-recenter)
  1967. (org-defkey org-agenda-mode-map "\C-c\C-t" 'org-agenda-todo)
  1968. (org-defkey org-agenda-mode-map "t" 'org-agenda-todo)
  1969. (org-defkey org-agenda-mode-map "a" 'org-agenda-archive-default-with-confirmation)
  1970. (org-defkey org-agenda-mode-map ":" 'org-agenda-set-tags)
  1971. (org-defkey org-agenda-mode-map "\C-c\C-q" 'org-agenda-set-tags)
  1972. (org-defkey org-agenda-mode-map "." 'org-agenda-goto-today)
  1973. (org-defkey org-agenda-mode-map "j" 'org-agenda-goto-date)
  1974. (org-defkey org-agenda-mode-map "d" 'org-agenda-day-view)
  1975. (org-defkey org-agenda-mode-map "w" 'org-agenda-week-view)
  1976. (org-defkey org-agenda-mode-map "y" 'org-agenda-year-view)
  1977. (org-defkey org-agenda-mode-map "\C-c\C-z" 'org-agenda-add-note)
  1978. (org-defkey org-agenda-mode-map "z" 'org-agenda-add-note)
  1979. (org-defkey org-agenda-mode-map [(shift right)] 'org-agenda-do-date-later)
  1980. (org-defkey org-agenda-mode-map [(shift left)] 'org-agenda-do-date-earlier)
  1981. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (right)] 'org-agenda-do-date-later)
  1982. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (left)] 'org-agenda-do-date-earlier)
  1983. (org-defkey org-agenda-mode-map ">" 'org-agenda-date-prompt)
  1984. (org-defkey org-agenda-mode-map "\C-c\C-s" 'org-agenda-schedule)
  1985. (org-defkey org-agenda-mode-map "\C-c\C-d" 'org-agenda-deadline)
  1986. (let ((l '(1 2 3 4 5 6 7 8 9 0)))
  1987. (while l (org-defkey org-agenda-mode-map
  1988. (int-to-string (pop l)) 'digit-argument)))
  1989. (org-defkey org-agenda-mode-map "F" 'org-agenda-follow-mode)
  1990. (org-defkey org-agenda-mode-map "R" 'org-agenda-clockreport-mode)
  1991. (org-defkey org-agenda-mode-map "E" 'org-agenda-entry-text-mode)
  1992. (org-defkey org-agenda-mode-map "l" 'org-agenda-log-mode)
  1993. (org-defkey org-agenda-mode-map "v" 'org-agenda-view-mode-dispatch)
  1994. (org-defkey org-agenda-mode-map "D" 'org-agenda-toggle-diary)
  1995. (org-defkey org-agenda-mode-map "!" 'org-agenda-toggle-deadlines)
  1996. (org-defkey org-agenda-mode-map "G" 'org-agenda-toggle-time-grid)
  1997. (org-defkey org-agenda-mode-map "r" 'org-agenda-redo)
  1998. (org-defkey org-agenda-mode-map "g" (lambda () (interactive) (org-agenda-redo t)))
  1999. (org-defkey org-agenda-mode-map "e" 'org-agenda-set-effort)
  2000. (org-defkey org-agenda-mode-map "\C-c\C-xe" 'org-agenda-set-effort)
  2001. (org-defkey org-agenda-mode-map "\C-c\C-x\C-e"
  2002. 'org-clock-modify-effort-estimate)
  2003. (org-defkey org-agenda-mode-map "\C-c\C-xp" 'org-agenda-set-property)
  2004. (org-defkey org-agenda-mode-map "q" 'org-agenda-quit)
  2005. (org-defkey org-agenda-mode-map "Q" 'org-agenda-Quit)
  2006. (org-defkey org-agenda-mode-map "x" 'org-agenda-exit)
  2007. (org-defkey org-agenda-mode-map "\C-x\C-w" 'org-agenda-write)
  2008. (org-defkey org-agenda-mode-map "\C-x\C-s" 'org-save-all-org-buffers)
  2009. (org-defkey org-agenda-mode-map "s" 'org-save-all-org-buffers)
  2010. (org-defkey org-agenda-mode-map "T" 'org-agenda-show-tags)
  2011. (org-defkey org-agenda-mode-map "n" 'org-agenda-next-line)
  2012. (org-defkey org-agenda-mode-map "p" 'org-agenda-previous-line)
  2013. (org-defkey org-agenda-mode-map "N" 'org-agenda-next-item)
  2014. (org-defkey org-agenda-mode-map "P" 'org-agenda-previous-item)
  2015. (substitute-key-definition 'next-line 'org-agenda-next-line
  2016. org-agenda-mode-map global-map)
  2017. (substitute-key-definition 'previous-line 'org-agenda-previous-line
  2018. org-agenda-mode-map global-map)
  2019. (org-defkey org-agenda-mode-map "\C-c\C-a" 'org-attach)
  2020. (org-defkey org-agenda-mode-map "\C-c\C-n" 'org-agenda-next-date-line)
  2021. (org-defkey org-agenda-mode-map "\C-c\C-p" 'org-agenda-previous-date-line)
  2022. (org-defkey org-agenda-mode-map "\C-c," 'org-agenda-priority)
  2023. (org-defkey org-agenda-mode-map "," 'org-agenda-priority)
  2024. (org-defkey org-agenda-mode-map "i" 'org-agenda-diary-entry)
  2025. (org-defkey org-agenda-mode-map "c" 'org-agenda-goto-calendar)
  2026. (org-defkey org-agenda-mode-map "C" 'org-agenda-convert-date)
  2027. (org-defkey org-agenda-mode-map "M" 'org-agenda-phases-of-moon)
  2028. (org-defkey org-agenda-mode-map "S" 'org-agenda-sunrise-sunset)
  2029. (org-defkey org-agenda-mode-map "h" 'org-agenda-holidays)
  2030. (org-defkey org-agenda-mode-map "H" 'org-agenda-holidays)
  2031. (org-defkey org-agenda-mode-map "\C-c\C-x\C-i" 'org-agenda-clock-in)
  2032. (org-defkey org-agenda-mode-map "I" 'org-agenda-clock-in)
  2033. (org-defkey org-agenda-mode-map "\C-c\C-x\C-o" 'org-agenda-clock-out)
  2034. (org-defkey org-agenda-mode-map "O" 'org-agenda-clock-out)
  2035. (org-defkey org-agenda-mode-map "\C-c\C-x\C-x" 'org-agenda-clock-cancel)
  2036. (org-defkey org-agenda-mode-map "X" 'org-agenda-clock-cancel)
  2037. (org-defkey org-agenda-mode-map "\C-c\C-x\C-j" 'org-clock-goto)
  2038. (org-defkey org-agenda-mode-map "J" 'org-agenda-clock-goto)
  2039. (org-defkey org-agenda-mode-map "+" 'org-agenda-priority-up)
  2040. (org-defkey org-agenda-mode-map "-" 'org-agenda-priority-down)
  2041. (org-defkey org-agenda-mode-map [(shift up)] 'org-agenda-priority-up)
  2042. (org-defkey org-agenda-mode-map [(shift down)] 'org-agenda-priority-down)
  2043. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (up)] 'org-agenda-priority-up)
  2044. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (down)] 'org-agenda-priority-down)
  2045. (org-defkey org-agenda-mode-map "f" 'org-agenda-later)
  2046. (org-defkey org-agenda-mode-map "b" 'org-agenda-earlier)
  2047. (org-defkey org-agenda-mode-map "\C-c\C-x\C-c" 'org-agenda-columns)
  2048. (org-defkey org-agenda-mode-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
  2049. (org-defkey org-agenda-mode-map "[" 'org-agenda-manipulate-query-add)
  2050. (org-defkey org-agenda-mode-map "]" 'org-agenda-manipulate-query-subtract)
  2051. (org-defkey org-agenda-mode-map "{" 'org-agenda-manipulate-query-add-re)
  2052. (org-defkey org-agenda-mode-map "}" 'org-agenda-manipulate-query-subtract-re)
  2053. (org-defkey org-agenda-mode-map "/" 'org-agenda-filter-by-tag)
  2054. (org-defkey org-agenda-mode-map "_" 'org-agenda-filter-by-effort)
  2055. (org-defkey org-agenda-mode-map "=" 'org-agenda-filter-by-regexp)
  2056. (org-defkey org-agenda-mode-map "|" 'org-agenda-filter-remove-all)
  2057. (org-defkey org-agenda-mode-map "~" 'org-agenda-limit-interactively)
  2058. (org-defkey org-agenda-mode-map "<" 'org-agenda-filter-by-category)
  2059. (org-defkey org-agenda-mode-map "^" 'org-agenda-filter-by-top-headline)
  2060. (org-defkey org-agenda-mode-map ";" 'org-timer-set-timer)
  2061. (define-key org-agenda-mode-map "?" 'org-agenda-show-the-flagging-note)
  2062. (org-defkey org-agenda-mode-map "\C-c\C-x\C-mg" 'org-mobile-pull)
  2063. (org-defkey org-agenda-mode-map "\C-c\C-x\C-mp" 'org-mobile-push)
  2064. (org-defkey org-agenda-mode-map [mouse-2] 'org-agenda-goto-mouse)
  2065. (org-defkey org-agenda-mode-map [mouse-3] 'org-agenda-show-mouse)
  2066. (define-key org-agenda-mode-map [remap forward-paragraph] 'org-agenda-forward-block)
  2067. (define-key org-agenda-mode-map [remap backward-paragraph] 'org-agenda-backward-block)
  2068. (when org-agenda-mouse-1-follows-link
  2069. (org-defkey org-agenda-mode-map [follow-link] 'mouse-face))
  2070. (easy-menu-define org-agenda-menu org-agenda-mode-map "Agenda menu"
  2071. '("Agenda"
  2072. ("Agenda Files")
  2073. "--"
  2074. ("Agenda Dates"
  2075. ["Goto Today" org-agenda-goto-today (org-agenda-check-type nil 'agenda 'timeline)]
  2076. ["Next Dates" org-agenda-later (org-agenda-check-type nil 'agenda)]
  2077. ["Previous Dates" org-agenda-earlier (org-agenda-check-type nil 'agenda)]
  2078. ["Jump to date" org-agenda-goto-date (org-agenda-check-type nil 'agenda)])
  2079. "--"
  2080. ("View"
  2081. ["Day View" org-agenda-day-view
  2082. :active (org-agenda-check-type nil 'agenda)
  2083. :style radio :selected (eq org-agenda-current-span 'day)
  2084. :keys "v d (or just d)"]
  2085. ["Week View" org-agenda-week-view
  2086. :active (org-agenda-check-type nil 'agenda)
  2087. :style radio :selected (eq org-agenda-current-span 'week)
  2088. :keys "v w"]
  2089. ["Fortnight View" org-agenda-fortnight-view
  2090. :active (org-agenda-check-type nil 'agenda)
  2091. :style radio :selected (eq org-agenda-current-span 'fortnight)
  2092. :keys "v f"]
  2093. ["Month View" org-agenda-month-view
  2094. :active (org-agenda-check-type nil 'agenda)
  2095. :style radio :selected (eq org-agenda-current-span 'month)
  2096. :keys "v m"]
  2097. ["Year View" org-agenda-year-view
  2098. :active (org-agenda-check-type nil 'agenda)
  2099. :style radio :selected (eq org-agenda-current-span 'year)
  2100. :keys "v y"]
  2101. "--"
  2102. ["Include Diary" org-agenda-toggle-diary
  2103. :style toggle :selected org-agenda-include-diary
  2104. :active (org-agenda-check-type nil 'agenda)]
  2105. ["Include Deadlines" org-agenda-toggle-deadlines
  2106. :style toggle :selected org-agenda-include-deadlines
  2107. :active (org-agenda-check-type nil 'agenda)]
  2108. ["Use Time Grid" org-agenda-toggle-time-grid
  2109. :style toggle :selected org-agenda-use-time-grid
  2110. :active (org-agenda-check-type nil 'agenda)]
  2111. "--"
  2112. ["Show clock report" org-agenda-clockreport-mode
  2113. :style toggle :selected org-agenda-clockreport-mode
  2114. :active (org-agenda-check-type nil 'agenda)]
  2115. ["Show some entry text" org-agenda-entry-text-mode
  2116. :style toggle :selected org-agenda-entry-text-mode
  2117. :active t]
  2118. "--"
  2119. ["Show Logbook entries" org-agenda-log-mode
  2120. :style toggle :selected org-agenda-show-log
  2121. :active (org-agenda-check-type nil 'agenda 'timeline)
  2122. :keys "v l (or just l)"]
  2123. ["Include archived trees" org-agenda-archives-mode
  2124. :style toggle :selected org-agenda-archives-mode :active t
  2125. :keys "v a"]
  2126. ["Include archive files" (org-agenda-archives-mode t)
  2127. :style toggle :selected (eq org-agenda-archives-mode t) :active t
  2128. :keys "v A"]
  2129. "--"
  2130. ["Remove Restriction" org-agenda-remove-restriction-lock org-agenda-restrict])
  2131. ["Write view to file" org-agenda-write t]
  2132. ["Rebuild buffer" org-agenda-redo t]
  2133. ["Save all Org buffers" org-save-all-org-buffers t]
  2134. "--"
  2135. ["Show original entry" org-agenda-show t]
  2136. ["Go To (other window)" org-agenda-goto t]
  2137. ["Go To (this window)" org-agenda-switch-to t]
  2138. ["Capture with cursor date" org-agenda-capture t]
  2139. ["Follow Mode" org-agenda-follow-mode
  2140. :style toggle :selected org-agenda-follow-mode :active t]
  2141. ;; ["Tree to indirect frame" org-agenda-tree-to-indirect-buffer t]
  2142. "--"
  2143. ("TODO"
  2144. ["Cycle TODO" org-agenda-todo t]
  2145. ["Next TODO set" org-agenda-todo-nextset t]
  2146. ["Previous TODO set" org-agenda-todo-previousset t]
  2147. ["Add note" org-agenda-add-note t])
  2148. ("Archive/Refile/Delete"
  2149. ["Archive default" org-agenda-archive-default t]
  2150. ["Archive default" org-agenda-archive-default-with-confirmation t]
  2151. ["Toggle ARCHIVE tag" org-agenda-toggle-archive-tag t]
  2152. ["Move to archive sibling" org-agenda-archive-to-archive-sibling t]
  2153. ["Archive subtree" org-agenda-archive t]
  2154. "--"
  2155. ["Refile" org-agenda-refile t]
  2156. "--"
  2157. ["Delete subtree" org-agenda-kill t])
  2158. ("Bulk action"
  2159. ["Mark entry" org-agenda-bulk-mark t]
  2160. ["Mark all" org-agenda-bulk-mark-all t]
  2161. ["Unmark entry" org-agenda-bulk-unmark t]
  2162. ["Unmark all" org-agenda-bulk-unmark-all :active t :keys "U"]
  2163. ["Toggle mark" org-agenda-bulk-toggle t]
  2164. ["Toggle all" org-agenda-bulk-toggle-all t]
  2165. ["Mark regexp" org-agenda-bulk-mark-regexp t])
  2166. ["Act on all marked" org-agenda-bulk-action t]
  2167. "--"
  2168. ("Tags and Properties"
  2169. ["Show all Tags" org-agenda-show-tags t]
  2170. ["Set Tags current line" org-agenda-set-tags (not (org-region-active-p))]
  2171. ["Change tag in region" org-agenda-set-tags (org-region-active-p)]
  2172. "--"
  2173. ["Column View" org-columns t])
  2174. ("Deadline/Schedule"
  2175. ["Schedule" org-agenda-schedule t]
  2176. ["Set Deadline" org-agenda-deadline t]
  2177. "--"
  2178. ["Change Date +1 day" org-agenda-date-later (org-agenda-check-type nil 'agenda 'timeline)]
  2179. ["Change Date -1 day" org-agenda-date-earlier (org-agenda-check-type nil 'agenda 'timeline)]
  2180. ["Change Time +1 hour" org-agenda-do-date-later :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u S-right"]
  2181. ["Change Time -1 hour" org-agenda-do-date-earlier :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u S-left"]
  2182. ["Change Time + min" org-agenda-date-later :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u C-u S-right"]
  2183. ["Change Time - min" org-agenda-date-earlier :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u C-u S-left"]
  2184. ["Change Date to ..." org-agenda-date-prompt (org-agenda-check-type nil 'agenda 'timeline)])
  2185. ("Clock and Effort"
  2186. ["Clock in" org-agenda-clock-in t]
  2187. ["Clock out" org-agenda-clock-out t]
  2188. ["Clock cancel" org-agenda-clock-cancel t]
  2189. ["Goto running clock" org-clock-goto t]
  2190. "--"
  2191. ["Set Effort" org-agenda-set-effort t]
  2192. ["Change clocked effort" org-clock-modify-effort-estimate
  2193. (org-clock-is-active)])
  2194. ("Priority"
  2195. ["Set Priority" org-agenda-priority t]
  2196. ["Increase Priority" org-agenda-priority-up t]
  2197. ["Decrease Priority" org-agenda-priority-down t]
  2198. ["Show Priority" org-show-priority t])
  2199. ("Calendar/Diary"
  2200. ["New Diary Entry" org-agenda-diary-entry (org-agenda-check-type nil 'agenda 'timeline)]
  2201. ["Goto Calendar" org-agenda-goto-calendar (org-agenda-check-type nil 'agenda 'timeline)]
  2202. ["Phases of the Moon" org-agenda-phases-of-moon (org-agenda-check-type nil 'agenda 'timeline)]
  2203. ["Sunrise/Sunset" org-agenda-sunrise-sunset (org-agenda-check-type nil 'agenda 'timeline)]
  2204. ["Holidays" org-agenda-holidays (org-agenda-check-type nil 'agenda 'timeline)]
  2205. ["Convert" org-agenda-convert-date (org-agenda-check-type nil 'agenda 'timeline)]
  2206. "--"
  2207. ["Create iCalendar File" org-icalendar-combine-agenda-files t])
  2208. "--"
  2209. ["Undo Remote Editing" org-agenda-undo org-agenda-undo-list]
  2210. "--"
  2211. ("MobileOrg"
  2212. ["Push Files and Views" org-mobile-push t]
  2213. ["Get Captured and Flagged" org-mobile-pull t]
  2214. ["Find FLAGGED Tasks" (org-agenda nil "?") :active t :keys "C-c a ?"]
  2215. ["Show note / unflag" org-agenda-show-the-flagging-note t]
  2216. "--"
  2217. ["Setup" (progn (require 'org-mobile) (customize-group 'org-mobile)) t])
  2218. "--"
  2219. ["Quit" org-agenda-quit t]
  2220. ["Exit and Release Buffers" org-agenda-exit t]
  2221. ))
  2222. ;;; Agenda undo
  2223. (defvar org-agenda-allow-remote-undo t
  2224. "Non-nil means allow remote undo from the agenda buffer.")
  2225. (defvar org-agenda-undo-has-started-in nil
  2226. "Buffers that have already seen `undo-start' in the current undo sequence.")
  2227. (defun org-agenda-undo ()
  2228. "Undo a remote editing step in the agenda.
  2229. This undoes changes both in the agenda buffer and in the remote buffer
  2230. that have been changed along."
  2231. (interactive)
  2232. (or org-agenda-allow-remote-undo
  2233. (user-error "Check the variable `org-agenda-allow-remote-undo' to activate remote undo"))
  2234. (if (not (eq this-command last-command))
  2235. (setq org-agenda-undo-has-started-in nil
  2236. org-agenda-pending-undo-list org-agenda-undo-list))
  2237. (if (not org-agenda-pending-undo-list)
  2238. (user-error "No further undo information"))
  2239. (let* ((entry (pop org-agenda-pending-undo-list))
  2240. buf line cmd rembuf)
  2241. (setq cmd (pop entry) line (pop entry))
  2242. (setq rembuf (nth 2 entry))
  2243. (org-with-remote-undo rembuf
  2244. (while (bufferp (setq buf (pop entry)))
  2245. (if (pop entry)
  2246. (with-current-buffer buf
  2247. (let ((last-undo-buffer buf)
  2248. (inhibit-read-only t))
  2249. (unless (memq buf org-agenda-undo-has-started-in)
  2250. (push buf org-agenda-undo-has-started-in)
  2251. (make-local-variable 'pending-undo-list)
  2252. (undo-start))
  2253. (while (and pending-undo-list
  2254. (listp pending-undo-list)
  2255. (not (car pending-undo-list)))
  2256. (pop pending-undo-list))
  2257. (undo-more 1))))))
  2258. (org-goto-line line)
  2259. (message "`%s' undone (buffer %s)" cmd (buffer-name rembuf))))
  2260. (defun org-verify-change-for-undo (l1 l2)
  2261. "Verify that a real change occurred between the undo lists L1 and L2."
  2262. (while (and l1 (listp l1) (null (car l1))) (pop l1))
  2263. (while (and l2 (listp l2) (null (car l2))) (pop l2))
  2264. (not (eq l1 l2)))
  2265. ;;; Agenda dispatch
  2266. (defvar org-agenda-restrict-begin (make-marker))
  2267. (defvar org-agenda-restrict-end (make-marker))
  2268. (defvar org-agenda-last-dispatch-buffer nil)
  2269. (defvar org-agenda-overriding-restriction nil)
  2270. (defcustom org-agenda-custom-commands-contexts nil
  2271. "Alist of custom agenda keys and contextual rules.
  2272. For example, if you have a custom agenda command \"p\" and you
  2273. want this command to be accessible only from plain text files,
  2274. use this:
  2275. \\='((\"p\" ((in-file . \"\\\\.txt\\\\'\"))))
  2276. Here are the available contexts definitions:
  2277. in-file: command displayed only in matching files
  2278. in-mode: command displayed only in matching modes
  2279. not-in-file: command not displayed in matching files
  2280. not-in-mode: command not displayed in matching modes
  2281. in-buffer: command displayed only in matching buffers
  2282. not-in-buffer: command not displayed in matching buffers
  2283. [function]: a custom function taking no argument
  2284. If you define several checks, the agenda command will be
  2285. accessible if there is at least one valid check.
  2286. You can also bind a key to another agenda custom command
  2287. depending on contextual rules.
  2288. \\='((\"p\" \"q\" ((in-file . \"\\\\.txt\\\\'\"))))
  2289. Here it means: in .txt files, use \"p\" as the key for the
  2290. agenda command otherwise associated with \"q\". (The command
  2291. originally associated with \"q\" is not displayed to avoid
  2292. duplicates.)"
  2293. :version "24.3"
  2294. :group 'org-agenda-custom-commands
  2295. :type '(repeat (list :tag "Rule"
  2296. (string :tag " Agenda key")
  2297. (string :tag "Replace by command")
  2298. (repeat :tag "Available when"
  2299. (choice
  2300. (cons :tag "Condition"
  2301. (choice
  2302. (const :tag "In file" in-file)
  2303. (const :tag "Not in file" not-in-file)
  2304. (const :tag "In buffer" in-buffer)
  2305. (const :tag "Not in buffer" not-in-buffer)
  2306. (const :tag "In mode" in-mode)
  2307. (const :tag "Not in mode" not-in-mode))
  2308. (regexp))
  2309. (function :tag "Custom function"))))))
  2310. (defcustom org-agenda-max-entries nil
  2311. "Maximum number of entries to display in an agenda.
  2312. This can be nil (no limit) or an integer or an alist of agenda
  2313. types with an associated number of entries to display in this
  2314. type."
  2315. :version "24.4"
  2316. :package-version '(Org . "8.0")
  2317. :group 'org-agenda-custom-commands
  2318. :type '(choice (symbol :tag "No limit" nil)
  2319. (integer :tag "Max number of entries")
  2320. (repeat
  2321. (cons (choice :tag "Agenda type"
  2322. (const agenda)
  2323. (const todo)
  2324. (const tags)
  2325. (const search)
  2326. (const timeline))
  2327. (integer :tag "Max number of entries")))))
  2328. (defcustom org-agenda-max-todos nil
  2329. "Maximum number of TODOs to display in an agenda.
  2330. This can be nil (no limit) or an integer or an alist of agenda
  2331. types with an associated number of entries to display in this
  2332. type."
  2333. :version "24.4"
  2334. :package-version '(Org . "8.0")
  2335. :group 'org-agenda-custom-commands
  2336. :type '(choice (symbol :tag "No limit" nil)
  2337. (integer :tag "Max number of TODOs")
  2338. (repeat
  2339. (cons (choice :tag "Agenda type"
  2340. (const agenda)
  2341. (const todo)
  2342. (const tags)
  2343. (const search)
  2344. (const timeline))
  2345. (integer :tag "Max number of TODOs")))))
  2346. (defcustom org-agenda-max-tags nil
  2347. "Maximum number of tagged entries to display in an agenda.
  2348. This can be nil (no limit) or an integer or an alist of agenda
  2349. types with an associated number of entries to display in this
  2350. type."
  2351. :version "24.4"
  2352. :package-version '(Org . "8.0")
  2353. :group 'org-agenda-custom-commands
  2354. :type '(choice (symbol :tag "No limit" nil)
  2355. (integer :tag "Max number of tagged entries")
  2356. (repeat
  2357. (cons (choice :tag "Agenda type"
  2358. (const agenda)
  2359. (const todo)
  2360. (const tags)
  2361. (const search)
  2362. (const timeline))
  2363. (integer :tag "Max number of tagged entries")))))
  2364. (defcustom org-agenda-max-effort nil
  2365. "Maximum cumulated effort duration for the agenda.
  2366. This can be nil (no limit) or a number of minutes (as an integer)
  2367. or an alist of agenda types with an associated number of minutes
  2368. to limit entries to in this type."
  2369. :version "24.4"
  2370. :package-version '(Org . "8.0")
  2371. :group 'org-agenda-custom-commands
  2372. :type '(choice (symbol :tag "No limit" nil)
  2373. (integer :tag "Max number of minutes")
  2374. (repeat
  2375. (cons (choice :tag "Agenda type"
  2376. (const agenda)
  2377. (const todo)
  2378. (const tags)
  2379. (const search)
  2380. (const timeline))
  2381. (integer :tag "Max number of minutes")))))
  2382. (defvar org-agenda-keep-restricted-file-list nil)
  2383. (defvar org-keys nil)
  2384. (defvar org-match nil)
  2385. ;;;###autoload
  2386. (defun org-agenda (&optional arg org-keys restriction)
  2387. "Dispatch agenda commands to collect entries to the agenda buffer.
  2388. Prompts for a command to execute. Any prefix arg will be passed
  2389. on to the selected command. The default selections are:
  2390. a Call `org-agenda-list' to display the agenda for current day or week.
  2391. t Call `org-todo-list' to display the global todo list.
  2392. T Call `org-todo-list' to display the global todo list, select only
  2393. entries with a specific TODO keyword (the user gets a prompt).
  2394. m Call `org-tags-view' to display headlines with tags matching
  2395. a condition (the user is prompted for the condition).
  2396. M Like `m', but select only TODO entries, no ordinary headlines.
  2397. L Create a timeline for the current buffer.
  2398. e Export views to associated files.
  2399. s Search entries for keywords.
  2400. S Search entries for keywords, only with TODO keywords.
  2401. / Multi occur across all agenda files and also files listed
  2402. in `org-agenda-text-search-extra-files'.
  2403. < Restrict agenda commands to buffer, subtree, or region.
  2404. Press several times to get the desired effect.
  2405. > Remove a previous restriction.
  2406. # List \"stuck\" projects.
  2407. ! Configure what \"stuck\" means.
  2408. C Configure custom agenda commands.
  2409. More commands can be added by configuring the variable
  2410. `org-agenda-custom-commands'. In particular, specific tags and TODO keyword
  2411. searches can be pre-defined in this way.
  2412. If the current buffer is in Org mode and visiting a file, you can also
  2413. first press `<' once to indicate that the agenda should be temporarily
  2414. \(until the next use of `\\[org-agenda]') restricted to the current file.
  2415. Pressing `<' twice means to restrict to the current subtree or region
  2416. \(if active)."
  2417. (interactive "P")
  2418. (catch 'exit
  2419. (let* ((prefix-descriptions nil)
  2420. (org-agenda-buffer-name org-agenda-buffer-name)
  2421. (org-agenda-window-setup (if (equal (buffer-name)
  2422. org-agenda-buffer-name)
  2423. 'current-window
  2424. org-agenda-window-setup))
  2425. (org-agenda-custom-commands-orig org-agenda-custom-commands)
  2426. (org-agenda-custom-commands
  2427. ;; normalize different versions
  2428. (delq nil
  2429. (mapcar
  2430. (lambda (x)
  2431. (cond ((stringp (cdr x))
  2432. (push x prefix-descriptions)
  2433. nil)
  2434. ((stringp (nth 1 x)) x)
  2435. ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
  2436. (t (cons (car x) (cons "" (cdr x))))))
  2437. org-agenda-custom-commands)))
  2438. (org-agenda-custom-commands
  2439. (org-contextualize-keys
  2440. org-agenda-custom-commands org-agenda-custom-commands-contexts))
  2441. (buf (current-buffer))
  2442. (bfn (buffer-file-name (buffer-base-buffer)))
  2443. entry key type org-match lprops ans)
  2444. ;; Turn off restriction unless there is an overriding one,
  2445. (unless org-agenda-overriding-restriction
  2446. (unless org-agenda-keep-restricted-file-list
  2447. ;; There is a request to keep the file list in place
  2448. (put 'org-agenda-files 'org-restrict nil))
  2449. (setq org-agenda-restrict nil)
  2450. (move-marker org-agenda-restrict-begin nil)
  2451. (move-marker org-agenda-restrict-end nil))
  2452. ;; Delete old local properties
  2453. (put 'org-agenda-redo-command 'org-lprops nil)
  2454. ;; Delete previously set last-arguments
  2455. (put 'org-agenda-redo-command 'last-args nil)
  2456. ;; Remember where this call originated
  2457. (setq org-agenda-last-dispatch-buffer (current-buffer))
  2458. (unless org-keys
  2459. (setq ans (org-agenda-get-restriction-and-command prefix-descriptions)
  2460. org-keys (car ans)
  2461. restriction (cdr ans)))
  2462. ;; If we have sticky agenda buffers, set a name for the buffer,
  2463. ;; depending on the invoking keys. The user may still set this
  2464. ;; as a command option, which will overwrite what we do here.
  2465. (if org-agenda-sticky
  2466. (setq org-agenda-buffer-name
  2467. (format "*Org Agenda(%s)*" org-keys)))
  2468. ;; Establish the restriction, if any
  2469. (when (and (not org-agenda-overriding-restriction) restriction)
  2470. (put 'org-agenda-files 'org-restrict (list bfn))
  2471. (cond
  2472. ((eq restriction 'region)
  2473. (setq org-agenda-restrict (current-buffer))
  2474. (move-marker org-agenda-restrict-begin (region-beginning))
  2475. (move-marker org-agenda-restrict-end (region-end)))
  2476. ((eq restriction 'subtree)
  2477. (save-excursion
  2478. (setq org-agenda-restrict (current-buffer))
  2479. (org-back-to-heading t)
  2480. (move-marker org-agenda-restrict-begin (point))
  2481. (move-marker org-agenda-restrict-end
  2482. (progn (org-end-of-subtree t)))))))
  2483. ;; For example the todo list should not need it (but does...)
  2484. (cond
  2485. ((setq entry (assoc org-keys org-agenda-custom-commands))
  2486. (if (or (symbolp (nth 2 entry)) (functionp (nth 2 entry)))
  2487. (progn
  2488. (setq type (nth 2 entry) org-match (eval (nth 3 entry))
  2489. lprops (nth 4 entry))
  2490. (if org-agenda-sticky
  2491. (setq org-agenda-buffer-name
  2492. (or (and (stringp org-match) (format "*Org Agenda(%s:%s)*" org-keys org-match))
  2493. (format "*Org Agenda(%s)*" org-keys))))
  2494. (put 'org-agenda-redo-command 'org-lprops lprops)
  2495. (cond
  2496. ((eq type 'agenda)
  2497. (org-let lprops '(org-agenda-list current-prefix-arg)))
  2498. ((eq type 'agenda*)
  2499. (org-let lprops '(org-agenda-list current-prefix-arg nil nil t)))
  2500. ((eq type 'alltodo)
  2501. (org-let lprops '(org-todo-list current-prefix-arg)))
  2502. ((eq type 'search)
  2503. (org-let lprops '(org-search-view current-prefix-arg org-match nil)))
  2504. ((eq type 'stuck)
  2505. (org-let lprops '(org-agenda-list-stuck-projects
  2506. current-prefix-arg)))
  2507. ((eq type 'tags)
  2508. (org-let lprops '(org-tags-view current-prefix-arg org-match)))
  2509. ((eq type 'tags-todo)
  2510. (org-let lprops '(org-tags-view '(4) org-match)))
  2511. ((eq type 'todo)
  2512. (org-let lprops '(org-todo-list org-match)))
  2513. ((eq type 'tags-tree)
  2514. (org-check-for-org-mode)
  2515. (org-let lprops '(org-match-sparse-tree current-prefix-arg org-match)))
  2516. ((eq type 'todo-tree)
  2517. (org-check-for-org-mode)
  2518. (org-let lprops
  2519. '(org-occur (concat "^" org-outline-regexp "[ \t]*"
  2520. (regexp-quote org-match) "\\>"))))
  2521. ((eq type 'occur-tree)
  2522. (org-check-for-org-mode)
  2523. (org-let lprops '(org-occur org-match)))
  2524. ((functionp type)
  2525. (org-let lprops '(funcall type org-match)))
  2526. ((fboundp type)
  2527. (org-let lprops '(funcall type org-match)))
  2528. (t (user-error "Invalid custom agenda command type %s" type))))
  2529. (org-agenda-run-series (nth 1 entry) (cddr entry))))
  2530. ((equal org-keys "C")
  2531. (setq org-agenda-custom-commands org-agenda-custom-commands-orig)
  2532. (customize-variable 'org-agenda-custom-commands))
  2533. ((equal org-keys "a") (call-interactively 'org-agenda-list))
  2534. ((equal org-keys "s") (call-interactively 'org-search-view))
  2535. ((equal org-keys "S") (org-call-with-arg 'org-search-view (or arg '(4))))
  2536. ((equal org-keys "t") (call-interactively 'org-todo-list))
  2537. ((equal org-keys "T") (org-call-with-arg 'org-todo-list (or arg '(4))))
  2538. ((equal org-keys "m") (call-interactively 'org-tags-view))
  2539. ((equal org-keys "M") (org-call-with-arg 'org-tags-view (or arg '(4))))
  2540. ((equal org-keys "e") (call-interactively 'org-store-agenda-views))
  2541. ((equal org-keys "?") (org-tags-view nil "+FLAGGED")
  2542. (add-hook
  2543. 'post-command-hook
  2544. (lambda ()
  2545. (unless (current-message)
  2546. (let* ((m (org-agenda-get-any-marker))
  2547. (note (and m (org-entry-get m "THEFLAGGINGNOTE"))))
  2548. (when note
  2549. (message (concat
  2550. "FLAGGING-NOTE ([?] for more info): "
  2551. (org-add-props
  2552. (replace-regexp-in-string
  2553. "\\\\n" "//"
  2554. (copy-sequence note))
  2555. nil 'face 'org-warning)))))))
  2556. t t))
  2557. ((equal org-keys "L")
  2558. (unless (derived-mode-p 'org-mode)
  2559. (user-error "This is not an Org file"))
  2560. (unless restriction
  2561. (put 'org-agenda-files 'org-restrict (list bfn))
  2562. (org-call-with-arg 'org-timeline arg)))
  2563. ((equal org-keys "#") (call-interactively 'org-agenda-list-stuck-projects))
  2564. ((equal org-keys "/") (call-interactively 'org-occur-in-agenda-files))
  2565. ((equal org-keys "!") (customize-variable 'org-stuck-projects))
  2566. (t (user-error "Invalid agenda key"))))))
  2567. (defvar org-agenda-multi)
  2568. (defun org-agenda-append-agenda ()
  2569. "Append another agenda view to the current one.
  2570. This function allows interactive building of block agendas.
  2571. Agenda views are separated by `org-agenda-block-separator'."
  2572. (interactive)
  2573. (unless (derived-mode-p 'org-agenda-mode)
  2574. (user-error "Can only append from within agenda buffer"))
  2575. (let ((org-agenda-multi t))
  2576. (org-agenda)
  2577. (widen)
  2578. (org-agenda-finalize)
  2579. (setq buffer-read-only t)
  2580. (org-agenda-fit-window-to-buffer)))
  2581. (defun org-agenda-normalize-custom-commands (cmds)
  2582. "Normalize custom commands CMDS."
  2583. (delq nil
  2584. (mapcar
  2585. (lambda (x)
  2586. (cond ((stringp (cdr x)) nil)
  2587. ((stringp (nth 1 x)) x)
  2588. ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
  2589. (t (cons (car x) (cons "" (cdr x))))))
  2590. cmds)))
  2591. (defun org-agenda-get-restriction-and-command (prefix-descriptions)
  2592. "The user interface for selecting an agenda command."
  2593. (catch 'exit
  2594. (let* ((bfn (buffer-file-name (buffer-base-buffer)))
  2595. (restrict-ok (and bfn (derived-mode-p 'org-mode)))
  2596. (region-p (org-region-active-p))
  2597. (custom org-agenda-custom-commands)
  2598. (selstring "")
  2599. restriction second-time
  2600. c entry key type match prefixes rmheader header-end custom1 desc
  2601. line lines left right n n1)
  2602. (save-window-excursion
  2603. (delete-other-windows)
  2604. (org-switch-to-buffer-other-window " *Agenda Commands*")
  2605. (erase-buffer)
  2606. (insert (eval-when-compile
  2607. (let ((header
  2608. "Press key for an agenda command: < Buffer, subtree/region restriction
  2609. -------------------------------- > Remove restriction
  2610. a Agenda for current week or day e Export agenda views
  2611. t List of all TODO entries T Entries with special TODO kwd
  2612. m Match a TAGS/PROP/TODO query M Like m, but only TODO entries
  2613. s Search for keywords S Like s, but only TODO entries
  2614. L Timeline for current buffer # List stuck projects (!=configure)
  2615. / Multi-occur C Configure custom agenda commands
  2616. ? Find :FLAGGED: entries * Toggle sticky agenda views
  2617. ")
  2618. (start 0))
  2619. (while (string-match
  2620. "\\(^\\| \\|(\\)\\(\\S-\\)\\( \\|=\\)"
  2621. header start)
  2622. (setq start (match-end 0))
  2623. (add-text-properties (match-beginning 2) (match-end 2)
  2624. '(face bold) header))
  2625. header)))
  2626. (setq header-end (point-marker))
  2627. (while t
  2628. (setq custom1 custom)
  2629. (when (eq rmheader t)
  2630. (org-goto-line 1)
  2631. (re-search-forward ":" nil t)
  2632. (delete-region (match-end 0) (point-at-eol))
  2633. (forward-char 1)
  2634. (looking-at "-+")
  2635. (delete-region (match-end 0) (point-at-eol))
  2636. (move-marker header-end (match-end 0)))
  2637. (goto-char header-end)
  2638. (delete-region (point) (point-max))
  2639. ;; Produce all the lines that describe custom commands and prefixes
  2640. (setq lines nil)
  2641. (while (setq entry (pop custom1))
  2642. (setq key (car entry) desc (nth 1 entry)
  2643. type (nth 2 entry)
  2644. match (nth 3 entry))
  2645. (if (> (length key) 1)
  2646. (add-to-list 'prefixes (string-to-char key))
  2647. (setq line
  2648. (format
  2649. "%-4s%-14s"
  2650. (org-add-props (copy-sequence key)
  2651. '(face bold))
  2652. (cond
  2653. ((string-match "\\S-" desc) desc)
  2654. ((eq type 'agenda) "Agenda for current week or day")
  2655. ((eq type 'agenda*) "Appointments for current week or day")
  2656. ((eq type 'alltodo) "List of all TODO entries")
  2657. ((eq type 'search) "Word search")
  2658. ((eq type 'stuck) "List of stuck projects")
  2659. ((eq type 'todo) "TODO keyword")
  2660. ((eq type 'tags) "Tags query")
  2661. ((eq type 'tags-todo) "Tags (TODO)")
  2662. ((eq type 'tags-tree) "Tags tree")
  2663. ((eq type 'todo-tree) "TODO kwd tree")
  2664. ((eq type 'occur-tree) "Occur tree")
  2665. ((functionp type) (if (symbolp type)
  2666. (symbol-name type)
  2667. "Lambda expression"))
  2668. (t "???"))))
  2669. (if org-agenda-menu-show-matcher
  2670. (setq line
  2671. (concat line ": "
  2672. (cond
  2673. ((stringp match)
  2674. (setq match (copy-sequence match))
  2675. (org-add-props match nil 'face 'org-warning))
  2676. ((listp type)
  2677. (format "set of %d commands" (length type))))))
  2678. (if (org-string-nw-p match)
  2679. (add-text-properties
  2680. 0 (length line) (list 'help-echo
  2681. (concat "Matcher: " match)) line)))
  2682. (push line lines)))
  2683. (setq lines (nreverse lines))
  2684. (when prefixes
  2685. (mapc (lambda (x)
  2686. (push
  2687. (format "%s %s"
  2688. (org-add-props (char-to-string x)
  2689. nil 'face 'bold)
  2690. (or (cdr (assoc (concat selstring
  2691. (char-to-string x))
  2692. prefix-descriptions))
  2693. "Prefix key"))
  2694. lines))
  2695. prefixes))
  2696. ;; Check if we should display in two columns
  2697. (if org-agenda-menu-two-columns
  2698. (progn
  2699. (setq n (length lines)
  2700. n1 (+ (/ n 2) (mod n 2))
  2701. right (nthcdr n1 lines)
  2702. left (copy-sequence lines))
  2703. (setcdr (nthcdr (1- n1) left) nil))
  2704. (setq left lines right nil))
  2705. (while left
  2706. (insert "\n" (pop left))
  2707. (when right
  2708. (if (< (current-column) 40)
  2709. (move-to-column 40 t)
  2710. (insert " "))
  2711. (insert (pop right))))
  2712. ;; Make the window the right size
  2713. (goto-char (point-min))
  2714. (if second-time
  2715. (if (not (pos-visible-in-window-p (point-max)))
  2716. (org-fit-window-to-buffer))
  2717. (setq second-time t)
  2718. (org-fit-window-to-buffer))
  2719. ;; Ask for selection
  2720. (message "Press key for agenda command%s:"
  2721. (if (or restrict-ok org-agenda-overriding-restriction)
  2722. (if org-agenda-overriding-restriction
  2723. " (restriction lock active)"
  2724. (if restriction
  2725. (format " (restricted to %s)" restriction)
  2726. " (unrestricted)"))
  2727. ""))
  2728. (setq c (read-char-exclusive))
  2729. (message "")
  2730. (cond
  2731. ((assoc (char-to-string c) custom)
  2732. (setq selstring (concat selstring (char-to-string c)))
  2733. (throw 'exit (cons selstring restriction)))
  2734. ((memq c prefixes)
  2735. (setq selstring (concat selstring (char-to-string c))
  2736. prefixes nil
  2737. rmheader (or rmheader t)
  2738. custom (delq nil (mapcar
  2739. (lambda (x)
  2740. (if (or (= (length (car x)) 1)
  2741. (/= (string-to-char (car x)) c))
  2742. nil
  2743. (cons (substring (car x) 1) (cdr x))))
  2744. custom))))
  2745. ((eq c ?*)
  2746. (call-interactively 'org-toggle-sticky-agenda)
  2747. (sit-for 2))
  2748. ((and (not restrict-ok) (memq c '(?1 ?0 ?<)))
  2749. (message "Restriction is only possible in Org buffers")
  2750. (ding) (sit-for 1))
  2751. ((eq c ?1)
  2752. (org-agenda-remove-restriction-lock 'noupdate)
  2753. (setq restriction 'buffer))
  2754. ((eq c ?0)
  2755. (org-agenda-remove-restriction-lock 'noupdate)
  2756. (setq restriction (if region-p 'region 'subtree)))
  2757. ((eq c ?<)
  2758. (org-agenda-remove-restriction-lock 'noupdate)
  2759. (setq restriction
  2760. (cond
  2761. ((eq restriction 'buffer)
  2762. (if region-p 'region 'subtree))
  2763. ((memq restriction '(subtree region))
  2764. nil)
  2765. (t 'buffer))))
  2766. ((eq c ?>)
  2767. (org-agenda-remove-restriction-lock 'noupdate)
  2768. (setq restriction nil))
  2769. ((and (equal selstring "") (memq c '(?s ?S ?a ?t ?m ?L ?C ?e ?T ?M ?# ?! ?/ ??)))
  2770. (throw 'exit (cons (setq selstring (char-to-string c)) restriction)))
  2771. ((and (> (length selstring) 0) (eq c ?\d))
  2772. (delete-window)
  2773. (org-agenda-get-restriction-and-command prefix-descriptions))
  2774. ((equal c ?q) (error "Abort"))
  2775. (t (user-error "Invalid key %c" c))))))))
  2776. (defun org-agenda-fit-window-to-buffer ()
  2777. "Fit the window to the buffer size."
  2778. (and (memq org-agenda-window-setup '(reorganize-frame))
  2779. (fboundp 'fit-window-to-buffer)
  2780. (if (and (= (cdr org-agenda-window-frame-fractions) 1.0)
  2781. (= (car org-agenda-window-frame-fractions) 1.0))
  2782. (delete-other-windows)
  2783. (org-fit-window-to-buffer
  2784. nil
  2785. (floor (* (frame-height) (cdr org-agenda-window-frame-fractions)))
  2786. (floor (* (frame-height) (car org-agenda-window-frame-fractions)))))))
  2787. (defvar org-cmd nil)
  2788. (defvar org-agenda-overriding-cmd nil)
  2789. (defvar org-agenda-overriding-arguments nil)
  2790. (defvar org-agenda-overriding-cmd-arguments nil)
  2791. (defun org-agenda-run-series (name series)
  2792. "Run agenda NAME as a SERIES of agenda commands."
  2793. (org-let (nth 1 series) '(org-agenda-prepare name))
  2794. ;; We need to reset agenda markers here, because when constructing a
  2795. ;; block agenda, the individual blocks do not do that.
  2796. (org-agenda-reset-markers)
  2797. (let* ((org-agenda-multi t)
  2798. (redo (list 'org-agenda-run-series name (list 'quote series)))
  2799. (cmds (car series))
  2800. (gprops (nth 1 series))
  2801. match ;; The byte compiler incorrectly complains about this. Keep it!
  2802. org-cmd type lprops)
  2803. (while (setq org-cmd (pop cmds))
  2804. (setq type (car org-cmd))
  2805. (setq match (eval (nth 1 org-cmd)))
  2806. (setq lprops (nth 2 org-cmd))
  2807. (let ((org-agenda-overriding-arguments
  2808. (if (eq org-agenda-overriding-cmd org-cmd)
  2809. (or org-agenda-overriding-arguments
  2810. org-agenda-overriding-cmd-arguments))))
  2811. (cond
  2812. ((eq type 'agenda)
  2813. (org-let2 gprops lprops
  2814. '(call-interactively 'org-agenda-list)))
  2815. ((eq type 'agenda*)
  2816. (org-let2 gprops lprops
  2817. '(funcall 'org-agenda-list nil nil t)))
  2818. ((eq type 'alltodo)
  2819. (org-let2 gprops lprops
  2820. '(call-interactively 'org-todo-list)))
  2821. ((eq type 'search)
  2822. (org-let2 gprops lprops
  2823. '(org-search-view current-prefix-arg match nil)))
  2824. ((eq type 'stuck)
  2825. (org-let2 gprops lprops
  2826. '(call-interactively 'org-agenda-list-stuck-projects)))
  2827. ((eq type 'tags)
  2828. (org-let2 gprops lprops
  2829. '(org-tags-view current-prefix-arg match)))
  2830. ((eq type 'tags-todo)
  2831. (org-let2 gprops lprops
  2832. '(org-tags-view '(4) match)))
  2833. ((eq type 'todo)
  2834. (org-let2 gprops lprops
  2835. '(org-todo-list match)))
  2836. ((fboundp type)
  2837. (org-let2 gprops lprops
  2838. '(funcall type match)))
  2839. (t (error "Invalid type in command series")))))
  2840. (widen)
  2841. (let ((inhibit-read-only t))
  2842. (add-text-properties (point-min) (point-max)
  2843. `(org-series t org-series-redo-cmd ,redo)))
  2844. (setq org-agenda-redo-command redo)
  2845. (goto-char (point-min)))
  2846. (org-agenda-fit-window-to-buffer)
  2847. (org-let (nth 1 series) '(org-agenda-finalize)))
  2848. ;;;###autoload
  2849. (defmacro org-batch-agenda (cmd-key &rest parameters)
  2850. "Run an agenda command in batch mode and send the result to STDOUT.
  2851. If CMD-KEY is a string of length 1, it is used as a key in
  2852. `org-agenda-custom-commands' and triggers this command. If it is a
  2853. longer string it is used as a tags/todo match string.
  2854. Parameters are alternating variable names and values that will be bound
  2855. before running the agenda command."
  2856. (org-eval-in-environment (org-make-parameter-alist parameters)
  2857. (let (org-agenda-sticky)
  2858. (if (> (length cmd-key) 1)
  2859. (org-tags-view nil cmd-key)
  2860. (org-agenda nil cmd-key))))
  2861. (set-buffer org-agenda-buffer-name)
  2862. (princ (buffer-string)))
  2863. (defvar org-agenda-info nil)
  2864. ;;;###autoload
  2865. (defmacro org-batch-agenda-csv (cmd-key &rest parameters)
  2866. "Run an agenda command in batch mode and send the result to STDOUT.
  2867. If CMD-KEY is a string of length 1, it is used as a key in
  2868. `org-agenda-custom-commands' and triggers this command. If it is a
  2869. longer string it is used as a tags/todo match string.
  2870. Parameters are alternating variable names and values that will be bound
  2871. before running the agenda command.
  2872. The output gives a line for each selected agenda item. Each
  2873. item is a list of comma-separated values, like this:
  2874. category,head,type,todo,tags,date,time,extra,priority-l,priority-n
  2875. category The category of the item
  2876. head The headline, without TODO kwd, TAGS and PRIORITY
  2877. type The type of the agenda entry, can be
  2878. todo selected in TODO match
  2879. tagsmatch selected in tags match
  2880. diary imported from diary
  2881. deadline a deadline on given date
  2882. scheduled scheduled on given date
  2883. timestamp entry has timestamp on given date
  2884. closed entry was closed on given date
  2885. upcoming-deadline warning about deadline
  2886. past-scheduled forwarded scheduled item
  2887. block entry has date block including g. date
  2888. todo The todo keyword, if any
  2889. tags All tags including inherited ones, separated by colons
  2890. date The relevant date, like 2007-2-14
  2891. time The time, like 15:00-16:50
  2892. extra Sting with extra planning info
  2893. priority-l The priority letter if any was given
  2894. priority-n The computed numerical priority
  2895. agenda-day The day in the agenda where this is listed"
  2896. (org-eval-in-environment (append '((org-agenda-remove-tags t))
  2897. (org-make-parameter-alist parameters))
  2898. (if (> (length cmd-key) 2)
  2899. (org-tags-view nil cmd-key)
  2900. (org-agenda nil cmd-key)))
  2901. (set-buffer org-agenda-buffer-name)
  2902. (let* ((lines (org-split-string (buffer-string) "\n"))
  2903. line)
  2904. (while (setq line (pop lines))
  2905. (catch 'next
  2906. (if (not (get-text-property 0 'org-category line)) (throw 'next nil))
  2907. (setq org-agenda-info
  2908. (org-fix-agenda-info (text-properties-at 0 line)))
  2909. (princ
  2910. (mapconcat 'org-agenda-export-csv-mapper
  2911. '(org-category txt type todo tags date time extra
  2912. priority-letter priority agenda-day)
  2913. ","))
  2914. (princ "\n")))))
  2915. (defun org-fix-agenda-info (props)
  2916. "Make sure all properties on an agenda item have a canonical form.
  2917. This ensures the export commands can easily use it."
  2918. (let (tmp re)
  2919. (when (setq tmp (plist-get props 'tags))
  2920. (setq props (plist-put props 'tags (mapconcat 'identity tmp ":"))))
  2921. (when (setq tmp (plist-get props 'date))
  2922. (if (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
  2923. (let ((calendar-date-display-form '(year "-" month "-" day)))
  2924. '((format "%4d, %9s %2s, %4s" dayname monthname day year))
  2925. (setq tmp (calendar-date-string tmp)))
  2926. (setq props (plist-put props 'date tmp)))
  2927. (when (setq tmp (plist-get props 'day))
  2928. (if (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
  2929. (let ((calendar-date-display-form '(year "-" month "-" day)))
  2930. (setq tmp (calendar-date-string tmp)))
  2931. (setq props (plist-put props 'day tmp))
  2932. (setq props (plist-put props 'agenda-day tmp)))
  2933. (when (setq tmp (plist-get props 'txt))
  2934. (when (string-match "\\[#\\([A-Z0-9]\\)\\] ?" tmp)
  2935. (plist-put props 'priority-letter (match-string 1 tmp))
  2936. (setq tmp (replace-match "" t t tmp)))
  2937. (when (and (setq re (plist-get props 'org-todo-regexp))
  2938. (setq re (concat "\\`\\.*" re " ?"))
  2939. (let ((case-fold-search nil)) (string-match re tmp)))
  2940. (plist-put props 'todo (match-string 1 tmp))
  2941. (setq tmp (replace-match "" t t tmp)))
  2942. (plist-put props 'txt tmp)))
  2943. props)
  2944. (defun org-agenda-export-csv-mapper (prop)
  2945. (let ((res (plist-get org-agenda-info prop)))
  2946. (setq res
  2947. (cond
  2948. ((not res) "")
  2949. ((stringp res) res)
  2950. (t (prin1-to-string res))))
  2951. (org-trim (replace-regexp-in-string "," ";" res nil t))))
  2952. ;;;###autoload
  2953. (defun org-store-agenda-views (&rest parameters)
  2954. "Store agenda views."
  2955. (interactive)
  2956. (eval (list 'org-batch-store-agenda-views)))
  2957. ;;;###autoload
  2958. (defmacro org-batch-store-agenda-views (&rest parameters)
  2959. "Run all custom agenda commands that have a file argument."
  2960. (let ((cmds (org-agenda-normalize-custom-commands org-agenda-custom-commands))
  2961. (pop-up-frames nil)
  2962. (dir default-directory)
  2963. (pars (org-make-parameter-alist parameters))
  2964. cmd thiscmdkey thiscmdcmd match files opts cmd-or-set bufname)
  2965. (save-window-excursion
  2966. (while cmds
  2967. (setq cmd (pop cmds)
  2968. thiscmdkey (car cmd)
  2969. thiscmdcmd (cdr cmd)
  2970. match (nth 2 thiscmdcmd)
  2971. bufname (if org-agenda-sticky
  2972. (or (and (stringp match)
  2973. (format "*Org Agenda(%s:%s)*" thiscmdkey match))
  2974. (format "*Org Agenda(%s)*" thiscmdkey))
  2975. org-agenda-buffer-name)
  2976. cmd-or-set (nth 2 cmd)
  2977. opts (nth (if (listp cmd-or-set) 3 4) cmd)
  2978. files (nth (if (listp cmd-or-set) 4 5) cmd))
  2979. (if (stringp files) (setq files (list files)))
  2980. (when files
  2981. (org-eval-in-environment (append org-agenda-exporter-settings
  2982. opts pars)
  2983. (org-agenda nil thiscmdkey))
  2984. (set-buffer bufname)
  2985. (while files
  2986. (org-eval-in-environment (append org-agenda-exporter-settings
  2987. opts pars)
  2988. (org-agenda-write (expand-file-name (pop files) dir) nil t bufname)))
  2989. (and (get-buffer bufname)
  2990. (kill-buffer bufname)))))))
  2991. (defvar org-agenda-current-span nil
  2992. "The current span used in the agenda view.") ; local variable in the agenda buffer
  2993. (defun org-agenda-mark-header-line (pos)
  2994. "Mark the line at POS as an agenda structure header."
  2995. (save-excursion
  2996. (goto-char pos)
  2997. (put-text-property (point-at-bol) (point-at-eol)
  2998. 'org-agenda-structural-header t)
  2999. (when org-agenda-title-append
  3000. (put-text-property (point-at-bol) (point-at-eol)
  3001. 'org-agenda-title-append org-agenda-title-append))))
  3002. (defvar org-mobile-creating-agendas) ; defined in org-mobile.el
  3003. (defvar org-agenda-write-buffer-name "Agenda View")
  3004. (defun org-agenda-write (file &optional open nosettings agenda-bufname)
  3005. "Write the current buffer (an agenda view) as a file.
  3006. Depending on the extension of the file name, plain text (.txt),
  3007. HTML (.html or .htm), PDF (.pdf) or Postscript (.ps) is produced.
  3008. If the extension is .ics, translate visible agenda into iCalendar
  3009. format. If the extension is .org, collect all subtrees
  3010. corresponding to the agenda entries and add them in an .org file.
  3011. With prefix argument OPEN, open the new file immediately. If
  3012. NOSETTINGS is given, do not scope the settings of
  3013. `org-agenda-exporter-settings' into the export commands. This is
  3014. used when the settings have already been scoped and we do not
  3015. wish to overrule other, higher priority settings. If
  3016. AGENDA-BUFFER-NAME is provided, use this as the buffer name for
  3017. the agenda to write."
  3018. (interactive "FWrite agenda to file: \nP")
  3019. (if (or (not (file-writable-p file))
  3020. (and (file-exists-p file)
  3021. (if (called-interactively-p 'any)
  3022. (not (y-or-n-p (format "Overwrite existing file %s? " file))))))
  3023. (user-error "Cannot write agenda to file %s" file))
  3024. (org-let (if nosettings nil org-agenda-exporter-settings)
  3025. '(save-excursion
  3026. (save-window-excursion
  3027. (let ((bs (copy-sequence (buffer-string)))
  3028. (extension (file-name-extension file))
  3029. beg content)
  3030. (with-temp-buffer
  3031. (rename-buffer org-agenda-write-buffer-name t)
  3032. (set-buffer-modified-p nil)
  3033. (insert bs)
  3034. (org-agenda-remove-marked-text 'invisible 'org-filtered)
  3035. (run-hooks 'org-agenda-before-write-hook)
  3036. (cond
  3037. ((bound-and-true-p org-mobile-creating-agendas)
  3038. (org-mobile-write-agenda-for-mobile file))
  3039. ((string= "org" extension)
  3040. (let (content p m message-log-max)
  3041. (goto-char (point-min))
  3042. (while (setq p (next-single-property-change (point) 'org-hd-marker nil))
  3043. (goto-char p)
  3044. (setq m (get-text-property (point) 'org-hd-marker))
  3045. (when m
  3046. (push (save-excursion
  3047. (set-buffer (marker-buffer m))
  3048. (goto-char m)
  3049. (org-copy-subtree 1 nil t t)
  3050. org-subtree-clip)
  3051. content)))
  3052. (find-file file)
  3053. (erase-buffer)
  3054. (dolist (s content) (org-paste-subtree 1 s))
  3055. (write-file file)
  3056. (kill-buffer (current-buffer))
  3057. (message "Org file written to %s" file)))
  3058. ((member extension '("html" "htm"))
  3059. (require 'htmlize)
  3060. (set-buffer (htmlize-buffer (current-buffer)))
  3061. (when org-agenda-export-html-style
  3062. ;; replace <style> section with org-agenda-export-html-style
  3063. (goto-char (point-min))
  3064. (kill-region (- (search-forward "<style") 6)
  3065. (search-forward "</style>"))
  3066. (insert org-agenda-export-html-style))
  3067. (write-file file)
  3068. (kill-buffer (current-buffer))
  3069. (message "HTML written to %s" file))
  3070. ((string= "ps" extension)
  3071. (require 'ps-print)
  3072. (ps-print-buffer-with-faces file)
  3073. (message "Postscript written to %s" file))
  3074. ((string= "pdf" extension)
  3075. (require 'ps-print)
  3076. (ps-print-buffer-with-faces
  3077. (concat (file-name-sans-extension file) ".ps"))
  3078. (call-process "ps2pdf" nil nil nil
  3079. (expand-file-name
  3080. (concat (file-name-sans-extension file) ".ps"))
  3081. (expand-file-name file))
  3082. (delete-file (concat (file-name-sans-extension file) ".ps"))
  3083. (message "PDF written to %s" file))
  3084. ((string= "ics" extension)
  3085. (require 'ox-icalendar)
  3086. (org-icalendar-export-current-agenda (expand-file-name file)))
  3087. (t
  3088. (let ((bs (buffer-string)))
  3089. (find-file file)
  3090. (erase-buffer)
  3091. (insert bs)
  3092. (save-buffer 0)
  3093. (kill-buffer (current-buffer))
  3094. (message "Plain text written to %s" file))))))))
  3095. (set-buffer (or agenda-bufname
  3096. (and (called-interactively-p 'any) (buffer-name))
  3097. org-agenda-buffer-name)))
  3098. (when open (org-open-file file)))
  3099. (defun org-agenda-remove-marked-text (property &optional value)
  3100. "Delete all text marked with VALUE of PROPERTY.
  3101. VALUE defaults to t."
  3102. (let (beg)
  3103. (setq value (or value t))
  3104. (while (setq beg (text-property-any (point-min) (point-max)
  3105. property value))
  3106. (delete-region
  3107. beg (or (next-single-property-change beg property)
  3108. (point-max))))))
  3109. (defun org-agenda-add-entry-text ()
  3110. "Add entry text to agenda lines.
  3111. This will add a maximum of `org-agenda-add-entry-text-maxlines' lines of the
  3112. entry text following headings shown in the agenda.
  3113. Drawers will be excluded, also the line with scheduling/deadline info."
  3114. (when (and (> org-agenda-add-entry-text-maxlines 0)
  3115. (not (bound-and-true-p org-mobile-creating-agendas)))
  3116. (let (m txt)
  3117. (goto-char (point-min))
  3118. (while (not (eobp))
  3119. (if (not (setq m (org-get-at-bol 'org-hd-marker)))
  3120. (beginning-of-line 2)
  3121. (setq txt (org-agenda-get-some-entry-text
  3122. m org-agenda-add-entry-text-maxlines " > "))
  3123. (end-of-line 1)
  3124. (if (string-match "\\S-" txt)
  3125. (insert "\n" txt)
  3126. (or (eobp) (forward-char 1))))))))
  3127. (defun org-agenda-get-some-entry-text (marker n-lines &optional indent
  3128. &rest keep)
  3129. "Extract entry text from MARKER, at most N-LINES lines.
  3130. This will ignore drawers etc, just get the text.
  3131. If INDENT is given, prefix every line with this string. If KEEP is
  3132. given, it is a list of symbols, defining stuff that should not be
  3133. removed from the entry content. Currently only `planning' is allowed here."
  3134. (let (txt drawer-re kwd-time-re ind)
  3135. (save-excursion
  3136. (with-current-buffer (marker-buffer marker)
  3137. (if (not (derived-mode-p 'org-mode))
  3138. (setq txt "")
  3139. (org-with-wide-buffer
  3140. (goto-char marker)
  3141. (end-of-line 1)
  3142. (setq txt (buffer-substring
  3143. (min (1+ (point)) (point-max))
  3144. (progn (outline-next-heading) (point)))
  3145. drawer-re org-drawer-regexp
  3146. kwd-time-re (concat "^[ \t]*" org-keyword-time-regexp
  3147. ".*\n?"))
  3148. (with-temp-buffer
  3149. (insert txt)
  3150. (when org-agenda-add-entry-text-descriptive-links
  3151. (goto-char (point-min))
  3152. (while (org-activate-bracket-links (point-max))
  3153. (add-text-properties (match-beginning 0) (match-end 0)
  3154. '(face org-link))))
  3155. (goto-char (point-min))
  3156. (while (re-search-forward org-bracket-link-regexp (point-max) t)
  3157. (set-text-properties (match-beginning 0) (match-end 0)
  3158. nil))
  3159. (goto-char (point-min))
  3160. (while (re-search-forward drawer-re nil t)
  3161. (delete-region
  3162. (match-beginning 0)
  3163. (progn (re-search-forward
  3164. "^[ \t]*:END:.*\n?" nil 'move)
  3165. (point))))
  3166. (unless (member 'planning keep)
  3167. (goto-char (point-min))
  3168. (while (re-search-forward kwd-time-re nil t)
  3169. (replace-match "")))
  3170. (goto-char (point-min))
  3171. (when org-agenda-entry-text-exclude-regexps
  3172. (let ((re-list org-agenda-entry-text-exclude-regexps) re)
  3173. (while (setq re (pop re-list))
  3174. (goto-char (point-min))
  3175. (while (re-search-forward re nil t)
  3176. (replace-match "")))))
  3177. (goto-char (point-max))
  3178. (skip-chars-backward " \t\n")
  3179. (if (looking-at "[ \t\n]+\\'") (replace-match ""))
  3180. ;; find and remove min common indentation
  3181. (goto-char (point-min))
  3182. (untabify (point-min) (point-max))
  3183. (setq ind (org-get-indentation))
  3184. (while (not (eobp))
  3185. (unless (looking-at "[ \t]*$")
  3186. (setq ind (min ind (org-get-indentation))))
  3187. (beginning-of-line 2))
  3188. (goto-char (point-min))
  3189. (while (not (eobp))
  3190. (unless (looking-at "[ \t]*$")
  3191. (move-to-column ind)
  3192. (delete-region (point-at-bol) (point)))
  3193. (beginning-of-line 2))
  3194. (run-hooks 'org-agenda-entry-text-cleanup-hook)
  3195. (goto-char (point-min))
  3196. (when indent
  3197. (while (and (not (eobp)) (re-search-forward "^" nil t))
  3198. (replace-match indent t t)))
  3199. (goto-char (point-min))
  3200. (while (looking-at "[ \t]*\n") (replace-match ""))
  3201. (goto-char (point-max))
  3202. (when (> (org-current-line)
  3203. n-lines)
  3204. (org-goto-line (1+ n-lines))
  3205. (backward-char 1))
  3206. (setq txt (buffer-substring (point-min) (point))))))))
  3207. txt))
  3208. (defun org-check-for-org-mode ()
  3209. "Make sure current buffer is in org-mode. Error if not."
  3210. (or (derived-mode-p 'org-mode)
  3211. (error "Cannot execute Org agenda command on buffer in %s"
  3212. major-mode)))
  3213. ;;; Agenda prepare and finalize
  3214. (defvar org-agenda-multi nil) ; dynamically scoped
  3215. (defvar org-agenda-pre-window-conf nil)
  3216. (defvar org-agenda-columns-active nil)
  3217. (defvar org-agenda-name nil)
  3218. (defvar org-agenda-tag-filter nil)
  3219. (defvar org-agenda-category-filter nil)
  3220. (defvar org-agenda-regexp-filter nil)
  3221. (defvar org-agenda-effort-filter nil)
  3222. (defvar org-agenda-top-headline-filter nil)
  3223. (defvar org-agenda-tag-filter-preset nil
  3224. "A preset of the tags filter used for secondary agenda filtering.
  3225. This must be a list of strings, each string must be a single tag preceded
  3226. by \"+\" or \"-\".
  3227. This variable should not be set directly, but agenda custom commands can
  3228. bind it in the options section. The preset filter is a global property of
  3229. the entire agenda view. In a block agenda, it will not work reliably to
  3230. define a filter for one of the individual blocks. You need to set it in
  3231. the global options and expect it to be applied to the entire view.")
  3232. (defvar org-agenda-category-filter-preset nil
  3233. "A preset of the category filter used for secondary agenda filtering.
  3234. This must be a list of strings, each string must be a single category
  3235. preceded by \"+\" or \"-\".
  3236. This variable should not be set directly, but agenda custom commands can
  3237. bind it in the options section. The preset filter is a global property of
  3238. the entire agenda view. In a block agenda, it will not work reliably to
  3239. define a filter for one of the individual blocks. You need to set it in
  3240. the global options and expect it to be applied to the entire view.")
  3241. (defvar org-agenda-regexp-filter-preset nil
  3242. "A preset of the regexp filter used for secondary agenda filtering.
  3243. This must be a list of strings, each string must be a single regexp
  3244. preceded by \"+\" or \"-\".
  3245. This variable should not be set directly, but agenda custom commands can
  3246. bind it in the options section. The preset filter is a global property of
  3247. the entire agenda view. In a block agenda, it will not work reliably to
  3248. define a filter for one of the individual blocks. You need to set it in
  3249. the global options and expect it to be applied to the entire view.")
  3250. (defvar org-agenda-effort-filter-preset nil
  3251. "A preset of the effort condition used for secondary agenda filtering.
  3252. This must be a list of strings, each string must be a single regexp
  3253. preceded by \"+\" or \"-\".
  3254. This variable should not be set directly, but agenda custom commands can
  3255. bind it in the options section. The preset filter is a global property of
  3256. the entire agenda view. In a block agenda, it will not work reliably to
  3257. define a filter for one of the individual blocks. You need to set it in
  3258. the global options and expect it to be applied to the entire view.")
  3259. (defun org-agenda-use-sticky-p ()
  3260. "Return non-nil if an agenda buffer named
  3261. `org-agenda-buffer-name' exists and should be shown instead of
  3262. generating a new one."
  3263. (and
  3264. ;; turned off by user
  3265. org-agenda-sticky
  3266. ;; For multi-agenda buffer already exists
  3267. (not org-agenda-multi)
  3268. ;; buffer found
  3269. (get-buffer org-agenda-buffer-name)
  3270. ;; C-u parameter is same as last call
  3271. (with-current-buffer (get-buffer org-agenda-buffer-name)
  3272. (and
  3273. (equal current-prefix-arg
  3274. org-agenda-last-prefix-arg)
  3275. ;; In case user turned stickiness on, while having existing
  3276. ;; Agenda buffer active, don't reuse that buffer, because it
  3277. ;; does not have org variables local
  3278. org-agenda-this-buffer-is-sticky))))
  3279. (defun org-agenda-prepare-window (abuf filter-alist)
  3280. "Setup agenda buffer in the window.
  3281. ABUF is the buffer for the agenda window.
  3282. FILTER-ALIST is an alist of filters we need to apply when
  3283. `org-agenda-persistent-filter' is non-nil."
  3284. (let* ((awin (get-buffer-window abuf)) wconf)
  3285. (cond
  3286. ((equal (current-buffer) abuf) nil)
  3287. (awin (select-window awin))
  3288. ((not (setq wconf (current-window-configuration))))
  3289. ((eq org-agenda-window-setup 'current-window)
  3290. (pop-to-buffer-same-window abuf))
  3291. ((eq org-agenda-window-setup 'other-window)
  3292. (org-switch-to-buffer-other-window abuf))
  3293. ((eq org-agenda-window-setup 'other-frame)
  3294. (switch-to-buffer-other-frame abuf))
  3295. ((eq org-agenda-window-setup 'only-window)
  3296. (delete-other-windows)
  3297. (pop-to-buffer-same-window abuf))
  3298. ((eq org-agenda-window-setup 'reorganize-frame)
  3299. (delete-other-windows)
  3300. (org-switch-to-buffer-other-window abuf)))
  3301. (setq org-agenda-tag-filter (cdr (assq 'tag filter-alist)))
  3302. (setq org-agenda-category-filter (cdr (assq 'cat filter-alist)))
  3303. (setq org-agenda-effort-filter (cdr (assq 'effort filter-alist)))
  3304. (setq org-agenda-regexp-filter (cdr (assq 're filter-alist)))
  3305. ;; Additional test in case agenda is invoked from within agenda
  3306. ;; buffer via elisp link.
  3307. (unless (equal (current-buffer) abuf)
  3308. (pop-to-buffer-same-window abuf))
  3309. (setq org-agenda-pre-window-conf
  3310. (or wconf org-agenda-pre-window-conf))))
  3311. (defun org-agenda-prepare (&optional name)
  3312. (let ((filter-alist (if org-agenda-persistent-filter
  3313. (with-current-buffer
  3314. (get-buffer-create org-agenda-buffer-name)
  3315. (list `(tag . ,org-agenda-tag-filter)
  3316. `(re . ,org-agenda-regexp-filter)
  3317. `(effort . ,org-agenda-effort-filter)
  3318. `(cat . ,org-agenda-category-filter))))))
  3319. (if (org-agenda-use-sticky-p)
  3320. (progn
  3321. (put 'org-agenda-tag-filter :preset-filter nil)
  3322. (put 'org-agenda-category-filter :preset-filter nil)
  3323. (put 'org-agenda-regexp-filter :preset-filter nil)
  3324. ;; Popup existing buffer
  3325. (org-agenda-prepare-window (get-buffer org-agenda-buffer-name)
  3326. filter-alist)
  3327. (message "Sticky Agenda buffer, use `r' to refresh")
  3328. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  3329. (throw 'exit "Sticky Agenda buffer, use `r' to refresh"))
  3330. (setq org-todo-keywords-for-agenda nil)
  3331. (put 'org-agenda-tag-filter :preset-filter
  3332. org-agenda-tag-filter-preset)
  3333. (put 'org-agenda-category-filter :preset-filter
  3334. org-agenda-category-filter-preset)
  3335. (put 'org-agenda-regexp-filter :preset-filter
  3336. org-agenda-regexp-filter-preset)
  3337. (put 'org-agenda-effort-filter :preset-filter
  3338. org-agenda-effort-filter-preset)
  3339. (if org-agenda-multi
  3340. (progn
  3341. (setq buffer-read-only nil)
  3342. (goto-char (point-max))
  3343. (unless (or (bobp) org-agenda-compact-blocks
  3344. (not org-agenda-block-separator))
  3345. (insert "\n"
  3346. (if (stringp org-agenda-block-separator)
  3347. org-agenda-block-separator
  3348. (make-string (window-width) org-agenda-block-separator))
  3349. "\n"))
  3350. (narrow-to-region (point) (point-max)))
  3351. (setq org-done-keywords-for-agenda nil)
  3352. ;; Setting any org variables that are in org-agenda-local-vars
  3353. ;; list need to be done after the prepare call
  3354. (org-agenda-prepare-window
  3355. (get-buffer-create org-agenda-buffer-name) filter-alist)
  3356. (setq buffer-read-only nil)
  3357. (org-agenda-reset-markers)
  3358. (let ((inhibit-read-only t)) (erase-buffer))
  3359. (org-agenda-mode)
  3360. (setq org-agenda-buffer (current-buffer))
  3361. (setq org-agenda-contributing-files nil)
  3362. (setq org-agenda-columns-active nil)
  3363. (org-agenda-prepare-buffers (org-agenda-files nil 'ifmode))
  3364. (setq org-todo-keywords-for-agenda
  3365. (org-uniquify org-todo-keywords-for-agenda))
  3366. (setq org-done-keywords-for-agenda
  3367. (org-uniquify org-done-keywords-for-agenda))
  3368. (setq org-agenda-last-prefix-arg current-prefix-arg)
  3369. (setq org-agenda-this-buffer-name org-agenda-buffer-name)
  3370. (and name (not org-agenda-name)
  3371. (setq-local org-agenda-name name)))
  3372. (setq buffer-read-only nil))))
  3373. (defvar org-agenda-overriding-columns-format) ; From org-colview.el
  3374. (defun org-agenda-finalize ()
  3375. "Finishing touch for the agenda buffer, called just before displaying it."
  3376. (unless org-agenda-multi
  3377. (save-excursion
  3378. (let ((inhibit-read-only t))
  3379. (goto-char (point-min))
  3380. (save-excursion
  3381. (while (org-activate-bracket-links (point-max))
  3382. (add-text-properties (match-beginning 0) (match-end 0)
  3383. '(face org-link))))
  3384. (save-excursion
  3385. (while (org-activate-plain-links (point-max))
  3386. (add-text-properties (match-beginning 0) (match-end 0)
  3387. '(face org-link))))
  3388. (unless (eq org-agenda-remove-tags t)
  3389. (org-agenda-align-tags))
  3390. (unless org-agenda-with-colors
  3391. (remove-text-properties (point-min) (point-max) '(face nil)))
  3392. (if (and (boundp 'org-agenda-overriding-columns-format)
  3393. org-agenda-overriding-columns-format)
  3394. (setq-local org-agenda-overriding-columns-format
  3395. org-agenda-overriding-columns-format))
  3396. (if (and (boundp 'org-agenda-view-columns-initially)
  3397. org-agenda-view-columns-initially)
  3398. (org-agenda-columns))
  3399. (when org-agenda-fontify-priorities
  3400. (org-agenda-fontify-priorities))
  3401. (when (and org-agenda-dim-blocked-tasks org-blocker-hook)
  3402. (org-agenda-dim-blocked-tasks))
  3403. (org-agenda-mark-clocking-task)
  3404. (when org-agenda-entry-text-mode
  3405. (org-agenda-entry-text-hide)
  3406. (org-agenda-entry-text-show))
  3407. (if (and (functionp 'org-habit-insert-consistency-graphs)
  3408. (save-excursion (next-single-property-change (point-min) 'org-habit-p)))
  3409. (org-habit-insert-consistency-graphs))
  3410. (setq org-agenda-type (org-get-at-bol 'org-agenda-type))
  3411. (unless (or (eq org-agenda-show-inherited-tags 'always)
  3412. (and (listp org-agenda-show-inherited-tags)
  3413. (memq org-agenda-type org-agenda-show-inherited-tags))
  3414. (and (eq org-agenda-show-inherited-tags t)
  3415. (or (eq org-agenda-use-tag-inheritance t)
  3416. (and (listp org-agenda-use-tag-inheritance)
  3417. (not (memq org-agenda-type
  3418. org-agenda-use-tag-inheritance))))))
  3419. (let (mrk)
  3420. (save-excursion
  3421. (goto-char (point-min))
  3422. (while (equal (forward-line) 0)
  3423. (when (setq mrk (get-text-property (point) 'org-hd-marker))
  3424. (put-text-property (point-at-bol) (point-at-eol)
  3425. 'tags (org-with-point-at mrk
  3426. (delete-dups
  3427. (mapcar 'downcase (org-get-tags-at))))))))))
  3428. (run-hooks 'org-agenda-finalize-hook)
  3429. (when org-agenda-top-headline-filter
  3430. (org-agenda-filter-top-headline-apply
  3431. org-agenda-top-headline-filter))
  3432. (when org-agenda-tag-filter
  3433. (org-agenda-filter-apply org-agenda-tag-filter 'tag t))
  3434. (when (get 'org-agenda-tag-filter :preset-filter)
  3435. (org-agenda-filter-apply
  3436. (get 'org-agenda-tag-filter :preset-filter) 'tag t))
  3437. (when org-agenda-category-filter
  3438. (org-agenda-filter-apply org-agenda-category-filter 'category))
  3439. (when (get 'org-agenda-category-filter :preset-filter)
  3440. (org-agenda-filter-apply
  3441. (get 'org-agenda-category-filter :preset-filter) 'category))
  3442. (when org-agenda-regexp-filter
  3443. (org-agenda-filter-apply org-agenda-regexp-filter 'regexp))
  3444. (when (get 'org-agenda-regexp-filter :preset-filter)
  3445. (org-agenda-filter-apply
  3446. (get 'org-agenda-regexp-filter :preset-filter) 'regexp))
  3447. (when org-agenda-effort-filter
  3448. (org-agenda-filter-apply org-agenda-effort-filter 'effort))
  3449. (when (get 'org-agenda-effort-filter :preset-filter)
  3450. (org-agenda-filter-apply
  3451. (get 'org-agenda-effort-filter :preset-filter) 'effort))
  3452. (add-hook 'kill-buffer-hook 'org-agenda-reset-markers 'append 'local)))))
  3453. (defun org-agenda-mark-clocking-task ()
  3454. "Mark the current clock entry in the agenda if it is present."
  3455. ;; We need to widen when `org-agenda-finalize' is called from
  3456. ;; `org-agenda-change-all-lines' (e.g. in `org-agenda-clock-in')
  3457. (when (bound-and-true-p org-clock-current-task)
  3458. (save-restriction
  3459. (widen)
  3460. (org-agenda-unmark-clocking-task)
  3461. (when (marker-buffer org-clock-hd-marker)
  3462. (save-excursion
  3463. (goto-char (point-min))
  3464. (let (s ov)
  3465. (while (setq s (next-single-property-change (point) 'org-hd-marker))
  3466. (goto-char s)
  3467. (when (equal (org-get-at-bol 'org-hd-marker)
  3468. org-clock-hd-marker)
  3469. (setq ov (make-overlay (point-at-bol) (1+ (point-at-eol))))
  3470. (overlay-put ov 'type 'org-agenda-clocking)
  3471. (overlay-put ov 'face 'org-agenda-clocking)
  3472. (overlay-put ov 'help-echo
  3473. "The clock is running in this item")))))))))
  3474. (defun org-agenda-unmark-clocking-task ()
  3475. "Unmark the current clocking task."
  3476. (mapc (lambda (o)
  3477. (if (eq (overlay-get o 'type) 'org-agenda-clocking)
  3478. (delete-overlay o)))
  3479. (overlays-in (point-min) (point-max))))
  3480. (defun org-agenda-fontify-priorities ()
  3481. "Make highest priority lines bold, and lowest italic."
  3482. (interactive)
  3483. (mapc (lambda (o) (if (eq (overlay-get o 'org-type) 'org-priority)
  3484. (delete-overlay o)))
  3485. (overlays-in (point-min) (point-max)))
  3486. (save-excursion
  3487. (let (b e p ov h l)
  3488. (goto-char (point-min))
  3489. (while (re-search-forward "\\[#\\(.\\)\\]" nil t)
  3490. (setq h (or (get-char-property (point) 'org-highest-priority)
  3491. org-highest-priority)
  3492. l (or (get-char-property (point) 'org-lowest-priority)
  3493. org-lowest-priority)
  3494. p (string-to-char (match-string 1))
  3495. b (match-beginning 0)
  3496. e (if (eq org-agenda-fontify-priorities 'cookies)
  3497. (match-end 0)
  3498. (point-at-eol))
  3499. ov (make-overlay b e))
  3500. (overlay-put
  3501. ov 'face
  3502. (let ((special-face
  3503. (cond ((org-face-from-face-or-color
  3504. 'priority 'org-priority
  3505. (cdr (assoc p org-priority-faces))))
  3506. ((and (listp org-agenda-fontify-priorities)
  3507. (org-face-from-face-or-color
  3508. 'priority 'org-priority
  3509. (cdr (assoc p org-agenda-fontify-priorities)))))
  3510. ((equal p l) 'italic)
  3511. ((equal p h) 'bold))))
  3512. (if special-face (list special-face 'org-priority) 'org-priority)))
  3513. (overlay-put ov 'org-type 'org-priority)))))
  3514. (defvar org-depend-tag-blocked)
  3515. (defun org-agenda-dim-blocked-tasks (&optional invisible)
  3516. "Dim currently blocked TODOs in the agenda display.
  3517. When INVISIBLE is non-nil, hide currently blocked TODO instead of
  3518. dimming them."
  3519. (interactive "P")
  3520. (when (called-interactively-p 'interactive)
  3521. (message "Dim or hide blocked tasks..."))
  3522. (dolist (o (overlays-in (point-min) (point-max)))
  3523. (when (eq (overlay-get o 'org-type) 'org-blocked-todo)
  3524. (delete-overlay o)))
  3525. (save-excursion
  3526. (let ((inhibit-read-only t)
  3527. (org-depend-tag-blocked nil)
  3528. org-blocked-by-checkboxes)
  3529. (goto-char (point-min))
  3530. (while (let ((pos (text-property-not-all
  3531. (point) (point-max) 'todo-state nil)))
  3532. (when pos (goto-char pos)))
  3533. (setq org-blocked-by-checkboxes nil)
  3534. (let ((marker (org-get-at-bol 'org-hd-marker)))
  3535. (when (and (markerp marker)
  3536. (with-current-buffer (marker-buffer marker)
  3537. (save-excursion (goto-char marker)
  3538. (org-entry-blocked-p))))
  3539. ;; Entries blocked by checkboxes cannot be made invisible.
  3540. ;; See `org-agenda-dim-blocked-tasks' for details.
  3541. (let* ((really-invisible
  3542. (and (not org-blocked-by-checkboxes)
  3543. (or invisible (eq org-agenda-dim-blocked-tasks
  3544. 'invisible))))
  3545. (ov (make-overlay (if really-invisible (line-end-position 0)
  3546. (line-beginning-position))
  3547. (line-end-position))))
  3548. (if really-invisible (overlay-put ov 'invisible t)
  3549. (overlay-put ov 'face 'org-agenda-dimmed-todo-face))
  3550. (overlay-put ov 'org-type 'org-blocked-todo))))
  3551. (forward-line))))
  3552. (when (called-interactively-p 'interactive)
  3553. (message "Dim or hide blocked tasks...done")))
  3554. (defvar org-agenda-skip-function nil
  3555. "Function to be called at each match during agenda construction.
  3556. If this function returns nil, the current match should not be skipped.
  3557. Otherwise, the function must return a position from where the search
  3558. should be continued.
  3559. This may also be a Lisp form, it will be evaluated.
  3560. Never set this variable using `setq' or so, because then it will apply
  3561. to all future agenda commands. If you do want a global skipping condition,
  3562. use the option `org-agenda-skip-function-global' instead.
  3563. The correct usage for `org-agenda-skip-function' is to bind it with
  3564. `let' to scope it dynamically into the agenda-constructing command.
  3565. A good way to set it is through options in `org-agenda-custom-commands'.")
  3566. (defun org-agenda-skip ()
  3567. "Throw to `:skip' in places that should be skipped.
  3568. Also moves point to the end of the skipped region, so that search can
  3569. continue from there."
  3570. (let ((p (point-at-bol)) to)
  3571. (when (or
  3572. (save-excursion (goto-char p) (looking-at comment-start-skip))
  3573. (and org-agenda-skip-archived-trees (not org-agenda-archives-mode)
  3574. (get-text-property p :org-archived)
  3575. (org-end-of-subtree t))
  3576. (and org-agenda-skip-comment-trees
  3577. (get-text-property p :org-comment)
  3578. (org-end-of-subtree t))
  3579. (and (setq to (or (org-agenda-skip-eval org-agenda-skip-function-global)
  3580. (org-agenda-skip-eval org-agenda-skip-function)))
  3581. (goto-char to))
  3582. (org-in-src-block-p t))
  3583. (throw :skip t))))
  3584. (defun org-agenda-skip-eval (form)
  3585. "If FORM is a function or a list, call (or eval) it and return the result.
  3586. `save-excursion' and `save-match-data' are wrapped around the call, so point
  3587. and match data are returned to the previous state no matter what these
  3588. functions do."
  3589. (let (fp)
  3590. (and form
  3591. (or (setq fp (functionp form))
  3592. (consp form))
  3593. (save-excursion
  3594. (save-match-data
  3595. (if fp
  3596. (funcall form)
  3597. (eval form)))))))
  3598. (defvar org-agenda-markers nil
  3599. "List of all currently active markers created by `org-agenda'.")
  3600. (defvar org-agenda-last-marker-time (float-time)
  3601. "Creation time of the last agenda marker.")
  3602. (defun org-agenda-new-marker (&optional pos)
  3603. "Return a new agenda marker.
  3604. Maker is at point, or at POS if non-nil. Org mode keeps a list of
  3605. these markers and resets them when they are no longer in use."
  3606. (let ((m (copy-marker (or pos (point)) t)))
  3607. (setq org-agenda-last-marker-time (float-time))
  3608. (if org-agenda-buffer
  3609. (with-current-buffer org-agenda-buffer
  3610. (push m org-agenda-markers))
  3611. (push m org-agenda-markers))
  3612. m))
  3613. (defun org-agenda-reset-markers ()
  3614. "Reset markers created by `org-agenda'."
  3615. (while org-agenda-markers
  3616. (move-marker (pop org-agenda-markers) nil)))
  3617. (defun org-agenda-save-markers-for-cut-and-paste (beg end)
  3618. "Save relative positions of markers in region.
  3619. This check for agenda markers in all agenda buffers currently active."
  3620. (dolist (buf (buffer-list))
  3621. (with-current-buffer buf
  3622. (when (eq major-mode 'org-agenda-mode)
  3623. (mapc (lambda (m) (org-check-and-save-marker m beg end))
  3624. org-agenda-markers)))))
  3625. ;;; Entry text mode
  3626. (defun org-agenda-entry-text-show-here ()
  3627. "Add some text from the entry as context to the current line."
  3628. (let (m txt o)
  3629. (setq m (org-get-at-bol 'org-hd-marker))
  3630. (unless (marker-buffer m)
  3631. (error "No marker points to an entry here"))
  3632. (setq txt (concat "\n" (org-no-properties
  3633. (org-agenda-get-some-entry-text
  3634. m org-agenda-entry-text-maxlines
  3635. org-agenda-entry-text-leaders))))
  3636. (when (string-match "\\S-" txt)
  3637. (setq o (make-overlay (point-at-bol) (point-at-eol)))
  3638. (overlay-put o 'evaporate t)
  3639. (overlay-put o 'org-overlay-type 'agenda-entry-content)
  3640. (overlay-put o 'after-string txt))))
  3641. (defun org-agenda-entry-text-show ()
  3642. "Add entry context for all agenda lines."
  3643. (interactive)
  3644. (save-excursion
  3645. (goto-char (point-max))
  3646. (beginning-of-line 1)
  3647. (while (not (bobp))
  3648. (when (org-get-at-bol 'org-hd-marker)
  3649. (org-agenda-entry-text-show-here))
  3650. (beginning-of-line 0))))
  3651. (defun org-agenda-entry-text-hide ()
  3652. "Remove any shown entry context."
  3653. (delq nil
  3654. (mapcar (lambda (o)
  3655. (if (eq (overlay-get o 'org-overlay-type)
  3656. 'agenda-entry-content)
  3657. (progn (delete-overlay o) t)))
  3658. (overlays-in (point-min) (point-max)))))
  3659. (defun org-agenda-get-day-face (date)
  3660. "Return the face DATE should be displayed with."
  3661. (cond ((and (functionp org-agenda-day-face-function)
  3662. (funcall org-agenda-day-face-function date)))
  3663. ((org-agenda-today-p date) 'org-agenda-date-today)
  3664. ((memq (calendar-day-of-week date) org-agenda-weekend-days)
  3665. 'org-agenda-date-weekend)
  3666. (t 'org-agenda-date)))
  3667. ;;; Agenda timeline
  3668. (defvar org-agenda-only-exact-dates nil) ; dynamically scoped
  3669. (defvar org-agenda-show-log-scoped) ;; dynamically scope in `org-timeline' or `org-agenda-list'
  3670. (defun org-timeline (&optional dotodo)
  3671. "Show a time-sorted view of the entries in the current Org file.
  3672. Only entries with a time stamp of today or later will be listed.
  3673. With `\\[universal-argument]' prefix, all unfinished TODO items will also be \
  3674. shown,
  3675. under the current date.
  3676. If the buffer contains an active region, only check the region
  3677. for dates."
  3678. (interactive "P")
  3679. (let* ((dopast t)
  3680. (org-agenda-show-log-scoped org-agenda-show-log)
  3681. (org-agenda-show-log org-agenda-show-log-scoped)
  3682. (entry (buffer-file-name (or (buffer-base-buffer (current-buffer))
  3683. (current-buffer))))
  3684. (date (calendar-current-date))
  3685. (beg (if (org-region-active-p) (region-beginning) (point-min)))
  3686. (end (if (org-region-active-p) (region-end) (point-max)))
  3687. (day-numbers (org-get-all-dates
  3688. beg end 'no-ranges
  3689. t org-agenda-show-log-scoped ; always include today
  3690. org-timeline-show-empty-dates))
  3691. (org-deadline-warning-days 0)
  3692. (org-agenda-only-exact-dates t)
  3693. (today (org-today))
  3694. (past t)
  3695. args
  3696. s e rtn d emptyp)
  3697. (setq org-agenda-redo-command
  3698. (list 'let
  3699. (list (list 'org-agenda-show-log 'org-agenda-show-log))
  3700. (list 'org-switch-to-buffer-other-window (current-buffer))
  3701. (list 'org-timeline (list 'quote dotodo))))
  3702. (put 'org-agenda-redo-command 'org-lprops nil)
  3703. (if (not dopast)
  3704. ;; Remove past dates from the list of dates.
  3705. (setq day-numbers (delq nil (mapcar (lambda(x)
  3706. (if (>= x today) x nil))
  3707. day-numbers))))
  3708. (org-agenda-prepare (concat "Timeline " (file-name-nondirectory entry)))
  3709. (org-compile-prefix-format 'timeline)
  3710. (org-set-sorting-strategy 'timeline)
  3711. (if org-agenda-show-log-scoped (push :closed args))
  3712. (push :timestamp args)
  3713. (push :deadline args)
  3714. (push :scheduled args)
  3715. (push :sexp args)
  3716. (if dotodo (push :todo args))
  3717. (insert "Timeline of file " entry "\n")
  3718. (add-text-properties (point-min) (point)
  3719. (list 'face 'org-agenda-structure))
  3720. (org-agenda-mark-header-line (point-min))
  3721. (while (setq d (pop day-numbers))
  3722. (if (and (listp d) (eq (car d) :omitted))
  3723. (progn
  3724. (setq s (point))
  3725. (insert (format "\n[... %d empty days omitted]\n\n" (cdr d)))
  3726. (put-text-property s (1- (point)) 'face 'org-agenda-structure))
  3727. (if (listp d) (setq d (car d) emptyp t) (setq emptyp nil))
  3728. (if (and (>= d today)
  3729. dopast
  3730. past)
  3731. (progn
  3732. (setq past nil)
  3733. (insert (make-string 79 ?-) "\n")))
  3734. (setq date (calendar-gregorian-from-absolute d))
  3735. (setq s (point))
  3736. (setq rtn (and (not emptyp)
  3737. (apply 'org-agenda-get-day-entries entry
  3738. date args)))
  3739. (if (or rtn (equal d today) org-timeline-show-empty-dates)
  3740. (progn
  3741. (insert
  3742. (if (stringp org-agenda-format-date)
  3743. (format-time-string org-agenda-format-date
  3744. (org-time-from-absolute date))
  3745. (funcall org-agenda-format-date date))
  3746. "\n")
  3747. (put-text-property s (1- (point)) 'face
  3748. (org-agenda-get-day-face date))
  3749. (put-text-property s (1- (point)) 'org-date-line t)
  3750. (put-text-property s (1- (point)) 'org-agenda-date-header t)
  3751. (if (equal d today)
  3752. (put-text-property s (1- (point)) 'org-today t))
  3753. (and rtn (insert (org-agenda-finalize-entries rtn 'timeline) "\n"))
  3754. (put-text-property s (1- (point)) 'day d)))))
  3755. (goto-char (or (text-property-any (point-min) (point-max) 'org-today t)
  3756. (point-min)))
  3757. (add-text-properties
  3758. (point-min) (point-max)
  3759. `(org-agenda-type timeline org-redo-cmd ,org-agenda-redo-command))
  3760. (org-agenda-finalize)
  3761. (setq buffer-read-only t)))
  3762. (defun org-get-all-dates (beg end &optional no-ranges force-today inactive empty pre-re)
  3763. "Return a list of all relevant day numbers from BEG to END buffer positions.
  3764. If NO-RANGES is non-nil, include only the start and end dates of a range,
  3765. not every single day in the range. If FORCE-TODAY is non-nil, make
  3766. sure that TODAY is included in the list. If INACTIVE is non-nil, also
  3767. inactive time stamps (those in square brackets) are included.
  3768. When EMPTY is non-nil, also include days without any entries."
  3769. (let ((re (concat
  3770. (if pre-re pre-re "")
  3771. (if inactive org-ts-regexp-both org-ts-regexp)))
  3772. dates dates1 date day day1 day2 ts1 ts2 pos)
  3773. (if force-today
  3774. (setq dates (list (org-today))))
  3775. (save-excursion
  3776. (goto-char beg)
  3777. (while (re-search-forward re end t)
  3778. (setq day (time-to-days (org-time-string-to-time
  3779. (substring (match-string 1) 0 10)
  3780. (current-buffer) (match-beginning 0))))
  3781. (or (memq day dates) (push day dates)))
  3782. (unless no-ranges
  3783. (goto-char beg)
  3784. (while (re-search-forward org-tr-regexp end t)
  3785. (setq pos (match-beginning 0))
  3786. (setq ts1 (substring (match-string 1) 0 10)
  3787. ts2 (substring (match-string 2) 0 10)
  3788. day1 (time-to-days (org-time-string-to-time
  3789. ts1 (current-buffer) pos))
  3790. day2 (time-to-days (org-time-string-to-time
  3791. ts2 (current-buffer) pos)))
  3792. (while (< (setq day1 (1+ day1)) day2)
  3793. (or (memq day1 dates) (push day1 dates)))))
  3794. (setq dates (sort dates '<))
  3795. (when empty
  3796. (while (setq day (pop dates))
  3797. (setq day2 (car dates))
  3798. (push day dates1)
  3799. (when (and day2 empty)
  3800. (if (or (eq empty t)
  3801. (and (numberp empty) (<= (- day2 day) empty)))
  3802. (while (< (setq day (1+ day)) day2)
  3803. (push (list day) dates1))
  3804. (push (cons :omitted (- day2 day)) dates1))))
  3805. (setq dates (nreverse dates1)))
  3806. dates)))
  3807. ;;; Agenda Daily/Weekly
  3808. (defvar org-agenda-start-day nil ; dynamically scoped parameter
  3809. "Start day for the agenda view.
  3810. Custom commands can set this variable in the options section.
  3811. This is usually a string like \"2007-11-01\", \"+2d\" or any other
  3812. input allowed when reading a date through the Org calendar.
  3813. See the docstring of `org-read-date' for details.")
  3814. (defvar org-starting-day nil) ; local variable in the agenda buffer
  3815. (defvar org-arg-loc nil) ; local variable
  3816. (defvar org-agenda-buffer-tmp-name nil)
  3817. ;;;###autoload
  3818. (defun org-agenda-list (&optional arg start-day span with-hour)
  3819. "Produce a daily/weekly view from all files in variable `org-agenda-files'.
  3820. The view will be for the current day or week, but from the overview buffer
  3821. you will be able to go to other days/weeks.
  3822. With a numeric prefix argument in an interactive call, the agenda will
  3823. span ARG days. Lisp programs should instead specify SPAN to change
  3824. the number of days. SPAN defaults to `org-agenda-span'.
  3825. START-DAY defaults to TODAY, or to the most recent match for the weekday
  3826. given in `org-agenda-start-on-weekday'.
  3827. When WITH-HOUR is non-nil, only include scheduled and deadline
  3828. items if they have an hour specification like [h]h:mm."
  3829. (interactive "P")
  3830. (if org-agenda-overriding-arguments
  3831. (setq arg (car org-agenda-overriding-arguments)
  3832. start-day (nth 1 org-agenda-overriding-arguments)
  3833. span (nth 2 org-agenda-overriding-arguments)))
  3834. (if (and (integerp arg) (> arg 0))
  3835. (setq span arg arg nil))
  3836. (catch 'exit
  3837. (setq org-agenda-buffer-name
  3838. (or org-agenda-buffer-tmp-name
  3839. (if org-agenda-sticky
  3840. (cond ((and org-keys (stringp org-match))
  3841. (format "*Org Agenda(%s:%s)*" org-keys org-match))
  3842. (org-keys
  3843. (format "*Org Agenda(%s)*" org-keys))
  3844. (t "*Org Agenda(a)*")))
  3845. org-agenda-buffer-name))
  3846. (org-agenda-prepare "Day/Week")
  3847. (setq start-day (or start-day org-agenda-start-day))
  3848. (if (stringp start-day)
  3849. ;; Convert to an absolute day number
  3850. (setq start-day (time-to-days (org-read-date nil t start-day))))
  3851. (org-compile-prefix-format 'agenda)
  3852. (org-set-sorting-strategy 'agenda)
  3853. (let* ((span (org-agenda-ndays-to-span (or span org-agenda-span)))
  3854. (today (org-today))
  3855. (sd (or start-day today))
  3856. (ndays (org-agenda-span-to-ndays span sd))
  3857. (org-agenda-start-on-weekday
  3858. (if (or (eq ndays 7) (eq ndays 14))
  3859. org-agenda-start-on-weekday))
  3860. (thefiles (org-agenda-files nil 'ifmode))
  3861. (files thefiles)
  3862. (start (if (or (null org-agenda-start-on-weekday)
  3863. (< ndays 7))
  3864. sd
  3865. (let* ((nt (calendar-day-of-week
  3866. (calendar-gregorian-from-absolute sd)))
  3867. (n1 org-agenda-start-on-weekday)
  3868. (d (- nt n1)))
  3869. (- sd (+ (if (< d 0) 7 0) d)))))
  3870. (day-numbers (list start))
  3871. (day-cnt 0)
  3872. (inhibit-redisplay (not debug-on-error))
  3873. (org-agenda-show-log-scoped org-agenda-show-log)
  3874. s e rtn rtnall file date d start-pos end-pos todayp
  3875. clocktable-start clocktable-end filter)
  3876. (setq org-agenda-redo-command
  3877. (list 'org-agenda-list (list 'quote arg) start-day (list 'quote span) with-hour))
  3878. (dotimes (n (1- ndays))
  3879. (push (1+ (car day-numbers)) day-numbers))
  3880. (setq day-numbers (nreverse day-numbers))
  3881. (setq clocktable-start (car day-numbers)
  3882. clocktable-end (1+ (or (org-last day-numbers) 0)))
  3883. (setq-local org-starting-day (car day-numbers))
  3884. (setq-local org-arg-loc arg)
  3885. (setq-local org-agenda-current-span (org-agenda-ndays-to-span span))
  3886. (unless org-agenda-compact-blocks
  3887. (let* ((d1 (car day-numbers))
  3888. (d2 (org-last day-numbers))
  3889. (w1 (org-days-to-iso-week d1))
  3890. (w2 (org-days-to-iso-week d2)))
  3891. (setq s (point))
  3892. (if org-agenda-overriding-header
  3893. (insert (org-add-props (copy-sequence org-agenda-overriding-header)
  3894. nil 'face 'org-agenda-structure) "\n")
  3895. (insert (org-agenda-span-name span)
  3896. "-agenda"
  3897. (if (< (- d2 d1) 350)
  3898. (if (= w1 w2)
  3899. (format " (W%02d)" w1)
  3900. (format " (W%02d-W%02d)" w1 w2))
  3901. "")
  3902. ":\n")))
  3903. (add-text-properties s (1- (point)) (list 'face 'org-agenda-structure
  3904. 'org-date-line t))
  3905. (org-agenda-mark-header-line s))
  3906. (while (setq d (pop day-numbers))
  3907. (setq date (calendar-gregorian-from-absolute d)
  3908. s (point))
  3909. (if (or (setq todayp (= d today))
  3910. (and (not start-pos) (= d sd)))
  3911. (setq start-pos (point))
  3912. (if (and start-pos (not end-pos))
  3913. (setq end-pos (point))))
  3914. (setq files thefiles
  3915. rtnall nil)
  3916. (while (setq file (pop files))
  3917. (catch 'nextfile
  3918. (org-check-agenda-file file)
  3919. (let ((org-agenda-entry-types org-agenda-entry-types))
  3920. ;; Starred types override non-starred equivalents
  3921. (when (member :deadline* org-agenda-entry-types)
  3922. (setq org-agenda-entry-types
  3923. (delq :deadline org-agenda-entry-types)))
  3924. (when (member :scheduled* org-agenda-entry-types)
  3925. (setq org-agenda-entry-types
  3926. (delq :scheduled org-agenda-entry-types)))
  3927. ;; Honor with-hour
  3928. (when with-hour
  3929. (when (member :deadline org-agenda-entry-types)
  3930. (setq org-agenda-entry-types
  3931. (delq :deadline org-agenda-entry-types))
  3932. (push :deadline* org-agenda-entry-types))
  3933. (when (member :scheduled org-agenda-entry-types)
  3934. (setq org-agenda-entry-types
  3935. (delq :scheduled org-agenda-entry-types))
  3936. (push :scheduled* org-agenda-entry-types)))
  3937. (unless org-agenda-include-deadlines
  3938. (setq org-agenda-entry-types
  3939. (delq :deadline* (delq :deadline org-agenda-entry-types))))
  3940. (cond
  3941. ((memq org-agenda-show-log-scoped '(only clockcheck))
  3942. (setq rtn (org-agenda-get-day-entries
  3943. file date :closed)))
  3944. (org-agenda-show-log-scoped
  3945. (setq rtn (apply 'org-agenda-get-day-entries
  3946. file date
  3947. (append '(:closed) org-agenda-entry-types))))
  3948. (t
  3949. (setq rtn (apply 'org-agenda-get-day-entries
  3950. file date
  3951. org-agenda-entry-types)))))
  3952. (setq rtnall (append rtnall rtn)))) ;; all entries
  3953. (if org-agenda-include-diary
  3954. (let ((org-agenda-search-headline-for-time t))
  3955. (require 'diary-lib)
  3956. (setq rtn (org-get-entries-from-diary date))
  3957. (setq rtnall (append rtnall rtn))))
  3958. (if (or rtnall org-agenda-show-all-dates)
  3959. (progn
  3960. (setq day-cnt (1+ day-cnt))
  3961. (insert
  3962. (if (stringp org-agenda-format-date)
  3963. (format-time-string org-agenda-format-date
  3964. (org-time-from-absolute date))
  3965. (funcall org-agenda-format-date date))
  3966. "\n")
  3967. (put-text-property s (1- (point)) 'face
  3968. (org-agenda-get-day-face date))
  3969. (put-text-property s (1- (point)) 'org-date-line t)
  3970. (put-text-property s (1- (point)) 'org-agenda-date-header t)
  3971. (put-text-property s (1- (point)) 'org-day-cnt day-cnt)
  3972. (when todayp
  3973. (put-text-property s (1- (point)) 'org-today t))
  3974. (setq rtnall
  3975. (org-agenda-add-time-grid-maybe rtnall ndays todayp))
  3976. (if rtnall (insert ;; all entries
  3977. (org-agenda-finalize-entries rtnall 'agenda)
  3978. "\n"))
  3979. (put-text-property s (1- (point)) 'day d)
  3980. (put-text-property s (1- (point)) 'org-day-cnt day-cnt))))
  3981. (when (and org-agenda-clockreport-mode clocktable-start)
  3982. (let ((org-agenda-files (org-agenda-files nil 'ifmode))
  3983. ;; the above line is to ensure the restricted range!
  3984. (p (copy-sequence org-agenda-clockreport-parameter-plist))
  3985. tbl)
  3986. (setq p (org-plist-delete p :block))
  3987. (setq p (plist-put p :tstart clocktable-start))
  3988. (setq p (plist-put p :tend clocktable-end))
  3989. (setq p (plist-put p :scope 'agenda))
  3990. (setq tbl (apply 'org-clock-get-clocktable p))
  3991. (insert tbl)))
  3992. (goto-char (point-min))
  3993. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  3994. (unless (and (pos-visible-in-window-p (point-min))
  3995. (pos-visible-in-window-p (point-max)))
  3996. (goto-char (1- (point-max)))
  3997. (recenter -1)
  3998. (if (not (pos-visible-in-window-p (or start-pos 1)))
  3999. (progn
  4000. (goto-char (or start-pos 1))
  4001. (recenter 1))))
  4002. (goto-char (or start-pos 1))
  4003. (add-text-properties (point-min) (point-max)
  4004. `(org-agenda-type agenda
  4005. org-last-args (,arg ,start-day ,span)
  4006. org-redo-cmd ,org-agenda-redo-command
  4007. org-series-cmd ,org-cmd))
  4008. (if (eq org-agenda-show-log-scoped 'clockcheck)
  4009. (org-agenda-show-clocking-issues))
  4010. (org-agenda-finalize)
  4011. (setq buffer-read-only t)
  4012. (message ""))))
  4013. (defun org-agenda-ndays-to-span (n)
  4014. "Return a span symbol for a span of N days, or N if none matches."
  4015. (cond ((symbolp n) n)
  4016. ((= n 1) 'day)
  4017. ((= n 7) 'week)
  4018. ((= n 14) 'fortnight)
  4019. (t n)))
  4020. (defun org-agenda-span-to-ndays (span &optional start-day)
  4021. "Return ndays from SPAN, possibly starting at START-DAY.
  4022. START-DAY is an absolute time value."
  4023. (cond ((numberp span) span)
  4024. ((eq span 'day) 1)
  4025. ((eq span 'week) 7)
  4026. ((eq span 'fortnight) 14)
  4027. ((eq span 'month)
  4028. (let ((date (calendar-gregorian-from-absolute start-day)))
  4029. (calendar-last-day-of-month (car date) (cl-caddr date))))
  4030. ((eq span 'year)
  4031. (let ((date (calendar-gregorian-from-absolute start-day)))
  4032. (if (calendar-leap-year-p (cl-caddr date)) 366 365)))))
  4033. (defun org-agenda-span-name (span)
  4034. "Return a SPAN name."
  4035. (if (null span)
  4036. ""
  4037. (if (symbolp span)
  4038. (capitalize (symbol-name span))
  4039. (format "%d days" span))))
  4040. ;;; Agenda word search
  4041. (defvar org-agenda-search-history nil)
  4042. (defvar org-search-syntax-table nil
  4043. "Special syntax table for Org search.
  4044. In this table, we have single quotes not as word constituents, to
  4045. that when \"+Ameli\" is searched as a work, it will also match \"Ameli's\"")
  4046. (defvar org-mode-syntax-table) ; From org.el
  4047. (defun org-search-syntax-table ()
  4048. (unless org-search-syntax-table
  4049. (setq org-search-syntax-table (copy-syntax-table org-mode-syntax-table))
  4050. (modify-syntax-entry ?' "." org-search-syntax-table)
  4051. (modify-syntax-entry ?` "." org-search-syntax-table))
  4052. org-search-syntax-table)
  4053. (defvar org-agenda-last-search-view-search-was-boolean nil)
  4054. ;;;###autoload
  4055. (defun org-search-view (&optional todo-only string edit-at)
  4056. "Show all entries that contain a phrase or words or regular expressions.
  4057. With optional prefix argument TODO-ONLY, only consider entries that are
  4058. TODO entries. The argument STRING can be used to pass a default search
  4059. string into this function. If EDIT-AT is non-nil, it means that the
  4060. user should get a chance to edit this string, with cursor at position
  4061. EDIT-AT.
  4062. The search string can be viewed either as a phrase that should be found as
  4063. is, or it can be broken into a number of snippets, each of which must match
  4064. in a Boolean way to select an entry. The default depends on the variable
  4065. `org-agenda-search-view-always-boolean'.
  4066. Even if this is turned off (the default) you can always switch to
  4067. Boolean search dynamically by preceding the first word with \"+\" or \"-\".
  4068. The default is a direct search of the whole phrase, where each space in
  4069. the search string can expand to an arbitrary amount of whitespace,
  4070. including newlines.
  4071. If using a Boolean search, the search string is split on whitespace and
  4072. each snippet is searched separately, with logical AND to select an entry.
  4073. Words prefixed with a minus must *not* occur in the entry. Words without
  4074. a prefix or prefixed with a plus must occur in the entry. Matching is
  4075. case-insensitive. Words are enclosed by word delimiters (i.e. they must
  4076. match whole words, not parts of a word) if
  4077. `org-agenda-search-view-force-full-words' is set (default is nil).
  4078. Boolean search snippets enclosed by curly braces are interpreted as
  4079. regular expressions that must or (when preceded with \"-\") must not
  4080. match in the entry. Snippets enclosed into double quotes will be taken
  4081. as a whole, to include whitespace.
  4082. - If the search string starts with an asterisk, search only in headlines.
  4083. - If (possibly after the leading star) the search string starts with an
  4084. exclamation mark, this also means to look at TODO entries only, an effect
  4085. that can also be achieved with a prefix argument.
  4086. - If (possibly after star and exclamation mark) the search string starts
  4087. with a colon, this will mean that the (non-regexp) snippets of the
  4088. Boolean search must match as full words.
  4089. This command searches the agenda files, and in addition the files listed
  4090. in `org-agenda-text-search-extra-files'."
  4091. (interactive "P")
  4092. (if org-agenda-overriding-arguments
  4093. (setq todo-only (car org-agenda-overriding-arguments)
  4094. string (nth 1 org-agenda-overriding-arguments)
  4095. edit-at (nth 2 org-agenda-overriding-arguments)))
  4096. (let* ((props (list 'face nil
  4097. 'done-face 'org-agenda-done
  4098. 'org-not-done-regexp org-not-done-regexp
  4099. 'org-todo-regexp org-todo-regexp
  4100. 'org-complex-heading-regexp org-complex-heading-regexp
  4101. 'mouse-face 'highlight
  4102. 'help-echo (format "mouse-2 or RET jump to location")))
  4103. (full-words org-agenda-search-view-force-full-words)
  4104. (org-agenda-text-search-extra-files org-agenda-text-search-extra-files)
  4105. regexp rtn rtnall files file pos inherited-tags
  4106. marker category level tags c neg re boolean
  4107. ee txt beg end words regexps+ regexps- hdl-only buffer beg1 str)
  4108. (unless (and (not edit-at)
  4109. (stringp string)
  4110. (string-match "\\S-" string))
  4111. (setq string (read-string
  4112. (if org-agenda-search-view-always-boolean
  4113. "[+-]Word/{Regexp} ...: "
  4114. "Phrase or [+-]Word/{Regexp} ...: ")
  4115. (cond
  4116. ((integerp edit-at) (cons string edit-at))
  4117. (edit-at string))
  4118. 'org-agenda-search-history)))
  4119. (catch 'exit
  4120. (if org-agenda-sticky
  4121. (setq org-agenda-buffer-name
  4122. (if (stringp string)
  4123. (format "*Org Agenda(%s:%s)*"
  4124. (or org-keys (or (and todo-only "S") "s")) string)
  4125. (format "*Org Agenda(%s)*" (or (and todo-only "S") "s")))))
  4126. (org-agenda-prepare "SEARCH")
  4127. (org-compile-prefix-format 'search)
  4128. (org-set-sorting-strategy 'search)
  4129. (setq org-agenda-redo-command
  4130. (list 'org-search-view (if todo-only t nil)
  4131. (list 'if 'current-prefix-arg nil string)))
  4132. (setq org-agenda-query-string string)
  4133. (if (equal (string-to-char string) ?*)
  4134. (setq hdl-only t
  4135. words (substring string 1))
  4136. (setq words string))
  4137. (when (equal (string-to-char words) ?!)
  4138. (setq todo-only t
  4139. words (substring words 1)))
  4140. (when (equal (string-to-char words) ?:)
  4141. (setq full-words t
  4142. words (substring words 1)))
  4143. (if (or org-agenda-search-view-always-boolean
  4144. (member (string-to-char words) '(?- ?+ ?\{)))
  4145. (setq boolean t))
  4146. (setq words (org-split-string words))
  4147. (let (www w)
  4148. (while (setq w (pop words))
  4149. (while (and (string-match "\\\\\\'" w) words)
  4150. (setq w (concat (substring w 0 -1) " " (pop words))))
  4151. (push w www))
  4152. (setq words (nreverse www) www nil)
  4153. (while (setq w (pop words))
  4154. (when (and (string-match "\\`[-+]?{" w)
  4155. (not (string-match "}\\'" w)))
  4156. (while (and words (not (string-match "}\\'" (car words))))
  4157. (setq w (concat w " " (pop words))))
  4158. (setq w (concat w " " (pop words))))
  4159. (push w www))
  4160. (setq words (nreverse www)))
  4161. (setq org-agenda-last-search-view-search-was-boolean boolean)
  4162. (when boolean
  4163. (let (wds w)
  4164. (while (setq w (pop words))
  4165. (if (or (equal (substring w 0 1) "\"")
  4166. (and (> (length w) 1)
  4167. (member (substring w 0 1) '("+" "-"))
  4168. (equal (substring w 1 2) "\"")))
  4169. (while (and words (not (equal (substring w -1) "\"")))
  4170. (setq w (concat w " " (pop words)))))
  4171. (and (string-match "\\`\\([-+]?\\)\"" w)
  4172. (setq w (replace-match "\\1" nil nil w)))
  4173. (and (equal (substring w -1) "\"") (setq w (substring w 0 -1)))
  4174. (push w wds))
  4175. (setq words (nreverse wds))))
  4176. (if boolean
  4177. (mapc (lambda (w)
  4178. (setq c (string-to-char w))
  4179. (if (equal c ?-)
  4180. (setq neg t w (substring w 1))
  4181. (if (equal c ?+)
  4182. (setq neg nil w (substring w 1))
  4183. (setq neg nil)))
  4184. (if (string-match "\\`{.*}\\'" w)
  4185. (setq re (substring w 1 -1))
  4186. (if full-words
  4187. (setq re (concat "\\<" (regexp-quote (downcase w)) "\\>"))
  4188. (setq re (regexp-quote (downcase w)))))
  4189. (if neg (push re regexps-) (push re regexps+)))
  4190. words)
  4191. (push (mapconcat (lambda (w) (regexp-quote w)) words "\\s-+")
  4192. regexps+))
  4193. (setq regexps+ (sort regexps+ (lambda (a b) (> (length a) (length b)))))
  4194. (if (not regexps+)
  4195. (setq regexp org-outline-regexp-bol)
  4196. (setq regexp (pop regexps+))
  4197. (if hdl-only (setq regexp (concat org-outline-regexp-bol ".*?"
  4198. regexp))))
  4199. (setq files (org-agenda-files nil 'ifmode))
  4200. (when (eq (car org-agenda-text-search-extra-files) 'agenda-archives)
  4201. (pop org-agenda-text-search-extra-files)
  4202. (setq files (org-add-archive-files files)))
  4203. (setq files (append files org-agenda-text-search-extra-files)
  4204. rtnall nil)
  4205. (while (setq file (pop files))
  4206. (setq ee nil)
  4207. (catch 'nextfile
  4208. (org-check-agenda-file file)
  4209. (setq buffer (if (file-exists-p file)
  4210. (org-get-agenda-file-buffer file)
  4211. (error "No such file %s" file)))
  4212. (if (not buffer)
  4213. ;; If file does not exist, make sure an error message is sent
  4214. (setq rtn (list (format "ORG-AGENDA-ERROR: No such org-file %s"
  4215. file))))
  4216. (with-current-buffer buffer
  4217. (with-syntax-table (org-search-syntax-table)
  4218. (unless (derived-mode-p 'org-mode)
  4219. (error "Agenda file %s is not in `org-mode'" file))
  4220. (let ((case-fold-search t))
  4221. (save-excursion
  4222. (save-restriction
  4223. (if (eq buffer org-agenda-restrict)
  4224. (narrow-to-region org-agenda-restrict-begin
  4225. org-agenda-restrict-end)
  4226. (widen))
  4227. (goto-char (point-min))
  4228. (unless (or (org-at-heading-p)
  4229. (outline-next-heading))
  4230. (throw 'nextfile t))
  4231. (goto-char (max (point-min) (1- (point))))
  4232. (while (re-search-forward regexp nil t)
  4233. (org-back-to-heading t)
  4234. (while (and (not (zerop org-agenda-search-view-max-outline-level))
  4235. (> (org-reduced-level (org-outline-level))
  4236. org-agenda-search-view-max-outline-level)
  4237. (forward-line -1)
  4238. (org-back-to-heading t)))
  4239. (skip-chars-forward "* ")
  4240. (setq beg (point-at-bol)
  4241. beg1 (point)
  4242. end (progn
  4243. (outline-next-heading)
  4244. (while (and (not (zerop org-agenda-search-view-max-outline-level))
  4245. (> (org-reduced-level (org-outline-level))
  4246. org-agenda-search-view-max-outline-level)
  4247. (forward-line 1)
  4248. (outline-next-heading)))
  4249. (point)))
  4250. (catch :skip
  4251. (goto-char beg)
  4252. (org-agenda-skip)
  4253. (setq str (buffer-substring-no-properties
  4254. (point-at-bol)
  4255. (if hdl-only (point-at-eol) end)))
  4256. (mapc (lambda (wr) (when (string-match wr str)
  4257. (goto-char (1- end))
  4258. (throw :skip t)))
  4259. regexps-)
  4260. (mapc (lambda (wr) (unless (string-match wr str)
  4261. (goto-char (1- end))
  4262. (throw :skip t)))
  4263. (if todo-only
  4264. (cons (concat "^\\*+[ \t]+"
  4265. org-not-done-regexp)
  4266. regexps+)
  4267. regexps+))
  4268. (goto-char beg)
  4269. (setq marker (org-agenda-new-marker (point))
  4270. category (org-get-category)
  4271. level (make-string (org-reduced-level (org-outline-level)) ? )
  4272. inherited-tags
  4273. (or (eq org-agenda-show-inherited-tags 'always)
  4274. (and (listp org-agenda-show-inherited-tags)
  4275. (memq 'todo org-agenda-show-inherited-tags))
  4276. (and (eq org-agenda-show-inherited-tags t)
  4277. (or (eq org-agenda-use-tag-inheritance t)
  4278. (memq 'todo org-agenda-use-tag-inheritance))))
  4279. tags (org-get-tags-at nil (not inherited-tags))
  4280. txt (org-agenda-format-item
  4281. ""
  4282. (buffer-substring-no-properties
  4283. beg1 (point-at-eol))
  4284. level category tags t))
  4285. (org-add-props txt props
  4286. 'org-marker marker 'org-hd-marker marker
  4287. 'org-todo-regexp org-todo-regexp
  4288. 'level level
  4289. 'org-complex-heading-regexp org-complex-heading-regexp
  4290. 'priority 1000
  4291. 'type "search")
  4292. (push txt ee)
  4293. (goto-char (1- end))))))))))
  4294. (setq rtn (nreverse ee))
  4295. (setq rtnall (append rtnall rtn)))
  4296. (if org-agenda-overriding-header
  4297. (insert (org-add-props (copy-sequence org-agenda-overriding-header)
  4298. nil 'face 'org-agenda-structure) "\n")
  4299. (insert "Search words: ")
  4300. (add-text-properties (point-min) (1- (point))
  4301. (list 'face 'org-agenda-structure))
  4302. (setq pos (point))
  4303. (insert string "\n")
  4304. (add-text-properties pos (1- (point)) (list 'face 'org-warning))
  4305. (setq pos (point))
  4306. (unless org-agenda-multi
  4307. (insert (substitute-command-keys "\
  4308. Press `\\[org-agenda-manipulate-query-add]', \
  4309. `\\[org-agenda-manipulate-query-subtract]' to add/sub word, \
  4310. `\\[org-agenda-manipulate-query-add-re]', \
  4311. `\\[org-agenda-manipulate-query-subtract-re]' to add/sub regexp, \
  4312. `\\[universal-argument] \\[org-agenda-redo]' to edit\n"))
  4313. (add-text-properties pos (1- (point))
  4314. (list 'face 'org-agenda-structure))))
  4315. (org-agenda-mark-header-line (point-min))
  4316. (when rtnall
  4317. (insert (org-agenda-finalize-entries rtnall 'search) "\n"))
  4318. (goto-char (point-min))
  4319. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4320. (add-text-properties (point-min) (point-max)
  4321. `(org-agenda-type search
  4322. org-last-args (,todo-only ,string ,edit-at)
  4323. org-redo-cmd ,org-agenda-redo-command
  4324. org-series-cmd ,org-cmd))
  4325. (org-agenda-finalize)
  4326. (setq buffer-read-only t))))
  4327. ;;; Agenda TODO list
  4328. (defun org-agenda-propertize-selected-todo-keywords (keywords)
  4329. "Use `org-todo-keyword-faces' for the selected todo KEYWORDS."
  4330. (concat
  4331. (if (or (equal keywords "ALL") (not keywords))
  4332. (propertize "ALL" 'face 'warning)
  4333. (mapconcat
  4334. (lambda (kw)
  4335. (propertize kw 'face (org-get-todo-face kw)))
  4336. (org-split-string keywords "|")
  4337. "|"))
  4338. "\n"))
  4339. (defvar org-select-this-todo-keyword nil)
  4340. (defvar org-last-arg nil)
  4341. ;;;###autoload
  4342. (defun org-todo-list (&optional arg)
  4343. "Show all (not done) TODO entries from all agenda file in a single list.
  4344. The prefix arg can be used to select a specific TODO keyword and limit
  4345. the list to these. When using `\\[universal-argument]', you will be prompted
  4346. for a keyword. A numeric prefix directly selects the Nth keyword in
  4347. `org-todo-keywords-1'."
  4348. (interactive "P")
  4349. (if org-agenda-overriding-arguments
  4350. (setq arg org-agenda-overriding-arguments))
  4351. (if (and (stringp arg) (not (string-match "\\S-" arg))) (setq arg nil))
  4352. (let* ((today (org-today))
  4353. (date (calendar-gregorian-from-absolute today))
  4354. (kwds org-todo-keywords-for-agenda)
  4355. (completion-ignore-case t)
  4356. (org-select-this-todo-keyword
  4357. (if (stringp arg) arg
  4358. (and arg (integerp arg) (> arg 0)
  4359. (nth (1- arg) kwds))))
  4360. rtn rtnall files file pos)
  4361. (when (equal arg '(4))
  4362. (setq org-select-this-todo-keyword
  4363. (completing-read "Keyword (or KWD1|K2D2|...): "
  4364. (mapcar #'list kwds) nil nil)))
  4365. (and (equal 0 arg) (setq org-select-this-todo-keyword nil))
  4366. (catch 'exit
  4367. (if org-agenda-sticky
  4368. (setq org-agenda-buffer-name
  4369. (if (stringp org-select-this-todo-keyword)
  4370. (format "*Org Agenda(%s:%s)*" (or org-keys "t")
  4371. org-select-this-todo-keyword)
  4372. (format "*Org Agenda(%s)*" (or org-keys "t")))))
  4373. (org-agenda-prepare "TODO")
  4374. (org-compile-prefix-format 'todo)
  4375. (org-set-sorting-strategy 'todo)
  4376. (setq org-agenda-redo-command
  4377. `(org-todo-list (or (and (numberp current-prefix-arg)
  4378. current-prefix-arg)
  4379. ,org-select-this-todo-keyword
  4380. current-prefix-arg ,arg)))
  4381. (setq files (org-agenda-files nil 'ifmode)
  4382. rtnall nil)
  4383. (while (setq file (pop files))
  4384. (catch 'nextfile
  4385. (org-check-agenda-file file)
  4386. (setq rtn (org-agenda-get-day-entries file date :todo))
  4387. (setq rtnall (append rtnall rtn))))
  4388. (if org-agenda-overriding-header
  4389. (insert (org-add-props (copy-sequence org-agenda-overriding-header)
  4390. nil 'face 'org-agenda-structure) "\n")
  4391. (insert "Global list of TODO items of type: ")
  4392. (add-text-properties (point-min) (1- (point))
  4393. (list 'face 'org-agenda-structure
  4394. 'short-heading
  4395. (concat "ToDo: "
  4396. (or org-select-this-todo-keyword "ALL"))))
  4397. (org-agenda-mark-header-line (point-min))
  4398. (insert (org-agenda-propertize-selected-todo-keywords
  4399. org-select-this-todo-keyword))
  4400. (setq pos (point))
  4401. (unless org-agenda-multi
  4402. (insert (substitute-command-keys "Available with \
  4403. `N \\[org-agenda-redo]': (0)[ALL]"))
  4404. (let ((n 0) s)
  4405. (mapc (lambda (x)
  4406. (setq s (format "(%d)%s" (setq n (1+ n)) x))
  4407. (if (> (+ (current-column) (string-width s) 1) (frame-width))
  4408. (insert "\n "))
  4409. (insert " " s))
  4410. kwds))
  4411. (insert "\n"))
  4412. (add-text-properties pos (1- (point)) (list 'face 'org-agenda-structure)))
  4413. (org-agenda-mark-header-line (point-min))
  4414. (when rtnall
  4415. (insert (org-agenda-finalize-entries rtnall 'todo) "\n"))
  4416. (goto-char (point-min))
  4417. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4418. (add-text-properties (point-min) (point-max)
  4419. `(org-agenda-type todo
  4420. org-last-args ,arg
  4421. org-redo-cmd ,org-agenda-redo-command
  4422. org-series-cmd ,org-cmd))
  4423. (org-agenda-finalize)
  4424. (setq buffer-read-only t))))
  4425. ;;; Agenda tags match
  4426. ;;;###autoload
  4427. (defun org-tags-view (&optional todo-only match)
  4428. "Show all headlines for all `org-agenda-files' matching a TAGS criterion.
  4429. The prefix arg TODO-ONLY limits the search to TODO entries."
  4430. (interactive "P")
  4431. (if org-agenda-overriding-arguments
  4432. (setq todo-only (car org-agenda-overriding-arguments)
  4433. match (nth 1 org-agenda-overriding-arguments)))
  4434. (let* ((org-tags-match-list-sublevels
  4435. org-tags-match-list-sublevels)
  4436. (completion-ignore-case t)
  4437. rtn rtnall files file pos matcher
  4438. buffer)
  4439. (when (and (stringp match) (not (string-match "\\S-" match)))
  4440. (setq match nil))
  4441. (catch 'exit
  4442. (if org-agenda-sticky
  4443. (setq org-agenda-buffer-name
  4444. (if (stringp match)
  4445. (format "*Org Agenda(%s:%s)*"
  4446. (or org-keys (or (and todo-only "M") "m")) match)
  4447. (format "*Org Agenda(%s)*" (or (and todo-only "M") "m")))))
  4448. ;; Prepare agendas (and `org-tag-alist-for-agenda') before
  4449. ;; expanding tags within `org-make-tags-matcher'
  4450. (org-agenda-prepare (concat "TAGS " match))
  4451. (setq org--matcher-tags-todo-only todo-only
  4452. matcher (org-make-tags-matcher match)
  4453. match (car matcher)
  4454. matcher (cdr matcher))
  4455. (org-compile-prefix-format 'tags)
  4456. (org-set-sorting-strategy 'tags)
  4457. (setq org-agenda-query-string match)
  4458. (setq org-agenda-redo-command
  4459. (list 'org-tags-view
  4460. `(quote ,org--matcher-tags-todo-only)
  4461. `(if current-prefix-arg nil ,org-agenda-query-string)))
  4462. (setq files (org-agenda-files nil 'ifmode)
  4463. rtnall nil)
  4464. (while (setq file (pop files))
  4465. (catch 'nextfile
  4466. (org-check-agenda-file file)
  4467. (setq buffer (if (file-exists-p file)
  4468. (org-get-agenda-file-buffer file)
  4469. (error "No such file %s" file)))
  4470. (if (not buffer)
  4471. ;; If file does not exist, error message to agenda
  4472. (setq rtn (list
  4473. (format "ORG-AGENDA-ERROR: No such org-file %s" file))
  4474. rtnall (append rtnall rtn))
  4475. (with-current-buffer buffer
  4476. (unless (derived-mode-p 'org-mode)
  4477. (error "Agenda file %s is not in `org-mode'" file))
  4478. (save-excursion
  4479. (save-restriction
  4480. (if (eq buffer org-agenda-restrict)
  4481. (narrow-to-region org-agenda-restrict-begin
  4482. org-agenda-restrict-end)
  4483. (widen))
  4484. (setq rtn (org-scan-tags 'agenda
  4485. matcher
  4486. org--matcher-tags-todo-only))
  4487. (setq rtnall (append rtnall rtn))))))))
  4488. (if org-agenda-overriding-header
  4489. (insert (org-add-props (copy-sequence org-agenda-overriding-header)
  4490. nil 'face 'org-agenda-structure) "\n")
  4491. (insert "Headlines with TAGS match: ")
  4492. (add-text-properties (point-min) (1- (point))
  4493. (list 'face 'org-agenda-structure
  4494. 'short-heading
  4495. (concat "Match: " match)))
  4496. (setq pos (point))
  4497. (insert match "\n")
  4498. (add-text-properties pos (1- (point)) (list 'face 'org-warning))
  4499. (setq pos (point))
  4500. (unless org-agenda-multi
  4501. (insert (substitute-command-keys
  4502. "Press `\\[universal-argument] \\[org-agenda-redo]' \
  4503. to search again with new search string\n")))
  4504. (add-text-properties pos (1- (point))
  4505. (list 'face 'org-agenda-structure)))
  4506. (org-agenda-mark-header-line (point-min))
  4507. (when rtnall
  4508. (insert (org-agenda-finalize-entries rtnall 'tags) "\n"))
  4509. (goto-char (point-min))
  4510. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4511. (add-text-properties
  4512. (point-min) (point-max)
  4513. `(org-agenda-type tags
  4514. org-last-args (,org--matcher-tags-todo-only ,match)
  4515. org-redo-cmd ,org-agenda-redo-command
  4516. org-series-cmd ,org-cmd))
  4517. (org-agenda-finalize)
  4518. (setq buffer-read-only t))))
  4519. ;;; Agenda Finding stuck projects
  4520. (defvar org-agenda-skip-regexp nil
  4521. "Regular expression used in skipping subtrees for the agenda.
  4522. This is basically a temporary global variable that can be set and then
  4523. used by user-defined selections using `org-agenda-skip-function'.")
  4524. (defvar org-agenda-overriding-header nil
  4525. "When set during agenda, todo and tags searches it replaces the header.
  4526. This variable should not be set directly, but custom commands can bind it
  4527. in the options section.")
  4528. (defun org-agenda-skip-entry-when-regexp-matches ()
  4529. "Check if the current entry contains match for `org-agenda-skip-regexp'.
  4530. If yes, it returns the end position of this entry, causing agenda commands
  4531. to skip the entry but continuing the search in the subtree. This is a
  4532. function that can be put into `org-agenda-skip-function' for the duration
  4533. of a command."
  4534. (let ((end (save-excursion (org-end-of-subtree t)))
  4535. skip)
  4536. (save-excursion
  4537. (setq skip (re-search-forward org-agenda-skip-regexp end t)))
  4538. (and skip end)))
  4539. (defun org-agenda-skip-subtree-when-regexp-matches ()
  4540. "Check if the current subtree contains match for `org-agenda-skip-regexp'.
  4541. If yes, it returns the end position of this tree, causing agenda commands
  4542. to skip this subtree. This is a function that can be put into
  4543. `org-agenda-skip-function' for the duration of a command."
  4544. (let ((end (save-excursion (org-end-of-subtree t)))
  4545. skip)
  4546. (save-excursion
  4547. (setq skip (re-search-forward org-agenda-skip-regexp end t)))
  4548. (and skip end)))
  4549. (defun org-agenda-skip-entry-when-regexp-matches-in-subtree ()
  4550. "Check if the current subtree contains match for `org-agenda-skip-regexp'.
  4551. If yes, it returns the end position of the current entry (NOT the tree),
  4552. causing agenda commands to skip the entry but continuing the search in
  4553. the subtree. This is a function that can be put into
  4554. `org-agenda-skip-function' for the duration of a command. An important
  4555. use of this function is for the stuck project list."
  4556. (let ((end (save-excursion (org-end-of-subtree t)))
  4557. (entry-end (save-excursion (outline-next-heading) (1- (point))))
  4558. skip)
  4559. (save-excursion
  4560. (setq skip (re-search-forward org-agenda-skip-regexp end t)))
  4561. (and skip entry-end)))
  4562. (defun org-agenda-skip-entry-if (&rest conditions)
  4563. "Skip entry if any of CONDITIONS is true.
  4564. See `org-agenda-skip-if' for details."
  4565. (org-agenda-skip-if nil conditions))
  4566. (defun org-agenda-skip-subtree-if (&rest conditions)
  4567. "Skip subtree if any of CONDITIONS is true.
  4568. See `org-agenda-skip-if' for details."
  4569. (org-agenda-skip-if t conditions))
  4570. (defun org-agenda-skip-if (subtree conditions)
  4571. "Checks current entity for CONDITIONS.
  4572. If SUBTREE is non-nil, the entire subtree is checked. Otherwise, only
  4573. the entry (i.e. the text before the next heading) is checked.
  4574. CONDITIONS is a list of symbols, boolean OR is used to combine the results
  4575. from different tests. Valid conditions are:
  4576. scheduled Check if there is a scheduled cookie
  4577. notscheduled Check if there is no scheduled cookie
  4578. deadline Check if there is a deadline
  4579. notdeadline Check if there is no deadline
  4580. timestamp Check if there is a timestamp (also deadline or scheduled)
  4581. nottimestamp Check if there is no timestamp (also deadline or scheduled)
  4582. regexp Check if regexp matches
  4583. notregexp Check if regexp does not match.
  4584. todo Check if TODO keyword matches
  4585. nottodo Check if TODO keyword does not match
  4586. The regexp is taken from the conditions list, it must come right after
  4587. the `regexp' or `notregexp' element.
  4588. `todo' and `nottodo' accept as an argument a list of todo
  4589. keywords, which may include \"*\" to match any todo keyword.
  4590. (org-agenda-skip-entry-if \\='todo \\='(\"TODO\" \"WAITING\"))
  4591. would skip all entries with \"TODO\" or \"WAITING\" keywords.
  4592. Instead of a list, a keyword class may be given. For example:
  4593. (org-agenda-skip-entry-if \\='nottodo \\='done)
  4594. would skip entries that haven't been marked with any of \"DONE\"
  4595. keywords. Possible classes are: `todo', `done', `any'.
  4596. If any of these conditions is met, this function returns the end point of
  4597. the entity, causing the search to continue from there. This is a function
  4598. that can be put into `org-agenda-skip-function' for the duration of a command."
  4599. (let (beg end m)
  4600. (org-back-to-heading t)
  4601. (setq beg (point)
  4602. end (if subtree
  4603. (progn (org-end-of-subtree t) (point))
  4604. (progn (outline-next-heading) (1- (point)))))
  4605. (goto-char beg)
  4606. (and
  4607. (or
  4608. (and (memq 'scheduled conditions)
  4609. (re-search-forward org-scheduled-time-regexp end t))
  4610. (and (memq 'notscheduled conditions)
  4611. (not (re-search-forward org-scheduled-time-regexp end t)))
  4612. (and (memq 'deadline conditions)
  4613. (re-search-forward org-deadline-time-regexp end t))
  4614. (and (memq 'notdeadline conditions)
  4615. (not (re-search-forward org-deadline-time-regexp end t)))
  4616. (and (memq 'timestamp conditions)
  4617. (re-search-forward org-ts-regexp end t))
  4618. (and (memq 'nottimestamp conditions)
  4619. (not (re-search-forward org-ts-regexp end t)))
  4620. (and (setq m (memq 'regexp conditions))
  4621. (stringp (nth 1 m))
  4622. (re-search-forward (nth 1 m) end t))
  4623. (and (setq m (memq 'notregexp conditions))
  4624. (stringp (nth 1 m))
  4625. (not (re-search-forward (nth 1 m) end t)))
  4626. (and (or
  4627. (setq m (memq 'nottodo conditions))
  4628. (setq m (memq 'todo-unblocked conditions))
  4629. (setq m (memq 'nottodo-unblocked conditions))
  4630. (setq m (memq 'todo conditions)))
  4631. (org-agenda-skip-if-todo m end)))
  4632. end)))
  4633. (defun org-agenda-skip-if-todo (args end)
  4634. "Helper function for `org-agenda-skip-if', do not use it directly.
  4635. ARGS is a list with first element either `todo', `nottodo',
  4636. `todo-unblocked' or `nottodo-unblocked'. The remainder is either
  4637. a list of TODO keywords, or a state symbol `todo' or `done' or
  4638. `any'."
  4639. (let ((kw (car args))
  4640. (arg (cadr args))
  4641. todo-wds todo-re)
  4642. (setq todo-wds
  4643. (org-uniquify
  4644. (cond
  4645. ((listp arg) ;; list of keywords
  4646. (if (member "*" arg)
  4647. (mapcar 'substring-no-properties org-todo-keywords-1)
  4648. arg))
  4649. ((symbolp arg) ;; keyword class name
  4650. (cond
  4651. ((eq arg 'todo)
  4652. (org-delete-all org-done-keywords
  4653. (mapcar 'substring-no-properties
  4654. org-todo-keywords-1)))
  4655. ((eq arg 'done) org-done-keywords)
  4656. ((eq arg 'any)
  4657. (mapcar 'substring-no-properties org-todo-keywords-1)))))))
  4658. (setq todo-re
  4659. (concat "^\\*+[ \t]+\\<\\("
  4660. (mapconcat 'identity todo-wds "\\|")
  4661. "\\)\\>"))
  4662. (cond
  4663. ((eq kw 'todo) (re-search-forward todo-re end t))
  4664. ((eq kw 'nottodo) (not (re-search-forward todo-re end t)))
  4665. ((eq kw 'todo-unblocked)
  4666. (catch 'unblocked
  4667. (while (re-search-forward todo-re end t)
  4668. (or (org-entry-blocked-p) (throw 'unblocked t)))
  4669. nil))
  4670. ((eq kw 'nottodo-unblocked)
  4671. (catch 'unblocked
  4672. (while (re-search-forward todo-re end t)
  4673. (or (org-entry-blocked-p) (throw 'unblocked nil)))
  4674. t))
  4675. )))
  4676. ;;;###autoload
  4677. (defun org-agenda-list-stuck-projects (&rest ignore)
  4678. "Create agenda view for projects that are stuck.
  4679. Stuck projects are project that have no next actions. For the definitions
  4680. of what a project is and how to check if it stuck, customize the variable
  4681. `org-stuck-projects'."
  4682. (interactive)
  4683. (let* ((org-agenda-skip-function
  4684. 'org-agenda-skip-entry-when-regexp-matches-in-subtree)
  4685. ;; We could have used org-agenda-skip-if here.
  4686. (org-agenda-overriding-header
  4687. (or org-agenda-overriding-header "List of stuck projects: "))
  4688. (matcher (nth 0 org-stuck-projects))
  4689. (todo (nth 1 org-stuck-projects))
  4690. (todo-wds (if (member "*" todo)
  4691. (progn
  4692. (org-agenda-prepare-buffers (org-agenda-files
  4693. nil 'ifmode))
  4694. (org-delete-all
  4695. org-done-keywords-for-agenda
  4696. (copy-sequence org-todo-keywords-for-agenda)))
  4697. todo))
  4698. (todo-re (concat "^\\*+[ \t]+\\("
  4699. (mapconcat 'identity todo-wds "\\|")
  4700. "\\)\\>"))
  4701. (tags (nth 2 org-stuck-projects))
  4702. (tags-re (if (member "*" tags)
  4703. (concat org-outline-regexp-bol
  4704. ".*:[[:alnum:]_@#%]+:[ \t]*$")
  4705. (if tags
  4706. (concat org-outline-regexp-bol
  4707. ".*:\\("
  4708. (mapconcat #'identity tags "\\|")
  4709. "\\):[[:alnum:]_@#%:]*[ \t]*$"))))
  4710. (gen-re (nth 3 org-stuck-projects))
  4711. (re-list
  4712. (delq nil
  4713. (list
  4714. (if todo todo-re)
  4715. (if tags tags-re)
  4716. (and gen-re (stringp gen-re) (string-match "\\S-" gen-re)
  4717. gen-re)))))
  4718. (setq org-agenda-skip-regexp
  4719. (if re-list
  4720. (mapconcat 'identity re-list "\\|")
  4721. (error "No information how to identify unstuck projects")))
  4722. (org-tags-view nil matcher)
  4723. (setq org-agenda-buffer-name (buffer-name))
  4724. (with-current-buffer org-agenda-buffer-name
  4725. (setq org-agenda-redo-command
  4726. `(org-agenda-list-stuck-projects ,current-prefix-arg)))))
  4727. ;;; Diary integration
  4728. (defvar org-disable-agenda-to-diary nil) ;Dynamically-scoped param.
  4729. (defvar diary-list-entries-hook)
  4730. (defvar diary-time-regexp)
  4731. (defun org-get-entries-from-diary (date)
  4732. "Get the (Emacs Calendar) diary entries for DATE."
  4733. (require 'diary-lib)
  4734. (let* ((diary-fancy-buffer "*temporary-fancy-diary-buffer*")
  4735. (diary-display-function 'diary-fancy-display)
  4736. (pop-up-frames nil)
  4737. (diary-list-entries-hook
  4738. (cons 'org-diary-default-entry diary-list-entries-hook))
  4739. (diary-file-name-prefix nil) ; turn this feature off
  4740. (diary-modify-entry-list-string-function 'org-modify-diary-entry-string)
  4741. entries
  4742. (org-disable-agenda-to-diary t))
  4743. (save-excursion
  4744. (save-window-excursion
  4745. (funcall (if (fboundp 'diary-list-entries)
  4746. 'diary-list-entries 'list-diary-entries)
  4747. date 1)))
  4748. (if (not (get-buffer diary-fancy-buffer))
  4749. (setq entries nil)
  4750. (with-current-buffer diary-fancy-buffer
  4751. (setq buffer-read-only nil)
  4752. (if (zerop (buffer-size))
  4753. ;; No entries
  4754. (setq entries nil)
  4755. ;; Omit the date and other unnecessary stuff
  4756. (org-agenda-cleanup-fancy-diary)
  4757. ;; Add prefix to each line and extend the text properties
  4758. (if (zerop (buffer-size))
  4759. (setq entries nil)
  4760. (setq entries (buffer-substring (point-min) (- (point-max) 1)))
  4761. (setq entries
  4762. (with-temp-buffer
  4763. (insert entries) (goto-char (point-min))
  4764. (while (re-search-forward "\n[ \t]+\\(.+\\)$" nil t)
  4765. (unless (save-match-data (string-match diary-time-regexp (match-string 1)))
  4766. (replace-match (concat "; " (match-string 1)))))
  4767. (buffer-string)))))
  4768. (set-buffer-modified-p nil)
  4769. (kill-buffer diary-fancy-buffer)))
  4770. (when entries
  4771. (setq entries (org-split-string entries "\n"))
  4772. (setq entries
  4773. (mapcar
  4774. (lambda (x)
  4775. (setq x (org-agenda-format-item "" x nil "Diary" nil 'time))
  4776. ;; Extend the text properties to the beginning of the line
  4777. (org-add-props x (text-properties-at (1- (length x)) x)
  4778. 'type "diary" 'date date 'face 'org-agenda-diary))
  4779. entries)))))
  4780. (defvar org-agenda-cleanup-fancy-diary-hook nil
  4781. "Hook run when the fancy diary buffer is cleaned up.")
  4782. (defun org-agenda-cleanup-fancy-diary ()
  4783. "Remove unwanted stuff in buffer created by `fancy-diary-display'.
  4784. This gets rid of the date, the underline under the date, and
  4785. the dummy entry installed by `org-mode' to ensure non-empty diary for each
  4786. date. It also removes lines that contain only whitespace."
  4787. (goto-char (point-min))
  4788. (if (looking-at ".*?:[ \t]*")
  4789. (progn
  4790. (replace-match "")
  4791. (re-search-forward "\n=+$" nil t)
  4792. (replace-match "")
  4793. (while (re-search-backward "^ +\n?" nil t) (replace-match "")))
  4794. (re-search-forward "\n=+$" nil t)
  4795. (delete-region (point-min) (min (point-max) (1+ (match-end 0)))))
  4796. (goto-char (point-min))
  4797. (while (re-search-forward "^ +\n" nil t)
  4798. (replace-match ""))
  4799. (goto-char (point-min))
  4800. (if (re-search-forward "^Org mode dummy\n?" nil t)
  4801. (replace-match ""))
  4802. (run-hooks 'org-agenda-cleanup-fancy-diary-hook))
  4803. ;; Make sure entries from the diary have the right text properties.
  4804. (eval-after-load "diary-lib"
  4805. '(if (boundp 'diary-modify-entry-list-string-function)
  4806. ;; We can rely on the hook, nothing to do
  4807. nil
  4808. ;; Hook not available, must use advice to make this work
  4809. (defadvice add-to-diary-list (before org-mark-diary-entry activate)
  4810. "Make the position visible."
  4811. (if (and org-disable-agenda-to-diary ;; called from org-agenda
  4812. (stringp string)
  4813. buffer-file-name)
  4814. (setq string (org-modify-diary-entry-string string))))))
  4815. (defun org-modify-diary-entry-string (string)
  4816. "Add text properties to string, allowing Org to act on it."
  4817. (org-add-props string nil
  4818. 'mouse-face 'highlight
  4819. 'help-echo (if buffer-file-name
  4820. (format "mouse-2 or RET jump to diary file %s"
  4821. (abbreviate-file-name buffer-file-name))
  4822. "")
  4823. 'org-agenda-diary-link t
  4824. 'org-marker (org-agenda-new-marker (point-at-bol))))
  4825. (defun org-diary-default-entry ()
  4826. "Add a dummy entry to the diary.
  4827. Needed to avoid empty dates which mess up holiday display."
  4828. ;; Catch the error if dealing with the new add-to-diary-alist
  4829. (when org-disable-agenda-to-diary
  4830. (condition-case nil
  4831. (org-add-to-diary-list original-date "Org mode dummy" "")
  4832. (error
  4833. (org-add-to-diary-list original-date "Org mode dummy" "" nil)))))
  4834. (defun org-add-to-diary-list (&rest args)
  4835. (if (fboundp 'diary-add-to-list)
  4836. (apply 'diary-add-to-list args)
  4837. (apply 'add-to-diary-list args)))
  4838. (defvar org-diary-last-run-time nil)
  4839. ;;;###autoload
  4840. (defun org-diary (&rest args)
  4841. "Return diary information from org files.
  4842. This function can be used in a \"sexp\" diary entry in the Emacs calendar.
  4843. It accesses org files and extracts information from those files to be
  4844. listed in the diary. The function accepts arguments specifying what
  4845. items should be listed. For a list of arguments allowed here, see the
  4846. variable `org-agenda-entry-types'.
  4847. The call in the diary file should look like this:
  4848. &%%(org-diary) ~/path/to/some/orgfile.org
  4849. Use a separate line for each org file to check. Or, if you omit the file name,
  4850. all files listed in `org-agenda-files' will be checked automatically:
  4851. &%%(org-diary)
  4852. If you don't give any arguments (as in the example above), the default value
  4853. of `org-agenda-entry-types' is used: (:deadline :scheduled :timestamp :sexp).
  4854. So the example above may also be written as
  4855. &%%(org-diary :deadline :timestamp :sexp :scheduled)
  4856. The function expects the lisp variables `entry' and `date' to be provided
  4857. by the caller, because this is how the calendar works. Don't use this
  4858. function from a program - use `org-agenda-get-day-entries' instead."
  4859. (when (> (- (float-time)
  4860. org-agenda-last-marker-time)
  4861. 5)
  4862. ;; I am not sure if this works with sticky agendas, because the marker
  4863. ;; list is then no longer a global variable.
  4864. (org-agenda-reset-markers))
  4865. (org-compile-prefix-format 'agenda)
  4866. (org-set-sorting-strategy 'agenda)
  4867. (setq args (or args org-agenda-entry-types))
  4868. (let* ((files (if (and entry (stringp entry) (string-match "\\S-" entry))
  4869. (list entry)
  4870. (org-agenda-files t)))
  4871. (time (float-time))
  4872. file rtn results)
  4873. (when (or (not org-diary-last-run-time)
  4874. (> (- time
  4875. org-diary-last-run-time)
  4876. 3))
  4877. (org-agenda-prepare-buffers files))
  4878. (setq org-diary-last-run-time time)
  4879. ;; If this is called during org-agenda, don't return any entries to
  4880. ;; the calendar. Org Agenda will list these entries itself.
  4881. (if org-disable-agenda-to-diary (setq files nil))
  4882. (while (setq file (pop files))
  4883. (setq rtn (apply 'org-agenda-get-day-entries file date args))
  4884. (setq results (append results rtn)))
  4885. (when results
  4886. (setq results
  4887. (mapcar (lambda (i) (replace-regexp-in-string
  4888. org-bracket-link-regexp "\\3" i)) results))
  4889. (concat (org-agenda-finalize-entries results) "\n"))))
  4890. ;;; Agenda entry finders
  4891. (defun org-agenda--timestamp-to-absolute (&rest args)
  4892. "Call `org-time-string-to-absolute' with ARGS.
  4893. However, throw `:skip' whenever an error is raised."
  4894. (condition-case e
  4895. (apply #'org-time-string-to-absolute args)
  4896. (org-diary-sexp-no-match (throw :skip nil))
  4897. (error
  4898. (message "%s; Skipping entry" (error-message-string e))
  4899. (throw :skip nil))))
  4900. (defun org-agenda-get-day-entries (file date &rest args)
  4901. "Does the work for `org-diary' and `org-agenda'.
  4902. FILE is the path to a file to be checked for entries. DATE is date like
  4903. the one returned by `calendar-current-date'. ARGS are symbols indicating
  4904. which kind of entries should be extracted. For details about these, see
  4905. the documentation of `org-diary'."
  4906. (let* ((org-startup-folded nil)
  4907. (org-startup-align-all-tables nil)
  4908. (buffer (if (file-exists-p file) (org-get-agenda-file-buffer file)
  4909. (error "No such file %s" file))))
  4910. (if (not buffer)
  4911. ;; If file does not exist, signal it in diary nonetheless.
  4912. (list (format "ORG-AGENDA-ERROR: No such org-file %s" file))
  4913. (with-current-buffer buffer
  4914. (unless (derived-mode-p 'org-mode)
  4915. (error "Agenda file %s is not in `org-mode'" file))
  4916. (setq org-agenda-buffer (or org-agenda-buffer buffer))
  4917. (setf org-agenda-current-date date)
  4918. (save-excursion
  4919. (save-restriction
  4920. (if (eq buffer org-agenda-restrict)
  4921. (narrow-to-region org-agenda-restrict-begin
  4922. org-agenda-restrict-end)
  4923. (widen))
  4924. ;; Rationalize ARGS. Also make sure `:deadline' comes
  4925. ;; first in order to populate DEADLINES before passing it.
  4926. ;;
  4927. ;; We use `delq' since `org-uniquify' duplicates ARGS,
  4928. ;; guarding us from modifying `org-agenda-entry-types'.
  4929. (setf args (org-uniquify (or args org-agenda-entry-types)))
  4930. (when (and (memq :scheduled args) (memq :scheduled* args))
  4931. (setf args (delq :scheduled* args)))
  4932. (cond
  4933. ((memq :deadline args)
  4934. (setf args (cons :deadline
  4935. (delq :deadline (delq :deadline* args)))))
  4936. ((memq :deadline* args)
  4937. (setf args (cons :deadline* (delq :deadline* args)))))
  4938. ;; Collect list of headlines. Return them flattened.
  4939. (let ((case-fold-search nil) results deadlines)
  4940. (dolist (arg args (apply #'nconc (nreverse results)))
  4941. (pcase arg
  4942. ((and :todo (guard (org-agenda-today-p date)))
  4943. (push (org-agenda-get-todos) results))
  4944. (:timestamp
  4945. (push (org-agenda-get-blocks) results)
  4946. (push (org-agenda-get-timestamps deadlines) results))
  4947. (:sexp
  4948. (push (org-agenda-get-sexps) results))
  4949. (:scheduled
  4950. (push (org-agenda-get-scheduled deadlines) results))
  4951. (:scheduled*
  4952. (push (org-agenda-get-scheduled deadlines t) results))
  4953. (:closed
  4954. (push (org-agenda-get-progress) results))
  4955. (:deadline
  4956. (setf deadlines (org-agenda-get-deadlines))
  4957. (push deadlines results))
  4958. (:deadline*
  4959. (setf deadlines (org-agenda-get-deadlines t))
  4960. (push deadlines results)))))))))))
  4961. (defsubst org-em (x y list)
  4962. "Is X or Y a member of LIST?"
  4963. (or (memq x list) (memq y list)))
  4964. (defvar org-heading-keyword-regexp-format) ; defined in org.el
  4965. (defvar org-agenda-sorting-strategy-selected nil)
  4966. (defun org-agenda-entry-get-agenda-timestamp (pom)
  4967. "Retrieve timestamp information for sorting agenda views.
  4968. Given a point or marker POM, returns a cons cell of the timestamp
  4969. and the timestamp type relevant for the sorting strategy in
  4970. `org-agenda-sorting-strategy-selected'."
  4971. (let (ts ts-date-type)
  4972. (save-match-data
  4973. (cond ((org-em 'scheduled-up 'scheduled-down
  4974. org-agenda-sorting-strategy-selected)
  4975. (setq ts (org-entry-get pom "SCHEDULED")
  4976. ts-date-type " scheduled"))
  4977. ((org-em 'deadline-up 'deadline-down
  4978. org-agenda-sorting-strategy-selected)
  4979. (setq ts (org-entry-get pom "DEADLINE")
  4980. ts-date-type " deadline"))
  4981. ((org-em 'ts-up 'ts-down
  4982. org-agenda-sorting-strategy-selected)
  4983. (setq ts (org-entry-get pom "TIMESTAMP")
  4984. ts-date-type " timestamp"))
  4985. ((org-em 'tsia-up 'tsia-down
  4986. org-agenda-sorting-strategy-selected)
  4987. (setq ts (org-entry-get pom "TIMESTAMP_IA")
  4988. ts-date-type " timestamp_ia"))
  4989. ((org-em 'timestamp-up 'timestamp-down
  4990. org-agenda-sorting-strategy-selected)
  4991. (setq ts (or (org-entry-get pom "SCHEDULED")
  4992. (org-entry-get pom "DEADLINE")
  4993. (org-entry-get pom "TIMESTAMP")
  4994. (org-entry-get pom "TIMESTAMP_IA"))
  4995. ts-date-type ""))
  4996. (t (setq ts-date-type "")))
  4997. (cons (when ts (ignore-errors (org-time-string-to-absolute ts)))
  4998. ts-date-type))))
  4999. (defun org-agenda-get-todos ()
  5000. "Return the TODO information for agenda display."
  5001. (let* ((props (list 'face nil
  5002. 'done-face 'org-agenda-done
  5003. 'org-not-done-regexp org-not-done-regexp
  5004. 'org-todo-regexp org-todo-regexp
  5005. 'org-complex-heading-regexp org-complex-heading-regexp
  5006. 'mouse-face 'highlight
  5007. 'help-echo
  5008. (format "mouse-2 or RET jump to org file %s"
  5009. (abbreviate-file-name buffer-file-name))))
  5010. (case-fold-search nil)
  5011. (regexp (format org-heading-keyword-regexp-format
  5012. (cond
  5013. ((and org-select-this-todo-keyword
  5014. (equal org-select-this-todo-keyword "*"))
  5015. org-todo-regexp)
  5016. (org-select-this-todo-keyword
  5017. (concat "\\("
  5018. (mapconcat 'identity
  5019. (org-split-string
  5020. org-select-this-todo-keyword
  5021. "|")
  5022. "\\|") "\\)"))
  5023. (t org-not-done-regexp))))
  5024. marker priority category level tags todo-state
  5025. ts-date ts-date-type ts-date-pair
  5026. ee txt beg end inherited-tags todo-state-end-pos)
  5027. (goto-char (point-min))
  5028. (while (re-search-forward regexp nil t)
  5029. (catch :skip
  5030. (save-match-data
  5031. (beginning-of-line)
  5032. (org-agenda-skip)
  5033. (setq beg (point) end (save-excursion (outline-next-heading) (point)))
  5034. (unless (and (setq todo-state (org-get-todo-state))
  5035. (setq todo-state-end-pos (match-end 2)))
  5036. (goto-char end)
  5037. (throw :skip nil))
  5038. (when (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item end)
  5039. (goto-char (1+ beg))
  5040. (or org-agenda-todo-list-sublevels (org-end-of-subtree 'invisible))
  5041. (throw :skip nil)))
  5042. (goto-char (match-beginning 2))
  5043. (setq marker (org-agenda-new-marker (match-beginning 0))
  5044. category (org-get-category)
  5045. ts-date-pair (org-agenda-entry-get-agenda-timestamp (point))
  5046. ts-date (car ts-date-pair)
  5047. ts-date-type (cdr ts-date-pair)
  5048. txt (org-trim (buffer-substring (match-beginning 2) (match-end 0)))
  5049. inherited-tags
  5050. (or (eq org-agenda-show-inherited-tags 'always)
  5051. (and (listp org-agenda-show-inherited-tags)
  5052. (memq 'todo org-agenda-show-inherited-tags))
  5053. (and (eq org-agenda-show-inherited-tags t)
  5054. (or (eq org-agenda-use-tag-inheritance t)
  5055. (memq 'todo org-agenda-use-tag-inheritance))))
  5056. tags (org-get-tags-at nil (not inherited-tags))
  5057. level (make-string (org-reduced-level (org-outline-level)) ? )
  5058. txt (org-agenda-format-item "" txt level category tags t)
  5059. priority (1+ (org-get-priority txt)))
  5060. (org-add-props txt props
  5061. 'org-marker marker 'org-hd-marker marker
  5062. 'priority priority
  5063. 'level level
  5064. 'ts-date ts-date
  5065. 'type (concat "todo" ts-date-type) 'todo-state todo-state)
  5066. (push txt ee)
  5067. (if org-agenda-todo-list-sublevels
  5068. (goto-char todo-state-end-pos)
  5069. (org-end-of-subtree 'invisible))))
  5070. (nreverse ee)))
  5071. (defun org-agenda-todo-custom-ignore-p (time n)
  5072. "Check whether timestamp is farther away than n number of days.
  5073. This function is invoked if `org-agenda-todo-ignore-deadlines',
  5074. `org-agenda-todo-ignore-scheduled' or
  5075. `org-agenda-todo-ignore-timestamp' is set to an integer."
  5076. (let ((days (org-time-stamp-to-now
  5077. time org-agenda-todo-ignore-time-comparison-use-seconds)))
  5078. (if (>= n 0)
  5079. (>= days n)
  5080. (<= days n))))
  5081. ;;;###autoload
  5082. (defun org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item
  5083. (&optional end)
  5084. "Do we have a reason to ignore this TODO entry because it has a time stamp?"
  5085. (when (or org-agenda-todo-ignore-with-date
  5086. org-agenda-todo-ignore-scheduled
  5087. org-agenda-todo-ignore-deadlines
  5088. org-agenda-todo-ignore-timestamp)
  5089. (setq end (or end (save-excursion (outline-next-heading) (point))))
  5090. (save-excursion
  5091. (or (and org-agenda-todo-ignore-with-date
  5092. (re-search-forward org-ts-regexp end t))
  5093. (and org-agenda-todo-ignore-scheduled
  5094. (re-search-forward org-scheduled-time-regexp end t)
  5095. (cond
  5096. ((eq org-agenda-todo-ignore-scheduled 'future)
  5097. (> (org-time-stamp-to-now
  5098. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5099. ((eq org-agenda-todo-ignore-scheduled 'past)
  5100. (<= (org-time-stamp-to-now
  5101. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5102. ((numberp org-agenda-todo-ignore-scheduled)
  5103. (org-agenda-todo-custom-ignore-p
  5104. (match-string 1) org-agenda-todo-ignore-scheduled))
  5105. (t)))
  5106. (and org-agenda-todo-ignore-deadlines
  5107. (re-search-forward org-deadline-time-regexp end t)
  5108. (cond
  5109. ((memq org-agenda-todo-ignore-deadlines '(t all)) t)
  5110. ((eq org-agenda-todo-ignore-deadlines 'far)
  5111. (not (org-deadline-close-p (match-string 1))))
  5112. ((eq org-agenda-todo-ignore-deadlines 'future)
  5113. (> (org-time-stamp-to-now
  5114. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5115. ((eq org-agenda-todo-ignore-deadlines 'past)
  5116. (<= (org-time-stamp-to-now
  5117. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5118. ((numberp org-agenda-todo-ignore-deadlines)
  5119. (org-agenda-todo-custom-ignore-p
  5120. (match-string 1) org-agenda-todo-ignore-deadlines))
  5121. (t (org-deadline-close-p (match-string 1)))))
  5122. (and org-agenda-todo-ignore-timestamp
  5123. (let ((buffer (current-buffer))
  5124. (regexp
  5125. (concat
  5126. org-scheduled-time-regexp "\\|" org-deadline-time-regexp))
  5127. (start (point)))
  5128. ;; Copy current buffer into a temporary one
  5129. (with-temp-buffer
  5130. (insert-buffer-substring buffer start end)
  5131. (goto-char (point-min))
  5132. ;; Delete SCHEDULED and DEADLINE items
  5133. (while (re-search-forward regexp end t)
  5134. (delete-region (match-beginning 0) (match-end 0)))
  5135. (goto-char (point-min))
  5136. ;; No search for timestamp left
  5137. (when (re-search-forward org-ts-regexp nil t)
  5138. (cond
  5139. ((eq org-agenda-todo-ignore-timestamp 'future)
  5140. (> (org-time-stamp-to-now
  5141. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5142. ((eq org-agenda-todo-ignore-timestamp 'past)
  5143. (<= (org-time-stamp-to-now
  5144. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5145. ((numberp org-agenda-todo-ignore-timestamp)
  5146. (org-agenda-todo-custom-ignore-p
  5147. (match-string 1) org-agenda-todo-ignore-timestamp))
  5148. (t))))))))))
  5149. (defun org-agenda-get-timestamps (&optional deadlines)
  5150. "Return the date stamp information for agenda display.
  5151. Optional argument DEADLINES is a list of deadline items to be
  5152. displayed in agenda view."
  5153. (let* ((props (list 'face 'org-agenda-calendar-event
  5154. 'org-not-done-regexp org-not-done-regexp
  5155. 'org-todo-regexp org-todo-regexp
  5156. 'org-complex-heading-regexp org-complex-heading-regexp
  5157. 'mouse-face 'highlight
  5158. 'help-echo
  5159. (format "mouse-2 or RET jump to Org file %s"
  5160. (abbreviate-file-name buffer-file-name))))
  5161. (current (calendar-absolute-from-gregorian date))
  5162. (today (org-today))
  5163. (deadline-position-alist
  5164. (mapcar (lambda (d)
  5165. (let ((m (get-text-property 0 'org-hd-marker d)))
  5166. (and m (marker-position m))))
  5167. deadlines))
  5168. ;; Match time-stamps set to current date, time-stamps with
  5169. ;; a repeater, and S-exp time-stamps.
  5170. (regexp
  5171. (concat
  5172. (if org-agenda-include-inactive-timestamps "[[<]" "<")
  5173. (regexp-quote
  5174. (substring
  5175. (format-time-string
  5176. (car org-time-stamp-formats)
  5177. (apply #'encode-time ; DATE bound by calendar
  5178. (list 0 0 0 (nth 1 date) (car date) (nth 2 date))))
  5179. 1 11))
  5180. "\\|\\(<[0-9]+-[0-9]+-[0-9]+[^>\n]+?\\+[0-9]+[hdwmy]>\\)"
  5181. "\\|\\(<%%\\(([^>\n]+)\\)>\\)"))
  5182. timestamp-items)
  5183. (goto-char (point-min))
  5184. (while (re-search-forward regexp nil t)
  5185. ;; Skip date ranges, scheduled and deadlines, which are handled
  5186. ;; specially. Also skip time-stamps before first headline as
  5187. ;; there would be no entry to add to the agenda. Eventually,
  5188. ;; ignore clock entries.
  5189. (catch :skip
  5190. (save-match-data
  5191. (when (or (org-at-date-range-p)
  5192. (org-at-planning-p)
  5193. (org-before-first-heading-p)
  5194. (and org-agenda-include-inactive-timestamps
  5195. (org-at-clock-log-p)))
  5196. (throw :skip nil))
  5197. (org-agenda-skip))
  5198. (let* ((pos (match-beginning 0))
  5199. (repeat (match-string 1))
  5200. (sexp-entry (match-string 3))
  5201. (time-stamp (if (or repeat sexp-entry) (match-string 0)
  5202. (save-excursion
  5203. (goto-char pos)
  5204. (looking-at org-ts-regexp-both)
  5205. (match-string 0))))
  5206. (todo-state (org-get-todo-state))
  5207. (show-all (or (eq org-agenda-repeating-timestamp-show-all t)
  5208. (member todo-state
  5209. org-agenda-repeating-timestamp-show-all)))
  5210. (warntime (get-text-property (point) 'org-appt-warntime))
  5211. (done? (member todo-state org-done-keywords)))
  5212. ;; Possibly skip done tasks.
  5213. (when (and done? org-agenda-skip-timestamp-if-done)
  5214. (throw :skip t))
  5215. ;; S-exp entry doesn't match current day: skip it.
  5216. (when (and sexp-entry (not (org-diary-sexp-entry sexp-entry "" date)))
  5217. (throw :skip nil))
  5218. ;; When time-stamp doesn't match CURRENT but has a repeater,
  5219. ;; make sure it repeats on CURRENT. Furthermore, if
  5220. ;; SHOW-ALL is nil, ensure that repeater is the very first
  5221. ;; one to trigger since today.
  5222. (when (and repeat
  5223. (let ((base (if show-all current today)))
  5224. (/= current
  5225. (org-agenda--timestamp-to-absolute
  5226. repeat base 'future (current-buffer) pos))))
  5227. (throw :skip nil))
  5228. (save-excursion
  5229. (re-search-backward org-outline-regexp-bol nil t)
  5230. ;; Possibly skip time-stamp when a deadline is set.
  5231. (when (and org-agenda-skip-timestamp-if-deadline-is-shown
  5232. (assq (point) deadline-position-alist))
  5233. (throw :skip nil))
  5234. (let* ((category (org-get-category pos))
  5235. (inherited-tags
  5236. (or (eq org-agenda-show-inherited-tags 'always)
  5237. (and (consp org-agenda-show-inherited-tags)
  5238. (memq 'agenda org-agenda-show-inherited-tags))
  5239. (and (eq org-agenda-show-inherited-tags t)
  5240. (or (eq org-agenda-use-tag-inheritance t)
  5241. (memq 'agenda
  5242. org-agenda-use-tag-inheritance)))))
  5243. (tags (org-get-tags-at nil (not inherited-tags)))
  5244. (level (make-string (org-reduced-level (org-outline-level))
  5245. ?\s))
  5246. (head (and (looking-at "\\*+[ \t]+\\(.*\\)")
  5247. (match-string 1)))
  5248. (inactive? (= (char-after pos) ?\[))
  5249. (habit? (and (fboundp 'org-is-habit-p) (org-is-habit-p)))
  5250. (item
  5251. (org-agenda-format-item
  5252. (and inactive? org-agenda-inactive-leader)
  5253. head level category tags time-stamp org-ts-regexp habit?)))
  5254. (org-add-props item props
  5255. 'priority (if habit?
  5256. (org-habit-get-priority (org-habit-parse-todo))
  5257. (org-get-priority item))
  5258. 'org-marker (org-agenda-new-marker pos)
  5259. 'org-hd-marker (org-agenda-new-marker)
  5260. 'date date
  5261. 'level level
  5262. 'ts-date (if repeat (org-agenda--timestamp-to-absolute repeat)
  5263. current)
  5264. 'todo-state todo-state
  5265. 'warntime warntime
  5266. 'type "timestamp")
  5267. (push item timestamp-items))))
  5268. (when org-agenda-skip-additional-timestamps-same-entry
  5269. (outline-next-heading))))
  5270. (nreverse timestamp-items)))
  5271. (defun org-agenda-get-sexps ()
  5272. "Return the sexp information for agenda display."
  5273. (require 'diary-lib)
  5274. (let* ((props (list 'face 'org-agenda-calendar-sexp
  5275. 'mouse-face 'highlight
  5276. 'help-echo
  5277. (format "mouse-2 or RET jump to org file %s"
  5278. (abbreviate-file-name buffer-file-name))))
  5279. (regexp "^&?%%(")
  5280. marker category extra level ee txt tags entry
  5281. result beg b sexp sexp-entry todo-state warntime inherited-tags)
  5282. (goto-char (point-min))
  5283. (while (re-search-forward regexp nil t)
  5284. (catch :skip
  5285. (org-agenda-skip)
  5286. (setq beg (match-beginning 0))
  5287. (goto-char (1- (match-end 0)))
  5288. (setq b (point))
  5289. (forward-sexp 1)
  5290. (setq sexp (buffer-substring b (point)))
  5291. (setq sexp-entry (if (looking-at "[ \t]*\\(\\S-.*\\)")
  5292. (org-trim (match-string 1))
  5293. ""))
  5294. (setq result (org-diary-sexp-entry sexp sexp-entry date))
  5295. (when result
  5296. (setq marker (org-agenda-new-marker beg)
  5297. level (make-string (org-reduced-level (org-outline-level)) ? )
  5298. category (org-get-category beg)
  5299. inherited-tags
  5300. (or (eq org-agenda-show-inherited-tags 'always)
  5301. (and (listp org-agenda-show-inherited-tags)
  5302. (memq 'agenda org-agenda-show-inherited-tags))
  5303. (and (eq org-agenda-show-inherited-tags t)
  5304. (or (eq org-agenda-use-tag-inheritance t)
  5305. (memq 'agenda org-agenda-use-tag-inheritance))))
  5306. tags (org-get-tags-at nil (not inherited-tags))
  5307. todo-state (org-get-todo-state)
  5308. warntime (get-text-property (point) 'org-appt-warntime)
  5309. extra nil)
  5310. (dolist (r (if (stringp result)
  5311. (list result)
  5312. result)) ;; we expect a list here
  5313. (when (and org-agenda-diary-sexp-prefix
  5314. (string-match org-agenda-diary-sexp-prefix r))
  5315. (setq extra (match-string 0 r)
  5316. r (replace-match "" nil nil r)))
  5317. (if (string-match "\\S-" r)
  5318. (setq txt r)
  5319. (setq txt "SEXP entry returned empty string"))
  5320. (setq txt (org-agenda-format-item extra txt level category tags 'time))
  5321. (org-add-props txt props 'org-marker marker
  5322. 'date date 'todo-state todo-state
  5323. 'level level 'type "sexp" 'warntime warntime)
  5324. (push txt ee)))))
  5325. (nreverse ee)))
  5326. ;; Calendar sanity: define some functions that are independent of
  5327. ;; `calendar-date-style'.
  5328. (defun org-anniversary (year month day &optional mark)
  5329. "Like `diary-anniversary', but with fixed (ISO) order of arguments."
  5330. (with-no-warnings
  5331. (let ((calendar-date-style 'iso))
  5332. (diary-anniversary year month day mark))))
  5333. (defun org-cyclic (N year month day &optional mark)
  5334. "Like `diary-cyclic', but with fixed (ISO) order of arguments."
  5335. (with-no-warnings
  5336. (let ((calendar-date-style 'iso))
  5337. (diary-cyclic N year month day mark))))
  5338. (defun org-block (Y1 M1 D1 Y2 M2 D2 &optional mark)
  5339. "Like `diary-block', but with fixed (ISO) order of arguments."
  5340. (with-no-warnings
  5341. (let ((calendar-date-style 'iso))
  5342. (diary-block Y1 M1 D1 Y2 M2 D2 mark))))
  5343. (defun org-date (year month day &optional mark)
  5344. "Like `diary-date', but with fixed (ISO) order of arguments."
  5345. (with-no-warnings
  5346. (let ((calendar-date-style 'iso))
  5347. (diary-date year month day mark))))
  5348. ;; Define the `org-class' function
  5349. (defun org-class (y1 m1 d1 y2 m2 d2 dayname &rest skip-weeks)
  5350. "Entry applies if date is between dates on DAYNAME, but skips SKIP-WEEKS.
  5351. DAYNAME is a number between 0 (Sunday) and 6 (Saturday).
  5352. SKIP-WEEKS is any number of ISO weeks in the block period for which the
  5353. item should be skipped. If any of the SKIP-WEEKS arguments is the symbol
  5354. `holidays', then any date that is known by the Emacs calendar to be a
  5355. holiday will also be skipped. If SKIP-WEEKS arguments are holiday strings,
  5356. then those holidays will be skipped."
  5357. (let* ((date1 (calendar-absolute-from-gregorian (list m1 d1 y1)))
  5358. (date2 (calendar-absolute-from-gregorian (list m2 d2 y2)))
  5359. (d (calendar-absolute-from-gregorian date))
  5360. (h (when skip-weeks (calendar-check-holidays date))))
  5361. (and
  5362. (<= date1 d)
  5363. (<= d date2)
  5364. (= (calendar-day-of-week date) dayname)
  5365. (or (not skip-weeks)
  5366. (progn
  5367. (require 'cal-iso)
  5368. (not (member (car (calendar-iso-from-absolute d)) skip-weeks))))
  5369. (not (or (and h (memq 'holidays skip-weeks))
  5370. (delq nil (mapcar (lambda(g) (member g skip-weeks)) h))))
  5371. entry)))
  5372. (defalias 'org-get-closed 'org-agenda-get-progress)
  5373. (defun org-agenda-get-progress ()
  5374. "Return the logged TODO entries for agenda display."
  5375. (let* ((props (list 'mouse-face 'highlight
  5376. 'org-not-done-regexp org-not-done-regexp
  5377. 'org-todo-regexp org-todo-regexp
  5378. 'org-complex-heading-regexp org-complex-heading-regexp
  5379. 'help-echo
  5380. (format "mouse-2 or RET jump to org file %s"
  5381. (abbreviate-file-name buffer-file-name))))
  5382. (items (if (consp org-agenda-show-log-scoped)
  5383. org-agenda-show-log-scoped
  5384. (if (eq org-agenda-show-log-scoped 'clockcheck)
  5385. '(clock)
  5386. org-agenda-log-mode-items)))
  5387. (parts
  5388. (delq nil
  5389. (list
  5390. (if (memq 'closed items) (concat "\\<" org-closed-string))
  5391. (if (memq 'clock items) (concat "\\<" org-clock-string))
  5392. (if (memq 'state items) "- State \"\\([a-zA-Z0-9]+\\)\".*?"))))
  5393. (parts-re (if parts (mapconcat 'identity parts "\\|")
  5394. (error "`org-agenda-log-mode-items' is empty")))
  5395. (regexp (concat
  5396. "\\(" parts-re "\\)"
  5397. " *\\["
  5398. (regexp-quote
  5399. (substring
  5400. (format-time-string
  5401. (car org-time-stamp-formats)
  5402. (apply 'encode-time ; DATE bound by calendar
  5403. (list 0 0 0 (nth 1 date) (car date) (nth 2 date))))
  5404. 1 11))))
  5405. (org-agenda-search-headline-for-time nil)
  5406. marker hdmarker priority category level tags closedp
  5407. statep clockp state ee txt extra timestr rest clocked inherited-tags)
  5408. (goto-char (point-min))
  5409. (while (re-search-forward regexp nil t)
  5410. (catch :skip
  5411. (org-agenda-skip)
  5412. (setq marker (org-agenda-new-marker (match-beginning 0))
  5413. closedp (equal (match-string 1) org-closed-string)
  5414. statep (equal (string-to-char (match-string 1)) ?-)
  5415. clockp (not (or closedp statep))
  5416. state (and statep (match-string 2))
  5417. category (org-get-category (match-beginning 0))
  5418. timestr (buffer-substring (match-beginning 0) (point-at-eol)))
  5419. (when (string-match "\\]" timestr)
  5420. ;; substring should only run to end of time stamp
  5421. (setq rest (substring timestr (match-end 0))
  5422. timestr (substring timestr 0 (match-end 0)))
  5423. (if (and (not closedp) (not statep)
  5424. (string-match "\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)\\].*?\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)"
  5425. rest))
  5426. (progn (setq timestr (concat (substring timestr 0 -1)
  5427. "-" (match-string 1 rest) "]"))
  5428. (setq clocked (match-string 2 rest)))
  5429. (setq clocked "-")))
  5430. (save-excursion
  5431. (setq extra
  5432. (cond
  5433. ((not org-agenda-log-mode-add-notes) nil)
  5434. (statep
  5435. (and (looking-at ".*\\\\\n[ \t]*\\([^-\n \t].*?\\)[ \t]*$")
  5436. (match-string 1)))
  5437. (clockp
  5438. (and (looking-at ".*\n[ \t]*-[ \t]+\\([^-\n \t].*?\\)[ \t]*$")
  5439. (match-string 1)))))
  5440. (if (not (re-search-backward org-outline-regexp-bol nil t))
  5441. (throw :skip nil)
  5442. (goto-char (match-beginning 0))
  5443. (setq hdmarker (org-agenda-new-marker)
  5444. inherited-tags
  5445. (or (eq org-agenda-show-inherited-tags 'always)
  5446. (and (listp org-agenda-show-inherited-tags)
  5447. (memq 'todo org-agenda-show-inherited-tags))
  5448. (and (eq org-agenda-show-inherited-tags t)
  5449. (or (eq org-agenda-use-tag-inheritance t)
  5450. (memq 'todo org-agenda-use-tag-inheritance))))
  5451. tags (org-get-tags-at nil (not inherited-tags))
  5452. level (make-string (org-reduced-level (org-outline-level)) ? ))
  5453. (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
  5454. (setq txt (match-string 1))
  5455. (when extra
  5456. (if (string-match "\\([ \t]+\\)\\(:[^ \n\t]*?:\\)[ \t]*$" txt)
  5457. (setq txt (concat (substring txt 0 (match-beginning 1))
  5458. " - " extra " " (match-string 2 txt)))
  5459. (setq txt (concat txt " - " extra))))
  5460. (setq txt (org-agenda-format-item
  5461. (cond
  5462. (closedp "Closed: ")
  5463. (statep (concat "State: (" state ")"))
  5464. (t (concat "Clocked: (" clocked ")")))
  5465. txt level category tags timestr)))
  5466. (setq priority 100000)
  5467. (org-add-props txt props
  5468. 'org-marker marker 'org-hd-marker hdmarker 'face 'org-agenda-done
  5469. 'priority priority 'level level
  5470. 'type "closed" 'date date
  5471. 'undone-face 'org-warning 'done-face 'org-agenda-done)
  5472. (push txt ee))
  5473. (goto-char (point-at-eol))))
  5474. (nreverse ee)))
  5475. (defun org-agenda-show-clocking-issues ()
  5476. "Add overlays, showing issues with clocking.
  5477. See also the user option `org-agenda-clock-consistency-checks'."
  5478. (interactive)
  5479. (let* ((org-time-clocksum-use-effort-durations nil)
  5480. (pl org-agenda-clock-consistency-checks)
  5481. (re (concat "^[ \t]*"
  5482. org-clock-string
  5483. "[ \t]+"
  5484. "\\(\\[.*?\\]\\)" ; group 1 is first stamp
  5485. "\\(-\\{1,3\\}\\(\\[.*?\\]\\)\\)?")) ; group 3 is second
  5486. (tlstart 0.)
  5487. (tlend 0.)
  5488. (maxtime (org-hh:mm-string-to-minutes
  5489. (or (plist-get pl :max-duration) "24:00")))
  5490. (mintime (org-hh:mm-string-to-minutes
  5491. (or (plist-get pl :min-duration) 0)))
  5492. (maxgap (org-hh:mm-string-to-minutes
  5493. ;; default 30:00 means never complain
  5494. (or (plist-get pl :max-gap) "30:00")))
  5495. (gapok (mapcar 'org-hh:mm-string-to-minutes
  5496. (plist-get pl :gap-ok-around)))
  5497. (def-face (or (plist-get pl :default-face)
  5498. '((:background "DarkRed") (:foreground "white"))))
  5499. issue face m te ts dt ov)
  5500. (goto-char (point-min))
  5501. (while (re-search-forward " Clocked: +(-\\|\\([0-9]+:[0-9]+\\))" nil t)
  5502. (setq issue nil face def-face)
  5503. (catch 'next
  5504. (setq m (org-get-at-bol 'org-marker)
  5505. te nil ts nil)
  5506. (unless (and m (markerp m))
  5507. (setq issue "No valid clock line") (throw 'next t))
  5508. (org-with-point-at m
  5509. (save-excursion
  5510. (goto-char (point-at-bol))
  5511. (unless (looking-at re)
  5512. (error "No valid Clock line")
  5513. (throw 'next t))
  5514. (unless (match-end 3)
  5515. (setq issue "No end time"
  5516. face (or (plist-get pl :no-end-time-face) face))
  5517. (throw 'next t))
  5518. (setq ts (match-string 1)
  5519. te (match-string 3)
  5520. ts (float-time
  5521. (apply #'encode-time (org-parse-time-string ts)))
  5522. te (float-time
  5523. (apply #'encode-time (org-parse-time-string te)))
  5524. dt (- te ts))))
  5525. (cond
  5526. ((> dt (* 60 maxtime))
  5527. ;; a very long clocking chunk
  5528. (setq issue (format "Clocking interval is very long: %s"
  5529. (org-minutes-to-clocksum-string
  5530. (floor (/ (float dt) 60.))))
  5531. face (or (plist-get pl :long-face) face)))
  5532. ((< dt (* 60 mintime))
  5533. ;; a very short clocking chunk
  5534. (setq issue (format "Clocking interval is very short: %s"
  5535. (org-minutes-to-clocksum-string
  5536. (floor (/ (float dt) 60.))))
  5537. face (or (plist-get pl :short-face) face)))
  5538. ((and (> tlend 0) (< ts tlend))
  5539. ;; Two clock entries are overlapping
  5540. (setq issue (format "Clocking overlap: %d minutes"
  5541. (/ (- tlend ts) 60))
  5542. face (or (plist-get pl :overlap-face) face)))
  5543. ((and (> tlend 0) (> ts (+ tlend (* 60 maxgap))))
  5544. ;; There is a gap, lets see if we need to report it
  5545. (unless (org-agenda-check-clock-gap tlend ts gapok)
  5546. (setq issue (format "Clocking gap: %d minutes"
  5547. (/ (- ts tlend) 60))
  5548. face (or (plist-get pl :gap-face) face))))
  5549. (t nil)))
  5550. (setq tlend (or te tlend) tlstart (or ts tlstart))
  5551. (when issue
  5552. ;; OK, there was some issue, add an overlay to show the issue
  5553. (setq ov (make-overlay (point-at-bol) (point-at-eol)))
  5554. (overlay-put ov 'before-string
  5555. (concat
  5556. (org-add-props
  5557. (format "%-43s" (concat " " issue))
  5558. nil
  5559. 'face face)
  5560. "\n"))
  5561. (overlay-put ov 'evaporate t)))))
  5562. (defun org-agenda-check-clock-gap (t1 t2 ok-list)
  5563. "Check if gap T1 -> T2 contains one of the OK-LIST time-of-day values."
  5564. (catch 'exit
  5565. (unless ok-list
  5566. ;; there are no OK times for gaps...
  5567. (throw 'exit nil))
  5568. (if (> (- (/ t2 36000) (/ t1 36000)) 24)
  5569. ;; This is more than 24 hours, so it is OK.
  5570. ;; because we have at least one OK time, that must be in the
  5571. ;; 24 hour interval.
  5572. (throw 'exit t))
  5573. ;; We have a shorter gap.
  5574. ;; Now we have to get the minute of the day when these times are
  5575. (let* ((t1dec (decode-time (seconds-to-time t1)))
  5576. (t2dec (decode-time (seconds-to-time t2)))
  5577. ;; compute the minute on the day
  5578. (min1 (+ (nth 1 t1dec) (* 60 (nth 2 t1dec))))
  5579. (min2 (+ (nth 1 t2dec) (* 60 (nth 2 t2dec)))))
  5580. (when (< min2 min1)
  5581. ;; if min2 is smaller than min1, this means it is on the next day.
  5582. ;; Wrap it to after midnight.
  5583. (setq min2 (+ min2 1440)))
  5584. ;; Now check if any of the OK times is in the gap
  5585. (mapc (lambda (x)
  5586. ;; Wrap the time to after midnight if necessary
  5587. (if (< x min1) (setq x (+ x 1440)))
  5588. ;; Check if in interval
  5589. (and (<= min1 x) (>= min2 x) (throw 'exit t)))
  5590. ok-list)
  5591. ;; Nope, this gap is not OK
  5592. nil)))
  5593. (defun org-agenda-get-deadlines (&optional with-hour)
  5594. "Return the deadline information for agenda display.
  5595. When WITH-HOUR is non-nil, only return deadlines with an hour
  5596. specification like [h]h:mm."
  5597. (let* ((props (list 'mouse-face 'highlight
  5598. 'org-not-done-regexp org-not-done-regexp
  5599. 'org-todo-regexp org-todo-regexp
  5600. 'org-complex-heading-regexp org-complex-heading-regexp
  5601. 'help-echo
  5602. (format "mouse-2 or RET jump to org file %s"
  5603. (abbreviate-file-name buffer-file-name))))
  5604. (regexp (if with-hour
  5605. org-deadline-time-hour-regexp
  5606. org-deadline-time-regexp))
  5607. (todayp (org-agenda-today-p date)) ; DATE bound by calendar.
  5608. (current (calendar-absolute-from-gregorian date))
  5609. deadline-items)
  5610. (goto-char (point-min))
  5611. (while (re-search-forward regexp nil t)
  5612. (catch :skip
  5613. (unless (save-match-data (org-at-planning-p)) (throw :skip nil))
  5614. (org-agenda-skip)
  5615. (let* ((s (match-string 1))
  5616. (pos (1- (match-beginning 1)))
  5617. (todo-state (save-match-data (org-get-todo-state)))
  5618. (donep (member todo-state org-done-keywords))
  5619. (show-all (or (eq org-agenda-repeating-timestamp-show-all t)
  5620. (member todo-state
  5621. org-agenda-repeating-timestamp-show-all)))
  5622. ;; DEADLINE is the current scheduled date. When it
  5623. ;; contains a repeater and SHOW-ALL is non-nil,
  5624. ;; LAST-REPEAT is the repeat closest to CURRENT.
  5625. ;; Otherwise, LAST-REPEAT is equal to DEADLINE.
  5626. (last-repeat (org-agenda--timestamp-to-absolute
  5627. s current 'past (current-buffer) pos))
  5628. (deadline (org-agenda--timestamp-to-absolute s current))
  5629. (diff (- last-repeat current))
  5630. (suppress-prewarning
  5631. (let ((scheduled
  5632. (and org-agenda-skip-deadline-prewarning-if-scheduled
  5633. (org-entry-get nil "SCHEDULED"))))
  5634. (cond
  5635. ((not scheduled) nil)
  5636. ;; The current item has a scheduled date, so
  5637. ;; evaluate its prewarning lead time.
  5638. ((integerp org-agenda-skip-deadline-prewarning-if-scheduled)
  5639. ;; Use global prewarning-restart lead time.
  5640. org-agenda-skip-deadline-prewarning-if-scheduled)
  5641. ((eq org-agenda-skip-deadline-prewarning-if-scheduled
  5642. 'pre-scheduled)
  5643. ;; Set pre-warning to no earlier than SCHEDULED.
  5644. (min (- last-repeat
  5645. (org-agenda--timestamp-to-absolute
  5646. scheduled current 'past
  5647. (current-buffer)
  5648. (save-excursion
  5649. (beginning-of-line)
  5650. (1+ (search-forward org-deadline-string)))))
  5651. org-deadline-warning-days))
  5652. ;; Set pre-warning to deadline.
  5653. (t 0))))
  5654. (wdays (if suppress-prewarning
  5655. (let ((org-deadline-warning-days suppress-prewarning))
  5656. (org-get-wdays s))
  5657. (org-get-wdays s))))
  5658. ;; When to show a deadline in the calendar: if the
  5659. ;; expiration is within WDAYS warning time. Past-due
  5660. ;; deadlines are only shown on the current date
  5661. (unless (or (and (<= diff wdays)
  5662. (and todayp (not org-agenda-only-exact-dates)))
  5663. (= diff 0))
  5664. (throw :skip nil))
  5665. ;; Skip done tasks if `org-agenda-skip-deadline-if-done' is
  5666. ;; non-nil or if it isn't applicable to CURRENT deadline.
  5667. (when (and donep
  5668. (or org-agenda-skip-deadline-if-done
  5669. (/= deadline current)))
  5670. (throw :skip nil))
  5671. (save-excursion
  5672. (re-search-backward "^\\*+[ \t]+" nil t)
  5673. (goto-char (match-end 0))
  5674. (let* ((category (org-get-category))
  5675. (level
  5676. (make-string (org-reduced-level (org-outline-level)) ?\s))
  5677. (head (buffer-substring (point) (line-end-position)))
  5678. (inherited-tags
  5679. (or (eq org-agenda-show-inherited-tags 'always)
  5680. (and (listp org-agenda-show-inherited-tags)
  5681. (memq 'agenda org-agenda-show-inherited-tags))
  5682. (and (eq org-agenda-show-inherited-tags t)
  5683. (or (eq org-agenda-use-tag-inheritance t)
  5684. (memq 'agenda
  5685. org-agenda-use-tag-inheritance)))))
  5686. (tags (org-get-tags-at nil (not inherited-tags)))
  5687. (timestr
  5688. (if (string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
  5689. (concat (substring s (match-beginning 1)) " ")
  5690. 'time))
  5691. (item
  5692. (org-agenda-format-item
  5693. ;; For past deadlines, make sure to report time
  5694. ;; difference since date S, not since closest
  5695. ;; repeater.
  5696. (let ((diff (if (< (org-today) current) diff
  5697. (- deadline current))))
  5698. (if (= diff 0) (car org-agenda-deadline-leaders)
  5699. (let ((future (nth 1 org-agenda-deadline-leaders))
  5700. (past (nth 2 org-agenda-deadline-leaders)))
  5701. (cond ((> diff 0) (format future diff))
  5702. ((string= future past) (format past diff))
  5703. (t (format past (abs diff)))))))
  5704. head level category tags
  5705. (and (= diff 0) timestr)))
  5706. (face (org-agenda-deadline-face
  5707. (- 1 (/ (float (- deadline current)) (max wdays 1)))))
  5708. (upcomingp (and todayp (> diff 0)))
  5709. (warntime (get-text-property (point) 'org-appt-warntime)))
  5710. (org-add-props item props
  5711. 'org-marker (org-agenda-new-marker pos)
  5712. 'org-hd-marker (org-agenda-new-marker (line-beginning-position))
  5713. 'warntime warntime
  5714. 'level level
  5715. 'ts-date deadline
  5716. 'priority (- (org-get-priority item) diff)
  5717. 'todo-state todo-state
  5718. 'type (if upcomingp "upcoming-deadline" "deadline")
  5719. 'date (if upcomingp date deadline)
  5720. 'face (if donep 'org-agenda-done face)
  5721. 'undone-face face
  5722. 'done-face 'org-agenda-done)
  5723. (push item deadline-items))))))
  5724. (nreverse deadline-items)))
  5725. (defun org-agenda-deadline-face (fraction)
  5726. "Return the face to displaying a deadline item.
  5727. FRACTION is what fraction of the head-warning time has passed."
  5728. (let ((faces org-agenda-deadline-faces) f)
  5729. (catch 'exit
  5730. (while (setq f (pop faces))
  5731. (if (>= fraction (car f)) (throw 'exit (cdr f)))))))
  5732. (defun org-agenda-get-scheduled (&optional deadlines with-hour)
  5733. "Return the scheduled information for agenda display.
  5734. Optional argument DEADLINES is a list of deadline items to be
  5735. displayed in agenda view. When WITH-HOUR is non-nil, only return
  5736. scheduled items with an hour specification like [h]h:mm."
  5737. (let* ((props (list 'org-not-done-regexp org-not-done-regexp
  5738. 'org-todo-regexp org-todo-regexp
  5739. 'org-complex-heading-regexp org-complex-heading-regexp
  5740. 'done-face 'org-agenda-done
  5741. 'mouse-face 'highlight
  5742. 'help-echo
  5743. (format "mouse-2 or RET jump to Org file %s"
  5744. (abbreviate-file-name buffer-file-name))))
  5745. (regexp (if with-hour
  5746. org-scheduled-time-hour-regexp
  5747. org-scheduled-time-regexp))
  5748. (today (org-today))
  5749. (todayp (org-agenda-today-p date)) ; DATE bound by calendar.
  5750. (current (calendar-absolute-from-gregorian date))
  5751. (deadline-pos
  5752. (mapcar (lambda (d)
  5753. (let ((m (get-text-property 0 'org-hd-marker d)))
  5754. (and m (marker-position m))))
  5755. deadlines))
  5756. scheduled-items)
  5757. (goto-char (point-min))
  5758. (while (re-search-forward regexp nil t)
  5759. (catch :skip
  5760. (unless (save-match-data (org-at-planning-p)) (throw :skip nil))
  5761. (org-agenda-skip)
  5762. (let* ((s (match-string 1))
  5763. (pos (1- (match-beginning 1)))
  5764. (todo-state (save-match-data (org-get-todo-state)))
  5765. (donep (member todo-state org-done-keywords))
  5766. (show-all (or (eq org-agenda-repeating-timestamp-show-all t)
  5767. (member todo-state
  5768. org-agenda-repeating-timestamp-show-all)))
  5769. ;; SCHEDULE is the bare scheduled date, i.e., without
  5770. ;; any repeater. REPEAT is the closest repeat after
  5771. ;; CURRENT, if all repeated time stamps are to be
  5772. ;; shown, or after TODAY otherwise. REPEAT only
  5773. ;; applies to future dates.
  5774. (schedule (org-agenda--timestamp-to-absolute s))
  5775. (repeat (cond ((< current today) schedule)
  5776. (show-all
  5777. (org-agenda--timestamp-to-absolute
  5778. s current 'future (current-buffer) pos))
  5779. (t
  5780. (org-agenda--timestamp-to-absolute
  5781. s today 'future (current-buffer) pos))))
  5782. (diff (- current schedule))
  5783. (warntime (get-text-property (point) 'org-appt-warntime))
  5784. (pastschedp (< schedule today))
  5785. (habitp (and (fboundp 'org-is-habit-p) (org-is-habit-p)))
  5786. (suppress-delay
  5787. (let ((deadline (and org-agenda-skip-scheduled-delay-if-deadline
  5788. (org-entry-get nil "DEADLINE"))))
  5789. (cond
  5790. ((not deadline) nil)
  5791. ;; The current item has a deadline date, so
  5792. ;; evaluate its delay time.
  5793. ((integerp org-agenda-skip-scheduled-delay-if-deadline)
  5794. ;; Use global delay time.
  5795. (- org-agenda-skip-scheduled-delay-if-deadline))
  5796. ((eq org-agenda-skip-scheduled-delay-if-deadline
  5797. 'post-deadline)
  5798. ;; Set delay to no later than DEADLINE. If
  5799. ;; DEADLINE has a repeater, compare last schedule
  5800. ;; repeat and last deadline repeat.
  5801. (min (- schedule deadline) org-scheduled-delay-days))
  5802. (t 0))))
  5803. (ddays
  5804. (cond
  5805. ;; Nullify delay when a repeater triggered already
  5806. ;; and the delay is of the form --Xd.
  5807. ((and (string-match-p "--[0-9]+[hdwmy]" s)
  5808. (> current schedule))
  5809. 0)
  5810. (suppress-delay
  5811. (let ((org-scheduled-delay-days suppress-delay))
  5812. (org-get-wdays s t t)))
  5813. (t (org-get-wdays s t)))))
  5814. ;; Display scheduled items at base date (SCHEDULE), today if
  5815. ;; scheduled before the current date, and at any repeat past
  5816. ;; today. However, skip delayed items and items that have
  5817. ;; been displayed for more than `org-scheduled-past-days'.
  5818. (unless (and todayp
  5819. habitp
  5820. (bound-and-true-p org-habit-show-all-today))
  5821. (when (or (and (> ddays 0) (< diff ddays))
  5822. (> diff org-scheduled-past-days)
  5823. (> schedule current)
  5824. (and (< schedule current)
  5825. (not todayp)
  5826. (/= repeat current)))
  5827. (throw :skip nil)))
  5828. ;; Possibly skip done tasks.
  5829. (when (and donep org-agenda-skip-scheduled-if-done)
  5830. (throw :skip nil))
  5831. ;; Skip entry if it already appears as a deadline, per
  5832. ;; `org-agenda-skip-scheduled-if-deadline-is-shown'. This
  5833. ;; doesn't apply to habits.
  5834. (when (pcase org-agenda-skip-scheduled-if-deadline-is-shown
  5835. ((guard
  5836. (or (not (memq (line-beginning-position 0) deadline-pos))
  5837. habitp))
  5838. nil)
  5839. (`repeated-after-deadline
  5840. (>= repeat (time-to-days (org-get-deadline-time (point)))))
  5841. (`not-today pastschedp)
  5842. (`t t)
  5843. (_ nil))
  5844. (throw :skip nil))
  5845. ;; Skip habits if `org-habit-show-habits' is nil, or if we
  5846. ;; only show them for today. Also skip done habits.
  5847. (when (and habitp
  5848. (or donep
  5849. (not (bound-and-true-p org-habit-show-habits))
  5850. (and (not todayp)
  5851. (bound-and-true-p
  5852. org-habit-show-habits-only-for-today))))
  5853. (throw :skip nil))
  5854. (save-excursion
  5855. (re-search-backward "^\\*+[ \t]+" nil t)
  5856. (goto-char (match-end 0))
  5857. (let* ((category (org-get-category))
  5858. (inherited-tags
  5859. (or (eq org-agenda-show-inherited-tags 'always)
  5860. (and (listp org-agenda-show-inherited-tags)
  5861. (memq 'agenda org-agenda-show-inherited-tags))
  5862. (and (eq org-agenda-show-inherited-tags t)
  5863. (or (eq org-agenda-use-tag-inheritance t)
  5864. (memq 'agenda
  5865. org-agenda-use-tag-inheritance)))))
  5866. (tags (org-get-tags-at nil (not inherited-tags)))
  5867. (level
  5868. (make-string (org-reduced-level (org-outline-level)) ?\s))
  5869. (head (buffer-substring (point) (line-end-position)))
  5870. (timestr
  5871. (if (string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
  5872. (concat (substring s (match-beginning 1)) " ")
  5873. 'time))
  5874. (item
  5875. (org-agenda-format-item
  5876. (pcase-let ((`(,first ,next) org-agenda-scheduled-leaders))
  5877. (cond
  5878. ;; If CURRENT is in the future, don't use past
  5879. ;; scheduled prefix.
  5880. ((> current today) first)
  5881. ;; SHOW-ALL focuses on future repeats. If one
  5882. ;; such repeat happens today, ignore late
  5883. ;; schedule reminder. However, still report
  5884. ;; such reminders when repeat happens later.
  5885. ((and (not show-all) (= repeat today)) first)
  5886. ;; Initial report.
  5887. ((= schedule current) first)
  5888. ;; Subsequent reminders. Count from base
  5889. ;; schedule.
  5890. (t (format next (1+ diff)))))
  5891. head level category tags timestr nil habitp))
  5892. (face (cond ((and (not habitp) (< current today))
  5893. 'org-scheduled-previously)
  5894. (todayp 'org-scheduled-today)
  5895. (t 'org-scheduled)))
  5896. (habitp (and habitp (org-habit-parse-todo))))
  5897. (org-add-props item props
  5898. 'undone-face face
  5899. 'face (if donep 'org-agenda-done face)
  5900. 'org-marker (org-agenda-new-marker pos)
  5901. 'org-hd-marker (org-agenda-new-marker (line-beginning-position))
  5902. 'type (if pastschedp "past-scheduled" "scheduled")
  5903. 'date (if pastschedp schedule date)
  5904. 'ts-date schedule
  5905. 'warntime warntime
  5906. 'level level
  5907. 'priority (if habitp (org-habit-get-priority habitp)
  5908. (+ 99 diff (org-get-priority item)))
  5909. 'org-habit-p habitp
  5910. 'todo-state todo-state)
  5911. (push item scheduled-items))))))
  5912. (nreverse scheduled-items)))
  5913. (defun org-agenda-get-blocks ()
  5914. "Return the date-range information for agenda display."
  5915. (let* ((props (list 'face nil
  5916. 'org-not-done-regexp org-not-done-regexp
  5917. 'org-todo-regexp org-todo-regexp
  5918. 'org-complex-heading-regexp org-complex-heading-regexp
  5919. 'mouse-face 'highlight
  5920. 'help-echo
  5921. (format "mouse-2 or RET jump to org file %s"
  5922. (abbreviate-file-name buffer-file-name))))
  5923. (regexp org-tr-regexp)
  5924. (d0 (calendar-absolute-from-gregorian date))
  5925. marker hdmarker ee txt d1 d2 s1 s2 category
  5926. level todo-state tags pos head donep inherited-tags)
  5927. (goto-char (point-min))
  5928. (while (re-search-forward regexp nil t)
  5929. (catch :skip
  5930. (org-agenda-skip)
  5931. (setq pos (point))
  5932. (let ((start-time (match-string 1))
  5933. (end-time (match-string 2)))
  5934. (setq s1 (match-string 1)
  5935. s2 (match-string 2)
  5936. d1 (time-to-days (org-time-string-to-time s1 (current-buffer) pos))
  5937. d2 (time-to-days (org-time-string-to-time s2 (current-buffer) pos)))
  5938. (if (and (> (- d0 d1) -1) (> (- d2 d0) -1))
  5939. ;; Only allow days between the limits, because the normal
  5940. ;; date stamps will catch the limits.
  5941. (save-excursion
  5942. (setq todo-state (org-get-todo-state))
  5943. (setq donep (member todo-state org-done-keywords))
  5944. (if (and donep org-agenda-skip-timestamp-if-done)
  5945. (throw :skip t))
  5946. (setq marker (org-agenda-new-marker (point))
  5947. category (org-get-category))
  5948. (if (not (re-search-backward org-outline-regexp-bol nil t))
  5949. (throw :skip nil)
  5950. (goto-char (match-beginning 0))
  5951. (setq hdmarker (org-agenda-new-marker (point))
  5952. inherited-tags
  5953. (or (eq org-agenda-show-inherited-tags 'always)
  5954. (and (listp org-agenda-show-inherited-tags)
  5955. (memq 'agenda org-agenda-show-inherited-tags))
  5956. (and (eq org-agenda-show-inherited-tags t)
  5957. (or (eq org-agenda-use-tag-inheritance t)
  5958. (memq 'agenda org-agenda-use-tag-inheritance))))
  5959. tags (org-get-tags-at nil (not inherited-tags)))
  5960. (setq level (make-string (org-reduced-level (org-outline-level)) ? ))
  5961. (looking-at "\\*+[ \t]+\\(.*\\)")
  5962. (setq head (match-string 1))
  5963. (let ((remove-re
  5964. (if org-agenda-remove-timeranges-from-blocks
  5965. (concat
  5966. "<" (regexp-quote s1) ".*?>"
  5967. "--"
  5968. "<" (regexp-quote s2) ".*?>")
  5969. nil)))
  5970. (setq txt (org-agenda-format-item
  5971. (format
  5972. (nth (if (= d1 d2) 0 1)
  5973. org-agenda-timerange-leaders)
  5974. (1+ (- d0 d1)) (1+ (- d2 d1)))
  5975. head level category tags
  5976. (cond ((and (= d1 d0) (= d2 d0))
  5977. (concat "<" start-time ">--<" end-time ">"))
  5978. ((= d1 d0)
  5979. (concat "<" start-time ">"))
  5980. ((= d2 d0)
  5981. (concat "<" end-time ">")))
  5982. remove-re))))
  5983. (org-add-props txt props
  5984. 'org-marker marker 'org-hd-marker hdmarker
  5985. 'type "block" 'date date
  5986. 'level level
  5987. 'todo-state todo-state
  5988. 'priority (org-get-priority txt))
  5989. (push txt ee))))
  5990. (goto-char pos)))
  5991. ;; Sort the entries by expiration date.
  5992. (nreverse ee)))
  5993. ;;; Agenda presentation and sorting
  5994. (defvar org-prefix-has-time nil
  5995. "A flag, set by `org-compile-prefix-format'.
  5996. The flag is set if the currently compiled format contains a `%t'.")
  5997. (defvar org-prefix-has-tag nil
  5998. "A flag, set by `org-compile-prefix-format'.
  5999. The flag is set if the currently compiled format contains a `%T'.")
  6000. (defvar org-prefix-has-effort nil
  6001. "A flag, set by `org-compile-prefix-format'.
  6002. The flag is set if the currently compiled format contains a `%e'.")
  6003. (defvar org-prefix-has-breadcrumbs nil
  6004. "A flag, set by `org-compile-prefix-format'.
  6005. The flag is set if the currently compiled format contains a `%b'.")
  6006. (defvar org-prefix-category-length nil
  6007. "Used by `org-compile-prefix-format' to remember the category field width.")
  6008. (defvar org-prefix-category-max-length nil
  6009. "Used by `org-compile-prefix-format' to remember the category field width.")
  6010. (defun org-agenda-get-category-icon (category)
  6011. "Return an image for CATEGORY according to `org-agenda-category-icon-alist'."
  6012. (cl-dolist (entry org-agenda-category-icon-alist)
  6013. (when (string-match-p (car entry) category)
  6014. (if (listp (cadr entry))
  6015. (cl-return (cadr entry))
  6016. (cl-return (apply #'create-image (cdr entry)))))))
  6017. (defun org-agenda-format-item (extra txt &optional level category tags dotime
  6018. remove-re habitp)
  6019. "Format TXT to be inserted into the agenda buffer.
  6020. In particular, add the prefix and corresponding text properties.
  6021. EXTRA must be a string to replace the `%s' specifier in the prefix format.
  6022. LEVEL may be a string to replace the `%l' specifier.
  6023. CATEGORY (a string, a symbol or nil) may be used to overrule the default
  6024. category taken from local variable or file name. It will replace the `%c'
  6025. specifier in the format.
  6026. DOTIME, when non-nil, indicates that a time-of-day should be extracted from
  6027. TXT for sorting of this entry, and for the `%t' specifier in the format.
  6028. When DOTIME is a string, this string is searched for a time before TXT is.
  6029. TAGS can be the tags of the headline.
  6030. Any match of REMOVE-RE will be removed from TXT."
  6031. ;; We keep the org-prefix-* variable values along with a compiled
  6032. ;; formatter, so that multiple agendas existing at the same time do
  6033. ;; not step on each other toes.
  6034. ;;
  6035. ;; It was inconvenient to make these variables buffer local in
  6036. ;; Agenda buffers, because this function expects to be called with
  6037. ;; the buffer where item comes from being current, and not agenda
  6038. ;; buffer
  6039. (let* ((bindings (car org-prefix-format-compiled))
  6040. (formatter (cadr org-prefix-format-compiled)))
  6041. (cl-loop for (var value) in bindings
  6042. do (set var value))
  6043. (save-match-data
  6044. ;; Diary entries sometimes have extra whitespace at the beginning
  6045. (setq txt (org-trim txt))
  6046. ;; Fix the tags part in txt
  6047. (setq txt (org-agenda-fix-displayed-tags
  6048. txt tags
  6049. org-agenda-show-inherited-tags
  6050. org-agenda-hide-tags-regexp))
  6051. (let* ((category (or category
  6052. (if buffer-file-name
  6053. (file-name-sans-extension
  6054. (file-name-nondirectory buffer-file-name))
  6055. "")))
  6056. (category-icon (org-agenda-get-category-icon category))
  6057. (category-icon (if category-icon
  6058. (propertize " " 'display category-icon)
  6059. ""))
  6060. (effort (and (not (string= txt ""))
  6061. (get-text-property 1 'effort txt)))
  6062. ;; time, tag, effort are needed for the eval of the prefix format
  6063. (tag (if tags (nth (1- (length tags)) tags) ""))
  6064. time
  6065. (ts (if dotime (concat
  6066. (if (stringp dotime) dotime "")
  6067. (and org-agenda-search-headline-for-time txt))))
  6068. (time-of-day (and dotime (org-get-time-of-day ts)))
  6069. stamp plain s0 s1 s2 rtn srp l
  6070. duration breadcrumbs)
  6071. (and (derived-mode-p 'org-mode) buffer-file-name
  6072. (add-to-list 'org-agenda-contributing-files buffer-file-name))
  6073. (when (and dotime time-of-day)
  6074. ;; Extract starting and ending time and move them to prefix
  6075. (when (or (setq stamp (string-match org-stamp-time-of-day-regexp ts))
  6076. (setq plain (string-match org-plain-time-of-day-regexp ts)))
  6077. (setq s0 (match-string 0 ts)
  6078. srp (and stamp (match-end 3))
  6079. s1 (match-string (if plain 1 2) ts)
  6080. s2 (match-string (if plain 8 (if srp 4 6)) ts))
  6081. ;; If the times are in TXT (not in DOTIMES), and the prefix will list
  6082. ;; them, we might want to remove them there to avoid duplication.
  6083. ;; The user can turn this off with a variable.
  6084. (if (and org-prefix-has-time
  6085. org-agenda-remove-times-when-in-prefix (or stamp plain)
  6086. (string-match (concat (regexp-quote s0) " *") txt)
  6087. (not (equal ?\] (string-to-char (substring txt (match-end 0)))))
  6088. (if (eq org-agenda-remove-times-when-in-prefix 'beg)
  6089. (= (match-beginning 0) 0)
  6090. t))
  6091. (setq txt (replace-match "" nil nil txt))))
  6092. ;; Normalize the time(s) to 24 hour
  6093. (if s1 (setq s1 (org-get-time-of-day s1 'string t)))
  6094. (if s2 (setq s2 (org-get-time-of-day s2 'string t)))
  6095. ;; Try to set s2 if s1 and `org-agenda-default-appointment-duration' are set
  6096. (let (org-time-clocksum-use-effort-durations)
  6097. (when (and s1 (not s2) org-agenda-default-appointment-duration)
  6098. (setq s2
  6099. (org-minutes-to-clocksum-string
  6100. (+ (org-hh:mm-string-to-minutes s1)
  6101. org-agenda-default-appointment-duration)))))
  6102. ;; Compute the duration
  6103. (when s2
  6104. (setq duration (- (org-hh:mm-string-to-minutes s2)
  6105. (org-hh:mm-string-to-minutes s1)))))
  6106. (when (string-match "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$" txt)
  6107. ;; Tags are in the string
  6108. (if (or (eq org-agenda-remove-tags t)
  6109. (and org-agenda-remove-tags
  6110. org-prefix-has-tag))
  6111. (setq txt (replace-match "" t t txt))
  6112. (setq txt (replace-match
  6113. (concat (make-string (max (- 50 (length txt)) 1) ?\ )
  6114. (match-string 2 txt))
  6115. t t txt))))
  6116. (when remove-re
  6117. (while (string-match remove-re txt)
  6118. (setq txt (replace-match "" t t txt))))
  6119. ;; Set org-heading property on `txt' to mark the start of the
  6120. ;; heading.
  6121. (add-text-properties 0 (length txt) '(org-heading t) txt)
  6122. ;; Prepare the variables needed in the eval of the compiled format
  6123. (if org-prefix-has-breadcrumbs
  6124. (setq breadcrumbs (org-with-point-at (org-get-at-bol 'org-marker)
  6125. (let ((s (org-display-outline-path nil nil "->" t)))
  6126. (if (eq "" s) "" (concat s "->"))))))
  6127. (setq time (cond (s2 (concat
  6128. (org-agenda-time-of-day-to-ampm-maybe s1)
  6129. "-" (org-agenda-time-of-day-to-ampm-maybe s2)
  6130. (if org-agenda-timegrid-use-ampm " ")))
  6131. (s1 (concat
  6132. (org-agenda-time-of-day-to-ampm-maybe s1)
  6133. (if org-agenda-timegrid-use-ampm
  6134. "........ "
  6135. "......")))
  6136. (t ""))
  6137. extra (or (and (not habitp) extra) "")
  6138. category (if (symbolp category) (symbol-name category) category)
  6139. level (or level ""))
  6140. (if (string-match org-bracket-link-regexp category)
  6141. (progn
  6142. (setq l (if (match-end 3)
  6143. (- (match-end 3) (match-beginning 3))
  6144. (- (match-end 1) (match-beginning 1))))
  6145. (when (< l (or org-prefix-category-length 0))
  6146. (setq category (copy-sequence category))
  6147. (org-add-props category nil
  6148. 'extra-space (make-string
  6149. (- org-prefix-category-length l 1) ?\ ))))
  6150. (if (and org-prefix-category-max-length
  6151. (>= (length category) org-prefix-category-max-length))
  6152. (setq category (substring category 0 (1- org-prefix-category-max-length)))))
  6153. ;; Evaluate the compiled format
  6154. (setq rtn (concat (eval formatter) txt))
  6155. ;; And finally add the text properties
  6156. (remove-text-properties 0 (length rtn) '(line-prefix t wrap-prefix t) rtn)
  6157. (org-add-props rtn nil
  6158. 'org-category category
  6159. 'tags (mapcar 'org-downcase-keep-props tags)
  6160. 'org-highest-priority org-highest-priority
  6161. 'org-lowest-priority org-lowest-priority
  6162. 'time-of-day time-of-day
  6163. 'duration duration
  6164. 'breadcrumbs breadcrumbs
  6165. 'txt txt
  6166. 'level level
  6167. 'time time
  6168. 'extra extra
  6169. 'format org-prefix-format-compiled
  6170. 'dotime dotime)))))
  6171. (defun org-agenda-fix-displayed-tags (txt tags add-inherited hide-re)
  6172. "Remove tags string from TXT, and add a modified list of tags.
  6173. The modified list may contain inherited tags, and tags matched by
  6174. `org-agenda-hide-tags-regexp' will be removed."
  6175. (when (or add-inherited hide-re)
  6176. (if (string-match "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$" txt)
  6177. (setq txt (substring txt 0 (match-beginning 0))))
  6178. (setq tags
  6179. (delq nil
  6180. (mapcar (lambda (tg)
  6181. (if (or (and hide-re (string-match hide-re tg))
  6182. (and (not add-inherited)
  6183. (get-text-property 0 'inherited tg)))
  6184. nil
  6185. tg))
  6186. tags)))
  6187. (when tags
  6188. (let ((have-i (get-text-property 0 'inherited (car tags)))
  6189. i)
  6190. (setq txt (concat txt " :"
  6191. (mapconcat
  6192. (lambda (x)
  6193. (setq i (get-text-property 0 'inherited x))
  6194. (if (and have-i (not i))
  6195. (progn
  6196. (setq have-i nil)
  6197. (concat ":" x))
  6198. x))
  6199. tags ":")
  6200. (if have-i "::" ":"))))))
  6201. txt)
  6202. (defun org-downcase-keep-props (s)
  6203. (let ((props (text-properties-at 0 s)))
  6204. (setq s (downcase s))
  6205. (add-text-properties 0 (length s) props s)
  6206. s))
  6207. (defvar org-agenda-sorting-strategy) ;; because the def is in a let form
  6208. (defun org-agenda-add-time-grid-maybe (list ndays todayp)
  6209. "Add a time-grid for agenda items which need it.
  6210. LIST is the list of agenda items formatted by `org-agenda-list'.
  6211. NDAYS is the span of the current agenda view.
  6212. TODAYP is t when the current agenda view is on today."
  6213. (catch 'exit
  6214. (cond ((not org-agenda-use-time-grid) (throw 'exit list))
  6215. ((and todayp (member 'today (car org-agenda-time-grid))))
  6216. ((and (= ndays 1) (member 'daily (car org-agenda-time-grid))))
  6217. ((member 'weekly (car org-agenda-time-grid)))
  6218. (t (throw 'exit list)))
  6219. (let* ((have (delq nil (mapcar
  6220. (lambda (x) (get-text-property 1 'time-of-day x))
  6221. list)))
  6222. (string (nth 1 org-agenda-time-grid))
  6223. (gridtimes (nth 2 org-agenda-time-grid))
  6224. (req (car org-agenda-time-grid))
  6225. (remove (member 'remove-match req))
  6226. new time)
  6227. (if (and (member 'require-timed req) (not have))
  6228. ;; don't show empty grid
  6229. (throw 'exit list))
  6230. (while (setq time (pop gridtimes))
  6231. (unless (and remove (member time have))
  6232. (setq time (replace-regexp-in-string " " "0" (format "%04s" time)))
  6233. (push (org-agenda-format-item
  6234. nil string nil "" nil
  6235. (concat (substring time 0 -2) ":" (substring time -2)))
  6236. new)
  6237. (put-text-property
  6238. 2 (length (car new)) 'face 'org-time-grid (car new))))
  6239. (when (and todayp org-agenda-show-current-time-in-grid)
  6240. (push (org-agenda-format-item
  6241. nil org-agenda-current-time-string nil "" nil
  6242. (format-time-string "%H:%M "))
  6243. new)
  6244. (put-text-property
  6245. 2 (length (car new)) 'face 'org-agenda-current-time (car new)))
  6246. (if (member 'time-up org-agenda-sorting-strategy-selected)
  6247. (append new list)
  6248. (append list new)))))
  6249. (defun org-compile-prefix-format (key)
  6250. "Compile the prefix format into a Lisp form that can be evaluated.
  6251. The resulting form and associated variable bindings is returned
  6252. and stored in the variable `org-prefix-format-compiled'."
  6253. (setq org-prefix-has-time nil
  6254. org-prefix-has-tag nil
  6255. org-prefix-category-length nil
  6256. org-prefix-has-effort nil
  6257. org-prefix-has-breadcrumbs nil)
  6258. (let ((s (cond
  6259. ((stringp org-agenda-prefix-format)
  6260. org-agenda-prefix-format)
  6261. ((assq key org-agenda-prefix-format)
  6262. (cdr (assq key org-agenda-prefix-format)))
  6263. (t " %-12:c%?-12t% s")))
  6264. (start 0)
  6265. varform vars var e c f opt)
  6266. (while (string-match "%\\(\\?\\)?\\([-+]?[0-9.]*\\)\\([ .;,:!?=|/<>]?\\)\\([cltseib]\\|(.+)\\)"
  6267. s start)
  6268. (setq var (or (cdr (assoc (match-string 4 s)
  6269. '(("c" . category) ("t" . time) ("l" . level) ("s" . extra)
  6270. ("i" . category-icon) ("T" . tag) ("e" . effort) ("b" . breadcrumbs))))
  6271. 'eval)
  6272. c (or (match-string 3 s) "")
  6273. opt (match-beginning 1)
  6274. start (1+ (match-beginning 0)))
  6275. (if (eq var 'time) (setq org-prefix-has-time t))
  6276. (if (eq var 'tag) (setq org-prefix-has-tag t))
  6277. (if (eq var 'effort) (setq org-prefix-has-effort t))
  6278. (if (eq var 'breadcrumbs) (setq org-prefix-has-breadcrumbs t))
  6279. (setq f (concat "%" (match-string 2 s) "s"))
  6280. (when (eq var 'category)
  6281. (setq org-prefix-category-length
  6282. (floor (abs (string-to-number (match-string 2 s)))))
  6283. (setq org-prefix-category-max-length
  6284. (let ((x (match-string 2 s)))
  6285. (save-match-data
  6286. (if (string-match "\\.[0-9]+" x)
  6287. (string-to-number (substring (match-string 0 x) 1)))))))
  6288. (if (eq var 'eval)
  6289. (setq varform `(format ,f (org-eval ,(read (match-string 4 s)))))
  6290. (if opt
  6291. (setq varform
  6292. `(if (or (equal "" ,var) (equal nil ,var))
  6293. ""
  6294. (format ,f (concat ,var ,c))))
  6295. (setq varform
  6296. `(format ,f (if (or (equal ,var "")
  6297. (equal ,var nil)) ""
  6298. (concat ,var ,c (get-text-property 0 'extra-space ,var)))))))
  6299. (setq s (replace-match "%s" t nil s))
  6300. (push varform vars))
  6301. (setq vars (nreverse vars))
  6302. (with-current-buffer (or org-agenda-buffer (current-buffer))
  6303. (setq org-prefix-format-compiled
  6304. (list
  6305. `((org-prefix-has-time ,org-prefix-has-time)
  6306. (org-prefix-has-tag ,org-prefix-has-tag)
  6307. (org-prefix-category-length ,org-prefix-category-length)
  6308. (org-prefix-has-effort ,org-prefix-has-effort)
  6309. (org-prefix-has-breadcrumbs ,org-prefix-has-breadcrumbs))
  6310. `(format ,s ,@vars))))))
  6311. (defun org-set-sorting-strategy (key)
  6312. (if (symbolp (car org-agenda-sorting-strategy))
  6313. ;; the old format
  6314. (setq org-agenda-sorting-strategy-selected org-agenda-sorting-strategy)
  6315. (setq org-agenda-sorting-strategy-selected
  6316. (or (cdr (assq key org-agenda-sorting-strategy))
  6317. (cdr (assq 'agenda org-agenda-sorting-strategy))
  6318. '(time-up category-keep priority-down)))))
  6319. (defun org-get-time-of-day (s &optional string mod24)
  6320. "Check string S for a time of day.
  6321. If found, return it as a military time number between 0 and 2400.
  6322. If not found, return nil.
  6323. The optional STRING argument forces conversion into a 5 character wide string
  6324. HH:MM."
  6325. (save-match-data
  6326. (when
  6327. (and
  6328. (or (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)\\([AaPp][Mm]\\)?\\> *" s)
  6329. (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?\\([AaPp][Mm]\\)\\> *" s))
  6330. (not (eq (get-text-property 1 'face s) 'org-link)))
  6331. (let* ((h (string-to-number (match-string 1 s)))
  6332. (m (if (match-end 3) (string-to-number (match-string 3 s)) 0))
  6333. (ampm (if (match-end 4) (downcase (match-string 4 s))))
  6334. (am-p (equal ampm "am"))
  6335. (h1 (cond ((not ampm) h)
  6336. ((= h 12) (if am-p 0 12))
  6337. (t (+ h (if am-p 0 12)))))
  6338. (h2 (if (and string mod24 (not (and (= m 0) (= h1 24))))
  6339. (mod h1 24) h1))
  6340. (t0 (+ (* 100 h2) m))
  6341. (t1 (concat (if (>= h1 24) "+" " ")
  6342. (if (and org-agenda-time-leading-zero
  6343. (< t0 1000)) "0" "")
  6344. (if (< t0 100) "0" "")
  6345. (if (< t0 10) "0" "")
  6346. (int-to-string t0))))
  6347. (if string (concat (substring t1 -4 -2) ":" (substring t1 -2)) t0)))))
  6348. (defvar org-agenda-before-sorting-filter-function nil
  6349. "Function to be applied to agenda items prior to sorting.
  6350. Prior to sorting also means just before they are inserted into the agenda.
  6351. To aid sorting, you may revisit the original entries and add more text
  6352. properties which will later be used by the sorting functions.
  6353. The function should take a string argument, an agenda line.
  6354. It has access to the text properties in that line, which contain among
  6355. other things, the property `org-hd-marker' that points to the entry
  6356. where the line comes from. Note that not all lines going into the agenda
  6357. have this property, only most.
  6358. The function should return the modified string. It is probably best
  6359. to ONLY change text properties.
  6360. You can also use this function as a filter, by returning nil for lines
  6361. you don't want to have in the agenda at all. For this application, you
  6362. could bind the variable in the options section of a custom command.")
  6363. (defun org-agenda-finalize-entries (list &optional type)
  6364. "Sort, limit and concatenate the LIST of agenda items.
  6365. The optional argument TYPE tells the agenda type."
  6366. (let ((max-effort (cond ((listp org-agenda-max-effort)
  6367. (cdr (assoc type org-agenda-max-effort)))
  6368. (t org-agenda-max-effort)))
  6369. (max-todo (cond ((listp org-agenda-max-todos)
  6370. (cdr (assoc type org-agenda-max-todos)))
  6371. (t org-agenda-max-todos)))
  6372. (max-tags (cond ((listp org-agenda-max-tags)
  6373. (cdr (assoc type org-agenda-max-tags)))
  6374. (t org-agenda-max-tags)))
  6375. (max-entries (cond ((listp org-agenda-max-entries)
  6376. (cdr (assoc type org-agenda-max-entries)))
  6377. (t org-agenda-max-entries))))
  6378. (when org-agenda-before-sorting-filter-function
  6379. (setq list
  6380. (delq nil
  6381. (mapcar
  6382. org-agenda-before-sorting-filter-function list))))
  6383. (setq list (mapcar 'org-agenda-highlight-todo list)
  6384. list (mapcar 'identity (sort list 'org-entries-lessp)))
  6385. (when max-effort
  6386. (setq list (org-agenda-limit-entries
  6387. list 'effort-minutes max-effort
  6388. (lambda (e) (or e (if org-sort-agenda-noeffort-is-high
  6389. 32767 -1))))))
  6390. (when max-todo
  6391. (setq list (org-agenda-limit-entries list 'todo-state max-todo)))
  6392. (when max-tags
  6393. (setq list (org-agenda-limit-entries list 'tags max-tags)))
  6394. (when max-entries
  6395. (setq list (org-agenda-limit-entries list 'org-hd-marker max-entries)))
  6396. (mapconcat 'identity list "\n")))
  6397. (defun org-agenda-limit-entries (list prop limit &optional fn)
  6398. "Limit the number of agenda entries."
  6399. (let ((include (and limit (< limit 0))))
  6400. (if limit
  6401. (let ((fun (or fn (lambda (p) (if p 1))))
  6402. (lim 0))
  6403. (delq nil
  6404. (mapcar
  6405. (lambda (e)
  6406. (let ((pval (funcall
  6407. fun (get-text-property (1- (length e))
  6408. prop e))))
  6409. (if pval (setq lim (+ lim pval)))
  6410. (cond ((and pval (<= lim (abs limit))) e)
  6411. ((and include (not pval)) e))))
  6412. list)))
  6413. list)))
  6414. (defun org-agenda-limit-interactively (remove)
  6415. "In agenda, interactively limit entries to various maximums."
  6416. (interactive "P")
  6417. (if remove
  6418. (progn (setq org-agenda-max-entries nil
  6419. org-agenda-max-todos nil
  6420. org-agenda-max-tags nil
  6421. org-agenda-max-effort nil)
  6422. (org-agenda-redo))
  6423. (let* ((max (read-char "Number of [e]ntries [t]odos [T]ags [E]ffort? "))
  6424. (msg (cond ((= max ?E) "How many minutes? ")
  6425. ((= max ?e) "How many entries? ")
  6426. ((= max ?t) "How many TODO entries? ")
  6427. ((= max ?T) "How many tagged entries? ")
  6428. (t (user-error "Wrong input"))))
  6429. (num (string-to-number (read-from-minibuffer msg))))
  6430. (cond ((equal max ?e)
  6431. (let ((org-agenda-max-entries num)) (org-agenda-redo)))
  6432. ((equal max ?t)
  6433. (let ((org-agenda-max-todos num)) (org-agenda-redo)))
  6434. ((equal max ?T)
  6435. (let ((org-agenda-max-tags num)) (org-agenda-redo)))
  6436. ((equal max ?E)
  6437. (let ((org-agenda-max-effort num)) (org-agenda-redo))))))
  6438. (org-agenda-fit-window-to-buffer))
  6439. (defun org-agenda-highlight-todo (x)
  6440. (let ((org-done-keywords org-done-keywords-for-agenda)
  6441. (case-fold-search nil)
  6442. re)
  6443. (if (eq x 'line)
  6444. (save-excursion
  6445. (beginning-of-line 1)
  6446. (setq re (org-get-at-bol 'org-todo-regexp))
  6447. (goto-char (or (text-property-any (point-at-bol) (point-at-eol) 'org-heading t) (point)))
  6448. (when (looking-at (concat "[ \t]*\\.*\\(" re "\\) +"))
  6449. (add-text-properties (match-beginning 0) (match-end 1)
  6450. (list 'face (org-get-todo-face 1)))
  6451. (let ((s (buffer-substring (match-beginning 1) (match-end 1))))
  6452. (delete-region (match-beginning 1) (1- (match-end 0)))
  6453. (goto-char (match-beginning 1))
  6454. (insert (format org-agenda-todo-keyword-format s)))))
  6455. (let ((pl (text-property-any 0 (length x) 'org-heading t x)))
  6456. (setq re (get-text-property 0 'org-todo-regexp x))
  6457. (when (and re
  6458. ;; Test `pl' because if there's no heading content,
  6459. ;; there's no point matching to highlight. Note
  6460. ;; that if we didn't test `pl' first, and there
  6461. ;; happened to be no keyword from `org-todo-regexp'
  6462. ;; on this heading line, then the `equal' comparison
  6463. ;; afterwards would spuriously succeed in the case
  6464. ;; where `pl' is nil -- causing an args-out-of-range
  6465. ;; error when we try to add text properties to text
  6466. ;; that isn't there.
  6467. pl
  6468. (equal (string-match (concat "\\(\\.*\\)" re "\\( +\\)")
  6469. x pl) pl))
  6470. (add-text-properties
  6471. (or (match-end 1) (match-end 0)) (match-end 0)
  6472. (list 'face (org-get-todo-face (match-string 2 x)))
  6473. x)
  6474. (when (match-end 1)
  6475. (setq x (concat (substring x 0 (match-end 1))
  6476. (format org-agenda-todo-keyword-format
  6477. (match-string 2 x))
  6478. (org-add-props " " (text-properties-at 0 x))
  6479. (substring x (match-end 3)))))))
  6480. x)))
  6481. (defsubst org-cmp-values (a b property)
  6482. "Compare the numeric value of text PROPERTY for string A and B."
  6483. (let ((pa (or (get-text-property (1- (length a)) property a) 0))
  6484. (pb (or (get-text-property (1- (length b)) property b) 0)))
  6485. (cond ((> pa pb) +1)
  6486. ((< pa pb) -1))))
  6487. (defsubst org-cmp-effort (a b)
  6488. "Compare the effort values of string A and B."
  6489. (let* ((def (if org-sort-agenda-noeffort-is-high 32767 -1))
  6490. ;; `effort-minutes' property is not directly accessible from
  6491. ;; the strings, but is stored as a property in `txt'.
  6492. (ea (or (get-text-property
  6493. 0 'effort-minutes (get-text-property 0 'txt a))
  6494. def))
  6495. (eb (or (get-text-property
  6496. 0 'effort-minutes (get-text-property 0 'txt b))
  6497. def)))
  6498. (cond ((> ea eb) +1)
  6499. ((< ea eb) -1))))
  6500. (defsubst org-cmp-category (a b)
  6501. "Compare the string values of categories of strings A and B."
  6502. (let ((ca (or (get-text-property (1- (length a)) 'org-category a) ""))
  6503. (cb (or (get-text-property (1- (length b)) 'org-category b) "")))
  6504. (cond ((string-lessp ca cb) -1)
  6505. ((string-lessp cb ca) +1))))
  6506. (defsubst org-cmp-todo-state (a b)
  6507. "Compare the todo states of strings A and B."
  6508. (let* ((ma (or (get-text-property 1 'org-marker a)
  6509. (get-text-property 1 'org-hd-marker a)))
  6510. (mb (or (get-text-property 1 'org-marker b)
  6511. (get-text-property 1 'org-hd-marker b)))
  6512. (fa (and ma (marker-buffer ma)))
  6513. (fb (and mb (marker-buffer mb)))
  6514. (todo-kwds
  6515. (or (and fa (with-current-buffer fa org-todo-keywords-1))
  6516. (and fb (with-current-buffer fb org-todo-keywords-1))))
  6517. (ta (or (get-text-property 1 'todo-state a) ""))
  6518. (tb (or (get-text-property 1 'todo-state b) ""))
  6519. (la (- (length (member ta todo-kwds))))
  6520. (lb (- (length (member tb todo-kwds))))
  6521. (donepa (member ta org-done-keywords-for-agenda))
  6522. (donepb (member tb org-done-keywords-for-agenda)))
  6523. (cond ((and donepa (not donepb)) -1)
  6524. ((and (not donepa) donepb) +1)
  6525. ((< la lb) -1)
  6526. ((< lb la) +1))))
  6527. (defsubst org-cmp-alpha (a b)
  6528. "Compare the headlines, alphabetically."
  6529. (let* ((pla (text-property-any 0 (length a) 'org-heading t a))
  6530. (plb (text-property-any 0 (length b) 'org-heading t b))
  6531. (ta (and pla (substring a pla)))
  6532. (tb (and plb (substring b plb)))
  6533. (case-fold-search nil))
  6534. (when pla
  6535. (if (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp a) "")
  6536. "\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *") ta)
  6537. (setq ta (substring ta (match-end 0))))
  6538. (setq ta (downcase ta)))
  6539. (when plb
  6540. (if (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp b) "")
  6541. "\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *") tb)
  6542. (setq tb (substring tb (match-end 0))))
  6543. (setq tb (downcase tb)))
  6544. (cond ((not ta) +1)
  6545. ((not tb) -1)
  6546. ((string-lessp ta tb) -1)
  6547. ((string-lessp tb ta) +1))))
  6548. (defsubst org-cmp-tag (a b)
  6549. "Compare the string values of the first tags of A and B."
  6550. (let ((ta (car (last (get-text-property 1 'tags a))))
  6551. (tb (car (last (get-text-property 1 'tags b)))))
  6552. (cond ((not ta) +1)
  6553. ((not tb) -1)
  6554. ((string-lessp ta tb) -1)
  6555. ((string-lessp tb ta) +1))))
  6556. (defsubst org-cmp-time (a b)
  6557. "Compare the time-of-day values of strings A and B."
  6558. (let* ((def (if org-sort-agenda-notime-is-late 9901 -1))
  6559. (ta (or (get-text-property 1 'time-of-day a) def))
  6560. (tb (or (get-text-property 1 'time-of-day b) def)))
  6561. (cond ((< ta tb) -1)
  6562. ((< tb ta) +1))))
  6563. (defsubst org-cmp-ts (a b type)
  6564. "Compare the timestamps values of entries A and B.
  6565. When TYPE is \"scheduled\", \"deadline\", \"timestamp\" or
  6566. \"timestamp_ia\", compare within each of these type. When TYPE
  6567. is the empty string, compare all timestamps without respect of
  6568. their type."
  6569. (let* ((def (if org-sort-agenda-notime-is-late most-positive-fixnum -1))
  6570. (ta (or (and (string-match type (or (get-text-property 1 'type a) ""))
  6571. (get-text-property 1 'ts-date a))
  6572. def))
  6573. (tb (or (and (string-match type (or (get-text-property 1 'type b) ""))
  6574. (get-text-property 1 'ts-date b))
  6575. def)))
  6576. (cond ((< ta tb) -1)
  6577. ((< tb ta) +1))))
  6578. (defsubst org-cmp-habit-p (a b)
  6579. "Compare the todo states of strings A and B."
  6580. (let ((ha (get-text-property 1 'org-habit-p a))
  6581. (hb (get-text-property 1 'org-habit-p b)))
  6582. (cond ((and ha (not hb)) -1)
  6583. ((and (not ha) hb) +1))))
  6584. (defun org-entries-lessp (a b)
  6585. "Predicate for sorting agenda entries."
  6586. ;; The following variables will be used when the form is evaluated.
  6587. ;; So even though the compiler complains, keep them.
  6588. (let* ((ss org-agenda-sorting-strategy-selected)
  6589. (timestamp-up (and (org-em 'timestamp-up 'timestamp-down ss)
  6590. (org-cmp-ts a b "")))
  6591. (timestamp-down (if timestamp-up (- timestamp-up) nil))
  6592. (scheduled-up (and (org-em 'scheduled-up 'scheduled-down ss)
  6593. (org-cmp-ts a b "scheduled")))
  6594. (scheduled-down (if scheduled-up (- scheduled-up) nil))
  6595. (deadline-up (and (org-em 'deadline-up 'deadline-down ss)
  6596. (org-cmp-ts a b "deadline")))
  6597. (deadline-down (if deadline-up (- deadline-up) nil))
  6598. (tsia-up (and (org-em 'tsia-up 'tsia-down ss)
  6599. (org-cmp-ts a b "timestamp_ia")))
  6600. (tsia-down (if tsia-up (- tsia-up) nil))
  6601. (ts-up (and (org-em 'ts-up 'ts-down ss)
  6602. (org-cmp-ts a b "timestamp")))
  6603. (ts-down (if ts-up (- ts-up) nil))
  6604. (time-up (and (org-em 'time-up 'time-down ss)
  6605. (org-cmp-time a b)))
  6606. (time-down (if time-up (- time-up) nil))
  6607. (stats-up (and (org-em 'stats-up 'stats-down ss)
  6608. (org-cmp-values a b 'org-stats)))
  6609. (stats-down (if stats-up (- stats-up) nil))
  6610. (priority-up (and (org-em 'priority-up 'priority-down ss)
  6611. (org-cmp-values a b 'priority)))
  6612. (priority-down (if priority-up (- priority-up) nil))
  6613. (effort-up (and (org-em 'effort-up 'effort-down ss)
  6614. (org-cmp-effort a b)))
  6615. (effort-down (if effort-up (- effort-up) nil))
  6616. (category-up (and (or (org-em 'category-up 'category-down ss)
  6617. (memq 'category-keep ss))
  6618. (org-cmp-category a b)))
  6619. (category-down (if category-up (- category-up) nil))
  6620. (category-keep (if category-up +1 nil))
  6621. (tag-up (and (org-em 'tag-up 'tag-down ss)
  6622. (org-cmp-tag a b)))
  6623. (tag-down (if tag-up (- tag-up) nil))
  6624. (todo-state-up (and (org-em 'todo-state-up 'todo-state-down ss)
  6625. (org-cmp-todo-state a b)))
  6626. (todo-state-down (if todo-state-up (- todo-state-up) nil))
  6627. (habit-up (and (org-em 'habit-up 'habit-down ss)
  6628. (org-cmp-habit-p a b)))
  6629. (habit-down (if habit-up (- habit-up) nil))
  6630. (alpha-up (and (org-em 'alpha-up 'alpha-down ss)
  6631. (org-cmp-alpha a b)))
  6632. (alpha-down (if alpha-up (- alpha-up) nil))
  6633. (need-user-cmp (org-em 'user-defined-up 'user-defined-down ss))
  6634. user-defined-up user-defined-down)
  6635. (if (and need-user-cmp org-agenda-cmp-user-defined
  6636. (functionp org-agenda-cmp-user-defined))
  6637. (setq user-defined-up
  6638. (funcall org-agenda-cmp-user-defined a b)
  6639. user-defined-down (if user-defined-up (- user-defined-up) nil)))
  6640. (cdr (assoc
  6641. (eval (cons 'or org-agenda-sorting-strategy-selected))
  6642. '((-1 . t) (1 . nil) (nil . nil))))))
  6643. ;;; Agenda restriction lock
  6644. (defvar org-agenda-restriction-lock-overlay (make-overlay 1 1)
  6645. "Overlay to mark the headline to which agenda commands are restricted.")
  6646. (overlay-put org-agenda-restriction-lock-overlay
  6647. 'face 'org-agenda-restriction-lock)
  6648. (overlay-put org-agenda-restriction-lock-overlay
  6649. 'help-echo "Agendas are currently limited to this subtree.")
  6650. (delete-overlay org-agenda-restriction-lock-overlay)
  6651. ;;;###autoload
  6652. (defun org-agenda-set-restriction-lock (&optional type)
  6653. "Set restriction lock for agenda, to current subtree or file.
  6654. Restriction will be the file if TYPE is `file', or if type is the
  6655. universal prefix \\='(4), or if the cursor is before the first headline
  6656. in the file. Otherwise, restriction will be to the current subtree."
  6657. (interactive "P")
  6658. (org-agenda-remove-restriction-lock 'noupdate)
  6659. (and (equal type '(4)) (setq type 'file))
  6660. (setq type (cond
  6661. (type type)
  6662. ((org-at-heading-p) 'subtree)
  6663. ((condition-case nil (org-back-to-heading t) (error nil))
  6664. 'subtree)
  6665. (t 'file)))
  6666. (if (eq type 'subtree)
  6667. (progn
  6668. (setq org-agenda-restrict (current-buffer))
  6669. (setq org-agenda-overriding-restriction 'subtree)
  6670. (put 'org-agenda-files 'org-restrict
  6671. (list (buffer-file-name (buffer-base-buffer))))
  6672. (org-back-to-heading t)
  6673. (move-overlay org-agenda-restriction-lock-overlay
  6674. (point)
  6675. (if org-agenda-restriction-lock-highlight-subtree
  6676. (save-excursion (org-end-of-subtree t t) (point))
  6677. (point-at-eol)))
  6678. (move-marker org-agenda-restrict-begin (point))
  6679. (move-marker org-agenda-restrict-end
  6680. (save-excursion (org-end-of-subtree t t)))
  6681. (message "Locking agenda restriction to subtree"))
  6682. (put 'org-agenda-files 'org-restrict
  6683. (list (buffer-file-name (buffer-base-buffer))))
  6684. (setq org-agenda-restrict nil)
  6685. (setq org-agenda-overriding-restriction 'file)
  6686. (move-marker org-agenda-restrict-begin nil)
  6687. (move-marker org-agenda-restrict-end nil)
  6688. (message "Locking agenda restriction to file"))
  6689. (setq current-prefix-arg nil)
  6690. (org-agenda-maybe-redo))
  6691. (defun org-agenda-remove-restriction-lock (&optional noupdate)
  6692. "Remove the agenda restriction lock."
  6693. (interactive "P")
  6694. (delete-overlay org-agenda-restriction-lock-overlay)
  6695. (delete-overlay org-speedbar-restriction-lock-overlay)
  6696. (setq org-agenda-overriding-restriction nil)
  6697. (setq org-agenda-restrict nil)
  6698. (put 'org-agenda-files 'org-restrict nil)
  6699. (move-marker org-agenda-restrict-begin nil)
  6700. (move-marker org-agenda-restrict-end nil)
  6701. (setq current-prefix-arg nil)
  6702. (message "Agenda restriction lock removed")
  6703. (or noupdate (org-agenda-maybe-redo)))
  6704. (defun org-agenda-maybe-redo ()
  6705. "If there is any window showing the agenda view, update it."
  6706. (let ((w (get-buffer-window (or org-agenda-this-buffer-name
  6707. org-agenda-buffer-name)
  6708. t))
  6709. (w0 (selected-window)))
  6710. (when w
  6711. (select-window w)
  6712. (org-agenda-redo)
  6713. (select-window w0)
  6714. (if org-agenda-overriding-restriction
  6715. (message "Agenda view shifted to new %s restriction"
  6716. org-agenda-overriding-restriction)
  6717. (message "Agenda restriction lock removed")))))
  6718. ;;; Agenda commands
  6719. (defun org-agenda-check-type (error &rest types)
  6720. "Check if agenda buffer is of allowed type.
  6721. If ERROR is non-nil, throw an error, otherwise just return nil.
  6722. Allowed types are `agenda' `timeline' `todo' `tags' `search'."
  6723. (if (not org-agenda-type)
  6724. (error "No Org agenda currently displayed")
  6725. (if (memq org-agenda-type types)
  6726. t
  6727. (if error
  6728. (error "Not allowed in %s-type agenda buffers" org-agenda-type)
  6729. nil))))
  6730. (defun org-agenda-Quit ()
  6731. "Exit the agenda, killing the agenda buffer.
  6732. Like `org-agenda-quit', but kill the buffer even when
  6733. `org-agenda-sticky' is non-nil."
  6734. (interactive)
  6735. (org-agenda--quit))
  6736. (defun org-agenda-quit ()
  6737. "Exit the agenda.
  6738. When `org-agenda-sticky' is non-nil, bury the agenda buffer
  6739. instead of killing it.
  6740. When `org-agenda-restore-windows-after-quit' is non-nil, restore
  6741. the pre-agenda window configuration.
  6742. When column view is active, exit column view instead of the
  6743. agenda."
  6744. (interactive)
  6745. (org-agenda--quit org-agenda-sticky))
  6746. (defun org-agenda--quit (&optional bury)
  6747. (if org-agenda-columns-active
  6748. (org-columns-quit)
  6749. (let ((wconf org-agenda-pre-window-conf)
  6750. (buf (current-buffer))
  6751. (org-agenda-last-indirect-window
  6752. (and (eq org-indirect-buffer-display 'other-window)
  6753. org-agenda-last-indirect-buffer
  6754. (get-buffer-window org-agenda-last-indirect-buffer))))
  6755. (cond
  6756. ((eq org-agenda-window-setup 'other-frame)
  6757. (delete-frame))
  6758. ((and org-agenda-restore-windows-after-quit
  6759. wconf)
  6760. ;; Maybe restore the pre-agenda window configuration. Reset
  6761. ;; `org-agenda-pre-window-conf' before running
  6762. ;; `set-window-configuration', which loses the current buffer.
  6763. (setq org-agenda-pre-window-conf nil)
  6764. (set-window-configuration wconf))
  6765. (t
  6766. (when org-agenda-last-indirect-window
  6767. (delete-window org-agenda-last-indirect-window))
  6768. (and (not (eq org-agenda-window-setup 'current-window))
  6769. (not (one-window-p))
  6770. (delete-window))))
  6771. (if bury
  6772. ;; Set the agenda buffer as the current buffer instead of
  6773. ;; passing it as an argument to `bury-buffer' so that
  6774. ;; `bury-buffer' removes it from the window.
  6775. (with-current-buffer buf
  6776. (bury-buffer))
  6777. (kill-buffer buf)
  6778. (setq org-agenda-archives-mode nil
  6779. org-agenda-buffer nil)))))
  6780. (defun org-agenda-exit ()
  6781. "Exit the agenda, killing Org buffers loaded by the agenda.
  6782. Like `org-agenda-Quit', but kill any buffers that were created by
  6783. the agenda. Org buffers visited directly by the user will not be
  6784. touched. Also, exit the agenda even if it is in column view."
  6785. (interactive)
  6786. (when org-agenda-columns-active
  6787. (org-columns-quit))
  6788. (org-release-buffers org-agenda-new-buffers)
  6789. (setq org-agenda-new-buffers nil)
  6790. (org-agenda-Quit))
  6791. (defun org-agenda-kill-all-agenda-buffers ()
  6792. "Kill all buffers in `org-agenda-mode'.
  6793. This is used when toggling sticky agendas."
  6794. (interactive)
  6795. (let (blist)
  6796. (dolist (buf (buffer-list))
  6797. (when (with-current-buffer buf (eq major-mode 'org-agenda-mode))
  6798. (push buf blist)))
  6799. (mapc 'kill-buffer blist)))
  6800. (defun org-agenda-execute (arg)
  6801. "Execute another agenda command, keeping same window.
  6802. So this is just a shortcut for \\<global-map>`\\[org-agenda]', available
  6803. in the agenda."
  6804. (interactive "P")
  6805. (let ((org-agenda-window-setup 'current-window))
  6806. (org-agenda arg)))
  6807. (defun org-agenda-redo (&optional all)
  6808. "Rebuild possibly ALL agenda view(s) in the current buffer."
  6809. (interactive "P")
  6810. (let* ((p (or (and (looking-at "\\'") (1- (point))) (point)))
  6811. (cpa (unless (eq all t) current-prefix-arg))
  6812. (org-agenda-doing-sticky-redo org-agenda-sticky)
  6813. (org-agenda-sticky nil)
  6814. (org-agenda-buffer-name (or org-agenda-this-buffer-name
  6815. org-agenda-buffer-name))
  6816. (org-agenda-keep-modes t)
  6817. (tag-filter org-agenda-tag-filter)
  6818. (tag-preset (get 'org-agenda-tag-filter :preset-filter))
  6819. (top-hl-filter org-agenda-top-headline-filter)
  6820. (cat-filter org-agenda-category-filter)
  6821. (cat-preset (get 'org-agenda-category-filter :preset-filter))
  6822. (re-filter org-agenda-regexp-filter)
  6823. (re-preset (get 'org-agenda-regexp-filter :preset-filter))
  6824. (effort-filter org-agenda-effort-filter)
  6825. (effort-preset (get 'org-agenda-effort-filter :preset-filter))
  6826. (org-agenda-tag-filter-while-redo (or tag-filter tag-preset))
  6827. (cols org-agenda-columns-active)
  6828. (line (org-current-line))
  6829. (window-line (- line (org-current-line (window-start))))
  6830. (lprops (get 'org-agenda-redo-command 'org-lprops))
  6831. (redo-cmd (get-text-property p 'org-redo-cmd))
  6832. (last-args (get-text-property p 'org-last-args))
  6833. (org-agenda-overriding-cmd (get-text-property p 'org-series-cmd))
  6834. (org-agenda-overriding-cmd-arguments
  6835. (unless (eq all t)
  6836. (cond ((listp last-args)
  6837. (cons (or cpa (car last-args)) (cdr last-args)))
  6838. ((stringp last-args)
  6839. last-args))))
  6840. (series-redo-cmd (get-text-property p 'org-series-redo-cmd)))
  6841. (put 'org-agenda-tag-filter :preset-filter nil)
  6842. (put 'org-agenda-category-filter :preset-filter nil)
  6843. (put 'org-agenda-regexp-filter :preset-filter nil)
  6844. (put 'org-agenda-effort-filter :preset-filter nil)
  6845. (and cols (org-columns-quit))
  6846. (message "Rebuilding agenda buffer...")
  6847. (if series-redo-cmd
  6848. (eval series-redo-cmd)
  6849. (org-let lprops redo-cmd))
  6850. (setq org-agenda-undo-list nil
  6851. org-agenda-pending-undo-list nil
  6852. org-agenda-tag-filter tag-filter
  6853. org-agenda-category-filter cat-filter
  6854. org-agenda-regexp-filter re-filter
  6855. org-agenda-effort-filter effort-filter
  6856. org-agenda-top-headline-filter top-hl-filter)
  6857. (message "Rebuilding agenda buffer...done")
  6858. (put 'org-agenda-tag-filter :preset-filter tag-preset)
  6859. (put 'org-agenda-category-filter :preset-filter cat-preset)
  6860. (put 'org-agenda-regexp-filter :preset-filter re-preset)
  6861. (put 'org-agenda-effort-filter :preset-filter effort-preset)
  6862. (let ((tag (or tag-filter tag-preset))
  6863. (cat (or cat-filter cat-preset))
  6864. (effort (or effort-filter effort-preset))
  6865. (re (or re-filter re-preset)))
  6866. (when tag (org-agenda-filter-apply tag 'tag t))
  6867. (when cat (org-agenda-filter-apply cat 'category))
  6868. (when effort (org-agenda-filter-apply effort 'effort))
  6869. (when re (org-agenda-filter-apply re 'regexp)))
  6870. (and top-hl-filter (org-agenda-filter-top-headline-apply top-hl-filter))
  6871. (and cols (called-interactively-p 'any) (org-agenda-columns))
  6872. (org-goto-line line)
  6873. (recenter window-line)))
  6874. (defvar org-global-tags-completion-table nil)
  6875. (defvar org-agenda-filter-form nil)
  6876. (defvar org-agenda-filtered-by-category nil)
  6877. (defun org-agenda-filter-by-category (strip)
  6878. "Filter lines in the agenda buffer that have a specific category.
  6879. The category is that of the current line.
  6880. Without prefix argument, keep only the lines of that category.
  6881. With a prefix argument, exclude the lines of that category.
  6882. "
  6883. (interactive "P")
  6884. (if (and org-agenda-filtered-by-category
  6885. org-agenda-category-filter)
  6886. (org-agenda-filter-show-all-cat)
  6887. (let ((cat (org-no-properties (org-get-at-eol 'org-category 1))))
  6888. (cond
  6889. ((and cat strip)
  6890. (org-agenda-filter-apply
  6891. (push (concat "-" cat) org-agenda-category-filter) 'category))
  6892. (cat
  6893. (org-agenda-filter-apply
  6894. (setq org-agenda-category-filter
  6895. (list (concat "+" cat))) 'category))
  6896. (t (error "No category at point"))))))
  6897. (defun org-find-top-headline (&optional pos)
  6898. "Find the topmost parent headline and return it."
  6899. (save-excursion
  6900. (with-current-buffer (if pos (marker-buffer pos) (current-buffer))
  6901. (if pos (goto-char pos))
  6902. ;; Skip up to the topmost parent
  6903. (while (ignore-errors (outline-up-heading 1) t))
  6904. (ignore-errors
  6905. (nth 4 (org-heading-components))))))
  6906. (defvar org-agenda-filtered-by-top-headline nil)
  6907. (defun org-agenda-filter-by-top-headline (strip)
  6908. "Keep only those lines that are descendants from the same top headline.
  6909. The top headline is that of the current line."
  6910. (interactive "P")
  6911. (if org-agenda-filtered-by-top-headline
  6912. (progn
  6913. (setq org-agenda-filtered-by-top-headline nil
  6914. org-agenda-top-headline-filter nil)
  6915. (org-agenda-filter-show-all-top-filter))
  6916. (let ((toph (org-find-top-headline (org-get-at-bol 'org-hd-marker))))
  6917. (if toph (org-agenda-filter-top-headline-apply toph strip)
  6918. (error "No top-level headline at point")))))
  6919. (defvar org-agenda-regexp-filter nil)
  6920. (defun org-agenda-filter-by-regexp (strip)
  6921. "Filter agenda entries by a regular expression.
  6922. Regexp filters are cumulative.
  6923. With no prefix argument, keep entries matching the regexp.
  6924. With one prefix argument, filter out entries matching the regexp.
  6925. With two prefix arguments, remove the regexp filters."
  6926. (interactive "P")
  6927. (if (not (equal strip '(16)))
  6928. (let ((flt (concat (if (equal strip '(4)) "-" "+")
  6929. (read-from-minibuffer
  6930. (if (equal strip '(4))
  6931. "Filter out entries matching regexp: "
  6932. "Narrow to entries matching regexp: ")))))
  6933. (push flt org-agenda-regexp-filter)
  6934. (org-agenda-filter-apply org-agenda-regexp-filter 'regexp))
  6935. (org-agenda-filter-show-all-re)
  6936. (message "Regexp filter removed")))
  6937. (defvar org-agenda-effort-filter nil)
  6938. (defun org-agenda-filter-by-effort (strip)
  6939. "Filter agenda entries by effort.
  6940. With no prefix argument, keep entries matching the effort condition.
  6941. With one prefix argument, filter out entries matching the condition.
  6942. With two prefix arguments, remove the effort filters."
  6943. (interactive "P")
  6944. (cond ((member strip '(nil 4))
  6945. (let ((efforts (org-split-string
  6946. (or (cdr (assoc (concat org-effort-property "_ALL")
  6947. org-global-properties))
  6948. "0 0:10 0:30 1:00 2:00 3:00 4:00 5:00 6:00 7:00 8:00"
  6949. "")))
  6950. (eff -1)
  6951. effort-prompt op)
  6952. (while (not (member op '(?< ?> ?=)))
  6953. (setq op (read-char-exclusive "Effort operator? (> = or <)")))
  6954. (cl-loop for i from 0 to 9 do
  6955. (setq effort-prompt
  6956. (concat
  6957. effort-prompt " ["
  6958. (if (= i 9) "0" (int-to-string (1+ i)))
  6959. "]" (nth i efforts))))
  6960. (message "Effort %s%s" (char-to-string op) effort-prompt)
  6961. (while (or (< eff 0) (> eff 9))
  6962. (setq eff (string-to-number (char-to-string (read-char-exclusive)))))
  6963. (setq org-agenda-effort-filter
  6964. (list (concat (if strip "-" "+")
  6965. (char-to-string op) (nth (1- eff) efforts))))
  6966. (org-agenda-filter-apply org-agenda-effort-filter 'effort)))
  6967. (t (org-agenda-filter-show-all-effort)
  6968. (message "Effort filter removed"))))
  6969. (defun org-agenda-filter-remove-all ()
  6970. "Remove all filters from the current agenda buffer."
  6971. (interactive)
  6972. (when org-agenda-tag-filter
  6973. (org-agenda-filter-show-all-tag))
  6974. (when org-agenda-category-filter
  6975. (org-agenda-filter-show-all-cat))
  6976. (when org-agenda-regexp-filter
  6977. (org-agenda-filter-show-all-re))
  6978. (when org-agenda-top-headline-filter
  6979. (org-agenda-filter-show-all-top-filter))
  6980. (when org-agenda-effort-filter
  6981. (org-agenda-filter-show-all-effort))
  6982. (org-agenda-finalize))
  6983. (defun org-agenda-filter-by-tag (arg &optional char exclude)
  6984. "Keep only those lines in the agenda buffer that have a specific tag.
  6985. The tag is selected with its fast selection letter, as configured.
  6986. With a `\\[universal-argument]' prefix, exclude the agenda search.
  6987. With a `\\[universal-argument] \\[universal-argument]' prefix, filter the literal tag, \
  6988. i.e. don't
  6989. filter on all its group members.
  6990. A lisp caller can specify CHAR. EXCLUDE means that the new tag
  6991. should be used to exclude the search - the interactive user can
  6992. also press `-' or `+' to switch between filtering and excluding."
  6993. (interactive "P")
  6994. (let* ((alist org-tag-alist-for-agenda)
  6995. (tag-chars (mapconcat
  6996. (lambda (x) (if (and (not (symbolp (car x)))
  6997. (cdr x))
  6998. (char-to-string (cdr x))
  6999. ""))
  7000. org-tag-alist-for-agenda ""))
  7001. (valid-char-list (append '(?\t ?\r ?/ ?. ?\s ?q)
  7002. (string-to-list tag-chars)))
  7003. (exclude (or exclude (equal arg '(4))))
  7004. (expand (not (equal arg '(16))))
  7005. (inhibit-read-only t)
  7006. (current org-agenda-tag-filter)
  7007. a n tag)
  7008. (unless char
  7009. (while (not (memq char valid-char-list))
  7010. (message
  7011. "%s by tag [%s ], [TAB], %s[/]:off, [+/-]:filter/exclude%s, [q]:quit"
  7012. (if exclude "Exclude" "Filter") tag-chars
  7013. (if org-agenda-auto-exclude-function "[RET], " "")
  7014. (if expand "" ", no grouptag expand"))
  7015. (setq char (read-char-exclusive))
  7016. ;; Excluding or filtering down
  7017. (cond ((eq char ?-) (setq exclude t))
  7018. ((eq char ?+) (setq exclude nil)))))
  7019. (when (eq char ?\t)
  7020. (unless (local-variable-p 'org-global-tags-completion-table (current-buffer))
  7021. (setq-local org-global-tags-completion-table
  7022. (org-global-tags-completion-table)))
  7023. (let ((completion-ignore-case t))
  7024. (setq tag (completing-read
  7025. "Tag: " org-global-tags-completion-table))))
  7026. (cond
  7027. ((eq char ?\r)
  7028. (org-agenda-filter-show-all-tag)
  7029. (when org-agenda-auto-exclude-function
  7030. (setq org-agenda-tag-filter nil)
  7031. (dolist (tag (org-agenda-get-represented-tags))
  7032. (let ((modifier (funcall org-agenda-auto-exclude-function tag)))
  7033. (if modifier
  7034. (push modifier org-agenda-tag-filter))))
  7035. (if (not (null org-agenda-tag-filter))
  7036. (org-agenda-filter-apply org-agenda-tag-filter 'tag expand))))
  7037. ((eq char ?/)
  7038. (org-agenda-filter-show-all-tag)
  7039. (when (get 'org-agenda-tag-filter :preset-filter)
  7040. (org-agenda-filter-apply org-agenda-tag-filter 'tag expand)))
  7041. ((eq char ?.)
  7042. (setq org-agenda-tag-filter
  7043. (mapcar (lambda(tag) (concat "+" tag))
  7044. (org-get-at-bol 'tags)))
  7045. (org-agenda-filter-apply org-agenda-tag-filter 'tag expand))
  7046. ((eq char ?q)) ;If q, abort (even if there is a q-key for a tag...)
  7047. ((or (eq char ?\s)
  7048. (setq a (rassoc char alist))
  7049. (and tag (setq a (cons tag nil))))
  7050. (org-agenda-filter-show-all-tag)
  7051. (setq tag (car a))
  7052. (setq org-agenda-tag-filter
  7053. (cons (concat (if exclude "-" "+") tag)
  7054. current))
  7055. (org-agenda-filter-apply org-agenda-tag-filter 'tag expand))
  7056. (t (error "Invalid tag selection character %c" char)))))
  7057. (defun org-agenda-get-represented-tags ()
  7058. "Get a list of all tags currently represented in the agenda."
  7059. (let (p tags)
  7060. (save-excursion
  7061. (goto-char (point-min))
  7062. (while (setq p (next-single-property-change (point) 'tags))
  7063. (goto-char p)
  7064. (mapc (lambda (x) (add-to-list 'tags x))
  7065. (get-text-property (point) 'tags))))
  7066. tags))
  7067. (defun org-agenda-filter-make-matcher (filter type &optional expand)
  7068. "Create the form that tests a line for agenda filter. Optional
  7069. argument EXPAND can be used for the TYPE tag and will expand the
  7070. tags in the FILTER if any of the tags in FILTER are grouptags."
  7071. (let (f f1)
  7072. (cond
  7073. ;; Tag filter
  7074. ((eq type 'tag)
  7075. (setq filter
  7076. (delete-dups
  7077. (append (get 'org-agenda-tag-filter :preset-filter)
  7078. filter)))
  7079. (dolist (x filter)
  7080. (let ((op (string-to-char x)))
  7081. (if expand (setq x (org-agenda-filter-expand-tags (list x) t))
  7082. (setq x (list x)))
  7083. (setq f1 (org-agenda-filter-make-matcher-tag-exp x op))
  7084. (push f1 f))))
  7085. ;; Category filter
  7086. ((eq type 'category)
  7087. (setq filter
  7088. (delete-dups
  7089. (append (get 'org-agenda-category-filter :preset-filter)
  7090. filter)))
  7091. (dolist (x filter)
  7092. (if (equal "-" (substring x 0 1))
  7093. (setq f1 (list 'not (list 'equal (substring x 1) 'cat)))
  7094. (setq f1 (list 'equal (substring x 1) 'cat)))
  7095. (push f1 f)))
  7096. ;; Regexp filter
  7097. ((eq type 'regexp)
  7098. (setq filter
  7099. (delete-dups
  7100. (append (get 'org-agenda-regexp-filter :preset-filter)
  7101. filter)))
  7102. (dolist (x filter)
  7103. (if (equal "-" (substring x 0 1))
  7104. (setq f1 (list 'not (list 'string-match (substring x 1) 'txt)))
  7105. (setq f1 (list 'string-match (substring x 1) 'txt)))
  7106. (push f1 f)))
  7107. ;; Effort filter
  7108. ((eq type 'effort)
  7109. (setq filter
  7110. (delete-dups
  7111. (append (get 'org-agenda-effort-filter :preset-filter)
  7112. filter)))
  7113. (dolist (x filter)
  7114. (push (org-agenda-filter-effort-form x) f))))
  7115. (cons 'and (nreverse f))))
  7116. (defun org-agenda-filter-make-matcher-tag-exp (tags op)
  7117. "Return a form associated to tag-expression TAGS.
  7118. Build a form testing a line for agenda filter for
  7119. tag-expressions. OP is an operator of type CHAR that allows the
  7120. function to set the right switches in the returned form."
  7121. (let (form)
  7122. ;; Any of the expressions can match if OP is +, all must match if
  7123. ;; the operator is -.
  7124. (dolist (x tags (cons (if (eq op ?-) 'and 'or) form))
  7125. (let* ((tag (substring x 1))
  7126. (f (cond
  7127. ((string= "" tag) '(not tags))
  7128. ((and (string-match-p "\\`{" tag) (string-match-p "}\\'" tag))
  7129. ;; TAG is a regexp.
  7130. (list 'org-match-any-p (substring tag 1 -1) 'tags))
  7131. (t (list 'member (downcase tag) 'tags)))))
  7132. (push (if (eq op ?-) (list 'not f) f) form)))))
  7133. (defun org-agenda-filter-effort-form (e)
  7134. "Return the form to compare the effort of the current line with what E says.
  7135. E looks like \"+<2:25\"."
  7136. (let (op)
  7137. (setq e (substring e 1))
  7138. (setq op (string-to-char e) e (substring e 1))
  7139. (setq op (cond ((equal op ?<) '<=)
  7140. ((equal op ?>) '>=)
  7141. ((equal op ??) op)
  7142. (t '=)))
  7143. (list 'org-agenda-compare-effort (list 'quote op)
  7144. (org-duration-string-to-minutes e))))
  7145. (defun org-agenda-compare-effort (op value)
  7146. "Compare the effort of the current line with VALUE, using OP.
  7147. If the line does not have an effort defined, return nil."
  7148. (let ((eff (org-get-at-eol 'effort-minutes 1)))
  7149. (funcall op (or eff (if org-sort-agenda-noeffort-is-high 32767 -1))
  7150. value)))
  7151. (defun org-agenda-filter-expand-tags (filter &optional no-operator)
  7152. "Expand group tags in FILTER for the agenda.
  7153. When NO-OPERATOR is non-nil, do not add the + operator to returned tags."
  7154. (if org-group-tags
  7155. (let ((case-fold-search t) rtn)
  7156. (mapc
  7157. (lambda (f)
  7158. (let (f0 dir)
  7159. (if (string-match "^\\([+-]\\)\\(.+\\)" f)
  7160. (setq dir (match-string 1 f) f0 (match-string 2 f))
  7161. (setq dir (if no-operator "" "+") f0 f))
  7162. (setq rtn (append (mapcar (lambda(f1) (concat dir f1))
  7163. (org-tags-expand f0 t t))
  7164. rtn))))
  7165. filter)
  7166. (reverse rtn))
  7167. filter))
  7168. (defun org-agenda-filter-apply (filter type &optional expand)
  7169. "Set FILTER as the new agenda filter and apply it. Optional
  7170. argument EXPAND can be used for the TYPE tag and will expand the
  7171. tags in the FILTER if any of the tags in FILTER are grouptags."
  7172. ;; Deactivate `org-agenda-entry-text-mode' when filtering
  7173. (if org-agenda-entry-text-mode (org-agenda-entry-text-mode))
  7174. (let (tags cat txt)
  7175. (setq org-agenda-filter-form (org-agenda-filter-make-matcher filter type expand))
  7176. ;; Only set `org-agenda-filtered-by-category' to t when a unique
  7177. ;; category is used as the filter:
  7178. (setq org-agenda-filtered-by-category
  7179. (and (eq type 'category)
  7180. (not (equal (substring (car filter) 0 1) "-"))))
  7181. (org-agenda-set-mode-name)
  7182. (save-excursion
  7183. (goto-char (point-min))
  7184. (while (not (eobp))
  7185. (if (org-get-at-bol 'org-marker)
  7186. (progn
  7187. (setq tags (org-get-at-bol 'tags)
  7188. cat (org-get-at-eol 'org-category 1)
  7189. txt (org-get-at-bol 'txt))
  7190. (if (not (eval org-agenda-filter-form))
  7191. (org-agenda-filter-hide-line type))
  7192. (beginning-of-line 2))
  7193. (beginning-of-line 2))))
  7194. (if (get-char-property (point) 'invisible)
  7195. (ignore-errors (org-agenda-previous-line)))))
  7196. (defun org-agenda-filter-top-headline-apply (hl &optional negative)
  7197. "Filter by top headline HL."
  7198. (org-agenda-set-mode-name)
  7199. (save-excursion
  7200. (goto-char (point-min))
  7201. (while (not (eobp))
  7202. (let* ((pos (org-get-at-bol 'org-hd-marker))
  7203. (tophl (and pos (org-find-top-headline pos))))
  7204. (if (and tophl (funcall (if negative 'identity 'not)
  7205. (string= hl tophl)))
  7206. (org-agenda-filter-hide-line 'top-headline)))
  7207. (beginning-of-line 2)))
  7208. (if (get-char-property (point) 'invisible)
  7209. (org-agenda-previous-line))
  7210. (setq org-agenda-top-headline-filter hl
  7211. org-agenda-filtered-by-top-headline t))
  7212. (defun org-agenda-filter-hide-line (type)
  7213. "Hide lines with TYPE in the agenda buffer."
  7214. (let* ((b (max (point-min) (1- (point-at-bol))))
  7215. (e (point-at-eol)))
  7216. (let ((inhibit-read-only t))
  7217. (add-text-properties
  7218. b e `(invisible org-filtered org-filter-type ,type)))))
  7219. (defun org-agenda-remove-filter (type)
  7220. (interactive)
  7221. "Remove filter of type TYPE from the agenda buffer."
  7222. (save-excursion
  7223. (goto-char (point-min))
  7224. (let ((inhibit-read-only t) pos)
  7225. (while (setq pos (text-property-any (point) (point-max) 'org-filter-type type))
  7226. (goto-char pos)
  7227. (remove-text-properties
  7228. (point) (next-single-property-change (point) 'org-filter-type)
  7229. `(invisible org-filtered org-filter-type ,type))))
  7230. (set (intern (format "org-agenda-%s-filter" (intern-soft type))) nil)
  7231. (setq org-agenda-filter-form nil)
  7232. (org-agenda-set-mode-name)
  7233. (org-agenda-finalize)))
  7234. (defun org-agenda-filter-show-all-tag nil
  7235. (org-agenda-remove-filter 'tag))
  7236. (defun org-agenda-filter-show-all-re nil
  7237. (org-agenda-remove-filter 'regexp))
  7238. (defun org-agenda-filter-show-all-effort nil
  7239. (org-agenda-remove-filter 'effort))
  7240. (defun org-agenda-filter-show-all-cat nil
  7241. (org-agenda-remove-filter 'category))
  7242. (defun org-agenda-filter-show-all-top-filter nil
  7243. (org-agenda-remove-filter 'top-headline))
  7244. (defun org-agenda-manipulate-query-add ()
  7245. "Manipulate the query by adding a search term with positive selection.
  7246. Positive selection means the term must be matched for selection of an entry."
  7247. (interactive)
  7248. (org-agenda-manipulate-query ?\[))
  7249. (defun org-agenda-manipulate-query-subtract ()
  7250. "Manipulate the query by adding a search term with negative selection.
  7251. Negative selection means term must not be matched for selection of an entry."
  7252. (interactive)
  7253. (org-agenda-manipulate-query ?\]))
  7254. (defun org-agenda-manipulate-query-add-re ()
  7255. "Manipulate the query by adding a search regexp with positive selection.
  7256. Positive selection means the regexp must match for selection of an entry."
  7257. (interactive)
  7258. (org-agenda-manipulate-query ?\{))
  7259. (defun org-agenda-manipulate-query-subtract-re ()
  7260. "Manipulate the query by adding a search regexp with negative selection.
  7261. Negative selection means regexp must not match for selection of an entry."
  7262. (interactive)
  7263. (org-agenda-manipulate-query ?\}))
  7264. (defun org-agenda-manipulate-query (char)
  7265. (cond
  7266. ((memq org-agenda-type '(timeline agenda))
  7267. (let ((org-agenda-include-inactive-timestamps t))
  7268. (org-agenda-redo))
  7269. (message "Display now includes inactive timestamps as well"))
  7270. ((eq org-agenda-type 'search)
  7271. (org-add-to-string
  7272. 'org-agenda-query-string
  7273. (if org-agenda-last-search-view-search-was-boolean
  7274. (cdr (assoc char '((?\[ . " +") (?\] . " -")
  7275. (?\{ . " +{}") (?\} . " -{}"))))
  7276. " "))
  7277. (setq org-agenda-redo-command
  7278. (list 'org-search-view
  7279. (car (get-text-property (min (1- (point-max)) (point))
  7280. 'org-last-args))
  7281. org-agenda-query-string
  7282. (+ (length org-agenda-query-string)
  7283. (if (member char '(?\{ ?\})) 0 1))))
  7284. (set-register org-agenda-query-register org-agenda-query-string)
  7285. (let ((org-agenda-overriding-arguments
  7286. (cdr org-agenda-redo-command)))
  7287. (org-agenda-redo)))
  7288. (t (error "Cannot manipulate query for %s-type agenda buffers"
  7289. org-agenda-type))))
  7290. (defun org-add-to-string (var string)
  7291. (set var (concat (symbol-value var) string)))
  7292. (defun org-agenda-goto-date (span)
  7293. "Jump to DATE in agenda."
  7294. (interactive "P")
  7295. (let* ((org-read-date-prefer-future
  7296. (eval org-agenda-jump-prefer-future))
  7297. (date (org-read-date))
  7298. (day (time-to-days (org-time-string-to-time date)))
  7299. (org-agenda-sticky-orig org-agenda-sticky)
  7300. (org-agenda-buffer-tmp-name (buffer-name))
  7301. (args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7302. (0-arg (or current-prefix-arg (car args)))
  7303. (2-arg (nth 2 args))
  7304. (with-hour-p (nth 4 org-agenda-redo-command))
  7305. (newcmd (list 'org-agenda-list 0-arg date
  7306. (org-agenda-span-to-ndays
  7307. 2-arg (org-time-string-to-absolute date))
  7308. with-hour-p))
  7309. (newargs (cdr newcmd))
  7310. (inhibit-read-only t)
  7311. org-agenda-sticky)
  7312. (if (not (org-agenda-check-type t 'agenda))
  7313. (error "Not available in non-agenda views")
  7314. (add-text-properties (point-min) (point-max)
  7315. `(org-redo-cmd ,newcmd org-last-args ,newargs))
  7316. (org-agenda-redo)
  7317. (goto-char (point-min))
  7318. (while (not (or (= (or (get-text-property (point) 'day) 0) day)
  7319. (save-excursion (move-beginning-of-line 2) (eobp))))
  7320. (move-beginning-of-line 2))
  7321. (setq org-agenda-sticky org-agenda-sticky-orig
  7322. org-agenda-this-buffer-is-sticky org-agenda-sticky))))
  7323. (defun org-agenda-goto-today ()
  7324. "Go to today."
  7325. (interactive)
  7326. (org-agenda-check-type t 'timeline 'agenda)
  7327. (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7328. (curspan (nth 2 args))
  7329. (tdpos (text-property-any (point-min) (point-max) 'org-today t)))
  7330. (cond
  7331. (tdpos (goto-char tdpos))
  7332. ((eq org-agenda-type 'agenda)
  7333. (let* ((sd (org-agenda-compute-starting-span
  7334. (org-today) (or curspan org-agenda-span)))
  7335. (org-agenda-overriding-arguments args))
  7336. (setf (nth 1 org-agenda-overriding-arguments) sd)
  7337. (org-agenda-redo)
  7338. (org-agenda-find-same-or-today-or-agenda)))
  7339. (t (error "Cannot find today")))))
  7340. (defun org-agenda-find-same-or-today-or-agenda (&optional cnt)
  7341. (goto-char
  7342. (or (and cnt (text-property-any (point-min) (point-max) 'org-day-cnt cnt))
  7343. (text-property-any (point-min) (point-max) 'org-today t)
  7344. (text-property-any (point-min) (point-max) 'org-agenda-type 'agenda)
  7345. (and (get-text-property (min (1- (point-max)) (point)) 'org-series)
  7346. (org-agenda-backward-block))
  7347. (point-min))))
  7348. (defun org-agenda-backward-block ()
  7349. "Move backward by one agenda block."
  7350. (interactive)
  7351. (org-agenda-forward-block 'backward))
  7352. (defun org-agenda-forward-block (&optional backward)
  7353. "Move forward by one agenda block.
  7354. When optional argument BACKWARD is set, go backward"
  7355. (interactive)
  7356. (cond ((not (derived-mode-p 'org-agenda-mode))
  7357. (user-error
  7358. "Cannot execute this command outside of org-agenda-mode buffers"))
  7359. ((looking-at (if backward "\\`" "\\'"))
  7360. (message "Already at the %s block" (if backward "first" "last")))
  7361. (t (let ((pos (prog1 (point)
  7362. (ignore-errors (if backward (backward-char 1)
  7363. (move-end-of-line 1)))))
  7364. (f (if backward
  7365. 'previous-single-property-change
  7366. 'next-single-property-change))
  7367. moved dest)
  7368. (while (and (setq dest (funcall
  7369. f (point) 'org-agenda-structural-header))
  7370. (not (get-text-property
  7371. (point) 'org-agenda-structural-header)))
  7372. (setq moved t)
  7373. (goto-char dest))
  7374. (if moved (move-beginning-of-line 1)
  7375. (goto-char (if backward (point-min) (point-max)))
  7376. (move-beginning-of-line 1)
  7377. (message "No %s block" (if backward "previous" "further")))))))
  7378. (defun org-agenda-later (arg)
  7379. "Go forward in time by the current span.
  7380. With prefix ARG, go forward that many times the current span."
  7381. (interactive "p")
  7382. (org-agenda-check-type t 'agenda)
  7383. (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7384. (span (or (nth 2 args) org-agenda-current-span))
  7385. (sd (or (nth 1 args) (org-get-at-bol 'day) org-starting-day))
  7386. (greg (calendar-gregorian-from-absolute sd))
  7387. (cnt (org-get-at-bol 'org-day-cnt))
  7388. greg2)
  7389. (cond
  7390. ((numberp span)
  7391. (setq sd (+ (* span arg) sd)))
  7392. ((eq span 'day)
  7393. (setq sd (+ arg sd)))
  7394. ((eq span 'week)
  7395. (setq sd (+ (* 7 arg) sd)))
  7396. ((eq span 'fortnight)
  7397. (setq sd (+ (* 14 arg) sd)))
  7398. ((eq span 'month)
  7399. (setq greg2 (list (+ (car greg) arg) (nth 1 greg) (nth 2 greg))
  7400. sd (calendar-absolute-from-gregorian greg2))
  7401. (setcar greg2 (1+ (car greg2))))
  7402. ((eq span 'year)
  7403. (setq greg2 (list (car greg) (nth 1 greg) (+ arg (nth 2 greg)))
  7404. sd (calendar-absolute-from-gregorian greg2))
  7405. (setcar (nthcdr 2 greg2) (1+ (nth 2 greg2))))
  7406. (t
  7407. (setq sd (+ (* span arg) sd))))
  7408. (let ((org-agenda-overriding-cmd
  7409. ;; `cmd' may have been set by `org-agenda-run-series' which
  7410. ;; uses `org-agenda-overriding-cmd' to decide whether
  7411. ;; overriding is allowed for `cmd'
  7412. (get-text-property (min (1- (point-max)) (point)) 'org-series-cmd))
  7413. (org-agenda-overriding-arguments
  7414. (list (car args) sd span)))
  7415. (org-agenda-redo)
  7416. (org-agenda-find-same-or-today-or-agenda cnt))))
  7417. (defun org-agenda-earlier (arg)
  7418. "Go backward in time by the current span.
  7419. With prefix ARG, go backward that many times the current span."
  7420. (interactive "p")
  7421. (org-agenda-later (- arg)))
  7422. (defun org-agenda-view-mode-dispatch ()
  7423. "Call one of the view mode commands."
  7424. (interactive)
  7425. (message "View: [d]ay [w]eek for[t]night [m]onth [y]ear [SPC]reset [q]uit/abort
  7426. time[G]rid [[]inactive [f]ollow [l]og [L]og-all [c]lockcheck
  7427. [a]rch-trees [A]rch-files clock[R]eport include[D]iary [E]ntryText")
  7428. (pcase (read-char-exclusive)
  7429. (?\ (call-interactively 'org-agenda-reset-view))
  7430. (?d (call-interactively 'org-agenda-day-view))
  7431. (?w (call-interactively 'org-agenda-week-view))
  7432. (?t (call-interactively 'org-agenda-fortnight-view))
  7433. (?m (call-interactively 'org-agenda-month-view))
  7434. (?y (call-interactively 'org-agenda-year-view))
  7435. (?l (call-interactively 'org-agenda-log-mode))
  7436. (?L (org-agenda-log-mode '(4)))
  7437. (?c (org-agenda-log-mode 'clockcheck))
  7438. ((or ?F ?f) (call-interactively 'org-agenda-follow-mode))
  7439. (?a (call-interactively 'org-agenda-archives-mode))
  7440. (?A (org-agenda-archives-mode 'files))
  7441. ((or ?R ?r) (call-interactively 'org-agenda-clockreport-mode))
  7442. ((or ?E ?e) (call-interactively 'org-agenda-entry-text-mode))
  7443. (?G (call-interactively 'org-agenda-toggle-time-grid))
  7444. (?D (call-interactively 'org-agenda-toggle-diary))
  7445. (?\! (call-interactively 'org-agenda-toggle-deadlines))
  7446. (?\[ (let ((org-agenda-include-inactive-timestamps t))
  7447. (org-agenda-check-type t 'timeline 'agenda)
  7448. (org-agenda-redo))
  7449. (message "Display now includes inactive timestamps as well"))
  7450. (?q (message "Abort"))
  7451. (key (user-error "Invalid key: %s" key))))
  7452. (defun org-agenda-reset-view ()
  7453. "Switch to default view for agenda."
  7454. (interactive)
  7455. (org-agenda-change-time-span org-agenda-span))
  7456. (defun org-agenda-day-view (&optional day-of-month)
  7457. "Switch to daily view for agenda.
  7458. With argument DAY-OF-MONTH, switch to that day of the month."
  7459. (interactive "P")
  7460. (org-agenda-change-time-span 'day day-of-month))
  7461. (defun org-agenda-week-view (&optional iso-week)
  7462. "Switch to weekly view for agenda.
  7463. With argument ISO-WEEK, switch to the corresponding ISO week.
  7464. If ISO-WEEK has more then 2 digits, only the last two encode
  7465. the week. Any digits before this encode a year. So 200712
  7466. means week 12 of year 2007. Years ranging from 70 years ago
  7467. to 30 years in the future can also be written as 2-digit years."
  7468. (interactive "P")
  7469. (org-agenda-change-time-span 'week iso-week))
  7470. (defun org-agenda-fortnight-view (&optional iso-week)
  7471. "Switch to fortnightly view for agenda.
  7472. With argument ISO-WEEK, switch to the corresponding ISO week.
  7473. If ISO-WEEK has more then 2 digits, only the last two encode
  7474. the week. Any digits before this encode a year. So 200712
  7475. means week 12 of year 2007. Years ranging from 70 years ago
  7476. to 30 years in the future can also be written as 2-digit years."
  7477. (interactive "P")
  7478. (org-agenda-change-time-span 'fortnight iso-week))
  7479. (defun org-agenda-month-view (&optional month)
  7480. "Switch to monthly view for agenda.
  7481. With argument MONTH, switch to that month. If MONTH has more
  7482. then 2 digits, only the last two encode the month. Any digits
  7483. before this encode a year. So 200712 means December year 2007.
  7484. Years ranging from 70 years ago to 30 years in the future can
  7485. also be written as 2-digit years."
  7486. (interactive "P")
  7487. (org-agenda-change-time-span 'month month))
  7488. (defun org-agenda-year-view (&optional year)
  7489. "Switch to yearly view for agenda.
  7490. With argument YEAR, switch to that year. Years ranging from 70
  7491. years ago to 30 years in the future can also be written as
  7492. 2-digit years."
  7493. (interactive "P")
  7494. (when year
  7495. (setq year (org-small-year-to-year year)))
  7496. (if (y-or-n-p "Are you sure you want to compute the agenda for an entire year? ")
  7497. (org-agenda-change-time-span 'year year)
  7498. (error "Abort")))
  7499. (defun org-agenda-change-time-span (span &optional n)
  7500. "Change the agenda view to SPAN.
  7501. SPAN may be `day', `week', `fortnight', `month', `year'."
  7502. (org-agenda-check-type t 'agenda)
  7503. (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7504. (curspan (nth 2 args)))
  7505. (if (and (not n) (equal curspan span))
  7506. (error "Viewing span is already \"%s\"" span))
  7507. (let* ((sd (or (org-get-at-bol 'day)
  7508. (nth 1 args)
  7509. org-starting-day))
  7510. (sd (org-agenda-compute-starting-span sd span n))
  7511. (org-agenda-overriding-cmd
  7512. (get-text-property (min (1- (point-max)) (point)) 'org-series-cmd))
  7513. (org-agenda-overriding-arguments
  7514. (list (car args) sd span)))
  7515. (org-agenda-redo)
  7516. (org-agenda-find-same-or-today-or-agenda))
  7517. (org-agenda-set-mode-name)
  7518. (message "Switched to %s view" span)))
  7519. (defun org-agenda-compute-starting-span (sd span &optional n)
  7520. "Compute starting date for agenda.
  7521. SPAN may be `day', `week', `fortnight', `month', `year'. The return value
  7522. is a cons cell with the starting date and the number of days,
  7523. so that the date SD will be in that range."
  7524. (let* ((greg (calendar-gregorian-from-absolute sd))
  7525. (dg (nth 1 greg))
  7526. (mg (car greg))
  7527. (yg (nth 2 greg)))
  7528. (cond
  7529. ((eq span 'day)
  7530. (when n
  7531. (setq sd (+ (calendar-absolute-from-gregorian
  7532. (list mg 1 yg))
  7533. n -1))))
  7534. ((or (eq span 'week) (eq span 'fortnight))
  7535. (let* ((nt (calendar-day-of-week
  7536. (calendar-gregorian-from-absolute sd)))
  7537. (d (if org-agenda-start-on-weekday
  7538. (- nt org-agenda-start-on-weekday)
  7539. 0))
  7540. y1)
  7541. (setq sd (- sd (+ (if (< d 0) 7 0) d)))
  7542. (when n
  7543. (require 'cal-iso)
  7544. (when (> n 99)
  7545. (setq y1 (org-small-year-to-year (/ n 100))
  7546. n (mod n 100)))
  7547. (setq sd
  7548. (calendar-iso-to-absolute
  7549. (list n 1
  7550. (or y1 (nth 2 (calendar-iso-from-absolute sd)))))))))
  7551. ((eq span 'month)
  7552. (let (y1)
  7553. (when (and n (> n 99))
  7554. (setq y1 (org-small-year-to-year (/ n 100))
  7555. n (mod n 100)))
  7556. (setq sd (calendar-absolute-from-gregorian
  7557. (list (or n mg) 1 (or y1 yg))))))
  7558. ((eq span 'year)
  7559. (setq sd (calendar-absolute-from-gregorian
  7560. (list 1 1 (or n yg))))))
  7561. sd))
  7562. (defun org-agenda-next-date-line (&optional arg)
  7563. "Jump to the next line indicating a date in agenda buffer."
  7564. (interactive "p")
  7565. (org-agenda-check-type t 'agenda 'timeline)
  7566. (beginning-of-line 1)
  7567. ;; This does not work if user makes date format that starts with a blank
  7568. (if (looking-at "^\\S-") (forward-char 1))
  7569. (if (not (re-search-forward "^\\S-" nil t arg))
  7570. (progn
  7571. (backward-char 1)
  7572. (error "No next date after this line in this buffer")))
  7573. (goto-char (match-beginning 0)))
  7574. (defun org-agenda-previous-date-line (&optional arg)
  7575. "Jump to the previous line indicating a date in agenda buffer."
  7576. (interactive "p")
  7577. (org-agenda-check-type t 'agenda 'timeline)
  7578. (beginning-of-line 1)
  7579. (if (not (re-search-backward "^\\S-" nil t arg))
  7580. (error "No previous date before this line in this buffer")))
  7581. ;; Initialize the highlight
  7582. (defvar org-hl (make-overlay 1 1))
  7583. (overlay-put org-hl 'face 'highlight)
  7584. (defun org-highlight (begin end &optional buffer)
  7585. "Highlight a region with overlay."
  7586. (move-overlay org-hl begin end (or buffer (current-buffer))))
  7587. (defun org-unhighlight ()
  7588. "Detach overlay INDEX."
  7589. (delete-overlay org-hl))
  7590. (defun org-unhighlight-once ()
  7591. "Remove the highlight from its position, and this function from the hook."
  7592. (remove-hook 'pre-command-hook 'org-unhighlight-once)
  7593. (org-unhighlight))
  7594. (defvar org-agenda-pre-follow-window-conf nil)
  7595. (defun org-agenda-follow-mode ()
  7596. "Toggle follow mode in an agenda buffer."
  7597. (interactive)
  7598. (unless org-agenda-follow-mode
  7599. (setq org-agenda-pre-follow-window-conf
  7600. (current-window-configuration)))
  7601. (setq org-agenda-follow-mode (not org-agenda-follow-mode))
  7602. (unless org-agenda-follow-mode
  7603. (set-window-configuration org-agenda-pre-follow-window-conf))
  7604. (org-agenda-set-mode-name)
  7605. (org-agenda-do-context-action)
  7606. (message "Follow mode is %s"
  7607. (if org-agenda-follow-mode "on" "off")))
  7608. (defun org-agenda-entry-text-mode (&optional arg)
  7609. "Toggle entry text mode in an agenda buffer."
  7610. (interactive "P")
  7611. (if (or org-agenda-tag-filter
  7612. org-agenda-category-filter
  7613. org-agenda-regexp-filter
  7614. org-agenda-top-headline-filter)
  7615. (user-error "Can't show entry text in filtered views")
  7616. (setq org-agenda-entry-text-mode (or (integerp arg)
  7617. (not org-agenda-entry-text-mode)))
  7618. (org-agenda-entry-text-hide)
  7619. (and org-agenda-entry-text-mode
  7620. (let ((org-agenda-entry-text-maxlines
  7621. (if (integerp arg) arg org-agenda-entry-text-maxlines)))
  7622. (org-agenda-entry-text-show)))
  7623. (org-agenda-set-mode-name)
  7624. (message "Entry text mode is %s%s"
  7625. (if org-agenda-entry-text-mode "on" "off")
  7626. (if (not org-agenda-entry-text-mode) ""
  7627. (format " (maximum number of lines is %d)"
  7628. (if (integerp arg) arg org-agenda-entry-text-maxlines))))))
  7629. (defun org-agenda-clockreport-mode ()
  7630. "Toggle clocktable mode in an agenda buffer."
  7631. (interactive)
  7632. (org-agenda-check-type t 'agenda)
  7633. (setq org-agenda-clockreport-mode (not org-agenda-clockreport-mode))
  7634. (setq org-agenda-start-with-clockreport-mode org-agenda-clockreport-mode)
  7635. (org-agenda-set-mode-name)
  7636. (org-agenda-redo)
  7637. (message "Clocktable mode is %s"
  7638. (if org-agenda-clockreport-mode "on" "off")))
  7639. (defun org-agenda-log-mode (&optional special)
  7640. "Toggle log mode in an agenda buffer.
  7641. With argument SPECIAL, show all possible log items, not only the ones
  7642. configured in `org-agenda-log-mode-items'.
  7643. With a `\\[universal-argument] \\[universal-argument]' prefix, show *only* \
  7644. log items, nothing else."
  7645. (interactive "P")
  7646. (org-agenda-check-type t 'agenda 'timeline)
  7647. (setq org-agenda-show-log
  7648. (cond
  7649. ((equal special '(16)) 'only)
  7650. ((eq special 'clockcheck)
  7651. (if (eq org-agenda-show-log 'clockcheck)
  7652. nil 'clockcheck))
  7653. (special '(closed clock state))
  7654. (t (not org-agenda-show-log))))
  7655. (setq org-agenda-start-with-log-mode org-agenda-show-log)
  7656. (org-agenda-set-mode-name)
  7657. (org-agenda-redo)
  7658. (message "Log mode is %s" (if org-agenda-show-log "on" "off")))
  7659. (defun org-agenda-archives-mode (&optional with-files)
  7660. "Toggle inclusion of items in trees marked with :ARCHIVE:.
  7661. When called with a prefix argument, include all archive files as well."
  7662. (interactive "P")
  7663. (setq org-agenda-archives-mode
  7664. (if with-files t (if org-agenda-archives-mode nil 'trees)))
  7665. (org-agenda-set-mode-name)
  7666. (org-agenda-redo)
  7667. (message
  7668. "%s"
  7669. (cond
  7670. ((eq org-agenda-archives-mode nil)
  7671. "No archives are included")
  7672. ((eq org-agenda-archives-mode 'trees)
  7673. (format "Trees with :%s: tag are included" org-archive-tag))
  7674. ((eq org-agenda-archives-mode t)
  7675. (format "Trees with :%s: tag and all active archive files are included"
  7676. org-archive-tag)))))
  7677. (defun org-agenda-toggle-diary ()
  7678. "Toggle diary inclusion in an agenda buffer."
  7679. (interactive)
  7680. (org-agenda-check-type t 'agenda)
  7681. (setq org-agenda-include-diary (not org-agenda-include-diary))
  7682. (org-agenda-redo)
  7683. (org-agenda-set-mode-name)
  7684. (message "Diary inclusion turned %s"
  7685. (if org-agenda-include-diary "on" "off")))
  7686. (defun org-agenda-toggle-deadlines ()
  7687. "Toggle inclusion of entries with a deadline in an agenda buffer."
  7688. (interactive)
  7689. (org-agenda-check-type t 'agenda)
  7690. (setq org-agenda-include-deadlines (not org-agenda-include-deadlines))
  7691. (org-agenda-redo)
  7692. (org-agenda-set-mode-name)
  7693. (message "Deadlines inclusion turned %s"
  7694. (if org-agenda-include-deadlines "on" "off")))
  7695. (defun org-agenda-toggle-time-grid ()
  7696. "Toggle time grid in an agenda buffer."
  7697. (interactive)
  7698. (org-agenda-check-type t 'agenda)
  7699. (setq org-agenda-use-time-grid (not org-agenda-use-time-grid))
  7700. (org-agenda-redo)
  7701. (org-agenda-set-mode-name)
  7702. (message "Time-grid turned %s"
  7703. (if org-agenda-use-time-grid "on" "off")))
  7704. (defun org-agenda-set-mode-name ()
  7705. "Set the mode name to indicate all the small mode settings."
  7706. (setq mode-name
  7707. (list "Org-Agenda"
  7708. (if (get 'org-agenda-files 'org-restrict) " []" "")
  7709. " "
  7710. '(:eval (org-agenda-span-name org-agenda-current-span))
  7711. (if org-agenda-follow-mode " Follow" "")
  7712. (if org-agenda-entry-text-mode " ETxt" "")
  7713. (if org-agenda-include-diary " Diary" "")
  7714. (if org-agenda-include-deadlines " Ddl" "")
  7715. (if org-agenda-use-time-grid " Grid" "")
  7716. (if (and (boundp 'org-habit-show-habits)
  7717. org-habit-show-habits) " Habit" "")
  7718. (cond
  7719. ((consp org-agenda-show-log) " LogAll")
  7720. ((eq org-agenda-show-log 'clockcheck) " ClkCk")
  7721. (org-agenda-show-log " Log")
  7722. (t ""))
  7723. (if (or org-agenda-category-filter
  7724. (get 'org-agenda-category-filter :preset-filter))
  7725. '(:eval (propertize
  7726. (concat " <"
  7727. (mapconcat
  7728. 'identity
  7729. (append
  7730. (get 'org-agenda-category-filter :preset-filter)
  7731. org-agenda-category-filter)
  7732. "")
  7733. ">")
  7734. 'face 'org-agenda-filter-category
  7735. 'help-echo "Category used in filtering")) "")
  7736. (if (or org-agenda-tag-filter
  7737. (get 'org-agenda-tag-filter :preset-filter))
  7738. '(:eval (propertize
  7739. (concat " {"
  7740. (mapconcat
  7741. 'identity
  7742. (append
  7743. (get 'org-agenda-tag-filter :preset-filter)
  7744. org-agenda-tag-filter)
  7745. "")
  7746. "}")
  7747. 'face 'org-agenda-filter-tags
  7748. 'help-echo "Tags used in filtering")) "")
  7749. (if (or org-agenda-effort-filter
  7750. (get 'org-agenda-effort-filter :preset-filter))
  7751. '(:eval (propertize
  7752. (concat " {"
  7753. (mapconcat
  7754. 'identity
  7755. (append
  7756. (get 'org-agenda-effort-filter :preset-filter)
  7757. org-agenda-effort-filter)
  7758. "")
  7759. "}")
  7760. 'face 'org-agenda-filter-effort
  7761. 'help-echo "Effort conditions used in filtering")) "")
  7762. (if (or org-agenda-regexp-filter
  7763. (get 'org-agenda-regexp-filter :preset-filter))
  7764. '(:eval (propertize
  7765. (concat " ["
  7766. (mapconcat
  7767. 'identity
  7768. (append
  7769. (get 'org-agenda-regexp-filter :preset-filter)
  7770. org-agenda-regexp-filter)
  7771. "")
  7772. "]")
  7773. 'face 'org-agenda-filter-regexp
  7774. 'help-echo "Regexp used in filtering")) "")
  7775. (if org-agenda-archives-mode
  7776. (if (eq org-agenda-archives-mode t)
  7777. " Archives"
  7778. (format " :%s:" org-archive-tag))
  7779. "")
  7780. (if org-agenda-clockreport-mode " Clock" "")))
  7781. (force-mode-line-update))
  7782. (defun org-agenda-update-agenda-type ()
  7783. "Update the agenda type after each command."
  7784. (setq org-agenda-type
  7785. (or (get-text-property (point) 'org-agenda-type)
  7786. (get-text-property (max (point-min) (1- (point))) 'org-agenda-type))))
  7787. (defun org-agenda-next-line ()
  7788. "Move cursor to the next line, and show if follow mode is active."
  7789. (interactive)
  7790. (call-interactively 'next-line)
  7791. (org-agenda-do-context-action))
  7792. (defun org-agenda-previous-line ()
  7793. "Move cursor to the previous line, and show if follow-mode is active."
  7794. (interactive)
  7795. (call-interactively 'previous-line)
  7796. (org-agenda-do-context-action))
  7797. (defun org-agenda-next-item (n)
  7798. "Move cursor to next agenda item."
  7799. (interactive "p")
  7800. (let ((col (current-column)))
  7801. (dotimes (c n)
  7802. (when (next-single-property-change (point-at-eol) 'org-marker)
  7803. (move-end-of-line 1)
  7804. (goto-char (next-single-property-change (point) 'org-marker))))
  7805. (org-move-to-column col))
  7806. (org-agenda-do-context-action))
  7807. (defun org-agenda-previous-item (n)
  7808. "Move cursor to next agenda item."
  7809. (interactive "p")
  7810. (dotimes (c n)
  7811. (let ((col (current-column))
  7812. (goto (save-excursion
  7813. (move-end-of-line 0)
  7814. (previous-single-property-change (point) 'org-marker))))
  7815. (if goto (goto-char goto))
  7816. (org-move-to-column col)))
  7817. (org-agenda-do-context-action))
  7818. (defun org-agenda-do-context-action ()
  7819. "Show outline path and, maybe, follow mode window."
  7820. (let ((m (org-get-at-bol 'org-marker)))
  7821. (when (and (markerp m) (marker-buffer m))
  7822. (and org-agenda-follow-mode
  7823. (if org-agenda-follow-indirect
  7824. (org-agenda-tree-to-indirect-buffer nil)
  7825. (org-agenda-show)))
  7826. (and org-agenda-show-outline-path
  7827. (org-with-point-at m (org-display-outline-path t))))))
  7828. (defun org-agenda-show-tags ()
  7829. "Show the tags applicable to the current item."
  7830. (interactive)
  7831. (let* ((tags (org-get-at-bol 'tags)))
  7832. (if tags
  7833. (message "Tags are :%s:"
  7834. (org-no-properties (mapconcat 'identity tags ":")))
  7835. (message "No tags associated with this line"))))
  7836. (defun org-agenda-goto (&optional highlight)
  7837. "Go to the entry at point in the corresponding Org file."
  7838. (interactive)
  7839. (let* ((marker (or (org-get-at-bol 'org-marker)
  7840. (org-agenda-error)))
  7841. (buffer (marker-buffer marker))
  7842. (pos (marker-position marker)))
  7843. (switch-to-buffer-other-window buffer)
  7844. (widen)
  7845. (push-mark)
  7846. (goto-char pos)
  7847. (when (derived-mode-p 'org-mode)
  7848. (org-show-context 'agenda)
  7849. (recenter (/ (window-height) 2))
  7850. (org-back-to-heading t)
  7851. (let ((case-fold-search nil))
  7852. (when (re-search-forward org-complex-heading-regexp nil t)
  7853. (goto-char (match-beginning 4)))))
  7854. (run-hooks 'org-agenda-after-show-hook)
  7855. (and highlight (org-highlight (point-at-bol) (point-at-eol)))))
  7856. (defvar org-agenda-after-show-hook nil
  7857. "Normal hook run after an item has been shown from the agenda.
  7858. Point is in the buffer where the item originated.")
  7859. (defun org-agenda-kill ()
  7860. "Kill the entry or subtree belonging to the current agenda entry."
  7861. (interactive)
  7862. (or (eq major-mode 'org-agenda-mode) (error "Not in agenda"))
  7863. (let* ((bufname-orig (buffer-name))
  7864. (marker (or (org-get-at-bol 'org-marker)
  7865. (org-agenda-error)))
  7866. (buffer (marker-buffer marker))
  7867. (pos (marker-position marker))
  7868. (type (org-get-at-bol 'type))
  7869. dbeg dend (n 0) conf)
  7870. (org-with-remote-undo buffer
  7871. (with-current-buffer buffer
  7872. (save-excursion
  7873. (goto-char pos)
  7874. (if (and (derived-mode-p 'org-mode) (not (member type '("sexp"))))
  7875. (setq dbeg (progn (org-back-to-heading t) (point))
  7876. dend (org-end-of-subtree t t))
  7877. (setq dbeg (point-at-bol)
  7878. dend (min (point-max) (1+ (point-at-eol)))))
  7879. (goto-char dbeg)
  7880. (while (re-search-forward "^[ \t]*\\S-" dend t) (setq n (1+ n)))))
  7881. (setq conf (or (eq t org-agenda-confirm-kill)
  7882. (and (numberp org-agenda-confirm-kill)
  7883. (> n org-agenda-confirm-kill))))
  7884. (and conf
  7885. (not (y-or-n-p
  7886. (format "Delete entry with %d lines in buffer \"%s\"? "
  7887. n (buffer-name buffer))))
  7888. (error "Abort"))
  7889. (let ((org-agenda-buffer-name bufname-orig))
  7890. (org-remove-subtree-entries-from-agenda buffer dbeg dend))
  7891. (with-current-buffer buffer (delete-region dbeg dend))
  7892. (message "Agenda item and source killed"))))
  7893. (defvar org-archive-default-command) ; defined in org-archive.el
  7894. (defun org-agenda-archive-default ()
  7895. "Archive the entry or subtree belonging to the current agenda entry."
  7896. (interactive)
  7897. (require 'org-archive)
  7898. (org-agenda-archive-with org-archive-default-command))
  7899. (defun org-agenda-archive-default-with-confirmation ()
  7900. "Archive the entry or subtree belonging to the current agenda entry."
  7901. (interactive)
  7902. (require 'org-archive)
  7903. (org-agenda-archive-with org-archive-default-command 'confirm))
  7904. (defun org-agenda-archive ()
  7905. "Archive the entry or subtree belonging to the current agenda entry."
  7906. (interactive)
  7907. (org-agenda-archive-with 'org-archive-subtree))
  7908. (defun org-agenda-archive-to-archive-sibling ()
  7909. "Move the entry to the archive sibling."
  7910. (interactive)
  7911. (org-agenda-archive-with 'org-archive-to-archive-sibling))
  7912. (defun org-agenda-archive-with (cmd &optional confirm)
  7913. "Move the entry to the archive sibling."
  7914. (interactive)
  7915. (or (eq major-mode 'org-agenda-mode) (error "Not in agenda"))
  7916. (let* ((bufname-orig (buffer-name))
  7917. (marker (or (org-get-at-bol 'org-marker)
  7918. (org-agenda-error)))
  7919. (buffer (marker-buffer marker))
  7920. (pos (marker-position marker)))
  7921. (org-with-remote-undo buffer
  7922. (with-current-buffer buffer
  7923. (if (derived-mode-p 'org-mode)
  7924. (if (and confirm
  7925. (not (y-or-n-p "Archive this subtree or entry? ")))
  7926. (error "Abort")
  7927. (save-window-excursion
  7928. (goto-char pos)
  7929. (let ((org-agenda-buffer-name bufname-orig))
  7930. (org-remove-subtree-entries-from-agenda))
  7931. (org-back-to-heading t)
  7932. (funcall cmd)))
  7933. (error "Archiving works only in Org files"))))))
  7934. (defun org-remove-subtree-entries-from-agenda (&optional buf beg end)
  7935. "Remove all lines in the agenda that correspond to a given subtree.
  7936. The subtree is the one in buffer BUF, starting at BEG and ending at END.
  7937. If this information is not given, the function uses the tree at point."
  7938. (let ((buf (or buf (current-buffer))) m p)
  7939. (save-excursion
  7940. (unless (and beg end)
  7941. (org-back-to-heading t)
  7942. (setq beg (point))
  7943. (org-end-of-subtree t)
  7944. (setq end (point)))
  7945. (set-buffer (get-buffer org-agenda-buffer-name))
  7946. (save-excursion
  7947. (goto-char (point-max))
  7948. (beginning-of-line 1)
  7949. (while (not (bobp))
  7950. (when (and (setq m (org-get-at-bol 'org-marker))
  7951. (equal buf (marker-buffer m))
  7952. (setq p (marker-position m))
  7953. (>= p beg)
  7954. (< p end))
  7955. (let ((inhibit-read-only t))
  7956. (delete-region (point-at-bol) (1+ (point-at-eol)))))
  7957. (beginning-of-line 0))))))
  7958. (defun org-agenda-refile (&optional goto rfloc no-update)
  7959. "Refile the item at point.
  7960. When called with `\\[universal-argument] \\[universal-argument]', \
  7961. go to the location of the last
  7962. refiled item.
  7963. When called with `\\[universal-argument] \\[universal-argument] \
  7964. \\[universal-argument]' prefix or when GOTO is 0, clear
  7965. the refile cache.
  7966. RFLOC can be a refile location obtained in a different way.
  7967. When NO-UPDATE is non-nil, don't redo the agenda buffer."
  7968. (interactive "P")
  7969. (cond
  7970. ((member goto '(0 (64)))
  7971. (org-refile-cache-clear))
  7972. ((equal goto '(16))
  7973. (org-refile-goto-last-stored))
  7974. (t
  7975. (let* ((buffer-orig (buffer-name))
  7976. (marker (or (org-get-at-bol 'org-hd-marker)
  7977. (org-agenda-error)))
  7978. (buffer (marker-buffer marker))
  7979. (pos (marker-position marker))
  7980. (rfloc (or rfloc
  7981. (org-refile-get-location
  7982. (if goto "Goto" "Refile to") buffer
  7983. org-refile-allow-creating-parent-nodes))))
  7984. (with-current-buffer buffer
  7985. (org-with-wide-buffer
  7986. (goto-char marker)
  7987. (let ((org-agenda-buffer-name buffer-orig))
  7988. (org-remove-subtree-entries-from-agenda))
  7989. (org-refile goto buffer rfloc))))
  7990. (unless no-update (org-agenda-redo)))))
  7991. (defun org-agenda-open-link (&optional arg)
  7992. "Open the link(s) in the current entry, if any.
  7993. This looks for a link in the displayed line in the agenda.
  7994. It also looks at the text of the entry itself."
  7995. (interactive "P")
  7996. (let* ((marker (or (org-get-at-bol 'org-hd-marker)
  7997. (org-get-at-bol 'org-marker)))
  7998. (buffer (and marker (marker-buffer marker)))
  7999. (prefix (buffer-substring (point-at-bol) (point-at-eol)))
  8000. (lkall (and buffer (org-offer-links-in-entry
  8001. buffer marker arg prefix)))
  8002. (lk0 (car lkall))
  8003. (lk (if (stringp lk0) (list lk0) lk0))
  8004. (lkend (cdr lkall))
  8005. trg)
  8006. (cond
  8007. ((and buffer lk)
  8008. (mapcar (lambda(l)
  8009. (with-current-buffer buffer
  8010. (setq trg (and (string-match org-bracket-link-regexp l)
  8011. (match-string 1 l)))
  8012. (if (or (not trg) (string-match org-any-link-re trg))
  8013. (org-with-wide-buffer
  8014. (goto-char marker)
  8015. (when (search-forward l nil lkend)
  8016. (goto-char (match-beginning 0))
  8017. (org-open-at-point)))
  8018. ;; This is an internal link, widen the buffer
  8019. (switch-to-buffer-other-window buffer)
  8020. (widen)
  8021. (goto-char marker)
  8022. (when (search-forward l nil lkend)
  8023. (goto-char (match-beginning 0))
  8024. (org-open-at-point)))))
  8025. lk))
  8026. ((or (org-in-regexp (concat "\\(" org-bracket-link-regexp "\\)"))
  8027. (save-excursion
  8028. (beginning-of-line 1)
  8029. (looking-at (concat ".*?\\(" org-bracket-link-regexp "\\)"))))
  8030. (org-open-link-from-string (match-string 1)))
  8031. (t (message "No link to open here")))))
  8032. (defun org-agenda-copy-local-variable (var)
  8033. "Get a variable from a referenced buffer and install it here."
  8034. (let ((m (org-get-at-bol 'org-marker)))
  8035. (when (and m (buffer-live-p (marker-buffer m)))
  8036. (set (make-local-variable var)
  8037. (with-current-buffer (marker-buffer m)
  8038. (symbol-value var))))))
  8039. (defun org-agenda-switch-to (&optional delete-other-windows)
  8040. "Go to the Org mode file which contains the item at point.
  8041. When optional argument DELETE-OTHER-WINDOWS is non-nil, the
  8042. displayed Org file fills the frame."
  8043. (interactive)
  8044. (if (and org-return-follows-link
  8045. (not (org-get-at-bol 'org-marker))
  8046. (org-in-regexp org-bracket-link-regexp))
  8047. (org-open-link-from-string (match-string 0))
  8048. (let* ((marker (or (org-get-at-bol 'org-marker)
  8049. (org-agenda-error)))
  8050. (buffer (marker-buffer marker))
  8051. (pos (marker-position marker)))
  8052. (unless buffer (user-error "Trying to switch to non-existent buffer"))
  8053. (pop-to-buffer-same-window buffer)
  8054. (when delete-other-windows (delete-other-windows))
  8055. (widen)
  8056. (goto-char pos)
  8057. (when (derived-mode-p 'org-mode)
  8058. (org-show-context 'agenda)
  8059. (run-hooks 'org-agenda-after-show-hook)))))
  8060. (defun org-agenda-goto-mouse (ev)
  8061. "Go to the Org file which contains the item at the mouse click."
  8062. (interactive "e")
  8063. (mouse-set-point ev)
  8064. (org-agenda-goto))
  8065. (defun org-agenda-show (&optional full-entry)
  8066. "Display the Org file which contains the item at point.
  8067. With prefix argument FULL-ENTRY, make the entire entry visible
  8068. if it was hidden in the outline."
  8069. (interactive "P")
  8070. (let ((win (selected-window)))
  8071. (org-agenda-goto t)
  8072. (when full-entry (org-show-entry))
  8073. (select-window win)))
  8074. (defvar org-agenda-show-window nil)
  8075. (defun org-agenda-show-and-scroll-up (&optional arg)
  8076. "Display the Org file which contains the item at point.
  8077. When called repeatedly, scroll the window that is displaying the buffer.
  8078. With a `\\[universal-argument]' prefix, use `org-show-entry' instead of \
  8079. `outline-show-subtree'
  8080. to display the item, so that drawers and logbooks stay folded."
  8081. (interactive "P")
  8082. (let ((win (selected-window)))
  8083. (if (and (window-live-p org-agenda-show-window)
  8084. (eq this-command last-command))
  8085. (progn
  8086. (select-window org-agenda-show-window)
  8087. (ignore-errors (scroll-up)))
  8088. (org-agenda-goto t)
  8089. (if arg (org-show-entry) (outline-show-subtree))
  8090. (setq org-agenda-show-window (selected-window)))
  8091. (select-window win)))
  8092. (defun org-agenda-show-scroll-down ()
  8093. "Scroll down the window showing the agenda."
  8094. (interactive)
  8095. (let ((win (selected-window)))
  8096. (when (window-live-p org-agenda-show-window)
  8097. (select-window org-agenda-show-window)
  8098. (ignore-errors (scroll-down))
  8099. (select-window win))))
  8100. (defun org-agenda-show-1 (&optional more)
  8101. "Display the Org file which contains the item at point.
  8102. The prefix arg selects the amount of information to display:
  8103. 0 hide the subtree
  8104. 1 just show the entry according to defaults.
  8105. 2 show the children view
  8106. 3 show the subtree view
  8107. 4 show the entire subtree and any LOGBOOK drawers
  8108. 5 show the entire subtree and any drawers
  8109. With prefix argument FULL-ENTRY, make the entire entry visible
  8110. if it was hidden in the outline."
  8111. (interactive "p")
  8112. (let ((win (selected-window)))
  8113. (org-agenda-goto t)
  8114. (org-back-to-heading)
  8115. (set-window-start (selected-window) (point-at-bol))
  8116. (cond
  8117. ((= more 0)
  8118. (outline-hide-subtree)
  8119. (save-excursion
  8120. (org-back-to-heading)
  8121. (run-hook-with-args 'org-cycle-hook 'folded))
  8122. (message "Remote: FOLDED"))
  8123. ((and (called-interactively-p 'any) (= more 1))
  8124. (message "Remote: show with default settings"))
  8125. ((= more 2)
  8126. (outline-show-entry)
  8127. (org-show-children)
  8128. (save-excursion
  8129. (org-back-to-heading)
  8130. (run-hook-with-args 'org-cycle-hook 'children))
  8131. (message "Remote: CHILDREN"))
  8132. ((= more 3)
  8133. (outline-show-subtree)
  8134. (save-excursion
  8135. (org-back-to-heading)
  8136. (run-hook-with-args 'org-cycle-hook 'subtree))
  8137. (message "Remote: SUBTREE"))
  8138. ((= more 4)
  8139. (outline-show-subtree)
  8140. (save-excursion
  8141. (org-back-to-heading)
  8142. (org-cycle-hide-drawers 'subtree '("LOGBOOK")))
  8143. (message "Remote: SUBTREE AND LOGBOOK"))
  8144. ((> more 4)
  8145. (outline-show-subtree)
  8146. (message "Remote: SUBTREE AND ALL DRAWERS")))
  8147. (select-window win)))
  8148. (defvar org-agenda-cycle-counter nil)
  8149. (defun org-agenda-cycle-show (&optional n)
  8150. "Show the current entry in another window, with default settings.
  8151. Default settings are taken from `org-show-context-detail'. When
  8152. use repeatedly in immediate succession, the remote entry will
  8153. cycle through visibility
  8154. children -> subtree -> folded
  8155. When called with a numeric prefix arg, that arg will be passed through to
  8156. `org-agenda-show-1'. For the interpretation of that argument, see the
  8157. docstring of `org-agenda-show-1'."
  8158. (interactive "P")
  8159. (if (integerp n)
  8160. (setq org-agenda-cycle-counter n)
  8161. (if (not (eq last-command this-command))
  8162. (setq org-agenda-cycle-counter 1)
  8163. (if (equal org-agenda-cycle-counter 0)
  8164. (setq org-agenda-cycle-counter 2)
  8165. (setq org-agenda-cycle-counter (1+ org-agenda-cycle-counter))
  8166. (if (> org-agenda-cycle-counter 3)
  8167. (setq org-agenda-cycle-counter 0)))))
  8168. (org-agenda-show-1 org-agenda-cycle-counter))
  8169. (defun org-agenda-recenter (arg)
  8170. "Display the Org file which contains the item at point and recenter."
  8171. (interactive "P")
  8172. (let ((win (selected-window)))
  8173. (org-agenda-goto t)
  8174. (recenter arg)
  8175. (select-window win)))
  8176. (defun org-agenda-show-mouse (ev)
  8177. "Display the Org file which contains the item at the mouse click."
  8178. (interactive "e")
  8179. (mouse-set-point ev)
  8180. (org-agenda-show))
  8181. (defun org-agenda-check-no-diary ()
  8182. "Check if the entry is a diary link and abort if yes."
  8183. (if (org-get-at-bol 'org-agenda-diary-link)
  8184. (org-agenda-error)))
  8185. (defun org-agenda-error ()
  8186. "Throw an error when a command is not allowed in the agenda."
  8187. (user-error "Command not allowed in this line"))
  8188. (defun org-agenda-tree-to-indirect-buffer (arg)
  8189. "Show the subtree corresponding to the current entry in an indirect buffer.
  8190. This calls the command `org-tree-to-indirect-buffer' from the original buffer.
  8191. With a numerical prefix ARG, go up to this level and then take that tree.
  8192. With a negative numeric ARG, go up by this number of levels.
  8193. With a `\\[universal-argument]' prefix, make a separate frame for this tree, \
  8194. i.e. don't use
  8195. the dedicated frame."
  8196. (interactive "P")
  8197. (if current-prefix-arg
  8198. (org-agenda-do-tree-to-indirect-buffer arg)
  8199. (let ((agenda-buffer (buffer-name))
  8200. (agenda-window (selected-window))
  8201. (indirect-window
  8202. (and org-last-indirect-buffer
  8203. (get-buffer-window org-last-indirect-buffer))))
  8204. (save-window-excursion (org-agenda-do-tree-to-indirect-buffer arg))
  8205. (unless (or (eq org-indirect-buffer-display 'new-frame)
  8206. (eq org-indirect-buffer-display 'dedicated-frame))
  8207. (unwind-protect
  8208. (unless (and indirect-window (window-live-p indirect-window))
  8209. (setq indirect-window (split-window agenda-window)))
  8210. (and indirect-window (select-window indirect-window))
  8211. (switch-to-buffer org-last-indirect-buffer :norecord)
  8212. (fit-window-to-buffer indirect-window)))
  8213. (select-window (get-buffer-window agenda-buffer))
  8214. (setq org-agenda-last-indirect-buffer org-last-indirect-buffer))))
  8215. (defun org-agenda-do-tree-to-indirect-buffer (arg)
  8216. "Same as `org-agenda-tree-to-indirect-buffer' without saving window."
  8217. (org-agenda-check-no-diary)
  8218. (let* ((marker (or (org-get-at-bol 'org-marker)
  8219. (org-agenda-error)))
  8220. (buffer (marker-buffer marker))
  8221. (pos (marker-position marker)))
  8222. (with-current-buffer buffer
  8223. (save-excursion
  8224. (goto-char pos)
  8225. (funcall 'org-tree-to-indirect-buffer arg)))))
  8226. (defvar org-last-heading-marker (make-marker)
  8227. "Marker pointing to the headline that last changed its TODO state
  8228. by a remote command from the agenda.")
  8229. (defun org-agenda-todo-nextset ()
  8230. "Switch TODO entry to next sequence."
  8231. (interactive)
  8232. (org-agenda-todo 'nextset))
  8233. (defun org-agenda-todo-previousset ()
  8234. "Switch TODO entry to previous sequence."
  8235. (interactive)
  8236. (org-agenda-todo 'previousset))
  8237. (defun org-agenda-todo (&optional arg)
  8238. "Cycle TODO state of line at point, also in Org file.
  8239. This changes the line at point, all other lines in the agenda referring to
  8240. the same tree node, and the headline of the tree node in the Org file."
  8241. (interactive "P")
  8242. (org-agenda-check-no-diary)
  8243. (let* ((col (current-column))
  8244. (marker (or (org-get-at-bol 'org-marker)
  8245. (org-agenda-error)))
  8246. (buffer (marker-buffer marker))
  8247. (pos (marker-position marker))
  8248. (hdmarker (org-get-at-bol 'org-hd-marker))
  8249. (todayp (org-agenda-today-p (org-get-at-bol 'day)))
  8250. (inhibit-read-only t)
  8251. org-agenda-headline-snapshot-before-repeat newhead just-one)
  8252. (org-with-remote-undo buffer
  8253. (with-current-buffer buffer
  8254. (widen)
  8255. (goto-char pos)
  8256. (org-show-context 'agenda)
  8257. (let ((current-prefix-arg arg))
  8258. (call-interactively 'org-todo))
  8259. (and (bolp) (forward-char 1))
  8260. (setq newhead (org-get-heading))
  8261. (when (and (bound-and-true-p
  8262. org-agenda-headline-snapshot-before-repeat)
  8263. (not (equal org-agenda-headline-snapshot-before-repeat
  8264. newhead))
  8265. todayp)
  8266. (setq newhead org-agenda-headline-snapshot-before-repeat
  8267. just-one t))
  8268. (save-excursion
  8269. (org-back-to-heading)
  8270. (move-marker org-last-heading-marker (point))))
  8271. (beginning-of-line 1)
  8272. (save-window-excursion
  8273. (org-agenda-change-all-lines newhead hdmarker 'fixface just-one))
  8274. (when (bound-and-true-p org-clock-out-when-done)
  8275. (string-match (concat "^" (regexp-opt org-done-keywords-for-agenda))
  8276. newhead)
  8277. (org-agenda-unmark-clocking-task))
  8278. (org-move-to-column col)
  8279. (org-agenda-mark-clocking-task))))
  8280. (defun org-agenda-add-note (&optional arg)
  8281. "Add a time-stamped note to the entry at point."
  8282. (interactive "P")
  8283. (org-agenda-check-no-diary)
  8284. (let* ((marker (or (org-get-at-bol 'org-marker)
  8285. (org-agenda-error)))
  8286. (buffer (marker-buffer marker))
  8287. (pos (marker-position marker))
  8288. (hdmarker (org-get-at-bol 'org-hd-marker))
  8289. (inhibit-read-only t))
  8290. (with-current-buffer buffer
  8291. (widen)
  8292. (goto-char pos)
  8293. (org-show-context 'agenda)
  8294. (org-add-note))))
  8295. (defun org-agenda-change-all-lines (newhead hdmarker
  8296. &optional fixface just-this)
  8297. "Change all lines in the agenda buffer which match HDMARKER.
  8298. The new content of the line will be NEWHEAD (as modified by
  8299. `org-agenda-format-item'). HDMARKER is checked with
  8300. `equal' against all `org-hd-marker' text properties in the file.
  8301. If FIXFACE is non-nil, the face of each item is modified according to
  8302. the new TODO state.
  8303. If JUST-THIS is non-nil, change just the current line, not all.
  8304. If FORCE-TAGS is non nil, the car of it returns the new tags."
  8305. (let* ((inhibit-read-only t)
  8306. (line (org-current-line))
  8307. (org-agenda-buffer (current-buffer))
  8308. (thetags (with-current-buffer (marker-buffer hdmarker)
  8309. (org-with-wide-buffer
  8310. (goto-char hdmarker)
  8311. (org-get-tags-at))))
  8312. props m pl undone-face done-face finish new dotime level cat tags)
  8313. (save-excursion
  8314. (goto-char (point-max))
  8315. (beginning-of-line 1)
  8316. (while (not finish)
  8317. (setq finish (bobp))
  8318. (when (and (setq m (org-get-at-bol 'org-hd-marker))
  8319. (or (not just-this) (= (org-current-line) line))
  8320. (equal m hdmarker))
  8321. (setq props (text-properties-at (point))
  8322. dotime (org-get-at-bol 'dotime)
  8323. cat (org-get-at-eol 'org-category 1)
  8324. level (org-get-at-bol 'level)
  8325. tags thetags
  8326. new
  8327. (let ((org-prefix-format-compiled
  8328. (or (get-text-property (min (1- (point-max)) (point)) 'format)
  8329. org-prefix-format-compiled))
  8330. (extra (org-get-at-bol 'extra)))
  8331. (with-current-buffer (marker-buffer hdmarker)
  8332. (org-with-wide-buffer
  8333. (org-agenda-format-item extra newhead level cat tags dotime))))
  8334. pl (text-property-any (point-at-bol) (point-at-eol) 'org-heading t)
  8335. undone-face (org-get-at-bol 'undone-face)
  8336. done-face (org-get-at-bol 'done-face))
  8337. (beginning-of-line 1)
  8338. (cond
  8339. ((equal new "") (delete-region (point) (line-beginning-position 2)))
  8340. ((looking-at ".*")
  8341. ;; When replacing the whole line, preserve bulk mark
  8342. ;; overlay, if any.
  8343. (let ((mark (catch :overlay
  8344. (dolist (o (overlays-in (point) (+ 2 (point))))
  8345. (when (eq (overlay-get o 'type)
  8346. 'org-marked-entry-overlay)
  8347. (throw :overlay o))))))
  8348. (replace-match new t t)
  8349. (beginning-of-line)
  8350. (when mark (move-overlay mark (point) (+ 2 (point)))))
  8351. (add-text-properties (point-at-bol) (point-at-eol) props)
  8352. (when fixface
  8353. (add-text-properties
  8354. (point-at-bol) (point-at-eol)
  8355. (list 'face
  8356. (if org-last-todo-state-is-todo
  8357. undone-face done-face))))
  8358. (org-agenda-highlight-todo 'line)
  8359. (beginning-of-line 1))
  8360. (t (error "Line update did not work")))
  8361. (save-restriction
  8362. (narrow-to-region (point-at-bol) (point-at-eol))
  8363. (org-agenda-finalize)))
  8364. (beginning-of-line 0)))))
  8365. (defun org-agenda-align-tags (&optional line)
  8366. "Align all tags in agenda items to `org-agenda-tags-column'."
  8367. (let ((inhibit-read-only t) l c)
  8368. (save-excursion
  8369. (goto-char (if line (point-at-bol) (point-min)))
  8370. (while (re-search-forward "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"
  8371. (if line (point-at-eol) nil) t)
  8372. (add-text-properties
  8373. (match-beginning 2) (match-end 2)
  8374. (list 'face (delq nil (let ((prop (get-text-property
  8375. (match-beginning 2) 'face)))
  8376. (or (listp prop) (setq prop (list prop)))
  8377. (if (memq 'org-tag prop)
  8378. prop
  8379. (cons 'org-tag prop))))))
  8380. (setq l (- (match-end 2) (match-beginning 2))
  8381. c (if (< org-agenda-tags-column 0)
  8382. (- (abs org-agenda-tags-column) l)
  8383. org-agenda-tags-column))
  8384. (delete-region (match-beginning 1) (match-end 1))
  8385. (goto-char (match-beginning 1))
  8386. (insert (org-add-props
  8387. (make-string (max 1 (- c (current-column))) ?\ )
  8388. (plist-put (copy-sequence (text-properties-at (point)))
  8389. 'face nil))))
  8390. (goto-char (point-min))
  8391. (org-font-lock-add-tag-faces (point-max)))))
  8392. (defun org-agenda-priority-up ()
  8393. "Increase the priority of line at point, also in Org file."
  8394. (interactive)
  8395. (org-agenda-priority 'up))
  8396. (defun org-agenda-priority-down ()
  8397. "Decrease the priority of line at point, also in Org file."
  8398. (interactive)
  8399. (org-agenda-priority 'down))
  8400. (defun org-agenda-priority (&optional force-direction)
  8401. "Set the priority of line at point, also in Org file.
  8402. This changes the line at point, all other lines in the agenda referring to
  8403. the same tree node, and the headline of the tree node in the Org file.
  8404. Called with a universal prefix arg, show the priority instead of setting it."
  8405. (interactive "P")
  8406. (if (equal force-direction '(4))
  8407. (org-show-priority)
  8408. (unless org-enable-priority-commands
  8409. (error "Priority commands are disabled"))
  8410. (org-agenda-check-no-diary)
  8411. (let* ((col (current-column))
  8412. (marker (or (org-get-at-bol 'org-marker)
  8413. (org-agenda-error)))
  8414. (hdmarker (org-get-at-bol 'org-hd-marker))
  8415. (buffer (marker-buffer hdmarker))
  8416. (pos (marker-position hdmarker))
  8417. (inhibit-read-only t)
  8418. newhead)
  8419. (org-with-remote-undo buffer
  8420. (with-current-buffer buffer
  8421. (widen)
  8422. (goto-char pos)
  8423. (org-show-context 'agenda)
  8424. (funcall 'org-priority force-direction)
  8425. (end-of-line 1)
  8426. (setq newhead (org-get-heading)))
  8427. (org-agenda-change-all-lines newhead hdmarker)
  8428. (org-move-to-column col)))))
  8429. ;; FIXME: should fix the tags property of the agenda line.
  8430. (defun org-agenda-set-tags (&optional tag onoff)
  8431. "Set tags for the current headline."
  8432. (interactive)
  8433. (org-agenda-check-no-diary)
  8434. (if (and (org-region-active-p) (called-interactively-p 'any))
  8435. (call-interactively 'org-change-tag-in-region)
  8436. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8437. (org-agenda-error)))
  8438. (buffer (marker-buffer hdmarker))
  8439. (pos (marker-position hdmarker))
  8440. (inhibit-read-only t)
  8441. newhead)
  8442. (org-with-remote-undo buffer
  8443. (with-current-buffer buffer
  8444. (widen)
  8445. (goto-char pos)
  8446. (org-show-context 'agenda)
  8447. (if tag
  8448. (org-toggle-tag tag onoff)
  8449. (call-interactively 'org-set-tags))
  8450. (end-of-line 1)
  8451. (setq newhead (org-get-heading)))
  8452. (org-agenda-change-all-lines newhead hdmarker)
  8453. (beginning-of-line 1)))))
  8454. (defun org-agenda-set-property ()
  8455. "Set a property for the current headline."
  8456. (interactive)
  8457. (org-agenda-check-no-diary)
  8458. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8459. (org-agenda-error)))
  8460. (buffer (marker-buffer hdmarker))
  8461. (pos (marker-position hdmarker))
  8462. (inhibit-read-only t)
  8463. newhead)
  8464. (org-with-remote-undo buffer
  8465. (with-current-buffer buffer
  8466. (widen)
  8467. (goto-char pos)
  8468. (org-show-context 'agenda)
  8469. (call-interactively 'org-set-property)))))
  8470. (defun org-agenda-set-effort ()
  8471. "Set the effort property for the current headline."
  8472. (interactive)
  8473. (org-agenda-check-no-diary)
  8474. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8475. (org-agenda-error)))
  8476. (buffer (marker-buffer hdmarker))
  8477. (pos (marker-position hdmarker))
  8478. (inhibit-read-only t)
  8479. newhead)
  8480. (org-with-remote-undo buffer
  8481. (with-current-buffer buffer
  8482. (widen)
  8483. (goto-char pos)
  8484. (org-show-context 'agenda)
  8485. (call-interactively 'org-set-effort)
  8486. (end-of-line 1)
  8487. (setq newhead (org-get-heading)))
  8488. (org-agenda-change-all-lines newhead hdmarker))))
  8489. (defun org-agenda-toggle-archive-tag ()
  8490. "Toggle the archive tag for the current entry."
  8491. (interactive)
  8492. (org-agenda-check-no-diary)
  8493. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8494. (org-agenda-error)))
  8495. (buffer (marker-buffer hdmarker))
  8496. (pos (marker-position hdmarker))
  8497. (inhibit-read-only t)
  8498. newhead)
  8499. (org-with-remote-undo buffer
  8500. (with-current-buffer buffer
  8501. (widen)
  8502. (goto-char pos)
  8503. (org-show-context 'agenda)
  8504. (call-interactively 'org-toggle-archive-tag)
  8505. (end-of-line 1)
  8506. (setq newhead (org-get-heading)))
  8507. (org-agenda-change-all-lines newhead hdmarker)
  8508. (beginning-of-line 1))))
  8509. (defun org-agenda-do-date-later (arg)
  8510. (interactive "P")
  8511. (cond
  8512. ((or (equal arg '(16))
  8513. (memq last-command
  8514. '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
  8515. (setq this-command 'org-agenda-date-later-minutes)
  8516. (org-agenda-date-later-minutes 1))
  8517. ((or (equal arg '(4))
  8518. (memq last-command
  8519. '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
  8520. (setq this-command 'org-agenda-date-later-hours)
  8521. (org-agenda-date-later-hours 1))
  8522. (t
  8523. (org-agenda-date-later (prefix-numeric-value arg)))))
  8524. (defun org-agenda-do-date-earlier (arg)
  8525. (interactive "P")
  8526. (cond
  8527. ((or (equal arg '(16))
  8528. (memq last-command
  8529. '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
  8530. (setq this-command 'org-agenda-date-earlier-minutes)
  8531. (org-agenda-date-earlier-minutes 1))
  8532. ((or (equal arg '(4))
  8533. (memq last-command
  8534. '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
  8535. (setq this-command 'org-agenda-date-earlier-hours)
  8536. (org-agenda-date-earlier-hours 1))
  8537. (t
  8538. (org-agenda-date-earlier (prefix-numeric-value arg)))))
  8539. (defun org-agenda-date-later (arg &optional what)
  8540. "Change the date of this item to ARG day(s) later."
  8541. (interactive "p")
  8542. (org-agenda-check-type t 'agenda 'timeline)
  8543. (org-agenda-check-no-diary)
  8544. (let* ((marker (or (org-get-at-bol 'org-marker)
  8545. (org-agenda-error)))
  8546. (buffer (marker-buffer marker))
  8547. (pos (marker-position marker))
  8548. cdate today)
  8549. (org-with-remote-undo buffer
  8550. (with-current-buffer buffer
  8551. (widen)
  8552. (goto-char pos)
  8553. (if (not (org-at-timestamp-p))
  8554. (error "Cannot find time stamp"))
  8555. (when (and org-agenda-move-date-from-past-immediately-to-today
  8556. (equal arg 1)
  8557. (or (not what) (eq what 'day))
  8558. (not (save-match-data (org-at-date-range-p))))
  8559. (setq cdate (org-parse-time-string (match-string 0) 'nodefault)
  8560. cdate (calendar-absolute-from-gregorian
  8561. (list (nth 4 cdate) (nth 3 cdate) (nth 5 cdate)))
  8562. today (org-today))
  8563. (if (> today cdate)
  8564. ;; immediately shift to today
  8565. (setq arg (- today cdate))))
  8566. (org-timestamp-change arg (or what 'day))
  8567. (when (and (org-at-date-range-p)
  8568. (re-search-backward org-tr-regexp-both (point-at-bol)))
  8569. (let ((end org-last-changed-timestamp))
  8570. (org-timestamp-change arg (or what 'day))
  8571. (setq org-last-changed-timestamp
  8572. (concat org-last-changed-timestamp "--" end)))))
  8573. (org-agenda-show-new-time marker org-last-changed-timestamp))
  8574. (message "Time stamp changed to %s" org-last-changed-timestamp)))
  8575. (defun org-agenda-date-earlier (arg &optional what)
  8576. "Change the date of this item to ARG day(s) earlier."
  8577. (interactive "p")
  8578. (org-agenda-date-later (- arg) what))
  8579. (defun org-agenda-date-later-minutes (arg)
  8580. "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
  8581. (interactive "p")
  8582. (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
  8583. (org-agenda-date-later arg 'minute))
  8584. (defun org-agenda-date-earlier-minutes (arg)
  8585. "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
  8586. (interactive "p")
  8587. (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
  8588. (org-agenda-date-earlier arg 'minute))
  8589. (defun org-agenda-date-later-hours (arg)
  8590. "Change the time of this item, in hour steps."
  8591. (interactive "p")
  8592. (org-agenda-date-later arg 'hour))
  8593. (defun org-agenda-date-earlier-hours (arg)
  8594. "Change the time of this item, in hour steps."
  8595. (interactive "p")
  8596. (org-agenda-date-earlier arg 'hour))
  8597. (defun org-agenda-show-new-time (marker stamp &optional prefix)
  8598. "Show new date stamp via text properties."
  8599. ;; We use text properties to make this undoable
  8600. (let ((inhibit-read-only t))
  8601. (setq stamp (concat prefix " => " stamp " "))
  8602. (save-excursion
  8603. (goto-char (point-max))
  8604. (while (not (bobp))
  8605. (when (equal marker (org-get-at-bol 'org-marker))
  8606. (remove-text-properties (point-at-bol) (point-at-eol) '(display))
  8607. (org-move-to-column (- (window-width) (length stamp)) t)
  8608. (add-text-properties
  8609. (1- (point)) (point-at-eol)
  8610. (list 'display (org-add-props stamp nil
  8611. 'face '(secondary-selection default))))
  8612. (beginning-of-line 1))
  8613. (beginning-of-line 0)))))
  8614. (defun org-agenda-date-prompt (arg)
  8615. "Change the date of this item. Date is prompted for, with default today.
  8616. The prefix ARG is passed to the `org-time-stamp' command and can therefore
  8617. be used to request time specification in the time stamp."
  8618. (interactive "P")
  8619. (org-agenda-check-type t 'agenda 'timeline)
  8620. (org-agenda-check-no-diary)
  8621. (let* ((marker (or (org-get-at-bol 'org-marker)
  8622. (org-agenda-error)))
  8623. (buffer (marker-buffer marker))
  8624. (pos (marker-position marker)))
  8625. (org-with-remote-undo buffer
  8626. (with-current-buffer buffer
  8627. (widen)
  8628. (goto-char pos)
  8629. (if (not (org-at-timestamp-p t))
  8630. (error "Cannot find time stamp"))
  8631. (org-time-stamp arg (equal (char-after (match-beginning 0)) ?\[)))
  8632. (org-agenda-show-new-time marker org-last-changed-timestamp))
  8633. (message "Time stamp changed to %s" org-last-changed-timestamp)))
  8634. (defun org-agenda-schedule (arg &optional time)
  8635. "Schedule the item at point.
  8636. ARG is passed through to `org-schedule'."
  8637. (interactive "P")
  8638. (org-agenda-check-type t 'agenda 'timeline 'todo 'tags 'search)
  8639. (org-agenda-check-no-diary)
  8640. (let* ((marker (or (org-get-at-bol 'org-marker)
  8641. (org-agenda-error)))
  8642. (type (marker-insertion-type marker))
  8643. (buffer (marker-buffer marker))
  8644. (pos (marker-position marker))
  8645. ts)
  8646. (set-marker-insertion-type marker t)
  8647. (org-with-remote-undo buffer
  8648. (with-current-buffer buffer
  8649. (widen)
  8650. (goto-char pos)
  8651. (setq ts (org-schedule arg time)))
  8652. (org-agenda-show-new-time marker ts " S"))
  8653. (message "%s" ts)))
  8654. (defun org-agenda-deadline (arg &optional time)
  8655. "Schedule the item at point.
  8656. ARG is passed through to `org-deadline'."
  8657. (interactive "P")
  8658. (org-agenda-check-type t 'agenda 'timeline 'todo 'tags 'search)
  8659. (org-agenda-check-no-diary)
  8660. (let* ((marker (or (org-get-at-bol 'org-marker)
  8661. (org-agenda-error)))
  8662. (buffer (marker-buffer marker))
  8663. (pos (marker-position marker))
  8664. ts)
  8665. (org-with-remote-undo buffer
  8666. (with-current-buffer buffer
  8667. (widen)
  8668. (goto-char pos)
  8669. (setq ts (org-deadline arg time)))
  8670. (org-agenda-show-new-time marker ts " D"))
  8671. (message "%s" ts)))
  8672. (defun org-agenda-clock-in (&optional arg)
  8673. "Start the clock on the currently selected item."
  8674. (interactive "P")
  8675. (org-agenda-check-no-diary)
  8676. (if (equal arg '(4))
  8677. (org-clock-in arg)
  8678. (let* ((marker (or (org-get-at-bol 'org-marker)
  8679. (org-agenda-error)))
  8680. (hdmarker (or (org-get-at-bol 'org-hd-marker) marker))
  8681. (pos (marker-position marker))
  8682. (col (current-column))
  8683. newhead)
  8684. (org-with-remote-undo (marker-buffer marker)
  8685. (with-current-buffer (marker-buffer marker)
  8686. (widen)
  8687. (goto-char pos)
  8688. (org-show-context 'agenda)
  8689. (org-cycle-hide-drawers 'children)
  8690. (org-clock-in arg)
  8691. (setq newhead (org-get-heading)))
  8692. (org-agenda-change-all-lines newhead hdmarker))
  8693. (org-move-to-column col))))
  8694. (defun org-agenda-clock-out ()
  8695. "Stop the currently running clock."
  8696. (interactive)
  8697. (unless (marker-buffer org-clock-marker)
  8698. (error "No running clock"))
  8699. (let ((marker (make-marker)) (col (current-column)) newhead)
  8700. (org-with-remote-undo (marker-buffer org-clock-marker)
  8701. (with-current-buffer (marker-buffer org-clock-marker)
  8702. (org-with-wide-buffer
  8703. (goto-char org-clock-marker)
  8704. (org-back-to-heading t)
  8705. (move-marker marker (point))
  8706. (org-clock-out)
  8707. (setq newhead (org-get-heading)))))
  8708. (org-agenda-change-all-lines newhead marker)
  8709. (move-marker marker nil)
  8710. (org-move-to-column col)
  8711. (org-agenda-unmark-clocking-task)))
  8712. (defun org-agenda-clock-cancel (&optional arg)
  8713. "Cancel the currently running clock."
  8714. (interactive "P")
  8715. (unless (marker-buffer org-clock-marker)
  8716. (user-error "No running clock"))
  8717. (org-with-remote-undo (marker-buffer org-clock-marker)
  8718. (org-clock-cancel)))
  8719. (defun org-agenda-clock-goto ()
  8720. "Jump to the currently clocked in task within the agenda.
  8721. If the currently clocked in task is not listed in the agenda
  8722. buffer, display it in another window."
  8723. (interactive)
  8724. (let (pos)
  8725. (mapc (lambda (o)
  8726. (if (eq (overlay-get o 'type) 'org-agenda-clocking)
  8727. (setq pos (overlay-start o))))
  8728. (overlays-in (point-min) (point-max)))
  8729. (cond (pos (goto-char pos))
  8730. ;; If the currently clocked entry is not in the agenda
  8731. ;; buffer, we visit it in another window:
  8732. ((bound-and-true-p org-clock-current-task)
  8733. (org-switch-to-buffer-other-window (org-clock-goto)))
  8734. (t (message "No running clock, use `C-c C-x C-j' to jump to the most recent one")))))
  8735. (defun org-agenda-diary-entry-in-org-file ()
  8736. "Make a diary entry in the file `org-agenda-diary-file'."
  8737. (let (d1 d2 char (text "") dp1 dp2)
  8738. (if (equal (buffer-name) "*Calendar*")
  8739. (setq d1 (calendar-cursor-to-date t)
  8740. d2 (car calendar-mark-ring))
  8741. (setq dp1 (get-text-property (point-at-bol) 'day))
  8742. (unless dp1 (user-error "No date defined in current line"))
  8743. (setq d1 (calendar-gregorian-from-absolute dp1)
  8744. d2 (and (ignore-errors (mark))
  8745. (save-excursion
  8746. (goto-char (mark))
  8747. (setq dp2 (get-text-property (point-at-bol) 'day)))
  8748. (calendar-gregorian-from-absolute dp2))))
  8749. (message "Diary entry: [d]ay [a]nniversary [b]lock [j]ump to date tree")
  8750. (setq char (read-char-exclusive))
  8751. (cond
  8752. ((equal char ?d)
  8753. (setq text (read-string "Day entry: "))
  8754. (org-agenda-add-entry-to-org-agenda-diary-file 'day text d1)
  8755. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  8756. ((equal char ?a)
  8757. (setq d1 (list (car d1) (nth 1 d1)
  8758. (read-number (format "Reference year [%d]: " (nth 2 d1))
  8759. (nth 2 d1))))
  8760. (setq text (read-string "Anniversary (use %d to show years): "))
  8761. (org-agenda-add-entry-to-org-agenda-diary-file 'anniversary text d1)
  8762. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  8763. ((equal char ?b)
  8764. (setq text (read-string "Block entry: "))
  8765. (unless (and d1 d2 (not (equal d1 d2)))
  8766. (user-error "No block of days selected"))
  8767. (org-agenda-add-entry-to-org-agenda-diary-file 'block text d1 d2)
  8768. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  8769. ((equal char ?j)
  8770. (org-switch-to-buffer-other-window
  8771. (find-file-noselect org-agenda-diary-file))
  8772. (require 'org-datetree)
  8773. (org-datetree-find-date-create d1)
  8774. (org-reveal t))
  8775. (t (user-error "Invalid selection character `%c'" char)))))
  8776. (defcustom org-agenda-insert-diary-strategy 'date-tree
  8777. "Where in `org-agenda-diary-file' should new entries be added?
  8778. Valid values:
  8779. date-tree in the date tree, as first child of the date
  8780. date-tree-last in the date tree, as last child of the date
  8781. top-level as top-level entries at the end of the file."
  8782. :group 'org-agenda
  8783. :type '(choice
  8784. (const :tag "first in a date tree" date-tree)
  8785. (const :tag "last in a date tree" date-tree-last)
  8786. (const :tag "as top level at end of file" top-level)))
  8787. (defcustom org-agenda-insert-diary-extract-time nil
  8788. "Non-nil means extract any time specification from the diary entry."
  8789. :group 'org-agenda
  8790. :version "24.1"
  8791. :type 'boolean)
  8792. (defcustom org-agenda-bulk-mark-char ">"
  8793. "A single-character string to be used as the bulk mark."
  8794. :group 'org-agenda
  8795. :version "24.1"
  8796. :type 'string)
  8797. (defun org-agenda-add-entry-to-org-agenda-diary-file (type text &optional d1 d2)
  8798. "Add a diary entry with TYPE to `org-agenda-diary-file'.
  8799. If TEXT is not empty, it will become the headline of the new entry, and
  8800. the resulting entry will not be shown. When TEXT is empty, switch to
  8801. `org-agenda-diary-file' and let the user finish the entry there."
  8802. (let ((cw (current-window-configuration)))
  8803. (org-switch-to-buffer-other-window
  8804. (find-file-noselect org-agenda-diary-file))
  8805. (widen)
  8806. (goto-char (point-min))
  8807. (cond
  8808. ((eq type 'anniversary)
  8809. (or (re-search-forward "^*[ \t]+Anniversaries" nil t)
  8810. (progn
  8811. (or (org-at-heading-p t)
  8812. (progn
  8813. (outline-next-heading)
  8814. (insert "* Anniversaries\n\n")
  8815. (beginning-of-line -1)))))
  8816. (outline-next-heading)
  8817. (org-back-over-empty-lines)
  8818. (backward-char 1)
  8819. (insert "\n")
  8820. (insert (format "%%%%(org-anniversary %d %2d %2d) %s"
  8821. (nth 2 d1) (car d1) (nth 1 d1) text)))
  8822. ((eq type 'day)
  8823. (let ((org-prefix-has-time t)
  8824. (org-agenda-time-leading-zero t)
  8825. fmt time time2)
  8826. (if org-agenda-insert-diary-extract-time
  8827. ;; Use org-agenda-format-item to parse text for a time-range and
  8828. ;; remove it. FIXME: This is a hack, we should refactor
  8829. ;; that function to make time extraction available separately
  8830. (setq fmt (org-agenda-format-item nil text nil nil nil t)
  8831. time (get-text-property 0 'time fmt)
  8832. time2 (if (> (length time) 0)
  8833. ;; split-string removes trailing ...... if
  8834. ;; no end time given. First space
  8835. ;; separates time from date.
  8836. (concat " " (car (split-string time "\\.")))
  8837. nil)
  8838. text (get-text-property 0 'txt fmt)))
  8839. (if (eq org-agenda-insert-diary-strategy 'top-level)
  8840. (org-agenda-insert-diary-as-top-level text)
  8841. (require 'org-datetree)
  8842. (org-datetree-find-date-create d1)
  8843. (org-agenda-insert-diary-make-new-entry text))
  8844. (org-insert-time-stamp (org-time-from-absolute
  8845. (calendar-absolute-from-gregorian d1))
  8846. nil nil nil nil time2))
  8847. (end-of-line 0))
  8848. ((eq type 'block)
  8849. (if (> (calendar-absolute-from-gregorian d1)
  8850. (calendar-absolute-from-gregorian d2))
  8851. (setq d1 (prog1 d2 (setq d2 d1))))
  8852. (if (eq org-agenda-insert-diary-strategy 'top-level)
  8853. (org-agenda-insert-diary-as-top-level text)
  8854. (require 'org-datetree)
  8855. (org-datetree-find-date-create d1)
  8856. (org-agenda-insert-diary-make-new-entry text))
  8857. (org-insert-time-stamp (org-time-from-absolute
  8858. (calendar-absolute-from-gregorian d1)))
  8859. (insert "--")
  8860. (org-insert-time-stamp (org-time-from-absolute
  8861. (calendar-absolute-from-gregorian d2)))
  8862. (end-of-line 0)))
  8863. (if (string-match "\\S-" text)
  8864. (progn
  8865. (set-window-configuration cw)
  8866. (message "%s entry added to %s"
  8867. (capitalize (symbol-name type))
  8868. (abbreviate-file-name org-agenda-diary-file)))
  8869. (org-reveal t)
  8870. (message "Please finish entry here"))))
  8871. (defun org-agenda-insert-diary-as-top-level (text)
  8872. "Make new entry as a top-level entry at the end of the file.
  8873. Add TEXT as headline, and position the cursor in the second line so that
  8874. a timestamp can be added there."
  8875. (widen)
  8876. (goto-char (point-max))
  8877. (unless (bolp) (insert "\n"))
  8878. (org-insert-heading nil t t)
  8879. (insert text)
  8880. (org-end-of-meta-data)
  8881. (unless (bolp) (insert "\n"))
  8882. (when org-adapt-indentation (indent-to-column 2)))
  8883. (defun org-agenda-insert-diary-make-new-entry (text)
  8884. "Make a new entry with TEXT as a child of the current subtree.
  8885. Position the point in the heading's first body line so that
  8886. a timestamp can be added there."
  8887. (cond
  8888. ((eq org-agenda-insert-diary-strategy 'date-tree-last)
  8889. (end-of-line)
  8890. (org-insert-heading '(4) t)
  8891. (org-do-demote))
  8892. (t
  8893. (outline-next-heading)
  8894. (org-back-over-empty-lines)
  8895. (unless (looking-at "[ \t]*$") (save-excursion (insert "\n")))
  8896. (org-insert-heading nil t)
  8897. (org-do-demote)))
  8898. (let ((col (current-column)))
  8899. (insert text)
  8900. (org-end-of-meta-data)
  8901. ;; Ensure point is left on a blank line, at proper indentation.
  8902. (unless (bolp) (insert "\n"))
  8903. (unless (looking-at-p "^[ \t]*$") (save-excursion (insert "\n")))
  8904. (when org-adapt-indentation (indent-to-column col)))
  8905. (org-show-set-visibility 'lineage))
  8906. (defun org-agenda-diary-entry ()
  8907. "Make a diary entry, like the `i' command from the calendar.
  8908. All the standard commands work: block, weekly etc.
  8909. When `org-agenda-diary-file' points to a file,
  8910. `org-agenda-diary-entry-in-org-file' is called instead to create
  8911. entries in that Org file."
  8912. (interactive)
  8913. (if (not (eq org-agenda-diary-file 'diary-file))
  8914. (org-agenda-diary-entry-in-org-file)
  8915. (require 'diary-lib)
  8916. (let* ((char (progn
  8917. (message "Diary entry: [d]ay [w]eekly [m]onthly [y]early [a]nniversary [b]lock [c]yclic")
  8918. (read-char-exclusive)))
  8919. (cmd (cdr (assoc char
  8920. '((?d . diary-insert-entry)
  8921. (?w . diary-insert-weekly-entry)
  8922. (?m . diary-insert-monthly-entry)
  8923. (?y . diary-insert-yearly-entry)
  8924. (?a . diary-insert-anniversary-entry)
  8925. (?b . diary-insert-block-entry)
  8926. (?c . diary-insert-cyclic-entry)))))
  8927. (oldf (symbol-function 'calendar-cursor-to-date))
  8928. ;; (buf (get-file-buffer (substitute-in-file-name diary-file)))
  8929. (point (point))
  8930. (mark (or (mark t) (point))))
  8931. (unless cmd
  8932. (user-error "No command associated with <%c>" char))
  8933. (unless (and (get-text-property point 'day)
  8934. (or (not (equal ?b char))
  8935. (get-text-property mark 'day)))
  8936. (user-error "Don't know which date to use for diary entry"))
  8937. ;; We implement this by hacking the `calendar-cursor-to-date' function
  8938. ;; and the `calendar-mark-ring' variable. Saves a lot of code.
  8939. (let ((calendar-mark-ring
  8940. (list (calendar-gregorian-from-absolute
  8941. (or (get-text-property mark 'day)
  8942. (get-text-property point 'day))))))
  8943. (unwind-protect
  8944. (progn
  8945. (fset 'calendar-cursor-to-date
  8946. (lambda (&optional error dummy)
  8947. (calendar-gregorian-from-absolute
  8948. (get-text-property point 'day))))
  8949. (call-interactively cmd))
  8950. (fset 'calendar-cursor-to-date oldf))))))
  8951. (defun org-agenda-execute-calendar-command (cmd)
  8952. "Execute a calendar command from the agenda with date from cursor."
  8953. (org-agenda-check-type t 'agenda 'timeline)
  8954. (require 'diary-lib)
  8955. (unless (get-text-property (min (1- (point-max)) (point)) 'day)
  8956. (user-error "Don't know which date to use for the calendar command"))
  8957. (let* ((oldf (symbol-function 'calendar-cursor-to-date))
  8958. (point (point))
  8959. (date (calendar-gregorian-from-absolute
  8960. (get-text-property point 'day)))
  8961. ;; the following 2 vars are needed in the calendar
  8962. (displayed-month (car date))
  8963. (displayed-year (nth 2 date)))
  8964. (unwind-protect
  8965. (progn
  8966. (fset 'calendar-cursor-to-date
  8967. (lambda (&optional error dummy)
  8968. (calendar-gregorian-from-absolute
  8969. (get-text-property point 'day))))
  8970. (call-interactively cmd))
  8971. (fset 'calendar-cursor-to-date oldf))))
  8972. (defun org-agenda-phases-of-moon ()
  8973. "Display the phases of the moon for the 3 months around the cursor date."
  8974. (interactive)
  8975. (org-agenda-execute-calendar-command 'calendar-lunar-phases))
  8976. (defun org-agenda-holidays ()
  8977. "Display the holidays for the 3 months around the cursor date."
  8978. (interactive)
  8979. (org-agenda-execute-calendar-command 'calendar-list-holidays))
  8980. (defvar calendar-longitude) ; defined in calendar.el
  8981. (defvar calendar-latitude) ; defined in calendar.el
  8982. (defvar calendar-location-name) ; defined in calendar.el
  8983. (defun org-agenda-sunrise-sunset (arg)
  8984. "Display sunrise and sunset for the cursor date.
  8985. Latitude and longitude can be specified with the variables
  8986. `calendar-latitude' and `calendar-longitude'. When called with prefix
  8987. argument, latitude and longitude will be prompted for."
  8988. (interactive "P")
  8989. (require 'solar)
  8990. (let ((calendar-longitude (if arg nil calendar-longitude))
  8991. (calendar-latitude (if arg nil calendar-latitude))
  8992. (calendar-location-name
  8993. (if arg "the given coordinates" calendar-location-name)))
  8994. (org-agenda-execute-calendar-command 'calendar-sunrise-sunset)))
  8995. (defun org-agenda-goto-calendar ()
  8996. "Open the Emacs calendar with the date at the cursor."
  8997. (interactive)
  8998. (org-agenda-check-type t 'agenda 'timeline)
  8999. (let* ((day (or (get-text-property (min (1- (point-max)) (point)) 'day)
  9000. (user-error "Don't know which date to open in calendar")))
  9001. (date (calendar-gregorian-from-absolute day))
  9002. (calendar-move-hook nil)
  9003. (calendar-view-holidays-initially-flag nil)
  9004. (calendar-view-diary-initially-flag nil))
  9005. (calendar)
  9006. (calendar-goto-date date)))
  9007. ;;;###autoload
  9008. (defun org-calendar-goto-agenda ()
  9009. "Compute the Org agenda for the calendar date displayed at the cursor.
  9010. This is a command that has to be installed in `calendar-mode-map'."
  9011. (interactive)
  9012. ;; Temporarily disable sticky agenda since user clearly wants to
  9013. ;; refresh view anyway.
  9014. (let ((org-agenda-buffer-tmp-name "*Org Agenda(a)*")
  9015. (org-agenda-sticky nil))
  9016. (org-agenda-list nil (calendar-absolute-from-gregorian
  9017. (calendar-cursor-to-date))
  9018. nil)))
  9019. (defun org-agenda-convert-date ()
  9020. (interactive)
  9021. (org-agenda-check-type t 'agenda 'timeline)
  9022. (let ((day (get-text-property (min (1- (point-max)) (point)) 'day))
  9023. date s)
  9024. (unless day
  9025. (user-error "Don't know which date to convert"))
  9026. (setq date (calendar-gregorian-from-absolute day))
  9027. (setq s (concat
  9028. "Gregorian: " (calendar-date-string date) "\n"
  9029. "ISO: " (calendar-iso-date-string date) "\n"
  9030. "Day of Yr: " (calendar-day-of-year-string date) "\n"
  9031. "Julian: " (calendar-julian-date-string date) "\n"
  9032. "Astron. JD: " (calendar-astro-date-string date)
  9033. " (Julian date number at noon UTC)\n"
  9034. "Hebrew: " (calendar-hebrew-date-string date) " (until sunset)\n"
  9035. "Islamic: " (calendar-islamic-date-string date) " (until sunset)\n"
  9036. "French: " (calendar-french-date-string date) "\n"
  9037. "Bahá’í: " (calendar-bahai-date-string date) " (until sunset)\n"
  9038. "Mayan: " (calendar-mayan-date-string date) "\n"
  9039. "Coptic: " (calendar-coptic-date-string date) "\n"
  9040. "Ethiopic: " (calendar-ethiopic-date-string date) "\n"
  9041. "Persian: " (calendar-persian-date-string date) "\n"
  9042. "Chinese: " (calendar-chinese-date-string date) "\n"))
  9043. (with-output-to-temp-buffer "*Dates*"
  9044. (princ s))
  9045. (org-fit-window-to-buffer (get-buffer-window "*Dates*"))))
  9046. ;;; Bulk commands
  9047. (defun org-agenda-bulk-marked-p ()
  9048. "Non-nil when current entry is marked for bulk action."
  9049. (eq (get-char-property (point-at-bol) 'type)
  9050. 'org-marked-entry-overlay))
  9051. (defun org-agenda-bulk-mark (&optional arg)
  9052. "Mark the entry at point for future bulk action."
  9053. (interactive "p")
  9054. (dotimes (i (or arg 1))
  9055. (unless (org-get-at-bol 'org-agenda-diary-link)
  9056. (let* ((m (org-get-at-bol 'org-hd-marker))
  9057. ov)
  9058. (unless (org-agenda-bulk-marked-p)
  9059. (unless m (user-error "Nothing to mark at point"))
  9060. (push m org-agenda-bulk-marked-entries)
  9061. (setq ov (make-overlay (point-at-bol) (+ 2 (point-at-bol))))
  9062. (org-overlay-display ov (concat org-agenda-bulk-mark-char " ")
  9063. (org-get-todo-face "TODO")
  9064. 'evaporate)
  9065. (overlay-put ov 'type 'org-marked-entry-overlay))
  9066. (end-of-line 1)
  9067. (or (ignore-errors
  9068. (goto-char (next-single-property-change (point) 'org-hd-marker)))
  9069. (beginning-of-line 2))
  9070. (while (and (get-char-property (point) 'invisible) (not (eobp)))
  9071. (beginning-of-line 2))
  9072. (message "%d entries marked for bulk action"
  9073. (length org-agenda-bulk-marked-entries))))))
  9074. (defun org-agenda-bulk-mark-all ()
  9075. "Mark all entries for future agenda bulk action."
  9076. (interactive)
  9077. (org-agenda-bulk-mark-regexp "."))
  9078. (defun org-agenda-bulk-mark-regexp (regexp)
  9079. "Mark entries matching REGEXP for future agenda bulk action."
  9080. (interactive "sMark entries matching regexp: ")
  9081. (let ((entries-marked 0) txt-at-point)
  9082. (save-excursion
  9083. (goto-char (point-min))
  9084. (goto-char (next-single-property-change (point) 'org-hd-marker))
  9085. (while (and (re-search-forward regexp nil t)
  9086. (setq txt-at-point (get-text-property (point) 'txt)))
  9087. (if (get-char-property (point) 'invisible)
  9088. (beginning-of-line 2)
  9089. (when (string-match regexp txt-at-point)
  9090. (setq entries-marked (1+ entries-marked))
  9091. (call-interactively 'org-agenda-bulk-mark)))))
  9092. (if (not entries-marked)
  9093. (message "No entry matching this regexp."))))
  9094. (defun org-agenda-bulk-unmark (&optional arg)
  9095. "Unmark the entry at point for future bulk action."
  9096. (interactive "P")
  9097. (if arg
  9098. (org-agenda-bulk-unmark-all)
  9099. (cond ((org-agenda-bulk-marked-p)
  9100. (org-agenda-bulk-remove-overlays
  9101. (point-at-bol) (+ 2 (point-at-bol)))
  9102. (setq org-agenda-bulk-marked-entries
  9103. (delete (org-get-at-bol 'org-hd-marker)
  9104. org-agenda-bulk-marked-entries))
  9105. (end-of-line 1)
  9106. (or (ignore-errors
  9107. (goto-char (next-single-property-change (point) 'txt)))
  9108. (beginning-of-line 2))
  9109. (while (and (get-char-property (point) 'invisible) (not (eobp)))
  9110. (beginning-of-line 2))
  9111. (message "%d entries left marked for bulk action"
  9112. (length org-agenda-bulk-marked-entries)))
  9113. (t (message "No entry to unmark here")))))
  9114. (defun org-agenda-bulk-toggle-all ()
  9115. "Toggle all marks for bulk action."
  9116. (interactive)
  9117. (save-excursion
  9118. (goto-char (point-min))
  9119. (while (ignore-errors
  9120. (goto-char (next-single-property-change (point) 'org-hd-marker)))
  9121. (org-agenda-bulk-toggle))))
  9122. (defun org-agenda-bulk-toggle ()
  9123. "Toggle the mark at point for bulk action."
  9124. (interactive)
  9125. (if (org-agenda-bulk-marked-p)
  9126. (org-agenda-bulk-unmark)
  9127. (org-agenda-bulk-mark)))
  9128. (defun org-agenda-bulk-remove-overlays (&optional beg end)
  9129. "Remove the mark overlays between BEG and END in the agenda buffer.
  9130. BEG and END default to the buffer limits.
  9131. This only removes the overlays, it does not remove the markers
  9132. from the list in `org-agenda-bulk-marked-entries'."
  9133. (interactive)
  9134. (mapc (lambda (ov)
  9135. (and (eq (overlay-get ov 'type) 'org-marked-entry-overlay)
  9136. (delete-overlay ov)))
  9137. (overlays-in (or beg (point-min)) (or end (point-max)))))
  9138. (defun org-agenda-bulk-unmark-all ()
  9139. "Remove all marks in the agenda buffer.
  9140. This will remove the markers and the overlays."
  9141. (interactive)
  9142. (if (null org-agenda-bulk-marked-entries)
  9143. (message "No entry to unmark")
  9144. (mapc (lambda (m) (move-marker m nil)) org-agenda-bulk-marked-entries)
  9145. (setq org-agenda-bulk-marked-entries nil)
  9146. (org-agenda-bulk-remove-overlays (point-min) (point-max))))
  9147. (defcustom org-agenda-persistent-marks nil
  9148. "Non-nil means marked items will stay marked after a bulk action.
  9149. You can toggle this interactively by typing `p' when prompted for a
  9150. bulk action."
  9151. :group 'org-agenda
  9152. :version "24.1"
  9153. :type 'boolean)
  9154. (defun org-agenda-bulk-action (&optional arg)
  9155. "Execute an remote-editing action on all marked entries.
  9156. The prefix arg is passed through to the command if possible."
  9157. (interactive "P")
  9158. ;; Make sure we have markers, and only valid ones
  9159. (unless org-agenda-bulk-marked-entries (user-error "No entries are marked"))
  9160. (mapc
  9161. (lambda (m)
  9162. (unless (and (markerp m)
  9163. (marker-buffer m)
  9164. (buffer-live-p (marker-buffer m))
  9165. (marker-position m))
  9166. (user-error "Marker %s for bulk command is invalid" m)))
  9167. org-agenda-bulk-marked-entries)
  9168. ;; Prompt for the bulk command
  9169. (let* ((msg (if org-agenda-persistent-marks "Bulk (persistent): " "Bulk: ")))
  9170. (message (concat msg "[$]arch [A]rch->sib [t]odo [+/-]tag [s]chd [d]eadline [r]efile "
  9171. "[S]catter [f]unction "
  9172. (when org-agenda-bulk-custom-functions
  9173. (concat " Custom: ["
  9174. (mapconcat (lambda(f) (char-to-string (car f)))
  9175. org-agenda-bulk-custom-functions "")
  9176. "]"))))
  9177. (catch 'exit
  9178. (let* ((action (read-char-exclusive))
  9179. (org-log-refile (if org-log-refile 'time nil))
  9180. (entries (reverse org-agenda-bulk-marked-entries))
  9181. (org-overriding-default-time
  9182. (if (get-text-property (point) 'org-agenda-date-header)
  9183. (org-get-cursor-date)))
  9184. redo-at-end
  9185. cmd rfloc state e tag pos (cnt 0) (cntskip 0))
  9186. (cond
  9187. ((equal action ?p)
  9188. (let ((org-agenda-persistent-marks
  9189. (not org-agenda-persistent-marks)))
  9190. (org-agenda-bulk-action)
  9191. (throw 'exit nil)))
  9192. ((equal action ?$)
  9193. (setq cmd '(org-agenda-archive)))
  9194. ((equal action ?A)
  9195. (setq cmd '(org-agenda-archive-to-archive-sibling)))
  9196. ((member action '(?r ?w))
  9197. (setq rfloc (org-refile-get-location
  9198. "Refile to"
  9199. (marker-buffer (car entries))
  9200. org-refile-allow-creating-parent-nodes))
  9201. (if (nth 3 rfloc)
  9202. (setcar (nthcdr 3 rfloc)
  9203. (move-marker (make-marker) (nth 3 rfloc)
  9204. (or (get-file-buffer (nth 1 rfloc))
  9205. (find-buffer-visiting (nth 1 rfloc))
  9206. (error "This should not happen")))))
  9207. (setq cmd (list 'org-agenda-refile nil (list 'quote rfloc) t)
  9208. redo-at-end t))
  9209. ((equal action ?t)
  9210. (setq state (completing-read
  9211. "Todo state: "
  9212. (with-current-buffer (marker-buffer (car entries))
  9213. (mapcar #'list org-todo-keywords-1))))
  9214. (setq cmd `(let ((org-inhibit-blocking t)
  9215. (org-inhibit-logging 'note))
  9216. (org-agenda-todo ,state))))
  9217. ((memq action '(?- ?+))
  9218. (setq tag (completing-read
  9219. (format "Tag to %s: " (if (eq action ?+) "add" "remove"))
  9220. (with-current-buffer (marker-buffer (car entries))
  9221. (delq nil
  9222. (mapcar (lambda (x) (and (stringp (car x)) x))
  9223. org-current-tag-alist)))))
  9224. (setq cmd `(org-agenda-set-tags ,tag ,(if (eq action ?+) ''on ''off))))
  9225. ((memq action '(?s ?d))
  9226. (let* ((time
  9227. (unless arg
  9228. (org-read-date
  9229. nil nil nil
  9230. (if (eq action ?s) "(Re)Schedule to" "(Re)Set Deadline to")
  9231. org-overriding-default-time)))
  9232. (c1 (if (eq action ?s) 'org-agenda-schedule
  9233. 'org-agenda-deadline)))
  9234. ;; Make sure to not prompt for a note when bulk
  9235. ;; rescheduling as Org cannot cope with simultaneous Org.
  9236. ;; Besides, it could be annoying depending on the number
  9237. ;; of items re-scheduled.
  9238. (setq cmd `(eval '(let ((org-log-reschedule
  9239. (and org-log-reschedule 'time)))
  9240. (,c1 arg ,time))))))
  9241. ((equal action ?S)
  9242. (if (not (org-agenda-check-type nil 'agenda 'timeline 'todo))
  9243. (user-error "Can't scatter tasks in \"%s\" agenda view" org-agenda-type)
  9244. (let ((days (read-number
  9245. (format "Scatter tasks across how many %sdays: "
  9246. (if arg "week" "")) 7)))
  9247. (setq cmd
  9248. `(let ((distance (1+ (random ,days))))
  9249. (if arg
  9250. (let ((dist distance)
  9251. (day-of-week
  9252. (calendar-day-of-week
  9253. (calendar-gregorian-from-absolute (org-today)))))
  9254. (dotimes (i (1+ dist))
  9255. (while (member day-of-week org-agenda-weekend-days)
  9256. (cl-incf distance)
  9257. (cl-incf day-of-week)
  9258. (when (= day-of-week 7)
  9259. (setq day-of-week 0)))
  9260. (cl-incf day-of-week)
  9261. (when (= day-of-week 7)
  9262. (setq day-of-week 0)))))
  9263. ;; silently fail when try to replan a sexp entry
  9264. (condition-case nil
  9265. (let* ((date (calendar-gregorian-from-absolute
  9266. (+ (org-today) distance)))
  9267. (time (encode-time 0 0 0 (nth 1 date) (nth 0 date)
  9268. (nth 2 date))))
  9269. (org-agenda-schedule nil time))
  9270. (error nil)))))))
  9271. ((assoc action org-agenda-bulk-custom-functions)
  9272. (setq cmd (list (cadr (assoc action org-agenda-bulk-custom-functions)))
  9273. redo-at-end t))
  9274. ((equal action ?f)
  9275. (setq cmd (list (intern
  9276. (completing-read "Function: "
  9277. obarray 'fboundp t nil nil)))))
  9278. (t (user-error "Invalid bulk action")))
  9279. ;; Sort the markers, to make sure that parents are handled before children
  9280. (setq entries (sort entries
  9281. (lambda (a b)
  9282. (cond
  9283. ((equal (marker-buffer a) (marker-buffer b))
  9284. (< (marker-position a) (marker-position b)))
  9285. (t
  9286. (string< (buffer-name (marker-buffer a))
  9287. (buffer-name (marker-buffer b))))))))
  9288. ;; Now loop over all markers and apply cmd
  9289. (while (setq e (pop entries))
  9290. (setq pos (text-property-any (point-min) (point-max) 'org-hd-marker e))
  9291. (if (not pos)
  9292. (progn (message "Skipping removed entry at %s" e)
  9293. (setq cntskip (1+ cntskip)))
  9294. (goto-char pos)
  9295. (let (org-loop-over-headlines-in-active-region)
  9296. (eval cmd))
  9297. ;; `post-command-hook' is not run yet. We make sure any
  9298. ;; pending log note is processed.
  9299. (when (or (memq 'org-add-log-note (default-value 'post-command-hook))
  9300. (memq 'org-add-log-note post-command-hook))
  9301. (org-add-log-note))
  9302. (setq cnt (1+ cnt))))
  9303. (when redo-at-end (org-agenda-redo))
  9304. (unless org-agenda-persistent-marks
  9305. (org-agenda-bulk-unmark-all))
  9306. (message "Acted on %d entries%s%s"
  9307. cnt
  9308. (if (= cntskip 0)
  9309. ""
  9310. (format ", skipped %d (disappeared before their turn)"
  9311. cntskip))
  9312. (if (not org-agenda-persistent-marks)
  9313. "" " (kept marked)"))))))
  9314. (defun org-agenda-capture (&optional with-time)
  9315. "Call `org-capture' with the date at point.
  9316. With a `C-1' prefix, use the HH:MM value at point (if any) or the
  9317. current HH:MM time."
  9318. (interactive "P")
  9319. (if (not (eq major-mode 'org-agenda-mode))
  9320. (user-error "You cannot do this outside of agenda buffers")
  9321. (let ((org-overriding-default-time
  9322. (org-get-cursor-date (equal with-time 1))))
  9323. (call-interactively 'org-capture))))
  9324. ;;; Dragging agenda lines forward/backward
  9325. (defun org-agenda-reapply-filters ()
  9326. "Re-apply all agenda filters."
  9327. (mapcar
  9328. (lambda(f) (when (car f) (org-agenda-filter-apply (car f) (cadr f) t)))
  9329. `((,org-agenda-tag-filter tag)
  9330. (,org-agenda-category-filter category)
  9331. (,org-agenda-regexp-filter regexp)
  9332. (,org-agenda-effort-filter effort)
  9333. (,(get 'org-agenda-tag-filter :preset-filter) tag)
  9334. (,(get 'org-agenda-category-filter :preset-filter) category)
  9335. (,(get 'org-agenda-effort-filter :preset-filter) effort)
  9336. (,(get 'org-agenda-regexp-filter :preset-filter) regexp))))
  9337. (defun org-agenda-drag-line-forward (arg &optional backward)
  9338. "Drag an agenda line forward by ARG lines.
  9339. When the optional argument `backward' is non-nil, move backward."
  9340. (interactive "p")
  9341. (let ((inhibit-read-only t) lst line)
  9342. (if (or (not (get-text-property (point) 'txt))
  9343. (save-excursion
  9344. (dotimes (n arg)
  9345. (move-beginning-of-line (if backward 0 2))
  9346. (push (not (get-text-property (point) 'txt)) lst))
  9347. (delq nil lst)))
  9348. (message "Cannot move line forward")
  9349. (let ((end (save-excursion (move-beginning-of-line 2) (point))))
  9350. (move-beginning-of-line 1)
  9351. (setq line (buffer-substring (point) end))
  9352. (delete-region (point) end)
  9353. (move-beginning-of-line (funcall (if backward '1- '1+) arg))
  9354. (insert line)
  9355. (org-agenda-reapply-filters)
  9356. (org-agenda-mark-clocking-task)
  9357. (move-beginning-of-line 0)))))
  9358. (defun org-agenda-drag-line-backward (arg)
  9359. "Drag an agenda line backward by ARG lines."
  9360. (interactive "p")
  9361. (org-agenda-drag-line-forward arg t))
  9362. ;;; Flagging notes
  9363. (defun org-agenda-show-the-flagging-note ()
  9364. "Display the flagging note in the other window.
  9365. When called a second time in direct sequence, offer to remove the FLAGGING
  9366. tag and (if present) the flagging note."
  9367. (interactive)
  9368. (let ((hdmarker (org-get-at-bol 'org-hd-marker))
  9369. (win (selected-window))
  9370. note heading newhead)
  9371. (unless hdmarker
  9372. (user-error "No linked entry at point"))
  9373. (if (and (eq this-command last-command)
  9374. (y-or-n-p "Unflag and remove any flagging note? "))
  9375. (progn
  9376. (org-agenda-remove-flag hdmarker)
  9377. (let ((win (get-buffer-window "*Flagging Note*")))
  9378. (and win (delete-window win)))
  9379. (message "Entry unflagged"))
  9380. (setq note (org-entry-get hdmarker "THEFLAGGINGNOTE"))
  9381. (unless note
  9382. (user-error "No flagging note"))
  9383. (org-kill-new note)
  9384. (org-switch-to-buffer-other-window "*Flagging Note*")
  9385. (erase-buffer)
  9386. (insert note)
  9387. (goto-char (point-min))
  9388. (while (re-search-forward "\\\\n" nil t)
  9389. (replace-match "\n" t t))
  9390. (goto-char (point-min))
  9391. (select-window win)
  9392. (message "%s" (substitute-command-keys "Flagging note pushed to \
  9393. kill ring. Press `\\[org-agenda-show-the-flagging-note]' again to remove \
  9394. tag and note")))))
  9395. (defun org-agenda-remove-flag (marker)
  9396. "Remove the FLAGGED tag and any flagging note in the entry."
  9397. (let (newhead)
  9398. (org-with-point-at marker
  9399. (org-toggle-tag "FLAGGED" 'off)
  9400. (org-entry-delete nil "THEFLAGGINGNOTE")
  9401. (setq newhead (org-get-heading)))
  9402. (org-agenda-change-all-lines newhead marker)
  9403. (message "Entry unflagged")))
  9404. (defun org-agenda-get-any-marker (&optional pos)
  9405. (or (get-text-property (or pos (point-at-bol)) 'org-hd-marker)
  9406. (get-text-property (or pos (point-at-bol)) 'org-marker)))
  9407. ;;; Appointment reminders
  9408. (defvar appt-time-msg-list) ; defined in appt.el
  9409. ;;;###autoload
  9410. (defun org-agenda-to-appt (&optional refresh filter &rest args)
  9411. "Activate appointments found in `org-agenda-files'.
  9412. With a `\\[universal-argument]' prefix, refresh the list of \
  9413. appointments.
  9414. If FILTER is t, interactively prompt the user for a regular
  9415. expression, and filter out entries that don't match it.
  9416. If FILTER is a string, use this string as a regular expression
  9417. for filtering entries out.
  9418. If FILTER is a function, filter out entries against which
  9419. calling the function returns nil. This function takes one
  9420. argument: an entry from `org-agenda-get-day-entries'.
  9421. FILTER can also be an alist with the car of each cell being
  9422. either `headline' or `category'. For example:
  9423. \\='((headline \"IMPORTANT\")
  9424. (category \"Work\"))
  9425. will only add headlines containing IMPORTANT or headlines
  9426. belonging to the \"Work\" category.
  9427. ARGS are symbols indicating what kind of entries to consider.
  9428. By default `org-agenda-to-appt' will use :deadline*, :scheduled*
  9429. \(i.e., deadlines and scheduled items with a hh:mm specification)
  9430. and :timestamp entries. See the docstring of `org-diary' for
  9431. details and examples.
  9432. If an entry has a APPT_WARNTIME property, its value will be used
  9433. to override `appt-message-warning-time'."
  9434. (interactive "P")
  9435. (if refresh (setq appt-time-msg-list nil))
  9436. (if (eq filter t)
  9437. (setq filter (read-from-minibuffer "Regexp filter: ")))
  9438. (let* ((cnt 0) ; count added events
  9439. (scope (or args '(:deadline* :scheduled* :timestamp)))
  9440. (org-agenda-new-buffers nil)
  9441. (org-deadline-warning-days 0)
  9442. ;; Do not use `org-today' here because appt only takes
  9443. ;; time and without date as argument, so it may pass wrong
  9444. ;; information otherwise
  9445. (today (org-date-to-gregorian
  9446. (time-to-days (current-time))))
  9447. (org-agenda-restrict nil)
  9448. (files (org-agenda-files 'unrestricted)) entries file
  9449. (org-agenda-buffer nil))
  9450. ;; Get all entries which may contain an appt
  9451. (org-agenda-prepare-buffers files)
  9452. (while (setq file (pop files))
  9453. (setq entries
  9454. (delq nil
  9455. (append entries
  9456. (apply 'org-agenda-get-day-entries
  9457. file today scope)))))
  9458. ;; Map thru entries and find if we should filter them out
  9459. (mapc
  9460. (lambda (x)
  9461. (let* ((evt (org-trim
  9462. (replace-regexp-in-string
  9463. org-bracket-link-regexp "\\3"
  9464. (or (get-text-property 1 'txt x) ""))))
  9465. (cat (get-text-property (1- (length x)) 'org-category x))
  9466. (tod (get-text-property 1 'time-of-day x))
  9467. (ok (or (null filter)
  9468. (and (stringp filter) (string-match filter evt))
  9469. (and (functionp filter) (funcall filter x))
  9470. (and (listp filter)
  9471. (let ((cat-filter (cadr (assq 'category filter)))
  9472. (evt-filter (cadr (assq 'headline filter))))
  9473. (or (and (stringp cat-filter)
  9474. (string-match cat-filter cat))
  9475. (and (stringp evt-filter)
  9476. (string-match evt-filter evt)))))))
  9477. (wrn (get-text-property 1 'warntime x)))
  9478. ;; FIXME: Shall we remove text-properties for the appt text?
  9479. ;; (setq evt (set-text-properties 0 (length evt) nil evt))
  9480. (when (and ok tod (not (string-match "\\`DONE\\|CANCELLED" evt)))
  9481. (setq tod (concat "00" (number-to-string tod)))
  9482. (setq tod (when (string-match
  9483. "\\([0-9]\\{1,2\\}\\)\\([0-9]\\{2\\}\\)\\'" tod)
  9484. (concat (match-string 1 tod) ":"
  9485. (match-string 2 tod))))
  9486. (when (if (version< emacs-version "23.3")
  9487. (appt-add tod evt)
  9488. (appt-add tod evt wrn))
  9489. (setq cnt (1+ cnt))))))
  9490. entries)
  9491. (org-release-buffers org-agenda-new-buffers)
  9492. (if (eq cnt 0)
  9493. (message "No event to add")
  9494. (message "Added %d event%s for today" cnt (if (> cnt 1) "s" "")))))
  9495. (defun org-agenda-today-p (date)
  9496. "Non nil when DATE means today.
  9497. DATE is either a list of the form (month day year) or a number of
  9498. days as returned by `calendar-absolute-from-gregorian' or
  9499. `org-today'. This function considers `org-extend-today-until'
  9500. when defining today."
  9501. (eq (org-today)
  9502. (if (consp date) (calendar-absolute-from-gregorian date) date)))
  9503. (defun org-agenda-todo-yesterday (&optional arg)
  9504. "Like `org-agenda-todo' but the time of change will be 23:59 of yesterday."
  9505. (interactive "P")
  9506. (let* ((org-use-effective-time t)
  9507. (hour (nth 2 (decode-time (org-current-time))))
  9508. (org-extend-today-until (1+ hour)))
  9509. (org-agenda-todo arg)))
  9510. (provide 'org-agenda)
  9511. ;;; org-agenda.el ends here