org-agenda.el 412 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689
  1. ;;; org-agenda.el --- Dynamic task and appointment lists for Org
  2. ;; Copyright (C) 2004-2020 Free Software Foundation, Inc.
  3. ;; Author: Carsten Dominik <carsten at orgmode dot org>
  4. ;; Keywords: outlines, hypermedia, calendar, wp
  5. ;; Homepage: https://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 <https://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 'ol)
  43. (require 'org)
  44. (require 'org-macs)
  45. (require 'org-refile)
  46. (declare-function diary-add-to-list "diary-lib"
  47. (date string specifier &optional marker globcolor literal))
  48. (declare-function calendar-iso-to-absolute "cal-iso" (date))
  49. (declare-function calendar-astro-date-string "cal-julian" (&optional date))
  50. (declare-function calendar-bahai-date-string "cal-bahai" (&optional date))
  51. (declare-function calendar-chinese-date-string "cal-china" (&optional date))
  52. (declare-function calendar-coptic-date-string "cal-coptic" (&optional date))
  53. (declare-function calendar-ethiopic-date-string "cal-coptic" (&optional date))
  54. (declare-function calendar-french-date-string "cal-french" (&optional date))
  55. (declare-function calendar-goto-date "cal-move" (date))
  56. (declare-function calendar-hebrew-date-string "cal-hebrew" (&optional date))
  57. (declare-function calendar-islamic-date-string "cal-islam" (&optional date))
  58. (declare-function calendar-iso-date-string "cal-iso" (&optional date))
  59. (declare-function calendar-iso-from-absolute "cal-iso" (date))
  60. (declare-function calendar-julian-date-string "cal-julian" (&optional date))
  61. (declare-function calendar-mayan-date-string "cal-mayan" (&optional date))
  62. (declare-function calendar-persian-date-string "cal-persia" (&optional date))
  63. (declare-function calendar-check-holidays "holidays" (date))
  64. (declare-function org-columns-remove-overlays "org-colview" ())
  65. (declare-function org-datetree-find-date-create "org-datetree"
  66. (date &optional keep-restriction))
  67. (declare-function org-columns-quit "org-colview" ())
  68. (declare-function diary-date-display-form "diary-lib" (&optional type))
  69. (declare-function org-mobile-write-agenda-for-mobile "org-mobile" (file))
  70. (declare-function org-habit-insert-consistency-graphs
  71. "org-habit" (&optional line))
  72. (declare-function org-is-habit-p "org-habit" (&optional pom))
  73. (declare-function org-habit-parse-todo "org-habit" (&optional pom))
  74. (declare-function org-habit-get-priority "org-habit" (habit &optional moment))
  75. (declare-function org-agenda-columns "org-colview" ())
  76. (declare-function org-add-archive-files "org-archive" (files))
  77. (declare-function org-capture "org-capture" (&optional goto keys))
  78. (declare-function org-clock-modify-effort-estimate "org-clock" (&optional value))
  79. (defvar calendar-mode-map)
  80. (defvar org-clock-current-task)
  81. (defvar org-current-tag-alist)
  82. (defvar org-mobile-force-id-on-agenda-items)
  83. (defvar org-habit-show-habits)
  84. (defvar org-habit-show-habits-only-for-today)
  85. (defvar org-habit-show-all-today)
  86. (defvar org-habit-scheduled-past-days)
  87. ;; Defined somewhere in this file, but used before definition.
  88. (defvar org-agenda-buffer-name "*Org Agenda*")
  89. (defvar org-agenda-overriding-header nil)
  90. (defvar org-agenda-title-append nil)
  91. (with-no-warnings (defvar entry)) ;; unprefixed, from calendar.el
  92. (with-no-warnings (defvar date)) ;; unprefixed, from calendar.el
  93. (defvar original-date) ; dynamically scoped, calendar.el does scope this
  94. (defvar org-agenda-undo-list nil
  95. "List of undoable operations in the agenda since last refresh.")
  96. (defvar org-agenda-pending-undo-list nil
  97. "In a series of undo commands, this is the list of remaining undo items.")
  98. (defcustom org-agenda-confirm-kill 1
  99. "When set, remote killing from the agenda buffer needs confirmation.
  100. When t, a confirmation is always needed. When a number N, confirmation is
  101. only needed when the text to be killed contains more than N non-white lines."
  102. :group 'org-agenda
  103. :type '(choice
  104. (const :tag "Never" nil)
  105. (const :tag "Always" t)
  106. (integer :tag "When more than N lines")))
  107. (defcustom org-agenda-compact-blocks nil
  108. "Non-nil means make the block agenda more compact.
  109. This is done globally by leaving out lines like the agenda span
  110. name and week number or the separator lines."
  111. :group 'org-agenda
  112. :type 'boolean)
  113. (defcustom org-agenda-block-separator ?=
  114. "The separator between blocks in the agenda.
  115. If this is a string, it will be used as the separator, with a newline added.
  116. If it is a character, it will be repeated to fill the window width.
  117. If nil the separator is disabled. In `org-agenda-custom-commands' this
  118. addresses the separator between the current and the previous block."
  119. :group 'org-agenda
  120. :type '(choice
  121. (const :tag "Disabled" nil)
  122. (character)
  123. (string)))
  124. (defgroup org-agenda-export nil
  125. "Options concerning exporting agenda views in Org mode."
  126. :tag "Org Agenda Export"
  127. :group 'org-agenda)
  128. (defcustom org-agenda-with-colors t
  129. "Non-nil means use colors in agenda views."
  130. :group 'org-agenda-export
  131. :type 'boolean)
  132. (defcustom org-agenda-exporter-settings nil
  133. "Alist of variable/value pairs that should be active during agenda export.
  134. This is a good place to set options for ps-print and for htmlize.
  135. Note that the way this is implemented, the values will be evaluated
  136. before assigned to the variables. So make sure to quote values you do
  137. *not* want evaluated, for example
  138. (setq org-agenda-exporter-settings
  139. \\='((ps-print-color-p \\='black-white)))"
  140. :group 'org-agenda-export
  141. :type '(repeat
  142. (list
  143. (variable)
  144. (sexp :tag "Value"))))
  145. (defcustom org-agenda-before-write-hook '(org-agenda-add-entry-text)
  146. "Hook run in a temporary buffer before writing the agenda to an export file.
  147. A useful function for this hook is `org-agenda-add-entry-text'."
  148. :group 'org-agenda-export
  149. :type 'hook
  150. :options '(org-agenda-add-entry-text))
  151. (defcustom org-agenda-add-entry-text-maxlines 0
  152. "Maximum number of entry text lines to be added to agenda.
  153. This is only relevant when `org-agenda-add-entry-text' is part of
  154. `org-agenda-before-write-hook', which is the default.
  155. When this is 0, nothing will happen. When it is greater than 0, it
  156. specifies the maximum number of lines that will be added for each entry
  157. that is listed in the agenda view.
  158. Note that this variable is not used during display, only when exporting
  159. the agenda. For agenda display, see the variables `org-agenda-entry-text-mode'
  160. and `org-agenda-entry-text-maxlines'."
  161. :group 'org-agenda
  162. :type 'integer)
  163. (defcustom org-agenda-add-entry-text-descriptive-links t
  164. "Non-nil means export org-links as descriptive links in agenda added text.
  165. This variable applies to the text added to the agenda when
  166. `org-agenda-add-entry-text-maxlines' is larger than 0.
  167. When this variable nil, the URL will (also) be shown."
  168. :group 'org-agenda
  169. :type 'boolean)
  170. (defcustom org-agenda-export-html-style nil
  171. "The style specification for exported HTML Agenda files.
  172. If this variable contains a string, it will replace the default <style>
  173. section as produced by `htmlize'.
  174. Since there are different ways of setting style information, this variable
  175. needs to contain the full HTML structure to provide a style, including the
  176. surrounding HTML tags. The style specifications should include definitions
  177. the fonts used by the agenda, here is an example:
  178. <style type=\"text/css\">
  179. p { font-weight: normal; color: gray; }
  180. .org-agenda-structure {
  181. font-size: 110%;
  182. color: #003399;
  183. font-weight: 600;
  184. }
  185. .org-todo {
  186. color: #cc6666;
  187. font-weight: bold;
  188. }
  189. .org-agenda-done {
  190. color: #339933;
  191. }
  192. .org-done {
  193. color: #339933;
  194. }
  195. .title { text-align: center; }
  196. .todo, .deadline { color: red; }
  197. .done { color: green; }
  198. </style>
  199. or, if you want to keep the style in a file,
  200. <link rel=\"stylesheet\" type=\"text/css\" href=\"mystyles.css\">
  201. As the value of this option simply gets inserted into the HTML <head> header,
  202. you can \"misuse\" it to also add other text to the header."
  203. :group 'org-agenda-export
  204. :group 'org-export-html
  205. :type '(choice
  206. (const nil)
  207. (string)))
  208. (defcustom org-agenda-persistent-filter nil
  209. "When set, keep filters from one agenda view to the next."
  210. :group 'org-agenda
  211. :type 'boolean)
  212. (defgroup org-agenda-custom-commands nil
  213. "Options concerning agenda views in Org mode."
  214. :tag "Org Agenda Custom Commands"
  215. :group 'org-agenda)
  216. (defconst org-sorting-choice
  217. '(choice
  218. (const time-up) (const time-down)
  219. (const timestamp-up) (const timestamp-down)
  220. (const scheduled-up) (const scheduled-down)
  221. (const deadline-up) (const deadline-down)
  222. (const ts-up) (const ts-down)
  223. (const tsia-up) (const tsia-down)
  224. (const category-keep) (const category-up) (const category-down)
  225. (const tag-down) (const tag-up)
  226. (const priority-up) (const priority-down)
  227. (const todo-state-up) (const todo-state-down)
  228. (const effort-up) (const effort-down)
  229. (const habit-up) (const habit-down)
  230. (const alpha-up) (const alpha-down)
  231. (const user-defined-up) (const user-defined-down))
  232. "Sorting choices.")
  233. ;; Keep custom values for `org-agenda-filter-preset' compatible with
  234. ;; the new variable `org-agenda-tag-filter-preset'.
  235. (defvaralias 'org-agenda-filter-preset 'org-agenda-tag-filter-preset)
  236. (defvaralias 'org-agenda-filter 'org-agenda-tag-filter)
  237. (defvar org-agenda-entry-types '(:deadline :scheduled :timestamp :sexp)
  238. "List of types searched for when creating the daily/weekly agenda.
  239. This variable is a list of symbols that controls the types of
  240. items that appear in the daily/weekly agenda. Allowed symbols in this
  241. list are
  242. :timestamp List items containing a date stamp or date range matching
  243. the selected date. This includes sexp entries in angular
  244. brackets.
  245. :sexp List entries resulting from plain diary-like sexps.
  246. :deadline List deadline due on that date. When the date is today,
  247. also list any deadlines past due, or due within
  248. `org-deadline-warning-days'.
  249. :deadline* Same as above, but only include the deadline if it has an
  250. hour specification as [h]h:mm.
  251. :scheduled List all items which are scheduled for the given date.
  252. The diary for *today* also contains items which were
  253. scheduled earlier and are not yet marked DONE.
  254. :scheduled* Same as above, but only include the scheduled item if it
  255. has an hour specification as [h]h:mm.
  256. By default, all four non-starred types are turned on.
  257. When :scheduled* or :deadline* are included, :schedule or :deadline
  258. will be ignored.
  259. Never set this variable globally using `setq', because then it
  260. will apply to all future agenda commands. Instead, bind it with
  261. `let' to scope it dynamically into the agenda-constructing
  262. command. A good way to set it is through options in
  263. `org-agenda-custom-commands'. For a more flexible (though
  264. somewhat less efficient) way of determining what is included in
  265. the daily/weekly agenda, see `org-agenda-skip-function'.")
  266. (defconst org-agenda-custom-commands-local-options
  267. `(repeat :tag "Local settings for this command. Remember to quote values"
  268. (choice :tag "Setting"
  269. (list :tag "Heading for this block"
  270. (const org-agenda-overriding-header)
  271. (string :tag "Headline"))
  272. (list :tag "Files to be searched"
  273. (const org-agenda-files)
  274. (list
  275. (const :format "" quote)
  276. (repeat (file))))
  277. (list :tag "Sorting strategy"
  278. (const org-agenda-sorting-strategy)
  279. (list
  280. (const :format "" quote)
  281. (repeat
  282. ,org-sorting-choice)))
  283. (list :tag "Prefix format"
  284. (const org-agenda-prefix-format :value " %-12:c%?-12t% s")
  285. (string))
  286. (list :tag "Number of days in agenda"
  287. (const org-agenda-span)
  288. (list
  289. (const :format "" quote)
  290. (choice (const :tag "Day" day)
  291. (const :tag "Week" week)
  292. (const :tag "Fortnight" fortnight)
  293. (const :tag "Month" month)
  294. (const :tag "Year" year)
  295. (integer :tag "Custom"))))
  296. (list :tag "Fixed starting date"
  297. (const org-agenda-start-day)
  298. (string :value "2007-11-01"))
  299. (list :tag "Start on day of week"
  300. (const org-agenda-start-on-weekday)
  301. (choice :value 1
  302. (const :tag "Today" nil)
  303. (integer :tag "Weekday No.")))
  304. (list :tag "Include data from diary"
  305. (const org-agenda-include-diary)
  306. (boolean))
  307. (list :tag "Deadline Warning days"
  308. (const org-deadline-warning-days)
  309. (integer :value 1))
  310. (list :tag "Category filter preset"
  311. (const org-agenda-category-filter-preset)
  312. (list
  313. (const :format "" quote)
  314. (repeat
  315. (string :tag "+category or -category"))))
  316. (list :tag "Tags filter preset"
  317. (const org-agenda-tag-filter-preset)
  318. (list
  319. (const :format "" quote)
  320. (repeat
  321. (string :tag "+tag or -tag"))))
  322. (list :tag "Effort filter preset"
  323. (const org-agenda-effort-filter-preset)
  324. (list
  325. (const :format "" quote)
  326. (repeat
  327. (string :tag "+=10 or -=10 or +<10 or ->10"))))
  328. (list :tag "Regexp filter preset"
  329. (const org-agenda-regexp-filter-preset)
  330. (list
  331. (const :format "" quote)
  332. (repeat
  333. (string :tag "+regexp or -regexp"))))
  334. (list :tag "Set daily/weekly entry types"
  335. (const org-agenda-entry-types)
  336. (list
  337. (const :format "" quote)
  338. (set :greedy t :value ,org-agenda-entry-types
  339. (const :deadline)
  340. (const :scheduled)
  341. (const :deadline*)
  342. (const :scheduled*)
  343. (const :timestamp)
  344. (const :sexp))))
  345. (list :tag "Columns format"
  346. (const org-overriding-columns-format)
  347. (string :tag "Format"))
  348. (list :tag "Standard skipping condition"
  349. :value (org-agenda-skip-function '(org-agenda-skip-entry-if))
  350. (const org-agenda-skip-function)
  351. (list
  352. (const :format "" quote)
  353. (list
  354. (choice
  355. :tag "Skipping range"
  356. (const :tag "Skip entry" org-agenda-skip-entry-if)
  357. (const :tag "Skip subtree" org-agenda-skip-subtree-if))
  358. (repeat :inline t :tag "Conditions for skipping"
  359. (choice
  360. :tag "Condition type"
  361. (list :tag "Regexp matches" :inline t
  362. (const :format "" regexp)
  363. (regexp))
  364. (list :tag "Regexp does not match" :inline t
  365. (const :format "" notregexp)
  366. (regexp))
  367. (list :tag "TODO state is" :inline t
  368. (const todo)
  369. (choice
  370. (const :tag "Any not-done state" todo)
  371. (const :tag "Any done state" done)
  372. (const :tag "Any state" any)
  373. (list :tag "Keyword list"
  374. (const :format "" quote)
  375. (repeat (string :tag "Keyword")))))
  376. (list :tag "TODO state is not" :inline t
  377. (const nottodo)
  378. (choice
  379. (const :tag "Any not-done state" todo)
  380. (const :tag "Any done state" done)
  381. (const :tag "Any state" any)
  382. (list :tag "Keyword list"
  383. (const :format "" quote)
  384. (repeat (string :tag "Keyword")))))
  385. (const :tag "scheduled" scheduled)
  386. (const :tag "not scheduled" notscheduled)
  387. (const :tag "deadline" deadline)
  388. (const :tag "no deadline" notdeadline)
  389. (const :tag "timestamp" timestamp)
  390. (const :tag "no timestamp" nottimestamp))))))
  391. (list :tag "Non-standard skipping condition"
  392. :value (org-agenda-skip-function)
  393. (const org-agenda-skip-function)
  394. (sexp :tag "Function or form (quoted!)"))
  395. (list :tag "Any variable"
  396. (variable :tag "Variable")
  397. (sexp :tag "Value (sexp)"))))
  398. "Selection of examples for agenda command settings.
  399. This will be spliced into the custom type of
  400. `org-agenda-custom-commands'.")
  401. (defcustom org-agenda-custom-commands
  402. '(("n" "Agenda and all TODOs" ((agenda "") (alltodo ""))))
  403. "Custom commands for the agenda.
  404. \\<org-mode-map>
  405. These commands will be offered on the splash screen displayed by the
  406. agenda dispatcher `\\[org-agenda]'. Each entry is a list like this:
  407. (key desc type match settings files)
  408. key The key (one or more characters as a string) to be associated
  409. with the command.
  410. desc A description of the command, when omitted or nil, a default
  411. description is built using MATCH.
  412. type The command type, any of the following symbols:
  413. agenda The daily/weekly agenda.
  414. todo Entries with a specific TODO keyword, in all agenda files.
  415. search Entries containing search words entry or headline.
  416. tags Tags/Property/TODO match in all agenda files.
  417. tags-todo Tags/P/T match in all agenda files, TODO entries only.
  418. todo-tree Sparse tree of specific TODO keyword in *current* file.
  419. tags-tree Sparse tree with all tags matches in *current* file.
  420. occur-tree Occur sparse tree for *current* file.
  421. ... A user-defined function.
  422. match What to search for:
  423. - a single keyword for TODO keyword searches
  424. - a tags/property/todo match expression for searches
  425. - a word search expression for text searches.
  426. - a regular expression for occur searches
  427. For all other commands, this should be the empty string.
  428. settings A list of option settings, similar to that in a let form, so like
  429. this: ((opt1 val1) (opt2 val2) ...). The values will be
  430. evaluated at the moment of execution, so quote them when needed.
  431. files A list of files to write the produced agenda buffer to with
  432. the command `org-store-agenda-views'.
  433. If a file name ends in \".html\", an HTML version of the buffer
  434. is written out. If it ends in \".ps\", a postscript version is
  435. produced. Otherwise, only the plain text is written to the file.
  436. You can also define a set of commands, to create a composite agenda buffer.
  437. In this case, an entry looks like this:
  438. (key desc (cmd1 cmd2 ...) general-settings-for-whole-set files)
  439. where
  440. desc A description string to be displayed in the dispatcher menu.
  441. cmd An agenda command, similar to the above. However, tree commands
  442. are not allowed, but instead you can get agenda and global todo list.
  443. So valid commands for a set are:
  444. (agenda \"\" settings)
  445. (alltodo \"\" settings)
  446. (stuck \"\" settings)
  447. (todo \"match\" settings files)
  448. (search \"match\" settings files)
  449. (tags \"match\" settings files)
  450. (tags-todo \"match\" settings files)
  451. Each command can carry a list of options, and another set of options can be
  452. given for the whole set of commands. Individual command options take
  453. precedence over the general options.
  454. When using several characters as key to a command, the first characters
  455. are prefix commands. For the dispatcher to display useful information, you
  456. should provide a description for the prefix, like
  457. (setq org-agenda-custom-commands
  458. \\='((\"h\" . \"HOME + Name tag searches\") ; describe prefix \"h\"
  459. (\"hl\" tags \"+HOME+Lisa\")
  460. (\"hp\" tags \"+HOME+Peter\")
  461. (\"hk\" tags \"+HOME+Kim\")))"
  462. :group 'org-agenda-custom-commands
  463. :type `(repeat
  464. (choice :value ("x" "Describe command here" tags "" nil)
  465. (list :tag "Single command"
  466. (string :tag "Access Key(s) ")
  467. (option (string :tag "Description"))
  468. (choice
  469. (const :tag "Agenda" agenda)
  470. (const :tag "TODO list" alltodo)
  471. (const :tag "Search words" search)
  472. (const :tag "Stuck projects" stuck)
  473. (const :tag "Tags/Property match (all agenda files)" tags)
  474. (const :tag "Tags/Property match of TODO entries (all agenda files)" tags-todo)
  475. (const :tag "TODO keyword search (all agenda files)" todo)
  476. (const :tag "Tags sparse tree (current buffer)" tags-tree)
  477. (const :tag "TODO keyword tree (current buffer)" todo-tree)
  478. (const :tag "Occur tree (current buffer)" occur-tree)
  479. (sexp :tag "Other, user-defined function"))
  480. (string :tag "Match (only for some commands)")
  481. ,org-agenda-custom-commands-local-options
  482. (option (repeat :tag "Export" (file :tag "Export to"))))
  483. (list :tag "Command series, all agenda files"
  484. (string :tag "Access Key(s)")
  485. (string :tag "Description ")
  486. (repeat :tag "Component"
  487. (choice
  488. (list :tag "Agenda"
  489. (const :format "" agenda)
  490. (const :tag "" :format "" "")
  491. ,org-agenda-custom-commands-local-options)
  492. (list :tag "TODO list (all keywords)"
  493. (const :format "" alltodo)
  494. (const :tag "" :format "" "")
  495. ,org-agenda-custom-commands-local-options)
  496. (list :tag "Search words"
  497. (const :format "" search)
  498. (string :tag "Match")
  499. ,org-agenda-custom-commands-local-options)
  500. (list :tag "Stuck projects"
  501. (const :format "" stuck)
  502. (const :tag "" :format "" "")
  503. ,org-agenda-custom-commands-local-options)
  504. (list :tag "Tags/Property match (all agenda files)"
  505. (const :format "" tags)
  506. (string :tag "Match")
  507. ,org-agenda-custom-commands-local-options)
  508. (list :tag "Tags/Property match of TODO entries (all agenda files)"
  509. (const :format "" tags-todo)
  510. (string :tag "Match")
  511. ,org-agenda-custom-commands-local-options)
  512. (list :tag "TODO keyword search"
  513. (const :format "" todo)
  514. (string :tag "Match")
  515. ,org-agenda-custom-commands-local-options)
  516. (list :tag "Other, user-defined function"
  517. (symbol :tag "function")
  518. (string :tag "Match")
  519. ,org-agenda-custom-commands-local-options)))
  520. (repeat :tag "Settings for entire command set"
  521. (list (variable :tag "Any variable")
  522. (sexp :tag "Value")))
  523. (option (repeat :tag "Export" (file :tag "Export to"))))
  524. (cons :tag "Prefix key documentation"
  525. (string :tag "Access Key(s)")
  526. (string :tag "Description ")))))
  527. (defcustom org-agenda-query-register ?o
  528. "The register holding the current query string.
  529. The purpose of this is that if you construct a query string interactively,
  530. you can then use it to define a custom command."
  531. :group 'org-agenda-custom-commands
  532. :type 'character)
  533. (defcustom org-stuck-projects
  534. '("+LEVEL=2/-DONE" ("TODO" "NEXT" "NEXTACTION") nil "")
  535. "How to identify stuck projects.
  536. This is a list of four items:
  537. 1. A tags/todo/property matcher string that is used to identify a project.
  538. See the manual for a description of tag and property searches.
  539. The entire tree below a headline matched by this is considered one project.
  540. 2. A list of TODO keywords identifying non-stuck projects.
  541. If the project subtree contains any headline with one of these todo
  542. keywords, the project is considered to be not stuck. If you specify
  543. \"*\" as a keyword, any TODO keyword will mark the project unstuck.
  544. 3. A list of tags identifying non-stuck projects.
  545. If the project subtree contains any headline with one of these tags,
  546. the project is considered to be not stuck. If you specify \"*\" as
  547. a tag, any tag will mark the project unstuck. Note that this is about
  548. the explicit presence of a tag somewhere in the subtree, inherited
  549. tags do not count here. If inherited tags make a project not stuck,
  550. use \"-TAG\" in the tags part of the matcher under (1.) above.
  551. 4. An arbitrary regular expression matching non-stuck projects.
  552. If the project turns out to be not stuck, search continues also in the
  553. subtree to see if any of the subtasks have project status.
  554. See also the variable `org-tags-match-list-sublevels' which applies
  555. to projects matched by this search as well.
  556. After defining this variable, you may use `org-agenda-list-stuck-projects'
  557. \(bound to `\\[org-agenda] #') to produce the list."
  558. :group 'org-agenda-custom-commands
  559. :type '(list
  560. (string :tag "Tags/TODO match to identify a project")
  561. (repeat :tag "Projects are *not* stuck if they have an entry with \
  562. TODO keyword any of" (string))
  563. (repeat :tag "Projects are *not* stuck if they have an entry with \
  564. TAG being any of" (string))
  565. (regexp :tag "Projects are *not* stuck if this regexp matches inside \
  566. the subtree")))
  567. (defgroup org-agenda-skip nil
  568. "Options concerning skipping parts of agenda files."
  569. :tag "Org Agenda Skip"
  570. :group 'org-agenda)
  571. (defcustom org-agenda-skip-function-global nil
  572. "Function to be called at each match during agenda construction.
  573. If this function returns nil, the current match should not be skipped.
  574. If the function decided to skip an agenda match, is must return the
  575. buffer position from which the search should be continued.
  576. This may also be a Lisp form, which will be evaluated.
  577. This variable will be applied to every agenda match, including
  578. tags/property searches and TODO lists. So try to make the test function
  579. do its checking as efficiently as possible. To implement a skipping
  580. condition just for specific agenda commands, use the variable
  581. `org-agenda-skip-function' which can be set in the options section
  582. of custom agenda commands."
  583. :group 'org-agenda-skip
  584. :type 'sexp)
  585. (defgroup org-agenda-daily/weekly nil
  586. "Options concerning the daily/weekly agenda."
  587. :tag "Org Agenda Daily/Weekly"
  588. :group 'org-agenda)
  589. (defgroup org-agenda-todo-list nil
  590. "Options concerning the global todo list agenda view."
  591. :tag "Org Agenda Todo List"
  592. :group 'org-agenda)
  593. (defgroup org-agenda-match-view nil
  594. "Options concerning the general tags/property/todo match agenda view."
  595. :tag "Org Agenda Match View"
  596. :group 'org-agenda)
  597. (defgroup org-agenda-search-view nil
  598. "Options concerning the search agenda view."
  599. :tag "Org Agenda Search View"
  600. :group 'org-agenda)
  601. (defvar org-agenda-archives-mode nil
  602. "Non-nil means the agenda will include archived items.
  603. If this is the symbol `trees', trees in the selected agenda scope
  604. that are marked with the ARCHIVE tag will be included anyway. When this is
  605. t, also all archive files associated with the current selection of agenda
  606. files will be included.")
  607. (defcustom org-agenda-restriction-lock-highlight-subtree t
  608. "Non-nil means highlight the whole subtree when restriction is active.
  609. Otherwise only highlight the headline. Highlighting the whole subtree is
  610. useful to ensure no edits happen beyond the restricted region."
  611. :group 'org-agenda
  612. :type 'boolean)
  613. (defcustom org-agenda-skip-comment-trees t
  614. "Non-nil means skip trees that start with the COMMENT keyword.
  615. When nil, these trees are also scanned by agenda commands."
  616. :group 'org-agenda-skip
  617. :type 'boolean)
  618. (defcustom org-agenda-todo-list-sublevels t
  619. "Non-nil means check also the sublevels of a TODO entry for TODO entries.
  620. When nil, the sublevels of a TODO entry are not checked, resulting in
  621. potentially much shorter TODO lists."
  622. :group 'org-agenda-skip
  623. :group 'org-agenda-todo-list
  624. :type 'boolean)
  625. (defcustom org-agenda-todo-ignore-with-date nil
  626. "Non-nil means don't show entries with a date in the global todo list.
  627. You can use this if you prefer to mark mere appointments with a TODO keyword,
  628. but don't want them to show up in the TODO list.
  629. When this is set, it also covers deadlines and scheduled items, the settings
  630. of `org-agenda-todo-ignore-scheduled' and `org-agenda-todo-ignore-deadlines'
  631. will be ignored.
  632. See also the variable `org-agenda-tags-todo-honor-ignore-options'."
  633. :group 'org-agenda-skip
  634. :group 'org-agenda-todo-list
  635. :type 'boolean)
  636. (defcustom org-agenda-todo-ignore-timestamp nil
  637. "Non-nil means don't show entries with a timestamp.
  638. This applies when creating the global todo list.
  639. Valid values are:
  640. past Don't show entries for today or in the past.
  641. future Don't show entries with a timestamp in the future.
  642. The idea behind this is that if it has a future
  643. timestamp, you don't want to think about it until the
  644. date.
  645. all Don't show any entries with a timestamp in the global todo list.
  646. The idea behind this is that by setting a timestamp, you
  647. have already \"taken care\" of this item.
  648. This variable can also have an integer as a value. If positive (N),
  649. todos with a timestamp N or more days in the future will be ignored. If
  650. negative (-N), todos with a timestamp N or more days in the past will be
  651. ignored. If 0, todos with a timestamp either today or in the future will
  652. be ignored. For example, a value of -1 will exclude todos with a
  653. timestamp in the past (yesterday or earlier), while a value of 7 will
  654. exclude todos with a timestamp a week or more in the future.
  655. See also `org-agenda-todo-ignore-with-date'.
  656. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  657. to make his option also apply to the tags-todo list."
  658. :group 'org-agenda-skip
  659. :group 'org-agenda-todo-list
  660. :version "24.1"
  661. :type '(choice
  662. (const :tag "Ignore future timestamp todos" future)
  663. (const :tag "Ignore past or present timestamp todos" past)
  664. (const :tag "Ignore all timestamp todos" all)
  665. (const :tag "Show timestamp todos" nil)
  666. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  667. (defcustom org-agenda-todo-ignore-scheduled nil
  668. "Non-nil means, ignore some scheduled TODO items when making TODO list.
  669. This applies when creating the global todo list.
  670. Valid values are:
  671. past Don't show entries scheduled today or in the past.
  672. future Don't show entries scheduled in the future.
  673. The idea behind this is that by scheduling it, you don't want to
  674. think about it until the scheduled date.
  675. all Don't show any scheduled entries in the global todo list.
  676. The idea behind this is that by scheduling it, you have already
  677. \"taken care\" of this item.
  678. t Same as `all', for backward compatibility.
  679. This variable can also have an integer as a value. See
  680. `org-agenda-todo-ignore-timestamp' for more details.
  681. See also `org-agenda-todo-ignore-with-date'.
  682. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  683. to make his option also apply to the tags-todo list."
  684. :group 'org-agenda-skip
  685. :group 'org-agenda-todo-list
  686. :type '(choice
  687. (const :tag "Ignore future-scheduled todos" future)
  688. (const :tag "Ignore past- or present-scheduled todos" past)
  689. (const :tag "Ignore all scheduled todos" all)
  690. (const :tag "Ignore all scheduled todos (compatibility)" t)
  691. (const :tag "Show scheduled todos" nil)
  692. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  693. (defcustom org-agenda-todo-ignore-deadlines nil
  694. "Non-nil means ignore some deadline TODO items when making TODO list.
  695. There are different motivations for using different values, please think
  696. carefully when configuring this variable.
  697. This applies when creating the global TODO list.
  698. Valid values are:
  699. near Don't show near deadline entries. A deadline is near when it is
  700. closer than `org-deadline-warning-days' days. The idea behind this
  701. is that such items will appear in the agenda anyway.
  702. far Don't show TODO entries where a deadline has been defined, but
  703. is not going to happen anytime soon. This is useful if you want to use
  704. the TODO list to figure out what to do now.
  705. past Don't show entries with a deadline timestamp for today or in the past.
  706. future Don't show entries with a deadline timestamp in the future, not even
  707. when they become `near' ones. Use it with caution.
  708. all Ignore all TODO entries that do have a deadline.
  709. t Same as `near', for backward compatibility.
  710. This variable can also have an integer as a value. See
  711. `org-agenda-todo-ignore-timestamp' for more details.
  712. See also `org-agenda-todo-ignore-with-date'.
  713. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  714. to make his option also apply to the tags-todo list."
  715. :group 'org-agenda-skip
  716. :group 'org-agenda-todo-list
  717. :type '(choice
  718. (const :tag "Ignore near deadlines" near)
  719. (const :tag "Ignore near deadlines (compatibility)" t)
  720. (const :tag "Ignore far deadlines" far)
  721. (const :tag "Ignore all TODOs with a deadlines" all)
  722. (const :tag "Show all TODOs, even if they have a deadline" nil)
  723. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  724. (defcustom org-agenda-todo-ignore-time-comparison-use-seconds nil
  725. "Time unit to use when possibly ignoring an agenda item.
  726. See the docstring of various `org-agenda-todo-ignore-*' options.
  727. The default is to compare time stamps using days. An item is thus
  728. considered to be in the future if it is at least one day after today.
  729. Non-nil means to compare time stamps using seconds. An item is then
  730. considered future if it has a time value later than current time."
  731. :group 'org-agenda-skip
  732. :group 'org-agenda-todo-list
  733. :version "24.4"
  734. :package-version '(Org . "8.0")
  735. :type '(choice
  736. (const :tag "Compare time with days" nil)
  737. (const :tag "Compare time with seconds" t)))
  738. (defcustom org-agenda-tags-todo-honor-ignore-options nil
  739. "Non-nil means honor todo-list ignores options also in tags-todo search.
  740. The variables
  741. `org-agenda-todo-ignore-with-date',
  742. `org-agenda-todo-ignore-timestamp',
  743. `org-agenda-todo-ignore-scheduled',
  744. `org-agenda-todo-ignore-deadlines'
  745. make the global TODO list skip entries that have time stamps of certain
  746. kinds. If this option is set, the same options will also apply for the
  747. tags-todo search, which is the general tags/property matcher
  748. restricted to unfinished TODO entries only."
  749. :group 'org-agenda-skip
  750. :group 'org-agenda-todo-list
  751. :group 'org-agenda-match-view
  752. :type 'boolean)
  753. (defcustom org-agenda-skip-scheduled-if-done nil
  754. "Non-nil means don't show scheduled items in agenda when they are done.
  755. This is relevant for the daily/weekly agenda, not for the TODO list. It
  756. applies only to the actual date of the scheduling. Warnings about an item
  757. with a past scheduling dates are always turned off when the item is DONE."
  758. :group 'org-agenda-skip
  759. :group 'org-agenda-daily/weekly
  760. :type 'boolean)
  761. (defcustom org-agenda-skip-scheduled-if-deadline-is-shown nil
  762. "Non-nil means skip scheduling line if same entry shows because of deadline.
  763. In the agenda of today, an entry can show up multiple times
  764. because it is both scheduled and has a nearby deadline, and maybe
  765. a plain time stamp as well.
  766. When this variable is nil, the entry will be shown several times.
  767. When set to t, then only the deadline is shown and the fact that
  768. the entry is scheduled today or was scheduled previously is not
  769. shown.
  770. When set to the symbol `not-today', skip scheduled previously,
  771. but not scheduled today.
  772. When set to the symbol `repeated-after-deadline', skip scheduled
  773. items if they are repeated beyond the current deadline."
  774. :group 'org-agenda-skip
  775. :group 'org-agenda-daily/weekly
  776. :type '(choice
  777. (const :tag "Never" nil)
  778. (const :tag "Always" t)
  779. (const :tag "Not when scheduled today" not-today)
  780. (const :tag "When repeated past deadline" repeated-after-deadline)))
  781. (defcustom org-agenda-skip-timestamp-if-deadline-is-shown nil
  782. "Non-nil means skip timestamp line if same entry shows because of deadline.
  783. In the agenda of today, an entry can show up multiple times
  784. because it has both a plain timestamp and has a nearby deadline.
  785. When this variable is t, then only the deadline is shown and the
  786. fact that the entry has a timestamp for or including today is not
  787. shown. When this variable is nil, the entry will be shown
  788. several times."
  789. :group 'org-agenda-skip
  790. :group 'org-agenda-daily/weekly
  791. :version "24.1"
  792. :type '(choice
  793. (const :tag "Never" nil)
  794. (const :tag "Always" t)))
  795. (defcustom org-agenda-skip-deadline-if-done nil
  796. "Non-nil means don't show deadlines when the corresponding item is done.
  797. When nil, the deadline is still shown and should give you a happy feeling.
  798. This is relevant for the daily/weekly agenda. It applies only to the
  799. actual date of the deadline. Warnings about approaching and past-due
  800. deadlines are always turned off when the item is DONE."
  801. :group 'org-agenda-skip
  802. :group 'org-agenda-daily/weekly
  803. :type 'boolean)
  804. (defcustom org-agenda-skip-deadline-prewarning-if-scheduled nil
  805. "Non-nil means skip deadline prewarning when entry is also scheduled.
  806. This will apply on all days where a prewarning for the deadline would
  807. be shown, but not at the day when the entry is actually due. On that day,
  808. the deadline will be shown anyway.
  809. This variable may be set to nil, t, the symbol `pre-scheduled',
  810. or a number which will then give the number of days before the actual
  811. deadline when the prewarnings should resume. The symbol `pre-scheduled'
  812. eliminates the deadline prewarning only prior to the scheduled date.
  813. This can be used in a workflow where the first showing of the deadline will
  814. trigger you to schedule it, and then you don't want to be reminded of it
  815. because you will take care of it on the day when scheduled."
  816. :group 'org-agenda-skip
  817. :group 'org-agenda-daily/weekly
  818. :version "24.1"
  819. :type '(choice
  820. (const :tag "Always show prewarning" nil)
  821. (const :tag "Remove prewarning prior to scheduled date" pre-scheduled)
  822. (const :tag "Remove prewarning if entry is scheduled" t)
  823. (integer :tag "Restart prewarning N days before deadline")))
  824. (defcustom org-agenda-skip-scheduled-delay-if-deadline nil
  825. "Non-nil means skip scheduled delay when entry also has a deadline.
  826. This variable may be set to nil, t, the symbol `post-deadline',
  827. or a number which will then give the number of days after the actual
  828. scheduled date when the delay should expire. The symbol `post-deadline'
  829. eliminates the schedule delay when the date is posterior to the deadline."
  830. :group 'org-agenda-skip
  831. :group 'org-agenda-daily/weekly
  832. :version "24.4"
  833. :package-version '(Org . "8.0")
  834. :type '(choice
  835. (const :tag "Always honor delay" nil)
  836. (const :tag "Ignore delay if posterior to the deadline" post-deadline)
  837. (const :tag "Ignore delay if entry has a deadline" t)
  838. (integer :tag "Honor delay up until N days after the scheduled date")))
  839. (defcustom org-agenda-skip-additional-timestamps-same-entry nil
  840. "When nil, multiple same-day timestamps in entry make multiple agenda lines.
  841. When non-nil, after the search for timestamps has matched once in an
  842. entry, the rest of the entry will not be searched."
  843. :group 'org-agenda-skip
  844. :type 'boolean)
  845. (defcustom org-agenda-skip-timestamp-if-done nil
  846. "Non-nil means don't select item by timestamp or -range if it is DONE."
  847. :group 'org-agenda-skip
  848. :group 'org-agenda-daily/weekly
  849. :type 'boolean)
  850. (defcustom org-agenda-dim-blocked-tasks t
  851. "Non-nil means dim blocked tasks in the agenda display.
  852. This causes some overhead during agenda construction, but if you
  853. have turned on `org-enforce-todo-dependencies',
  854. `org-enforce-todo-checkbox-dependencies', or any other blocking
  855. mechanism, this will create useful feedback in the agenda.
  856. Instead of t, this variable can also have the value `invisible'.
  857. Then blocked tasks will be invisible and only become visible when
  858. they become unblocked. An exemption to this behavior is when a task is
  859. blocked because of unchecked checkboxes below it. Since checkboxes do
  860. not show up in the agenda views, making this task invisible you remove any
  861. trace from agenda views that there is something to do. Therefore, a task
  862. that is blocked because of checkboxes will never be made invisible, it
  863. will only be dimmed."
  864. :group 'org-agenda-daily/weekly
  865. :group 'org-agenda-todo-list
  866. :version "24.3"
  867. :type '(choice
  868. (const :tag "Do not dim" nil)
  869. (const :tag "Dim to a gray face" t)
  870. (const :tag "Make invisible" invisible)))
  871. (defgroup org-agenda-startup nil
  872. "Options concerning initial settings in the Agenda in Org Mode."
  873. :tag "Org Agenda Startup"
  874. :group 'org-agenda)
  875. (defcustom org-agenda-menu-show-matcher t
  876. "Non-nil means show the match string in the agenda dispatcher menu.
  877. When nil, the matcher string is not shown, but is put into the help-echo
  878. property so than moving the mouse over the command shows it.
  879. Setting it to nil is good if matcher strings are very long and/or if
  880. you want to use two-columns display (see `org-agenda-menu-two-columns')."
  881. :group 'org-agenda
  882. :version "24.1"
  883. :type 'boolean)
  884. (defcustom org-agenda-menu-two-columns nil
  885. "Non-nil means, use two columns to show custom commands in the dispatcher.
  886. If you use this, you probably want to set `org-agenda-menu-show-matcher'
  887. to nil."
  888. :group 'org-agenda
  889. :version "24.1"
  890. :type 'boolean)
  891. (defcustom org-agenda-finalize-hook nil
  892. "Hook run just before displaying an agenda buffer.
  893. The buffer is still writable when the hook is called.
  894. You can modify some of the buffer substrings but you should be
  895. extra careful not to modify the text properties of the agenda
  896. headlines as the agenda display heavily relies on them."
  897. :group 'org-agenda-startup
  898. :type 'hook)
  899. (defcustom org-agenda-mouse-1-follows-link nil
  900. "Non-nil means mouse-1 on a link will follow the link in the agenda.
  901. A longer mouse click will still set point. Needs to be set
  902. before org.el is loaded."
  903. :group 'org-agenda-startup
  904. :type 'boolean)
  905. (defcustom org-agenda-start-with-follow-mode nil
  906. "The initial value of follow mode in a newly created agenda window."
  907. :group 'org-agenda-startup
  908. :type 'boolean)
  909. (defcustom org-agenda-follow-indirect nil
  910. "Non-nil means `org-agenda-follow-mode' displays only the
  911. current item's tree, in an indirect buffer."
  912. :group 'org-agenda
  913. :version "24.1"
  914. :type 'boolean)
  915. (defcustom org-agenda-show-outline-path t
  916. "Non-nil means show outline path in echo area after line motion."
  917. :group 'org-agenda-startup
  918. :type 'boolean)
  919. (defcustom org-agenda-start-with-entry-text-mode nil
  920. "The initial value of entry-text-mode in a newly created agenda window."
  921. :group 'org-agenda-startup
  922. :type 'boolean)
  923. (defcustom org-agenda-entry-text-maxlines 5
  924. "Number of text lines to be added when `E' is pressed in the agenda.
  925. Note that this variable only used during agenda display. To add entry text
  926. when exporting the agenda, configure the variable
  927. `org-agenda-add-entry-text-maxlines'."
  928. :group 'org-agenda
  929. :type 'integer)
  930. (defcustom org-agenda-entry-text-exclude-regexps nil
  931. "List of regular expressions to clean up entry text.
  932. The complete matches of all regular expressions in this list will be
  933. removed from entry text before it is shown in the agenda."
  934. :group 'org-agenda
  935. :type '(repeat (regexp)))
  936. (defcustom org-agenda-entry-text-leaders " > "
  937. "Text prepended to the entry text in agenda buffers."
  938. :version "24.4"
  939. :package-version '(Org . "8.0")
  940. :group 'org-agenda
  941. :type 'string)
  942. (defvar org-agenda-entry-text-cleanup-hook nil
  943. "Hook that is run after basic cleanup of entry text to be shown in agenda.
  944. This cleanup is done in a temporary buffer, so the function may inspect and
  945. change the entire buffer.
  946. Some default stuff like drawers and scheduling/deadline dates will already
  947. have been removed when this is called, as will any matches for regular
  948. expressions listed in `org-agenda-entry-text-exclude-regexps'.")
  949. (defvar org-agenda-include-inactive-timestamps nil
  950. "Non-nil means include inactive time stamps in agenda.
  951. Dynamically scoped.")
  952. (defgroup org-agenda-windows nil
  953. "Options concerning the windows used by the Agenda in Org Mode."
  954. :tag "Org Agenda Windows"
  955. :group 'org-agenda)
  956. (defcustom org-agenda-window-setup 'reorganize-frame
  957. "How the agenda buffer should be displayed.
  958. Possible values for this option are:
  959. current-window Show agenda in the current window, keeping all other windows.
  960. other-window Use `switch-to-buffer-other-window' to display agenda.
  961. only-window Show agenda, deleting all other windows.
  962. reorganize-frame Show only two windows on the current frame, the current
  963. window and the agenda.
  964. other-frame Use `switch-to-buffer-other-frame' to display agenda.
  965. Also, when exiting the agenda, kill that frame.
  966. See also the variable `org-agenda-restore-windows-after-quit'."
  967. :group 'org-agenda-windows
  968. :type '(choice
  969. (const current-window)
  970. (const other-frame)
  971. (const other-window)
  972. (const only-window)
  973. (const reorganize-frame)))
  974. (defcustom org-agenda-window-frame-fractions '(0.5 . 0.75)
  975. "The min and max height of the agenda window as a fraction of frame height.
  976. The value of the variable is a cons cell with two numbers between 0 and 1.
  977. It only matters if `org-agenda-window-setup' is `reorganize-frame'."
  978. :group 'org-agenda-windows
  979. :type '(cons (number :tag "Minimum") (number :tag "Maximum")))
  980. (defcustom org-agenda-restore-windows-after-quit nil
  981. "Non-nil means restore window configuration upon exiting agenda.
  982. Before the window configuration is changed for displaying the agenda,
  983. the current status is recorded. When the agenda is exited with
  984. `q' or `x' and this option is set, the old state is restored. If
  985. `org-agenda-window-setup' is `other-frame', the value of this
  986. option will be ignored."
  987. :group 'org-agenda-windows
  988. :type 'boolean)
  989. (defcustom org-agenda-span 'week
  990. "Number of days to include in overview display.
  991. Can be day, week, month, year, or any number of days.
  992. Custom commands can set this variable in the options section."
  993. :group 'org-agenda-daily/weekly
  994. :type '(choice (const :tag "Day" day)
  995. (const :tag "Week" week)
  996. (const :tag "Fortnight" fortnight)
  997. (const :tag "Month" month)
  998. (const :tag "Year" year)
  999. (integer :tag "Custom")))
  1000. (defcustom org-agenda-start-on-weekday 1
  1001. "Non-nil means start the overview always on the specified weekday.
  1002. 0 denotes Sunday, 1 denotes Monday, etc.
  1003. When nil, always start on the current day.
  1004. Custom commands can set this variable in the options section."
  1005. :group 'org-agenda-daily/weekly
  1006. :type '(choice (const :tag "Today" nil)
  1007. (integer :tag "Weekday No.")))
  1008. (defcustom org-agenda-show-all-dates t
  1009. "Non-nil means `org-agenda' shows every day in the selected range.
  1010. When nil, only the days which actually have entries are shown."
  1011. :group 'org-agenda-daily/weekly
  1012. :type 'boolean)
  1013. (defcustom org-agenda-format-date 'org-agenda-format-date-aligned
  1014. "Format string for displaying dates in the agenda.
  1015. Used by the daily/weekly agenda. This should be a format string
  1016. understood by `format-time-string', or a function returning the
  1017. formatted date as a string. The function must take a single
  1018. argument, a calendar-style date list like (month day year)."
  1019. :group 'org-agenda-daily/weekly
  1020. :type '(choice
  1021. (string :tag "Format string")
  1022. (function :tag "Function")))
  1023. (defun org-agenda-end-of-line ()
  1024. "Go to the end of visible line."
  1025. (interactive)
  1026. (goto-char (line-end-position)))
  1027. (defun org-agenda-format-date-aligned (date)
  1028. "Format a DATE string for display in the daily/weekly agenda.
  1029. This function makes sure that dates are aligned for easy reading."
  1030. (require 'cal-iso)
  1031. (let* ((dayname (calendar-day-name date))
  1032. (day (cadr date))
  1033. (day-of-week (calendar-day-of-week date))
  1034. (month (car date))
  1035. (monthname (calendar-month-name month))
  1036. (year (nth 2 date))
  1037. (iso-week (org-days-to-iso-week
  1038. (calendar-absolute-from-gregorian date)))
  1039. (weekyear (cond ((and (= month 1) (>= iso-week 52))
  1040. (1- year))
  1041. ((and (= month 12) (<= iso-week 1))
  1042. (1+ year))
  1043. (t year)))
  1044. (weekstring (if (= day-of-week 1)
  1045. (format " W%02d" iso-week)
  1046. "")))
  1047. (format "%-10s %2d %s %4d%s"
  1048. dayname day monthname year weekstring)))
  1049. (defcustom org-agenda-time-leading-zero nil
  1050. "Non-nil means use leading zero for military times in agenda.
  1051. For example, 9:30am would become 09:30 rather than 9:30."
  1052. :group 'org-agenda-daily/weekly
  1053. :version "24.1"
  1054. :type 'boolean)
  1055. (defcustom org-agenda-timegrid-use-ampm nil
  1056. "When set, show AM/PM style timestamps on the timegrid."
  1057. :group 'org-agenda
  1058. :version "24.1"
  1059. :type 'boolean)
  1060. (defun org-agenda-time-of-day-to-ampm (time)
  1061. "Convert TIME of a string like \"13:45\" to an AM/PM style time string."
  1062. (let* ((hour-number (string-to-number (substring time 0 -3)))
  1063. (minute (substring time -2))
  1064. (ampm "am"))
  1065. (cond
  1066. ((equal hour-number 12)
  1067. (setq ampm "pm"))
  1068. ((> hour-number 12)
  1069. (setq ampm "pm")
  1070. (setq hour-number (- hour-number 12))))
  1071. (concat
  1072. (if org-agenda-time-leading-zero
  1073. (format "%02d" hour-number)
  1074. (format "%02s" (number-to-string hour-number)))
  1075. ":" minute ampm)))
  1076. (defun org-agenda-time-of-day-to-ampm-maybe (time)
  1077. "Conditionally convert TIME to AM/PM format based on `org-agenda-timegrid-use-ampm'."
  1078. (if org-agenda-timegrid-use-ampm
  1079. (org-agenda-time-of-day-to-ampm time)
  1080. time))
  1081. (defcustom org-agenda-weekend-days '(6 0)
  1082. "Which days are weekend?
  1083. These days get the special face `org-agenda-date-weekend' in the agenda."
  1084. :group 'org-agenda-daily/weekly
  1085. :type '(set :greedy t
  1086. (const :tag "Monday" 1)
  1087. (const :tag "Tuesday" 2)
  1088. (const :tag "Wednesday" 3)
  1089. (const :tag "Thursday" 4)
  1090. (const :tag "Friday" 5)
  1091. (const :tag "Saturday" 6)
  1092. (const :tag "Sunday" 0)))
  1093. (defcustom org-agenda-move-date-from-past-immediately-to-today t
  1094. "Non-nil means jump to today when moving a past date forward in time.
  1095. When using S-right in the agenda to move a date forward, and the date
  1096. stamp currently points to the past, the first key press will move it
  1097. to today. When nil, just move one day forward even if the date stays
  1098. in the past."
  1099. :group 'org-agenda-daily/weekly
  1100. :version "24.1"
  1101. :type 'boolean)
  1102. (defcustom org-agenda-include-diary nil
  1103. "If non-nil, include in the agenda entries from the Emacs Calendar's diary.
  1104. Custom commands can set this variable in the options section."
  1105. :group 'org-agenda-daily/weekly
  1106. :type 'boolean)
  1107. (defcustom org-agenda-include-deadlines t
  1108. "If non-nil, include entries within their deadline warning period.
  1109. Custom commands can set this variable in the options section."
  1110. :group 'org-agenda-daily/weekly
  1111. :version "24.1"
  1112. :type 'boolean)
  1113. (defcustom org-agenda-show-future-repeats t
  1114. "Non-nil shows repeated entries in the future part of the agenda.
  1115. When set to the symbol `next' only the first future repeat is shown."
  1116. :group 'org-agenda-daily/weekly
  1117. :type '(choice
  1118. (const :tag "Show all repeated entries" t)
  1119. (const :tag "Show next repeated entry" next)
  1120. (const :tag "Do not show repeated entries" nil))
  1121. :version "26.1"
  1122. :package-version '(Org . "9.1")
  1123. :safe #'symbolp)
  1124. (defcustom org-agenda-prefer-last-repeat nil
  1125. "Non-nil sets date for repeated entries to their last repeat.
  1126. When nil, display SCHEDULED and DEADLINE dates at their base
  1127. date, and in today's agenda, as a reminder. Display plain
  1128. time-stamps, on the other hand, at every repeat date in the past
  1129. in addition to the base date.
  1130. When non-nil, show a repeated entry at its latest repeat date,
  1131. possibly being today even if it wasn't marked as done. This
  1132. setting is useful if you do not always mark repeated entries as
  1133. done and, yet, consider that reaching repeat date starts the task
  1134. anew.
  1135. When set to a list of strings, prefer last repeats only for
  1136. entries with these TODO keywords."
  1137. :group 'org-agenda-daily/weekly
  1138. :type '(choice
  1139. (const :tag "Prefer last repeat" t)
  1140. (const :tag "Prefer base date" nil)
  1141. (repeat :tag "Prefer last repeat for entries with these TODO keywords"
  1142. (string :tag "TODO keyword")))
  1143. :version "26.1"
  1144. :package-version '(Org . "9.1")
  1145. :safe (lambda (x) (or (booleanp x) (consp x))))
  1146. (defcustom org-scheduled-past-days 10000
  1147. "Number of days to continue listing scheduled items not marked DONE.
  1148. When an item is scheduled on a date, it shows up in the agenda on
  1149. this day and will be listed until it is marked done or for the
  1150. number of days given here."
  1151. :group 'org-agenda-daily/weekly
  1152. :type 'integer
  1153. :safe 'integerp)
  1154. (defcustom org-deadline-past-days 10000
  1155. "Number of days to warn about missed deadlines.
  1156. When an item has deadline on a date, it shows up in the agenda on
  1157. this day and will appear as a reminder until it is marked DONE or
  1158. for the number of days given here."
  1159. :group 'org-agenda-daily/weekly
  1160. :type 'integer
  1161. :version "26.1"
  1162. :package-version '(Org . "9.1")
  1163. :safe 'integerp)
  1164. (defcustom org-agenda-log-mode-items '(closed clock)
  1165. "List of items that should be shown in agenda log mode.
  1166. \\<org-agenda-mode-map>\
  1167. This list may contain the following symbols:
  1168. closed Show entries that have been closed on that day.
  1169. clock Show entries that have received clocked time on that day.
  1170. state Show all logged state changes.
  1171. Note that instead of changing this variable, you can also press \
  1172. `\\[universal-argument] \\[org-agenda-log-mode]' in
  1173. the agenda to display all available LOG items temporarily."
  1174. :group 'org-agenda-daily/weekly
  1175. :type '(set :greedy t (const closed) (const clock) (const state)))
  1176. (defcustom org-agenda-clock-consistency-checks
  1177. '(:max-duration "10:00" :min-duration 0 :max-gap "0:05"
  1178. :gap-ok-around ("4:00")
  1179. :default-face ((:background "DarkRed") (:foreground "white"))
  1180. :overlap-face nil :gap-face nil :no-end-time-face nil
  1181. :long-face nil :short-face nil)
  1182. "This is a property list, with the following keys:
  1183. :max-duration Mark clocking chunks that are longer than this time.
  1184. This is a time string like \"HH:MM\", or the number
  1185. of minutes as an integer.
  1186. :min-duration Mark clocking chunks that are shorter that this.
  1187. This is a time string like \"HH:MM\", or the number
  1188. of minutes as an integer.
  1189. :max-gap Mark gaps between clocking chunks that are longer than
  1190. this duration. A number of minutes, or a string
  1191. like \"HH:MM\".
  1192. :gap-ok-around List of times during the day which are usually not working
  1193. times. When a gap is detected, but the gap contains any
  1194. of these times, the gap is *not* reported. For example,
  1195. if this is (\"4:00\" \"13:00\") then gaps that contain
  1196. 4:00 in the morning (i.e. the night) and 13:00
  1197. (i.e. a typical lunch time) do not cause a warning.
  1198. You should have at least one time during the night in this
  1199. list, or otherwise the first task each morning will trigger
  1200. a warning because it follows a long gap.
  1201. Furthermore, the following properties can be used to define faces for
  1202. issue display.
  1203. :default-face the default face, if the specific face is undefined
  1204. :overlap-face face for overlapping clocks
  1205. :gap-face face for gaps between clocks
  1206. :no-end-time-face face for incomplete clocks
  1207. :long-face face for clock intervals that are too long
  1208. :short-face face for clock intervals that are too short"
  1209. :group 'org-agenda-daily/weekly
  1210. :group 'org-clock
  1211. :version "24.1"
  1212. :type 'plist)
  1213. (defcustom org-agenda-log-mode-add-notes t
  1214. "Non-nil means add first line of notes to log entries in agenda views.
  1215. If a log item like a state change or a clock entry is associated with
  1216. notes, the first line of these notes will be added to the entry in the
  1217. agenda display."
  1218. :group 'org-agenda-daily/weekly
  1219. :type 'boolean)
  1220. (defcustom org-agenda-start-with-log-mode nil
  1221. "The initial value of log-mode in a newly created agenda window.
  1222. See `org-agenda-log-mode' and `org-agenda-log-mode-items' for further
  1223. explanations on the possible values."
  1224. :group 'org-agenda-startup
  1225. :group 'org-agenda-daily/weekly
  1226. :type '(choice (const :tag "Don't show log items" nil)
  1227. (const :tag "Show only log items" only)
  1228. (const :tag "Show all possible log items" clockcheck)
  1229. (repeat :tag "Choose among possible values for `org-agenda-log-mode-items'"
  1230. (choice (const :tag "Show closed log items" closed)
  1231. (const :tag "Show clocked log items" clock)
  1232. (const :tag "Show all logged state changes" state)))))
  1233. (defcustom org-agenda-start-with-clockreport-mode nil
  1234. "The initial value of clockreport-mode in a newly created agenda window."
  1235. :group 'org-agenda-startup
  1236. :group 'org-agenda-daily/weekly
  1237. :type 'boolean)
  1238. (defcustom org-agenda-clockreport-parameter-plist '(:link t :maxlevel 2)
  1239. "Property list with parameters for the clocktable in clockreport mode.
  1240. This is the display mode that shows a clock table in the daily/weekly
  1241. agenda, the properties for this dynamic block can be set here.
  1242. The usual clocktable parameters are allowed here, but you cannot set
  1243. the properties :name, :tstart, :tend, :block, and :scope - these will
  1244. be overwritten to make sure the content accurately reflects the
  1245. current display in the agenda."
  1246. :group 'org-agenda-daily/weekly
  1247. :type 'plist)
  1248. (defvaralias 'org-agenda-search-view-search-words-only
  1249. 'org-agenda-search-view-always-boolean)
  1250. (defcustom org-agenda-search-view-always-boolean nil
  1251. "Non-nil means the search string is interpreted as individual parts.
  1252. The search string for search view can either be interpreted as a phrase,
  1253. or as a list of snippets that define a boolean search for a number of
  1254. strings.
  1255. When this is non-nil, the string will be split on whitespace, and each
  1256. snippet will be searched individually, and all must match in order to
  1257. select an entry. A snippet is then a single string of non-white
  1258. characters, or a string in double quotes, or a regexp in {} braces.
  1259. If a snippet is preceded by \"-\", the snippet must *not* match.
  1260. \"+\" is syntactic sugar for positive selection. Each snippet may
  1261. be found as a full word or a partial word, but see the variable
  1262. `org-agenda-search-view-force-full-words'.
  1263. When this is nil, search will look for the entire search phrase as one,
  1264. with each space character matching any amount of whitespace, including
  1265. line breaks.
  1266. Even when this is nil, you can still switch to Boolean search dynamically
  1267. by preceding the first snippet with \"+\" or \"-\". If the first snippet
  1268. is a regexp marked with braces like \"{abc}\", this will also switch to
  1269. boolean search."
  1270. :group 'org-agenda-search-view
  1271. :version "24.1"
  1272. :type 'boolean)
  1273. (defcustom org-agenda-search-view-force-full-words nil
  1274. "Non-nil means, search words must be matches as complete words.
  1275. When nil, they may also match part of a word."
  1276. :group 'org-agenda-search-view
  1277. :version "24.1"
  1278. :type 'boolean)
  1279. (defcustom org-agenda-search-view-max-outline-level 0
  1280. "Maximum outline level to display in search view.
  1281. E.g. when this is set to 1, the search view will only
  1282. show headlines of level 1. When set to 0, the default
  1283. value, don't limit agenda view by outline level."
  1284. :group 'org-agenda-search-view
  1285. :version "26.1"
  1286. :package-version '(Org . "8.3")
  1287. :type 'integer)
  1288. (defgroup org-agenda-time-grid nil
  1289. "Options concerning the time grid in the Org Agenda."
  1290. :tag "Org Agenda Time Grid"
  1291. :group 'org-agenda)
  1292. (defcustom org-agenda-search-headline-for-time t
  1293. "Non-nil means search headline for a time-of-day.
  1294. If the headline contains a time-of-day in one format or another, it will
  1295. be used to sort the entry into the time sequence of items for a day.
  1296. Some people have time stamps in the headline that refer to the creation
  1297. time or so, and then this produces an unwanted side effect. If this is
  1298. the case for your, use this variable to turn off searching the headline
  1299. for a time."
  1300. :group 'org-agenda-time-grid
  1301. :type 'boolean)
  1302. (defcustom org-agenda-use-time-grid t
  1303. "Non-nil means show a time grid in the agenda schedule.
  1304. A time grid is a set of lines for specific times (like every two hours between
  1305. 8:00 and 20:00). The items scheduled for a day at specific times are
  1306. sorted in between these lines.
  1307. For details about when the grid will be shown, and what it will look like, see
  1308. the variable `org-agenda-time-grid'."
  1309. :group 'org-agenda-time-grid
  1310. :type 'boolean)
  1311. (defcustom org-agenda-time-grid
  1312. '((daily today require-timed)
  1313. (800 1000 1200 1400 1600 1800 2000)
  1314. "......"
  1315. "----------------")
  1316. "The settings for time grid for agenda display.
  1317. This is a list of four items. The first item is again a list. It contains
  1318. symbols specifying conditions when the grid should be displayed:
  1319. daily if the agenda shows a single day
  1320. weekly if the agenda shows an entire week
  1321. today show grid on current date, independent of daily/weekly display
  1322. require-timed show grid only if at least one item has a time specification
  1323. remove-match skip grid times already present in an entry
  1324. The second item is a list of integers, indicating the times that
  1325. should have a grid line.
  1326. The third item is a string which will be placed right after the
  1327. times that have a grid line.
  1328. The fourth item is a string placed after the grid times. This
  1329. will align with agenda items."
  1330. :group 'org-agenda-time-grid
  1331. :type
  1332. '(list
  1333. (set :greedy t :tag "Grid Display Options"
  1334. (const :tag "Show grid in single day agenda display" daily)
  1335. (const :tag "Show grid in weekly agenda display" weekly)
  1336. (const :tag "Always show grid for today" today)
  1337. (const :tag "Show grid only if any timed entries are present"
  1338. require-timed)
  1339. (const :tag "Skip grid times already present in an entry"
  1340. remove-match))
  1341. (repeat :tag "Grid Times" (integer :tag "Time"))
  1342. (string :tag "Grid String (after agenda times)")
  1343. (string :tag "Grid String (aligns with agenda items)")))
  1344. (defcustom org-agenda-show-current-time-in-grid t
  1345. "Non-nil means show the current time in the time grid."
  1346. :group 'org-agenda-time-grid
  1347. :version "24.1"
  1348. :type 'boolean)
  1349. (defcustom org-agenda-current-time-string
  1350. "now - - - - - - - - - - - - - - - - - - - - - - - - -"
  1351. "The string for the current time marker in the agenda."
  1352. :group 'org-agenda-time-grid
  1353. :version "24.1"
  1354. :type 'string)
  1355. (defgroup org-agenda-sorting nil
  1356. "Options concerning sorting in the Org Agenda."
  1357. :tag "Org Agenda Sorting"
  1358. :group 'org-agenda)
  1359. (defcustom org-agenda-sorting-strategy
  1360. '((agenda habit-down time-up priority-down category-keep)
  1361. (todo priority-down category-keep)
  1362. (tags priority-down category-keep)
  1363. (search category-keep))
  1364. "Sorting structure for the agenda items of a single day.
  1365. This is a list of symbols which will be used in sequence to determine
  1366. if an entry should be listed before another entry. The following
  1367. symbols are recognized:
  1368. time-up Put entries with time-of-day indications first, early first.
  1369. time-down Put entries with time-of-day indications first, late first.
  1370. timestamp-up Sort by any timestamp, early first.
  1371. timestamp-down Sort by any timestamp, late first.
  1372. scheduled-up Sort by scheduled timestamp, early first.
  1373. scheduled-down Sort by scheduled timestamp, late first.
  1374. deadline-up Sort by deadline timestamp, early first.
  1375. deadline-down Sort by deadline timestamp, late first.
  1376. ts-up Sort by active timestamp, early first.
  1377. ts-down Sort by active timestamp, late first.
  1378. tsia-up Sort by inactive timestamp, early first.
  1379. tsia-down Sort by inactive timestamp, late first.
  1380. category-keep Keep the default order of categories, corresponding to the
  1381. sequence in `org-agenda-files'.
  1382. category-up Sort alphabetically by category, A-Z.
  1383. category-down Sort alphabetically by category, Z-A.
  1384. tag-up Sort alphabetically by last tag, A-Z.
  1385. tag-down Sort alphabetically by last tag, Z-A.
  1386. priority-up Sort numerically by priority, high priority last.
  1387. priority-down Sort numerically by priority, high priority first.
  1388. todo-state-up Sort by todo state, tasks that are done last.
  1389. todo-state-down Sort by todo state, tasks that are done first.
  1390. effort-up Sort numerically by estimated effort, high effort last.
  1391. effort-down Sort numerically by estimated effort, high effort first.
  1392. user-defined-up Sort according to `org-agenda-cmp-user-defined', high last.
  1393. user-defined-down Sort according to `org-agenda-cmp-user-defined', high first.
  1394. habit-up Put entries that are habits first.
  1395. habit-down Put entries that are habits last.
  1396. alpha-up Sort headlines alphabetically.
  1397. alpha-down Sort headlines alphabetically, reversed.
  1398. The different possibilities will be tried in sequence, and testing stops
  1399. if one comparison returns a \"not-equal\". For example, the default
  1400. '(time-up category-keep priority-down)
  1401. means: Pull out all entries having a specified time of day and sort them,
  1402. in order to make a time schedule for the current day the first thing in the
  1403. agenda listing for the day. Of the entries without a time indication, keep
  1404. the grouped in categories, don't sort the categories, but keep them in
  1405. the sequence given in `org-agenda-files'. Within each category sort by
  1406. priority.
  1407. Leaving out `category-keep' would mean that items will be sorted across
  1408. categories by priority.
  1409. Instead of a single list, this can also be a set of list for specific
  1410. contents, with a context symbol in the car of the list, any of
  1411. `agenda', `todo', `tags', `search' for the corresponding agenda views.
  1412. Custom commands can bind this variable in the options section."
  1413. :group 'org-agenda-sorting
  1414. :type `(choice
  1415. (repeat :tag "General" ,org-sorting-choice)
  1416. (list :tag "Individually"
  1417. (cons (const :tag "Strategy for Weekly/Daily agenda" agenda)
  1418. (repeat ,org-sorting-choice))
  1419. (cons (const :tag "Strategy for TODO lists" todo)
  1420. (repeat ,org-sorting-choice))
  1421. (cons (const :tag "Strategy for Tags matches" tags)
  1422. (repeat ,org-sorting-choice))
  1423. (cons (const :tag "Strategy for search matches" search)
  1424. (repeat ,org-sorting-choice)))))
  1425. (defcustom org-agenda-cmp-user-defined nil
  1426. "A function to define the comparison `user-defined'.
  1427. This function must receive two arguments, agenda entry a and b.
  1428. If a>b, return +1. If a<b, return -1. If they are equal as seen by
  1429. the user comparison, return nil.
  1430. When this is defined, you can make `user-defined-up' and `user-defined-down'
  1431. part of an agenda sorting strategy."
  1432. :group 'org-agenda-sorting
  1433. :type 'symbol)
  1434. (defcustom org-sort-agenda-notime-is-late t
  1435. "Non-nil means items without time are considered late.
  1436. This is only relevant for sorting. When t, items which have no explicit
  1437. time like 15:30 will be considered as 99:01, i.e. later than any items which
  1438. do have a time. When nil, the default time is before 0:00. You can use this
  1439. option to decide if the schedule for today should come before or after timeless
  1440. agenda entries."
  1441. :group 'org-agenda-sorting
  1442. :type 'boolean)
  1443. (defcustom org-sort-agenda-noeffort-is-high t
  1444. "Non-nil means items without effort estimate are sorted as high effort.
  1445. This also applies when filtering an agenda view with respect to the
  1446. < or > effort operator. Then, tasks with no effort defined will be treated
  1447. as tasks with high effort.
  1448. When nil, such items are sorted as 0 minutes effort."
  1449. :group 'org-agenda-sorting
  1450. :type 'boolean)
  1451. (defgroup org-agenda-line-format nil
  1452. "Options concerning the entry prefix in the Org agenda display."
  1453. :tag "Org Agenda Line Format"
  1454. :group 'org-agenda)
  1455. (defcustom org-agenda-prefix-format
  1456. '((agenda . " %i %-12:c%?-12t% s")
  1457. (todo . " %i %-12:c")
  1458. (tags . " %i %-12:c")
  1459. (search . " %i %-12:c"))
  1460. "Format specifications for the prefix of items in the agenda views.
  1461. An alist with one entry per agenda type. The keys of the
  1462. sublists are `agenda', `todo', `search' and `tags'. The values
  1463. are format strings.
  1464. This format works similar to a printf format, with the following meaning:
  1465. %c the category of the item, \"Diary\" for entries from the diary,
  1466. or as given by the CATEGORY keyword or derived from the file name
  1467. %e the effort required by the item
  1468. %l the level of the item (insert X space(s) if item is of level X)
  1469. %i the icon category of the item, see `org-agenda-category-icon-alist'
  1470. %T the last tag of the item (ignore inherited tags, which come first)
  1471. %t the HH:MM time-of-day specification if one applies to the entry
  1472. %s Scheduling/Deadline information, a short string
  1473. %b show breadcrumbs, i.e., the names of the higher levels
  1474. %(expression) Eval EXPRESSION and replace the control string
  1475. by the result
  1476. All specifiers work basically like the standard `%s' of printf, but may
  1477. contain two additional characters: a question mark just after the `%'
  1478. and a whitespace/punctuation character just before the final letter.
  1479. If the first character after `%' is a question mark, the entire field
  1480. will only be included if the corresponding value applies to the current
  1481. entry. This is useful for fields which should have fixed width when
  1482. present, but zero width when absent. For example, \"%?-12t\" will
  1483. result in a 12 character time field if a time of the day is specified,
  1484. but will completely disappear in entries which do not contain a time.
  1485. If there is punctuation or whitespace character just before the
  1486. final format letter, this character will be appended to the field
  1487. value if the value is not empty. For example, the format
  1488. \"%-12:c\" leads to \"Diary: \" if the category is \"Diary\". If
  1489. the category is empty, no additional colon is inserted.
  1490. The default value for the agenda sublist is \" %-12:c%?-12t% s\",
  1491. which means:
  1492. - Indent the line with two space characters
  1493. - Give the category a 12 chars wide field, padded with whitespace on
  1494. the right (because of `-'). Append a colon if there is a category
  1495. (because of `:').
  1496. - If there is a time-of-day, put it into a 12 chars wide field. If no
  1497. time, don't put in an empty field, just skip it (because of '?').
  1498. - Finally, put the scheduling information.
  1499. See also the variables `org-agenda-remove-times-when-in-prefix' and
  1500. `org-agenda-remove-tags'.
  1501. Custom commands can set this variable in the options section."
  1502. :type '(choice
  1503. (string :tag "General format")
  1504. (list :greedy t :tag "View dependent"
  1505. (cons (const agenda) (string :tag "Format"))
  1506. (cons (const todo) (string :tag "Format"))
  1507. (cons (const tags) (string :tag "Format"))
  1508. (cons (const search) (string :tag "Format"))))
  1509. :group 'org-agenda-line-format
  1510. :version "26.1"
  1511. :package-version '(Org . "9.1"))
  1512. (defcustom org-agenda-breadcrumbs-separator "->"
  1513. "The separator of breadcrumbs in agenda lines."
  1514. :group 'org-agenda-line-format
  1515. :package-version '(Org . "9.3")
  1516. :type 'string
  1517. :safe #'stringp)
  1518. (defvar org-prefix-format-compiled nil
  1519. "The compiled prefix format and associated variables.
  1520. This is a list where first element is a list of variable bindings, and second
  1521. element is the compiled format expression. See the variable
  1522. `org-agenda-prefix-format'.")
  1523. (defcustom org-agenda-todo-keyword-format "%-1s"
  1524. "Format for the TODO keyword in agenda lines.
  1525. Set this to something like \"%-12s\" if you want all TODO keywords
  1526. to occupy a fixed space in the agenda display."
  1527. :group 'org-agenda-line-format
  1528. :type 'string)
  1529. (defcustom org-agenda-diary-sexp-prefix nil
  1530. "A regexp that matches part of a diary sexp entry
  1531. which should be treated as scheduling/deadline information in
  1532. `org-agenda'.
  1533. For example, you can use this to extract the `diary-remind-message' from
  1534. `diary-remind' entries."
  1535. :group 'org-agenda-line-format
  1536. :type '(choice (const :tag "None" nil) (regexp :tag "Regexp")))
  1537. (defcustom org-agenda-timerange-leaders '("" "(%d/%d): ")
  1538. "Text preceding timerange entries in the agenda view.
  1539. This is a list with two strings. The first applies when the range
  1540. is entirely on one day. The second applies if the range spans several days.
  1541. The strings may have two \"%d\" format specifiers which will be filled
  1542. with the sequence number of the days, and the total number of days in the
  1543. range, respectively."
  1544. :group 'org-agenda-line-format
  1545. :type '(list
  1546. (string :tag "Deadline today ")
  1547. (choice :tag "Deadline relative"
  1548. (string :tag "Format string")
  1549. (function))))
  1550. (defcustom org-agenda-scheduled-leaders '("Scheduled: " "Sched.%2dx: ")
  1551. "Text preceding scheduled items in the agenda view.
  1552. This is a list with two strings. The first applies when the item is
  1553. scheduled on the current day. The second applies when it has been scheduled
  1554. previously, it may contain a %d indicating that this is the nth time that
  1555. this item is scheduled, due to automatic rescheduling of unfinished items
  1556. for the following day. So this number is one larger than the number of days
  1557. that passed since this item was scheduled first."
  1558. :group 'org-agenda-line-format
  1559. :version "24.4"
  1560. :package-version '(Org . "8.0")
  1561. :type '(list
  1562. (string :tag "Scheduled today ")
  1563. (string :tag "Scheduled previously")))
  1564. (defcustom org-agenda-inactive-leader "["
  1565. "Text preceding item pulled into the agenda by inactive time stamps.
  1566. These entries are added to the agenda when pressing \"[\"."
  1567. :group 'org-agenda-line-format
  1568. :version "24.1"
  1569. :type 'string)
  1570. (defcustom org-agenda-deadline-leaders '("Deadline: " "In %3d d.: " "%2d d. ago: ")
  1571. "Text preceding deadline items in the agenda view.
  1572. This is a list with three strings. The first applies when the item has its
  1573. deadline on the current day. The second applies when the deadline is in the
  1574. future, the third one when it is in the past. The strings may contain %d
  1575. to capture the number of days."
  1576. :group 'org-agenda-line-format
  1577. :version "24.4"
  1578. :package-version '(Org . "8.0")
  1579. :type '(list
  1580. (string :tag "Deadline today ")
  1581. (string :tag "Deadline in the future ")
  1582. (string :tag "Deadline in the past ")))
  1583. (defcustom org-agenda-remove-times-when-in-prefix t
  1584. "Non-nil means remove duplicate time specifications in agenda items.
  1585. When the format `org-agenda-prefix-format' contains a `%t' specifier, a
  1586. time-of-day specification in a headline or diary entry is extracted and
  1587. placed into the prefix. If this option is non-nil, the original specification
  1588. \(a timestamp or -range, or just a plain time(range) specification like
  1589. 11:30-4pm) will be removed for agenda display. This makes the agenda less
  1590. cluttered.
  1591. The option can be t or nil. It may also be the symbol `beg', indicating
  1592. that the time should only be removed when it is located at the beginning of
  1593. the headline/diary entry."
  1594. :group 'org-agenda-line-format
  1595. :type '(choice
  1596. (const :tag "Always" t)
  1597. (const :tag "Never" nil)
  1598. (const :tag "When at beginning of entry" beg)))
  1599. (defcustom org-agenda-remove-timeranges-from-blocks nil
  1600. "Non-nil means remove time ranges specifications in agenda
  1601. items that span on several days."
  1602. :group 'org-agenda-line-format
  1603. :version "24.1"
  1604. :type 'boolean)
  1605. (defcustom org-agenda-default-appointment-duration nil
  1606. "Default duration for appointments that only have a starting time.
  1607. When nil, no duration is specified in such cases.
  1608. When non-nil, this must be the number of minutes, e.g. 60 for one hour."
  1609. :group 'org-agenda-line-format
  1610. :type '(choice
  1611. (integer :tag "Minutes")
  1612. (const :tag "No default duration")))
  1613. (defcustom org-agenda-show-inherited-tags t
  1614. "Non-nil means show inherited tags in each agenda line.
  1615. When this option is set to `always', it takes precedence over
  1616. `org-agenda-use-tag-inheritance' and inherited tags are shown
  1617. in every agenda.
  1618. When this option is set to t (the default), inherited tags are
  1619. shown when they are available, i.e. when the value of
  1620. `org-agenda-use-tag-inheritance' enables tag inheritance for the
  1621. given agenda type.
  1622. This can be set to a list of agenda types in which the agenda
  1623. must display the inherited tags. Available types are `todo',
  1624. `agenda' and `search'.
  1625. When set to nil, never show inherited tags in agenda lines."
  1626. :group 'org-agenda-line-format
  1627. :group 'org-agenda
  1628. :version "24.3"
  1629. :type '(choice
  1630. (const :tag "Show inherited tags when available" t)
  1631. (const :tag "Always show inherited tags" always)
  1632. (repeat :tag "Show inherited tags only in selected agenda types"
  1633. (symbol :tag "Agenda type"))))
  1634. (defcustom org-agenda-use-tag-inheritance '(todo search agenda)
  1635. "List of agenda view types where to use tag inheritance.
  1636. In tags/tags-todo/tags-tree agenda views, tag inheritance is
  1637. controlled by `org-use-tag-inheritance'. In other agenda types,
  1638. `org-use-tag-inheritance' is not used for the selection of the
  1639. agenda entries. Still, you may want the agenda to be aware of
  1640. the inherited tags anyway, e.g. for later tag filtering.
  1641. Allowed value are `todo', `search' and `agenda'.
  1642. This variable has no effect if `org-agenda-show-inherited-tags'
  1643. is set to `always'. In that case, the agenda is aware of those
  1644. tags.
  1645. The default value sets tags in every agenda type. Setting this
  1646. option to nil will speed up non-tags agenda view a lot."
  1647. :group 'org-agenda
  1648. :version "26.1"
  1649. :package-version '(Org . "9.1")
  1650. :type '(choice
  1651. (const :tag "Use tag inheritance in all agenda types" t)
  1652. (repeat :tag "Use tag inheritance in selected agenda types"
  1653. (symbol :tag "Agenda type"))))
  1654. (defcustom org-agenda-hide-tags-regexp nil
  1655. "Regular expression used to filter away specific tags in agenda views.
  1656. This means that these tags will be present, but not be shown in the agenda
  1657. line. Secondary filtering will still work on the hidden tags.
  1658. Nil means don't hide any tags."
  1659. :group 'org-agenda-line-format
  1660. :type '(choice
  1661. (const :tag "Hide none" nil)
  1662. (string :tag "Regexp ")))
  1663. (defvaralias 'org-agenda-remove-tags-when-in-prefix
  1664. 'org-agenda-remove-tags)
  1665. (defcustom org-agenda-remove-tags nil
  1666. "Non-nil means remove the tags from the headline copy in the agenda.
  1667. When this is the symbol `prefix', only remove tags when
  1668. `org-agenda-prefix-format' contains a `%T' specifier."
  1669. :group 'org-agenda-line-format
  1670. :type '(choice
  1671. (const :tag "Always" t)
  1672. (const :tag "Never" nil)
  1673. (const :tag "When prefix format contains %T" prefix)))
  1674. (defvaralias 'org-agenda-align-tags-to-column 'org-agenda-tags-column)
  1675. (defcustom org-agenda-tags-column 'auto
  1676. "Shift tags in agenda items to this column.
  1677. If set to `auto', tags will be automatically aligned to the right
  1678. edge of the window.
  1679. If set to a positive number, tags will be left-aligned to that
  1680. column. If set to a negative number, tags will be right-aligned
  1681. to that column. For example, -80 works well for a normal 80
  1682. character screen."
  1683. :group 'org-agenda-line-format
  1684. :type '(choice
  1685. (const :tag "Automatically align to right edge of window" auto)
  1686. (integer :tag "Specific column" -80))
  1687. :package-version '(Org . "9.1")
  1688. :version "26.1")
  1689. (defcustom org-agenda-fontify-priorities 'cookies
  1690. "Non-nil means highlight low and high priorities in agenda.
  1691. When t, the highest priority entries are bold, lowest priority italic.
  1692. However, settings in `org-priority-faces' will overrule these faces.
  1693. When this variable is the symbol `cookies', only fontify the
  1694. cookies, not the entire task.
  1695. This may also be an association list of priority faces, whose
  1696. keys are the character values of `org-priority-highest',
  1697. `org-priority-default', and `org-priority-lowest' (the default values
  1698. are ?A, ?B, and ?C, respectively). The face may be a named face, a
  1699. color as a string, or a list like `(:background \"Red\")'.
  1700. If it is a color, the variable `org-faces-easy-properties'
  1701. determines if it is a foreground or a background color."
  1702. :group 'org-agenda-line-format
  1703. :type '(choice
  1704. (const :tag "Never" nil)
  1705. (const :tag "Defaults" t)
  1706. (const :tag "Cookies only" cookies)
  1707. (repeat :tag "Specify"
  1708. (list (character :tag "Priority" :value ?A)
  1709. (choice :tag "Face "
  1710. (string :tag "Color")
  1711. (sexp :tag "Face"))))))
  1712. (defcustom org-agenda-day-face-function nil
  1713. "Function called to determine what face should be used to display a day.
  1714. The only argument passed to that function is the day. It should
  1715. returns a face, or nil if does not want to specify a face and let
  1716. the normal rules apply."
  1717. :group 'org-agenda-line-format
  1718. :version "24.1"
  1719. :type '(choice (const nil) (function)))
  1720. (defcustom org-agenda-category-icon-alist nil
  1721. "Alist of category icon to be displayed in agenda views.
  1722. Each entry should have the following format:
  1723. (CATEGORY-REGEXP FILE-OR-DATA TYPE DATA-P PROPS)
  1724. Where CATEGORY-REGEXP is a regexp matching the categories where
  1725. the icon should be displayed.
  1726. FILE-OR-DATA either a file path or a string containing image data.
  1727. The other fields can be omitted safely if not needed:
  1728. TYPE indicates the image type.
  1729. DATA-P is a boolean indicating whether the FILE-OR-DATA string is
  1730. image data.
  1731. PROPS are additional image attributes to assign to the image,
  1732. like, e.g. `:ascent center'.
  1733. (\"Org\" \"/path/to/icon.png\" nil nil :ascent center)
  1734. If you want to set the display properties yourself, just put a
  1735. list as second element:
  1736. (CATEGORY-REGEXP (MY PROPERTY LIST))
  1737. For example, to display a 16px horizontal space for Emacs
  1738. category, you can use:
  1739. (\"Emacs\" \\='(space . (:width (16))))"
  1740. :group 'org-agenda-line-format
  1741. :version "24.1"
  1742. :type '(alist :key-type (string :tag "Regexp matching category")
  1743. :value-type (choice (list :tag "Icon"
  1744. (string :tag "File or data")
  1745. (symbol :tag "Type")
  1746. (boolean :tag "Data?")
  1747. (repeat :tag "Extra image properties" :inline t symbol))
  1748. (list :tag "Display properties" sexp))))
  1749. (defgroup org-agenda-column-view nil
  1750. "Options concerning column view in the agenda."
  1751. :tag "Org Agenda Column View"
  1752. :group 'org-agenda)
  1753. (defcustom org-agenda-view-columns-initially nil
  1754. "When non-nil, switch to columns view right after creating the agenda."
  1755. :group 'org-agenda-column-view
  1756. :type 'boolean
  1757. :version "26.1"
  1758. :package-version '(Org . "9.0")
  1759. :safe #'booleanp)
  1760. (defcustom org-agenda-columns-show-summaries t
  1761. "Non-nil means show summaries for columns displayed in the agenda view."
  1762. :group 'org-agenda-column-view
  1763. :type 'boolean)
  1764. (defcustom org-agenda-columns-compute-summary-properties t
  1765. "Non-nil means recompute all summary properties before column view.
  1766. When column view in the agenda is listing properties that have a summary
  1767. operator, it can go to all relevant buffers and recompute the summaries
  1768. there. This can mean overhead for the agenda column view, but is necessary
  1769. to have thing up to date.
  1770. As a special case, a CLOCKSUM property also makes sure that the clock
  1771. computations are current."
  1772. :group 'org-agenda-column-view
  1773. :type 'boolean)
  1774. (defcustom org-agenda-columns-add-appointments-to-effort-sum nil
  1775. "Non-nil means the duration of an appointment will add to day effort.
  1776. The property to which appointment durations will be added is the one given
  1777. in the option `org-effort-property'. If an appointment does not have
  1778. an end time, `org-agenda-default-appointment-duration' will be used. If that
  1779. is not set, an appointment without end time will not contribute to the time
  1780. estimate."
  1781. :group 'org-agenda-column-view
  1782. :type 'boolean)
  1783. (defcustom org-agenda-auto-exclude-function nil
  1784. "A function called with a tag to decide if it is filtered on \
  1785. \\<org-agenda-mode-map>`\\[org-agenda-filter-by-tag] RET'.
  1786. The sole argument to the function, which is called once for each
  1787. possible tag, is a string giving the name of the tag. The
  1788. function should return either nil if the tag should be included
  1789. as normal, \"-<TAG>\" to exclude the tag, or \"+<TAG>\" to exclude
  1790. lines not carrying this tag.
  1791. Note that for the purpose of tag filtering, only the lower-case version of
  1792. all tags will be considered, so that this function will only ever see
  1793. the lower-case version of all tags."
  1794. :group 'org-agenda
  1795. :type '(choice (const nil) (function)))
  1796. (defcustom org-agenda-bulk-custom-functions nil
  1797. "Alist of characters and custom functions for bulk actions.
  1798. For example, this value makes those two functions available:
  1799. \\='((?R set-category)
  1800. (?C bulk-cut))
  1801. With selected entries in an agenda buffer, `B R' will call
  1802. the custom function `set-category' on the selected entries.
  1803. Note that functions in this alist don't need to be quoted."
  1804. :type '(alist :key-type character :value-type (group function))
  1805. :version "24.1"
  1806. :group 'org-agenda)
  1807. (defmacro org-agenda-with-point-at-orig-entry (string &rest body)
  1808. "Execute BODY with point at location given by `org-hd-marker' property.
  1809. If STRING is non-nil, the text property will be fetched from position 0
  1810. in that string. If STRING is nil, it will be fetched from the beginning
  1811. of the current line."
  1812. (org-with-gensyms (marker)
  1813. `(let ((,marker (get-text-property (if ,string 0 (point-at-bol))
  1814. 'org-hd-marker ,string)))
  1815. (with-current-buffer (marker-buffer ,marker)
  1816. (save-excursion
  1817. (goto-char ,marker)
  1818. ,@body)))))
  1819. (def-edebug-spec org-agenda-with-point-at-orig-entry (form body))
  1820. (defun org-add-agenda-custom-command (entry)
  1821. "Replace or add a command in `org-agenda-custom-commands'.
  1822. This is mostly for hacking and trying a new command - once the command
  1823. works you probably want to add it to `org-agenda-custom-commands' for good."
  1824. (let ((ass (assoc (car entry) org-agenda-custom-commands)))
  1825. (if ass
  1826. (setcdr ass (cdr entry))
  1827. (push entry org-agenda-custom-commands))))
  1828. (defmacro org-agenda--insert-overriding-header (default)
  1829. "Insert header into agenda view.
  1830. The inserted header depends on `org-agenda-overriding-header'.
  1831. If the empty string, don't insert a header. If any other string,
  1832. insert it as a header. If nil, insert DEFAULT, which should
  1833. evaluate to a string."
  1834. (declare (debug (form)) (indent defun))
  1835. `(cond
  1836. ((not org-agenda-overriding-header) (insert ,default))
  1837. ((equal org-agenda-overriding-header "") nil)
  1838. ((stringp org-agenda-overriding-header)
  1839. (insert (propertize org-agenda-overriding-header
  1840. 'face 'org-agenda-structure)
  1841. "\n"))
  1842. (t (user-error "Invalid value for `org-agenda-overriding-header': %S"
  1843. org-agenda-overriding-header))))
  1844. ;;; Define the org-agenda-mode
  1845. (defvaralias 'org-agenda-keymap 'org-agenda-mode-map)
  1846. (defvar org-agenda-mode-map (make-sparse-keymap)
  1847. "Keymap for `org-agenda-mode'.")
  1848. (org-remap org-agenda-mode-map 'move-end-of-line 'org-agenda-end-of-line)
  1849. (defvar org-agenda-menu) ; defined later in this file.
  1850. (defvar org-agenda-restrict nil) ; defined later in this file.
  1851. (defvar org-agenda-follow-mode nil)
  1852. (defvar org-agenda-entry-text-mode nil)
  1853. (defvar org-agenda-clockreport-mode nil)
  1854. (defvar org-agenda-show-log nil
  1855. "When non-nil, show the log in the agenda.
  1856. Do not set this directly; instead use
  1857. `org-agenda-start-with-log-mode', which see.")
  1858. (defvar org-agenda-redo-command nil)
  1859. (defvar org-agenda-query-string nil)
  1860. (defvar org-agenda-mode-hook nil
  1861. "Hook run after `org-agenda-mode' is turned on.
  1862. The buffer is still writable when this hook is called.")
  1863. (defvar org-agenda-type nil)
  1864. (defvar org-agenda-force-single-file nil)
  1865. (defvar org-agenda-bulk-marked-entries nil
  1866. "List of markers that refer to marked entries in the agenda.")
  1867. (defvar org-agenda-current-date nil
  1868. "Active date when building the agenda.")
  1869. ;;; Multiple agenda buffers support
  1870. (defcustom org-agenda-sticky nil
  1871. "Non-nil means agenda q key will bury agenda buffers.
  1872. Agenda commands will then show existing buffer instead of generating new ones.
  1873. When nil, `q' will kill the single agenda buffer."
  1874. :group 'org-agenda
  1875. :version "24.3"
  1876. :type 'boolean)
  1877. ;;;###autoload
  1878. (defun org-toggle-sticky-agenda (&optional arg)
  1879. "Toggle `org-agenda-sticky'."
  1880. (interactive "P")
  1881. (let ((new-value (if arg
  1882. (> (prefix-numeric-value arg) 0)
  1883. (not org-agenda-sticky))))
  1884. (if (equal new-value org-agenda-sticky)
  1885. (and (called-interactively-p 'interactive)
  1886. (message "Sticky agenda was already %s"
  1887. (if org-agenda-sticky "enabled" "disabled")))
  1888. (setq org-agenda-sticky new-value)
  1889. (org-agenda-kill-all-agenda-buffers)
  1890. (and (called-interactively-p 'interactive)
  1891. (message "Sticky agenda %s"
  1892. (if org-agenda-sticky "enabled" "disabled"))))))
  1893. (defvar org-agenda-buffer nil
  1894. "Agenda buffer currently being generated.")
  1895. (defvar org-agenda-last-prefix-arg nil)
  1896. (defvar org-agenda-this-buffer-name nil)
  1897. (defvar org-agenda-doing-sticky-redo nil)
  1898. (defvar org-agenda-this-buffer-is-sticky nil)
  1899. (defvar org-agenda-last-indirect-buffer nil
  1900. "Last buffer loaded by `org-agenda-tree-to-indirect-buffer'.")
  1901. (defconst org-agenda-local-vars
  1902. '(org-agenda-this-buffer-name
  1903. org-agenda-undo-list
  1904. org-agenda-pending-undo-list
  1905. org-agenda-follow-mode
  1906. org-agenda-entry-text-mode
  1907. org-agenda-clockreport-mode
  1908. org-agenda-show-log
  1909. org-agenda-redo-command
  1910. org-agenda-query-string
  1911. org-agenda-type
  1912. org-agenda-bulk-marked-entries
  1913. org-agenda-undo-has-started-in
  1914. org-agenda-info
  1915. org-agenda-pre-window-conf
  1916. org-agenda-columns-active
  1917. org-agenda-tag-filter
  1918. org-agenda-category-filter
  1919. org-agenda-top-headline-filter
  1920. org-agenda-regexp-filter
  1921. org-agenda-effort-filter
  1922. org-agenda-markers
  1923. org-agenda-last-search-view-search-was-boolean
  1924. org-agenda-last-indirect-buffer
  1925. org-agenda-filtered-by-category
  1926. org-agenda-filter-form
  1927. org-agenda-cycle-counter
  1928. org-agenda-last-prefix-arg)
  1929. "Variables that must be local in agenda buffers to allow multiple buffers.")
  1930. (defun org-agenda-mode ()
  1931. "Mode for time-sorted view on action items in Org files.
  1932. The following commands are available:
  1933. \\{org-agenda-mode-map}"
  1934. (interactive)
  1935. (ignore-errors (require 'face-remap))
  1936. (let ((agenda-local-vars-to-keep
  1937. '(text-scale-mode-amount
  1938. text-scale-mode
  1939. text-scale-mode-lighter
  1940. face-remapping-alist))
  1941. (save (buffer-local-variables)))
  1942. (kill-all-local-variables)
  1943. (cl-flet ((reset-saved (var-set)
  1944. "Reset variables in VAR-SET to possibly stored value in SAVE."
  1945. (dolist (elem save)
  1946. (pcase elem
  1947. (`(,var . ,val) ;ignore unbound variables
  1948. (when (and val (memq var var-set))
  1949. (set var val)))))))
  1950. (cond (org-agenda-doing-sticky-redo
  1951. ;; Refreshing sticky agenda-buffer
  1952. ;;
  1953. ;; Preserve the value of `org-agenda-local-vars' variables.
  1954. (mapc #'make-local-variable org-agenda-local-vars)
  1955. (reset-saved org-agenda-local-vars)
  1956. (setq-local org-agenda-this-buffer-is-sticky t))
  1957. (org-agenda-sticky
  1958. ;; Creating a sticky Agenda buffer for the first time
  1959. (mapc 'make-local-variable org-agenda-local-vars)
  1960. (setq-local org-agenda-this-buffer-is-sticky t))
  1961. (t
  1962. ;; Creating a non-sticky agenda buffer
  1963. (setq-local org-agenda-this-buffer-is-sticky nil)))
  1964. (mapc #'make-local-variable agenda-local-vars-to-keep)
  1965. (reset-saved agenda-local-vars-to-keep)))
  1966. (setq org-agenda-undo-list nil
  1967. org-agenda-pending-undo-list nil
  1968. org-agenda-bulk-marked-entries nil)
  1969. (setq major-mode 'org-agenda-mode)
  1970. ;; Keep global-font-lock-mode from turning on font-lock-mode
  1971. (setq-local font-lock-global-modes (list 'not major-mode))
  1972. (setq mode-name "Org-Agenda")
  1973. (setq indent-tabs-mode nil)
  1974. (use-local-map org-agenda-mode-map)
  1975. (easy-menu-add org-agenda-menu)
  1976. (when org-startup-truncated (setq truncate-lines t))
  1977. (setq-local line-move-visual nil)
  1978. (add-hook 'post-command-hook 'org-agenda-update-agenda-type nil 'local)
  1979. (add-hook 'pre-command-hook 'org-unhighlight nil 'local)
  1980. ;; Make sure properties are removed when copying text
  1981. (if (boundp 'filter-buffer-substring-functions)
  1982. (add-hook 'filter-buffer-substring-functions
  1983. (lambda (fun start end delete)
  1984. (substring-no-properties (funcall fun start end delete)))
  1985. nil t)
  1986. ;; Emacs >= 24.4.
  1987. (add-function :filter-return (local 'filter-buffer-substring-function)
  1988. #'substring-no-properties))
  1989. (unless org-agenda-keep-modes
  1990. (setq org-agenda-follow-mode org-agenda-start-with-follow-mode
  1991. org-agenda-entry-text-mode org-agenda-start-with-entry-text-mode
  1992. org-agenda-show-log org-agenda-start-with-log-mode
  1993. org-agenda-clockreport-mode org-agenda-start-with-clockreport-mode))
  1994. (add-to-invisibility-spec '(org-filtered))
  1995. (add-to-invisibility-spec '(org-link))
  1996. (easy-menu-change
  1997. '("Agenda") "Agenda Files"
  1998. (append
  1999. (list
  2000. (vector
  2001. (if (get 'org-agenda-files 'org-restrict)
  2002. "Restricted to single file"
  2003. "Edit File List")
  2004. '(org-edit-agenda-file-list)
  2005. (not (get 'org-agenda-files 'org-restrict)))
  2006. "--")
  2007. (mapcar 'org-file-menu-entry (org-agenda-files))))
  2008. (org-agenda-set-mode-name)
  2009. (apply
  2010. (if (fboundp 'run-mode-hooks) 'run-mode-hooks 'run-hooks)
  2011. (list 'org-agenda-mode-hook)))
  2012. (substitute-key-definition #'undo #'org-agenda-undo
  2013. org-agenda-mode-map global-map)
  2014. (org-defkey org-agenda-mode-map "\C-i" #'org-agenda-goto)
  2015. (org-defkey org-agenda-mode-map [(tab)] #'org-agenda-goto)
  2016. (org-defkey org-agenda-mode-map "\C-m" #'org-agenda-switch-to)
  2017. (org-defkey org-agenda-mode-map "\C-k" #'org-agenda-kill)
  2018. (org-defkey org-agenda-mode-map "\C-c\C-w" #'org-agenda-refile)
  2019. (org-defkey org-agenda-mode-map [(meta down)] #'org-agenda-drag-line-forward)
  2020. (org-defkey org-agenda-mode-map [(meta up)] #'org-agenda-drag-line-backward)
  2021. (org-defkey org-agenda-mode-map "m" #'org-agenda-bulk-mark)
  2022. (org-defkey org-agenda-mode-map "\M-m" #'org-agenda-bulk-toggle)
  2023. (org-defkey org-agenda-mode-map "*" #'org-agenda-bulk-mark-all)
  2024. (org-defkey org-agenda-mode-map "\M-*" #'org-agenda-bulk-toggle-all)
  2025. (org-defkey org-agenda-mode-map "#" #'org-agenda-dim-blocked-tasks)
  2026. (org-defkey org-agenda-mode-map "%" #'org-agenda-bulk-mark-regexp)
  2027. (org-defkey org-agenda-mode-map "u" #'org-agenda-bulk-unmark)
  2028. (org-defkey org-agenda-mode-map "U" #'org-agenda-bulk-unmark-all)
  2029. (org-defkey org-agenda-mode-map "B" #'org-agenda-bulk-action)
  2030. (org-defkey org-agenda-mode-map "k" #'org-agenda-capture)
  2031. (org-defkey org-agenda-mode-map "A" #'org-agenda-append-agenda)
  2032. (org-defkey org-agenda-mode-map "\C-c\C-x!" #'org-reload)
  2033. (org-defkey org-agenda-mode-map "\C-c\C-x\C-a" #'org-agenda-archive-default)
  2034. (org-defkey org-agenda-mode-map "\C-c\C-xa" #'org-agenda-toggle-archive-tag)
  2035. (org-defkey org-agenda-mode-map "\C-c\C-xA" #'org-agenda-archive-to-archive-sibling)
  2036. (org-defkey org-agenda-mode-map "\C-c\C-x\C-s" #'org-agenda-archive)
  2037. (org-defkey org-agenda-mode-map "\C-c$" #'org-agenda-archive)
  2038. (org-defkey org-agenda-mode-map "$" #'org-agenda-archive)
  2039. (org-defkey org-agenda-mode-map "\C-c\C-o" #'org-agenda-open-link)
  2040. (org-defkey org-agenda-mode-map " " #'org-agenda-show-and-scroll-up)
  2041. (org-defkey org-agenda-mode-map [backspace] #'org-agenda-show-scroll-down)
  2042. (org-defkey org-agenda-mode-map "\d" #'org-agenda-show-scroll-down)
  2043. (org-defkey org-agenda-mode-map [(control shift right)] #'org-agenda-todo-nextset)
  2044. (org-defkey org-agenda-mode-map [(control shift left)] #'org-agenda-todo-previousset)
  2045. (org-defkey org-agenda-mode-map "\C-c\C-xb" #'org-agenda-tree-to-indirect-buffer)
  2046. (org-defkey org-agenda-mode-map "o" #'delete-other-windows)
  2047. (org-defkey org-agenda-mode-map "L" #'org-agenda-recenter)
  2048. (org-defkey org-agenda-mode-map "\C-c\C-t" #'org-agenda-todo)
  2049. (org-defkey org-agenda-mode-map "t" #'org-agenda-todo)
  2050. (org-defkey org-agenda-mode-map "a" #'org-agenda-archive-default-with-confirmation)
  2051. (org-defkey org-agenda-mode-map ":" #'org-agenda-set-tags)
  2052. (org-defkey org-agenda-mode-map "\C-c\C-q" #'org-agenda-set-tags)
  2053. (org-defkey org-agenda-mode-map "." #'org-agenda-goto-today)
  2054. (org-defkey org-agenda-mode-map "j" #'org-agenda-goto-date)
  2055. (org-defkey org-agenda-mode-map "d" #'org-agenda-day-view)
  2056. (org-defkey org-agenda-mode-map "w" #'org-agenda-week-view)
  2057. (org-defkey org-agenda-mode-map "y" #'org-agenda-year-view)
  2058. (org-defkey org-agenda-mode-map "\C-c\C-z" #'org-agenda-add-note)
  2059. (org-defkey org-agenda-mode-map "z" #'org-agenda-add-note)
  2060. (org-defkey org-agenda-mode-map [(shift right)] #'org-agenda-do-date-later)
  2061. (org-defkey org-agenda-mode-map [(shift left)] #'org-agenda-do-date-earlier)
  2062. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (right)] #'org-agenda-do-date-later)
  2063. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (left)] #'org-agenda-do-date-earlier)
  2064. (org-defkey org-agenda-mode-map ">" #'org-agenda-date-prompt)
  2065. (org-defkey org-agenda-mode-map "\C-c\C-s" #'org-agenda-schedule)
  2066. (org-defkey org-agenda-mode-map "\C-c\C-d" #'org-agenda-deadline)
  2067. (let ((l '(1 2 3 4 5 6 7 8 9 0)))
  2068. (while l (org-defkey org-agenda-mode-map
  2069. (number-to-string (pop l)) #'digit-argument)))
  2070. (org-defkey org-agenda-mode-map "F" #'org-agenda-follow-mode)
  2071. (org-defkey org-agenda-mode-map "R" #'org-agenda-clockreport-mode)
  2072. (org-defkey org-agenda-mode-map "E" #'org-agenda-entry-text-mode)
  2073. (org-defkey org-agenda-mode-map "l" #'org-agenda-log-mode)
  2074. (org-defkey org-agenda-mode-map "v" #'org-agenda-view-mode-dispatch)
  2075. (org-defkey org-agenda-mode-map "D" #'org-agenda-toggle-diary)
  2076. (org-defkey org-agenda-mode-map "!" #'org-agenda-toggle-deadlines)
  2077. (org-defkey org-agenda-mode-map "G" #'org-agenda-toggle-time-grid)
  2078. (org-defkey org-agenda-mode-map "r" #'org-agenda-redo)
  2079. (org-defkey org-agenda-mode-map "g" #'org-agenda-redo-all)
  2080. (org-defkey org-agenda-mode-map "e" #'org-agenda-set-effort)
  2081. (org-defkey org-agenda-mode-map "\C-c\C-xe" #'org-agenda-set-effort)
  2082. (org-defkey org-agenda-mode-map "\C-c\C-x\C-e"
  2083. #'org-clock-modify-effort-estimate)
  2084. (org-defkey org-agenda-mode-map "\C-c\C-xp" #'org-agenda-set-property)
  2085. (org-defkey org-agenda-mode-map "q" #'org-agenda-quit)
  2086. (org-defkey org-agenda-mode-map "Q" #'org-agenda-Quit)
  2087. (org-defkey org-agenda-mode-map "x" #'org-agenda-exit)
  2088. (org-defkey org-agenda-mode-map "\C-x\C-w" #'org-agenda-write)
  2089. (org-defkey org-agenda-mode-map "\C-x\C-s" #'org-save-all-org-buffers)
  2090. (org-defkey org-agenda-mode-map "s" #'org-save-all-org-buffers)
  2091. (org-defkey org-agenda-mode-map "T" #'org-agenda-show-tags)
  2092. (org-defkey org-agenda-mode-map "n" #'org-agenda-next-line)
  2093. (org-defkey org-agenda-mode-map "p" #'org-agenda-previous-line)
  2094. (org-defkey org-agenda-mode-map "N" #'org-agenda-next-item)
  2095. (org-defkey org-agenda-mode-map "P" #'org-agenda-previous-item)
  2096. (substitute-key-definition #'next-line #'org-agenda-next-line
  2097. org-agenda-mode-map global-map)
  2098. (substitute-key-definition #'previous-line #'org-agenda-previous-line
  2099. org-agenda-mode-map global-map)
  2100. (org-defkey org-agenda-mode-map "\C-c\C-a" #'org-attach)
  2101. (org-defkey org-agenda-mode-map "\C-c\C-n" #'org-agenda-next-date-line)
  2102. (org-defkey org-agenda-mode-map "\C-c\C-p" #'org-agenda-previous-date-line)
  2103. (org-defkey org-agenda-mode-map "\C-c," #'org-agenda-priority)
  2104. (org-defkey org-agenda-mode-map "," #'org-agenda-priority)
  2105. (org-defkey org-agenda-mode-map "i" #'org-agenda-diary-entry)
  2106. (org-defkey org-agenda-mode-map "c" #'org-agenda-goto-calendar)
  2107. (org-defkey org-agenda-mode-map "C" #'org-agenda-convert-date)
  2108. (org-defkey org-agenda-mode-map "M" #'org-agenda-phases-of-moon)
  2109. (org-defkey org-agenda-mode-map "S" #'org-agenda-sunrise-sunset)
  2110. (org-defkey org-agenda-mode-map "h" #'org-agenda-holidays)
  2111. (org-defkey org-agenda-mode-map "H" #'org-agenda-holidays)
  2112. (org-defkey org-agenda-mode-map "\C-c\C-x\C-i" #'org-agenda-clock-in)
  2113. (org-defkey org-agenda-mode-map "I" #'org-agenda-clock-in)
  2114. (org-defkey org-agenda-mode-map "\C-c\C-x\C-o" #'org-agenda-clock-out)
  2115. (org-defkey org-agenda-mode-map "O" #'org-agenda-clock-out)
  2116. (org-defkey org-agenda-mode-map "\C-c\C-x\C-x" #'org-agenda-clock-cancel)
  2117. (org-defkey org-agenda-mode-map "X" #'org-agenda-clock-cancel)
  2118. (org-defkey org-agenda-mode-map "\C-c\C-x\C-j" #'org-clock-goto)
  2119. (org-defkey org-agenda-mode-map "J" #'org-agenda-clock-goto)
  2120. (org-defkey org-agenda-mode-map "+" #'org-agenda-priority-up)
  2121. (org-defkey org-agenda-mode-map "-" #'org-agenda-priority-down)
  2122. (org-defkey org-agenda-mode-map [(shift up)] #'org-agenda-priority-up)
  2123. (org-defkey org-agenda-mode-map [(shift down)] #'org-agenda-priority-down)
  2124. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (up)] #'org-agenda-priority-up)
  2125. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (down)] #'org-agenda-priority-down)
  2126. (org-defkey org-agenda-mode-map "f" #'org-agenda-later)
  2127. (org-defkey org-agenda-mode-map "b" #'org-agenda-earlier)
  2128. (org-defkey org-agenda-mode-map "\C-c\C-x\C-c" #'org-agenda-columns)
  2129. (org-defkey org-agenda-mode-map "\C-c\C-x>" #'org-agenda-remove-restriction-lock)
  2130. (org-defkey org-agenda-mode-map "\C-c\C-x<" #'org-agenda-set-restriction-lock-from-agenda)
  2131. (org-defkey org-agenda-mode-map "[" #'org-agenda-manipulate-query-add)
  2132. (org-defkey org-agenda-mode-map "]" #'org-agenda-manipulate-query-subtract)
  2133. (org-defkey org-agenda-mode-map "{" #'org-agenda-manipulate-query-add-re)
  2134. (org-defkey org-agenda-mode-map "}" #'org-agenda-manipulate-query-subtract-re)
  2135. (org-defkey org-agenda-mode-map "\\" #'org-agenda-filter-by-tag)
  2136. (org-defkey org-agenda-mode-map "_" #'org-agenda-filter-by-effort)
  2137. (org-defkey org-agenda-mode-map "=" #'org-agenda-filter-by-regexp)
  2138. (org-defkey org-agenda-mode-map "/" #'org-agenda-filter)
  2139. (org-defkey org-agenda-mode-map "|" #'org-agenda-filter-remove-all)
  2140. (org-defkey org-agenda-mode-map "~" #'org-agenda-limit-interactively)
  2141. (org-defkey org-agenda-mode-map "<" #'org-agenda-filter-by-category)
  2142. (org-defkey org-agenda-mode-map "^" #'org-agenda-filter-by-top-headline)
  2143. (org-defkey org-agenda-mode-map ";" #'org-timer-set-timer)
  2144. (org-defkey org-agenda-mode-map "\C-c\C-x_" #'org-timer-stop)
  2145. (org-defkey org-agenda-mode-map "?" #'org-agenda-show-the-flagging-note)
  2146. (org-defkey org-agenda-mode-map "\C-c\C-x\C-mg" #'org-mobile-pull)
  2147. (org-defkey org-agenda-mode-map "\C-c\C-x\C-mp" #'org-mobile-push)
  2148. (org-defkey org-agenda-mode-map "\C-c\C-xI" #'org-info-find-node)
  2149. (org-defkey org-agenda-mode-map [mouse-2] #'org-agenda-goto-mouse)
  2150. (org-defkey org-agenda-mode-map [mouse-3] #'org-agenda-show-mouse)
  2151. (org-defkey org-agenda-mode-map [remap forward-paragraph] #'org-agenda-forward-block)
  2152. (org-defkey org-agenda-mode-map [remap backward-paragraph] #'org-agenda-backward-block)
  2153. (org-defkey org-agenda-mode-map "\C-c\C-c" #'org-agenda-ctrl-c-ctrl-c)
  2154. (when org-agenda-mouse-1-follows-link
  2155. (org-defkey org-agenda-mode-map [follow-link] 'mouse-face))
  2156. (easy-menu-define org-agenda-menu org-agenda-mode-map "Agenda menu"
  2157. '("Agenda"
  2158. ("Agenda Files")
  2159. "--"
  2160. ("Agenda Dates"
  2161. ["Goto Today" org-agenda-goto-today (org-agenda-check-type nil 'agenda)]
  2162. ["Next Dates" org-agenda-later (org-agenda-check-type nil 'agenda)]
  2163. ["Previous Dates" org-agenda-earlier (org-agenda-check-type nil 'agenda)]
  2164. ["Jump to date" org-agenda-goto-date (org-agenda-check-type nil 'agenda)])
  2165. "--"
  2166. ("View"
  2167. ["Day View" org-agenda-day-view
  2168. :active (org-agenda-check-type nil 'agenda)
  2169. :style radio :selected (eq org-agenda-current-span 'day)
  2170. :keys "v d (or just d)"]
  2171. ["Week View" org-agenda-week-view
  2172. :active (org-agenda-check-type nil 'agenda)
  2173. :style radio :selected (eq org-agenda-current-span 'week)
  2174. :keys "v w"]
  2175. ["Fortnight View" org-agenda-fortnight-view
  2176. :active (org-agenda-check-type nil 'agenda)
  2177. :style radio :selected (eq org-agenda-current-span 'fortnight)
  2178. :keys "v t"]
  2179. ["Month View" org-agenda-month-view
  2180. :active (org-agenda-check-type nil 'agenda)
  2181. :style radio :selected (eq org-agenda-current-span 'month)
  2182. :keys "v m"]
  2183. ["Year View" org-agenda-year-view
  2184. :active (org-agenda-check-type nil 'agenda)
  2185. :style radio :selected (eq org-agenda-current-span 'year)
  2186. :keys "v y"]
  2187. "--"
  2188. ["Include Diary" org-agenda-toggle-diary
  2189. :style toggle :selected org-agenda-include-diary
  2190. :active (org-agenda-check-type nil 'agenda)]
  2191. ["Include Deadlines" org-agenda-toggle-deadlines
  2192. :style toggle :selected org-agenda-include-deadlines
  2193. :active (org-agenda-check-type nil 'agenda)]
  2194. ["Use Time Grid" org-agenda-toggle-time-grid
  2195. :style toggle :selected org-agenda-use-time-grid
  2196. :active (org-agenda-check-type nil 'agenda)]
  2197. "--"
  2198. ["Show clock report" org-agenda-clockreport-mode
  2199. :style toggle :selected org-agenda-clockreport-mode
  2200. :active (org-agenda-check-type nil 'agenda)]
  2201. ["Show some entry text" org-agenda-entry-text-mode
  2202. :style toggle :selected org-agenda-entry-text-mode
  2203. :active t]
  2204. "--"
  2205. ["Show Logbook entries" org-agenda-log-mode
  2206. :style toggle :selected org-agenda-show-log
  2207. :active (org-agenda-check-type nil 'agenda)
  2208. :keys "v l (or just l)"]
  2209. ["Include archived trees" org-agenda-archives-mode
  2210. :style toggle :selected org-agenda-archives-mode :active t
  2211. :keys "v a"]
  2212. ["Include archive files" (org-agenda-archives-mode t)
  2213. :style toggle :selected (eq org-agenda-archives-mode t) :active t
  2214. :keys "v A"]
  2215. "--"
  2216. ["Remove Restriction" org-agenda-remove-restriction-lock org-agenda-restrict])
  2217. ("Filter current view"
  2218. ["with generic interface" org-agenda-filter t]
  2219. "--"
  2220. ["by category at cursor" org-agenda-filter-by-category t]
  2221. ["by tag" org-agenda-filter-by-tag t]
  2222. ["by effort" org-agenda-filter-by-effort t]
  2223. ["by regexp" org-agenda-filter-by-regexp t]
  2224. ["by top-level headline" org-agenda-filter-by-top-headline t]
  2225. "--"
  2226. ["Remove all filtering" org-agenda-filter-remove-all t]
  2227. "--"
  2228. ["limit" org-agenda-limit-interactively t])
  2229. ["Rebuild buffer" org-agenda-redo t]
  2230. ["Write view to file" org-agenda-write t]
  2231. ["Save all Org buffers" org-save-all-org-buffers t]
  2232. "--"
  2233. ["Show original entry" org-agenda-show t]
  2234. ["Go To (other window)" org-agenda-goto t]
  2235. ["Go To (this window)" org-agenda-switch-to t]
  2236. ["Capture with cursor date" org-agenda-capture t]
  2237. ["Follow Mode" org-agenda-follow-mode
  2238. :style toggle :selected org-agenda-follow-mode :active t]
  2239. ;; ["Tree to indirect frame" org-agenda-tree-to-indirect-buffer t]
  2240. "--"
  2241. ("TODO"
  2242. ["Cycle TODO" org-agenda-todo t]
  2243. ["Next TODO set" org-agenda-todo-nextset t]
  2244. ["Previous TODO set" org-agenda-todo-previousset t]
  2245. ["Add note" org-agenda-add-note t])
  2246. ("Archive/Refile/Delete"
  2247. ["Archive default" org-agenda-archive-default t]
  2248. ["Archive default" org-agenda-archive-default-with-confirmation t]
  2249. ["Toggle ARCHIVE tag" org-agenda-toggle-archive-tag t]
  2250. ["Move to archive sibling" org-agenda-archive-to-archive-sibling t]
  2251. ["Archive subtree" org-agenda-archive t]
  2252. "--"
  2253. ["Refile" org-agenda-refile t]
  2254. "--"
  2255. ["Delete subtree" org-agenda-kill t])
  2256. ("Bulk action"
  2257. ["Mark entry" org-agenda-bulk-mark t]
  2258. ["Mark all" org-agenda-bulk-mark-all t]
  2259. ["Unmark entry" org-agenda-bulk-unmark t]
  2260. ["Unmark all" org-agenda-bulk-unmark-all :active t :keys "U"]
  2261. ["Toggle mark" org-agenda-bulk-toggle t]
  2262. ["Toggle all" org-agenda-bulk-toggle-all t]
  2263. ["Mark regexp" org-agenda-bulk-mark-regexp t])
  2264. ["Act on all marked" org-agenda-bulk-action t]
  2265. "--"
  2266. ("Tags and Properties"
  2267. ["Show all Tags" org-agenda-show-tags t]
  2268. ["Set Tags current line" org-agenda-set-tags (not (org-region-active-p))]
  2269. ["Change tag in region" org-agenda-set-tags (org-region-active-p)]
  2270. "--"
  2271. ["Column View" org-columns t])
  2272. ("Deadline/Schedule"
  2273. ["Schedule" org-agenda-schedule t]
  2274. ["Set Deadline" org-agenda-deadline t]
  2275. "--"
  2276. ["Change Date +1 day" org-agenda-date-later (org-agenda-check-type nil 'agenda)]
  2277. ["Change Date -1 day" org-agenda-date-earlier (org-agenda-check-type nil 'agenda)]
  2278. ["Change Time +1 hour" org-agenda-do-date-later :active (org-agenda-check-type nil 'agenda) :keys "C-u S-right"]
  2279. ["Change Time -1 hour" org-agenda-do-date-earlier :active (org-agenda-check-type nil 'agenda) :keys "C-u S-left"]
  2280. ["Change Time + min" org-agenda-date-later :active (org-agenda-check-type nil 'agenda) :keys "C-u C-u S-right"]
  2281. ["Change Time - min" org-agenda-date-earlier :active (org-agenda-check-type nil 'agenda) :keys "C-u C-u S-left"]
  2282. ["Change Date to ..." org-agenda-date-prompt (org-agenda-check-type nil 'agenda)])
  2283. ("Clock and Effort"
  2284. ["Clock in" org-agenda-clock-in t]
  2285. ["Clock out" org-agenda-clock-out t]
  2286. ["Clock cancel" org-agenda-clock-cancel t]
  2287. ["Goto running clock" org-clock-goto t]
  2288. "--"
  2289. ["Set Effort" org-agenda-set-effort t]
  2290. ["Change clocked effort" org-clock-modify-effort-estimate
  2291. (org-clock-is-active)])
  2292. ("Priority"
  2293. ["Set Priority" org-agenda-priority t]
  2294. ["Increase Priority" org-agenda-priority-up t]
  2295. ["Decrease Priority" org-agenda-priority-down t]
  2296. ["Show Priority" org-priority-show t])
  2297. ("Calendar/Diary"
  2298. ["New Diary Entry" org-agenda-diary-entry (org-agenda-check-type nil 'agenda)]
  2299. ["Goto Calendar" org-agenda-goto-calendar (org-agenda-check-type nil 'agenda)]
  2300. ["Phases of the Moon" org-agenda-phases-of-moon (org-agenda-check-type nil 'agenda)]
  2301. ["Sunrise/Sunset" org-agenda-sunrise-sunset (org-agenda-check-type nil 'agenda)]
  2302. ["Holidays" org-agenda-holidays (org-agenda-check-type nil 'agenda)]
  2303. ["Convert" org-agenda-convert-date (org-agenda-check-type nil 'agenda)]
  2304. "--"
  2305. ["Create iCalendar File" org-icalendar-combine-agenda-files t])
  2306. "--"
  2307. ["Undo Remote Editing" org-agenda-undo org-agenda-undo-list]
  2308. "--"
  2309. ("MobileOrg"
  2310. ["Push Files and Views" org-mobile-push t]
  2311. ["Get Captured and Flagged" org-mobile-pull t]
  2312. ["Find FLAGGED Tasks" (org-agenda nil "?") :active t :keys "\\[org-agenda] ?"]
  2313. ["Show note / unflag" org-agenda-show-the-flagging-note t]
  2314. "--"
  2315. ["Setup" (progn (require 'org-mobile) (customize-group 'org-mobile)) t])
  2316. "--"
  2317. ["Quit" org-agenda-quit t]
  2318. ["Exit and Release Buffers" org-agenda-exit t]
  2319. ))
  2320. ;;; Agenda undo
  2321. (defvar org-agenda-allow-remote-undo t
  2322. "Non-nil means allow remote undo from the agenda buffer.")
  2323. (defvar org-agenda-undo-has-started-in nil
  2324. "Buffers that have already seen `undo-start' in the current undo sequence.")
  2325. (defun org-agenda-undo ()
  2326. "Undo a remote editing step in the agenda.
  2327. This undoes changes both in the agenda buffer and in the remote buffer
  2328. that have been changed along."
  2329. (interactive)
  2330. (or org-agenda-allow-remote-undo
  2331. (user-error "Check the variable `org-agenda-allow-remote-undo' to activate remote undo"))
  2332. (when (not (eq this-command last-command))
  2333. (setq org-agenda-undo-has-started-in nil
  2334. org-agenda-pending-undo-list org-agenda-undo-list))
  2335. (when (not org-agenda-pending-undo-list)
  2336. (user-error "No further undo information"))
  2337. (let* ((entry (pop org-agenda-pending-undo-list))
  2338. buf line cmd rembuf)
  2339. (setq cmd (pop entry) line (pop entry))
  2340. (setq rembuf (nth 2 entry))
  2341. (org-with-remote-undo rembuf
  2342. (while (bufferp (setq buf (pop entry)))
  2343. (when (pop entry)
  2344. (with-current-buffer buf
  2345. (let ((last-undo-buffer buf)
  2346. (inhibit-read-only t))
  2347. (unless (memq buf org-agenda-undo-has-started-in)
  2348. (push buf org-agenda-undo-has-started-in)
  2349. (make-local-variable 'pending-undo-list)
  2350. (undo-start))
  2351. (while (and pending-undo-list
  2352. (listp pending-undo-list)
  2353. (not (car pending-undo-list)))
  2354. (pop pending-undo-list))
  2355. (undo-more 1))))))
  2356. (org-goto-line line)
  2357. (message "`%s' undone (buffer %s)" cmd (buffer-name rembuf))))
  2358. (defun org-verify-change-for-undo (l1 l2)
  2359. "Verify that a real change occurred between the undo lists L1 and L2."
  2360. (while (and l1 (listp l1) (null (car l1))) (pop l1))
  2361. (while (and l2 (listp l2) (null (car l2))) (pop l2))
  2362. (not (eq l1 l2)))
  2363. ;;; Agenda dispatch
  2364. (defvar org-agenda-restrict-begin (make-marker))
  2365. (defvar org-agenda-restrict-end (make-marker))
  2366. (defvar org-agenda-last-dispatch-buffer nil)
  2367. (defvar org-agenda-overriding-restriction nil)
  2368. (defcustom org-agenda-custom-commands-contexts nil
  2369. "Alist of custom agenda keys and contextual rules.
  2370. For example, if you have a custom agenda command \"p\" and you
  2371. want this command to be accessible only from plain text files,
  2372. use this:
  2373. \\='((\"p\" ((in-file . \"\\\\.txt\\\\'\"))))
  2374. Here are the available contexts definitions:
  2375. in-file: command displayed only in matching files
  2376. in-mode: command displayed only in matching modes
  2377. not-in-file: command not displayed in matching files
  2378. not-in-mode: command not displayed in matching modes
  2379. in-buffer: command displayed only in matching buffers
  2380. not-in-buffer: command not displayed in matching buffers
  2381. [function]: a custom function taking no argument
  2382. If you define several checks, the agenda command will be
  2383. accessible if there is at least one valid check.
  2384. You can also bind a key to another agenda custom command
  2385. depending on contextual rules.
  2386. \\='((\"p\" \"q\" ((in-file . \"\\\\.txt\\\\'\"))))
  2387. Here it means: in .txt files, use \"p\" as the key for the
  2388. agenda command otherwise associated with \"q\". (The command
  2389. originally associated with \"q\" is not displayed to avoid
  2390. duplicates.)"
  2391. :version "24.3"
  2392. :group 'org-agenda-custom-commands
  2393. :type '(repeat (list :tag "Rule"
  2394. (string :tag " Agenda key")
  2395. (string :tag "Replace by command")
  2396. (repeat :tag "Available when"
  2397. (choice
  2398. (cons :tag "Condition"
  2399. (choice
  2400. (const :tag "In file" in-file)
  2401. (const :tag "Not in file" not-in-file)
  2402. (const :tag "In buffer" in-buffer)
  2403. (const :tag "Not in buffer" not-in-buffer)
  2404. (const :tag "In mode" in-mode)
  2405. (const :tag "Not in mode" not-in-mode))
  2406. (regexp))
  2407. (function :tag "Custom function"))))))
  2408. (defcustom org-agenda-max-entries nil
  2409. "Maximum number of entries to display in an agenda.
  2410. This can be nil (no limit) or an integer or an alist of agenda
  2411. types with an associated number of entries to display in this
  2412. type."
  2413. :version "24.4"
  2414. :package-version '(Org . "8.0")
  2415. :group 'org-agenda-custom-commands
  2416. :type '(choice (symbol :tag "No limit" nil)
  2417. (integer :tag "Max number of entries")
  2418. (repeat
  2419. (cons (choice :tag "Agenda type"
  2420. (const agenda)
  2421. (const todo)
  2422. (const tags)
  2423. (const search))
  2424. (integer :tag "Max number of entries")))))
  2425. (defcustom org-agenda-max-todos nil
  2426. "Maximum number of TODOs to display in an agenda.
  2427. This can be nil (no limit) or an integer or an alist of agenda
  2428. types with an associated number of entries to display in this
  2429. type."
  2430. :version "24.4"
  2431. :package-version '(Org . "8.0")
  2432. :group 'org-agenda-custom-commands
  2433. :type '(choice (symbol :tag "No limit" nil)
  2434. (integer :tag "Max number of TODOs")
  2435. (repeat
  2436. (cons (choice :tag "Agenda type"
  2437. (const agenda)
  2438. (const todo)
  2439. (const tags)
  2440. (const search))
  2441. (integer :tag "Max number of TODOs")))))
  2442. (defcustom org-agenda-max-tags nil
  2443. "Maximum number of tagged entries to display in an agenda.
  2444. This can be nil (no limit) or an integer or an alist of agenda
  2445. types with an associated number of entries to display in this
  2446. type."
  2447. :version "24.4"
  2448. :package-version '(Org . "8.0")
  2449. :group 'org-agenda-custom-commands
  2450. :type '(choice (symbol :tag "No limit" nil)
  2451. (integer :tag "Max number of tagged entries")
  2452. (repeat
  2453. (cons (choice :tag "Agenda type"
  2454. (const agenda)
  2455. (const todo)
  2456. (const tags)
  2457. (const search))
  2458. (integer :tag "Max number of tagged entries")))))
  2459. (defcustom org-agenda-max-effort nil
  2460. "Maximum cumulated effort duration for the agenda.
  2461. This can be nil (no limit) or a number of minutes (as an integer)
  2462. or an alist of agenda types with an associated number of minutes
  2463. to limit entries to in this type."
  2464. :version "24.4"
  2465. :package-version '(Org . "8.0")
  2466. :group 'org-agenda-custom-commands
  2467. :type '(choice (symbol :tag "No limit" nil)
  2468. (integer :tag "Max number of minutes")
  2469. (repeat
  2470. (cons (choice :tag "Agenda type"
  2471. (const agenda)
  2472. (const todo)
  2473. (const tags)
  2474. (const search))
  2475. (integer :tag "Max number of minutes")))))
  2476. (defvar org-agenda-keep-restricted-file-list nil)
  2477. (defvar org-keys nil)
  2478. (defvar org-match nil)
  2479. ;;;###autoload
  2480. (defun org-agenda (&optional arg org-keys restriction)
  2481. "Dispatch agenda commands to collect entries to the agenda buffer.
  2482. Prompts for a command to execute. Any prefix arg will be passed
  2483. on to the selected command. The default selections are:
  2484. a Call `org-agenda-list' to display the agenda for current day or week.
  2485. t Call `org-todo-list' to display the global todo list.
  2486. T Call `org-todo-list' to display the global todo list, select only
  2487. entries with a specific TODO keyword (the user gets a prompt).
  2488. m Call `org-tags-view' to display headlines with tags matching
  2489. a condition (the user is prompted for the condition).
  2490. M Like `m', but select only TODO entries, no ordinary headlines.
  2491. e Export views to associated files.
  2492. s Search entries for keywords.
  2493. S Search entries for keywords, only with TODO keywords.
  2494. / Multi occur across all agenda files and also files listed
  2495. in `org-agenda-text-search-extra-files'.
  2496. < Restrict agenda commands to buffer, subtree, or region.
  2497. Press several times to get the desired effect.
  2498. > Remove a previous restriction.
  2499. # List \"stuck\" projects.
  2500. ! Configure what \"stuck\" means.
  2501. C Configure custom agenda commands.
  2502. More commands can be added by configuring the variable
  2503. `org-agenda-custom-commands'. In particular, specific tags and TODO keyword
  2504. searches can be pre-defined in this way.
  2505. If the current buffer is in Org mode and visiting a file, you can also
  2506. first press `<' once to indicate that the agenda should be temporarily
  2507. \(until the next use of `\\[org-agenda]') restricted to the current file.
  2508. Pressing `<' twice means to restrict to the current subtree or region
  2509. \(if active)."
  2510. (interactive "P")
  2511. (catch 'exit
  2512. (let* ((prefix-descriptions nil)
  2513. (org-agenda-buffer-name org-agenda-buffer-name)
  2514. (org-agenda-window-setup (if (equal (buffer-name)
  2515. org-agenda-buffer-name)
  2516. 'current-window
  2517. org-agenda-window-setup))
  2518. (org-agenda-custom-commands-orig org-agenda-custom-commands)
  2519. (org-agenda-custom-commands
  2520. ;; normalize different versions
  2521. (delq nil
  2522. (mapcar
  2523. (lambda (x)
  2524. (cond ((stringp (cdr x))
  2525. (push x prefix-descriptions)
  2526. nil)
  2527. ((stringp (nth 1 x)) x)
  2528. ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
  2529. (t (cons (car x) (cons "" (cdr x))))))
  2530. org-agenda-custom-commands)))
  2531. (org-agenda-custom-commands
  2532. (org-contextualize-keys
  2533. org-agenda-custom-commands org-agenda-custom-commands-contexts))
  2534. (buf (current-buffer))
  2535. (bfn (buffer-file-name (buffer-base-buffer)))
  2536. entry key type org-match lprops ans)
  2537. ;; Turn off restriction unless there is an overriding one,
  2538. (unless org-agenda-overriding-restriction
  2539. (unless org-agenda-keep-restricted-file-list
  2540. ;; There is a request to keep the file list in place
  2541. (put 'org-agenda-files 'org-restrict nil))
  2542. (setq org-agenda-restrict nil)
  2543. (move-marker org-agenda-restrict-begin nil)
  2544. (move-marker org-agenda-restrict-end nil))
  2545. ;; Delete old local properties
  2546. (put 'org-agenda-redo-command 'org-lprops nil)
  2547. ;; Delete previously set last-arguments
  2548. (put 'org-agenda-redo-command 'last-args nil)
  2549. ;; Remember where this call originated
  2550. (setq org-agenda-last-dispatch-buffer (current-buffer))
  2551. (unless org-keys
  2552. (setq ans (org-agenda-get-restriction-and-command prefix-descriptions)
  2553. org-keys (car ans)
  2554. restriction (cdr ans)))
  2555. ;; If we have sticky agenda buffers, set a name for the buffer,
  2556. ;; depending on the invoking keys. The user may still set this
  2557. ;; as a command option, which will overwrite what we do here.
  2558. (when org-agenda-sticky
  2559. (setq org-agenda-buffer-name
  2560. (format "*Org Agenda(%s)*" org-keys)))
  2561. ;; Establish the restriction, if any
  2562. (when (and (not org-agenda-overriding-restriction) restriction)
  2563. (put 'org-agenda-files 'org-restrict (list bfn))
  2564. (cond
  2565. ((eq restriction 'region)
  2566. (setq org-agenda-restrict (current-buffer))
  2567. (move-marker org-agenda-restrict-begin (region-beginning))
  2568. (move-marker org-agenda-restrict-end (region-end)))
  2569. ((eq restriction 'subtree)
  2570. (save-excursion
  2571. (setq org-agenda-restrict (current-buffer))
  2572. (org-back-to-heading t)
  2573. (move-marker org-agenda-restrict-begin (point))
  2574. (move-marker org-agenda-restrict-end
  2575. (progn (org-end-of-subtree t)))))
  2576. ((and (eq restriction 'buffer)
  2577. (or (< 1 (point-min))
  2578. (< (point-max) (1+ (buffer-size)))))
  2579. (setq org-agenda-restrict (current-buffer))
  2580. (move-marker org-agenda-restrict-begin (point-min))
  2581. (move-marker org-agenda-restrict-end (point-max)))))
  2582. ;; For example the todo list should not need it (but does...)
  2583. (cond
  2584. ((setq entry (assoc org-keys org-agenda-custom-commands))
  2585. (if (or (symbolp (nth 2 entry)) (functionp (nth 2 entry)))
  2586. (progn
  2587. (setq type (nth 2 entry) org-match (eval (nth 3 entry))
  2588. lprops (nth 4 entry))
  2589. (when org-agenda-sticky
  2590. (setq org-agenda-buffer-name
  2591. (or (and (stringp org-match) (format "*Org Agenda(%s:%s)*" org-keys org-match))
  2592. (format "*Org Agenda(%s)*" org-keys))))
  2593. (put 'org-agenda-redo-command 'org-lprops lprops)
  2594. (cond
  2595. ((eq type 'agenda)
  2596. (org-let lprops '(org-agenda-list current-prefix-arg)))
  2597. ((eq type 'agenda*)
  2598. (org-let lprops '(org-agenda-list current-prefix-arg nil nil t)))
  2599. ((eq type 'alltodo)
  2600. (org-let lprops '(org-todo-list current-prefix-arg)))
  2601. ((eq type 'search)
  2602. (org-let lprops '(org-search-view current-prefix-arg org-match nil)))
  2603. ((eq type 'stuck)
  2604. (org-let lprops '(org-agenda-list-stuck-projects
  2605. current-prefix-arg)))
  2606. ((eq type 'tags)
  2607. (org-let lprops '(org-tags-view current-prefix-arg org-match)))
  2608. ((eq type 'tags-todo)
  2609. (org-let lprops '(org-tags-view '(4) org-match)))
  2610. ((eq type 'todo)
  2611. (org-let lprops '(org-todo-list org-match)))
  2612. ((eq type 'tags-tree)
  2613. (org-check-for-org-mode)
  2614. (org-let lprops '(org-match-sparse-tree current-prefix-arg org-match)))
  2615. ((eq type 'todo-tree)
  2616. (org-check-for-org-mode)
  2617. (org-let lprops
  2618. '(org-occur (concat "^" org-outline-regexp "[ \t]*"
  2619. (regexp-quote org-match) "\\>"))))
  2620. ((eq type 'occur-tree)
  2621. (org-check-for-org-mode)
  2622. (org-let lprops '(org-occur org-match)))
  2623. ((functionp type)
  2624. (org-let lprops '(funcall type org-match)))
  2625. ((fboundp type)
  2626. (org-let lprops '(funcall type org-match)))
  2627. (t (user-error "Invalid custom agenda command type %s" type))))
  2628. (org-agenda-run-series (nth 1 entry) (cddr entry))))
  2629. ((equal org-keys "C")
  2630. (setq org-agenda-custom-commands org-agenda-custom-commands-orig)
  2631. (customize-variable 'org-agenda-custom-commands))
  2632. ((equal org-keys "a") (call-interactively 'org-agenda-list))
  2633. ((equal org-keys "s") (call-interactively 'org-search-view))
  2634. ((equal org-keys "S") (org-call-with-arg 'org-search-view (or arg '(4))))
  2635. ((equal org-keys "t") (call-interactively 'org-todo-list))
  2636. ((equal org-keys "T") (org-call-with-arg 'org-todo-list (or arg '(4))))
  2637. ((equal org-keys "m") (call-interactively 'org-tags-view))
  2638. ((equal org-keys "M") (org-call-with-arg 'org-tags-view (or arg '(4))))
  2639. ((equal org-keys "e") (call-interactively 'org-store-agenda-views))
  2640. ((equal org-keys "?") (org-tags-view nil "+FLAGGED")
  2641. (add-hook
  2642. 'post-command-hook
  2643. (lambda ()
  2644. (unless (current-message)
  2645. (let* ((m (org-agenda-get-any-marker))
  2646. (note (and m (org-entry-get m "THEFLAGGINGNOTE"))))
  2647. (when note
  2648. (message "FLAGGING-NOTE ([?] for more info): %s"
  2649. (org-add-props
  2650. (replace-regexp-in-string
  2651. "\\\\n" "//"
  2652. (copy-sequence note))
  2653. nil 'face 'org-warning))))))
  2654. t t))
  2655. ((equal org-keys "#") (call-interactively 'org-agenda-list-stuck-projects))
  2656. ((equal org-keys "/") (call-interactively 'org-occur-in-agenda-files))
  2657. ((equal org-keys "!") (customize-variable 'org-stuck-projects))
  2658. (t (user-error "Invalid agenda key"))))))
  2659. (defvar org-agenda-multi)
  2660. (defun org-agenda-append-agenda ()
  2661. "Append another agenda view to the current one.
  2662. This function allows interactive building of block agendas.
  2663. Agenda views are separated by `org-agenda-block-separator'."
  2664. (interactive)
  2665. (unless (derived-mode-p 'org-agenda-mode)
  2666. (user-error "Can only append from within agenda buffer"))
  2667. (let ((org-agenda-multi t))
  2668. (org-agenda)
  2669. (widen)
  2670. (org-agenda-finalize)
  2671. (setq buffer-read-only t)
  2672. (org-agenda-fit-window-to-buffer)))
  2673. (defun org-agenda-normalize-custom-commands (cmds)
  2674. "Normalize custom commands CMDS."
  2675. (delq nil
  2676. (mapcar
  2677. (lambda (x)
  2678. (cond ((stringp (cdr x)) nil)
  2679. ((stringp (nth 1 x)) x)
  2680. ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
  2681. (t (cons (car x) (cons "" (cdr x))))))
  2682. cmds)))
  2683. (defun org-agenda-get-restriction-and-command (prefix-descriptions)
  2684. "The user interface for selecting an agenda command."
  2685. (catch 'exit
  2686. (let* ((bfn (buffer-file-name (buffer-base-buffer)))
  2687. (restrict-ok (and bfn (derived-mode-p 'org-mode)))
  2688. (region-p (org-region-active-p))
  2689. (custom org-agenda-custom-commands)
  2690. (selstring "")
  2691. restriction second-time
  2692. c entry key type match prefixes rmheader header-end custom1 desc
  2693. line lines left right n n1)
  2694. (save-window-excursion
  2695. (delete-other-windows)
  2696. (org-switch-to-buffer-other-window " *Agenda Commands*")
  2697. (erase-buffer)
  2698. (insert (eval-when-compile
  2699. (let ((header
  2700. "Press key for an agenda command:
  2701. -------------------------------- < Buffer, subtree/region restriction
  2702. a Agenda for current week or day > Remove restriction
  2703. t List of all TODO entries e Export agenda views
  2704. m Match a TAGS/PROP/TODO query T Entries with special TODO kwd
  2705. s Search for keywords M Like m, but only TODO entries
  2706. / Multi-occur S Like s, but only TODO entries
  2707. ? Find :FLAGGED: entries C Configure custom agenda commands
  2708. * Toggle sticky agenda views # List stuck projects (!=configure)
  2709. ")
  2710. (start 0))
  2711. (while (string-match
  2712. "\\(^\\| \\|(\\)\\(\\S-\\)\\( \\|=\\)"
  2713. header start)
  2714. (setq start (match-end 0))
  2715. (add-text-properties (match-beginning 2) (match-end 2)
  2716. '(face bold) header))
  2717. header)))
  2718. (setq header-end (point-marker))
  2719. (while t
  2720. (setq custom1 custom)
  2721. (when (eq rmheader t)
  2722. (org-goto-line 1)
  2723. (re-search-forward ":" nil t)
  2724. (delete-region (match-end 0) (point-at-eol))
  2725. (forward-char 1)
  2726. (looking-at "-+")
  2727. (delete-region (match-end 0) (point-at-eol))
  2728. (move-marker header-end (match-end 0)))
  2729. (goto-char header-end)
  2730. (delete-region (point) (point-max))
  2731. ;; Produce all the lines that describe custom commands and prefixes
  2732. (setq lines nil)
  2733. (while (setq entry (pop custom1))
  2734. (setq key (car entry) desc (nth 1 entry)
  2735. type (nth 2 entry)
  2736. match (nth 3 entry))
  2737. (if (> (length key) 1)
  2738. (cl-pushnew (string-to-char key) prefixes :test #'equal)
  2739. (setq line
  2740. (format
  2741. "%-4s%-14s"
  2742. (org-add-props (copy-sequence key)
  2743. '(face bold))
  2744. (cond
  2745. ((string-match "\\S-" desc) desc)
  2746. ((eq type 'agenda) "Agenda for current week or day")
  2747. ((eq type 'agenda*) "Appointments for current week or day")
  2748. ((eq type 'alltodo) "List of all TODO entries")
  2749. ((eq type 'search) "Word search")
  2750. ((eq type 'stuck) "List of stuck projects")
  2751. ((eq type 'todo) "TODO keyword")
  2752. ((eq type 'tags) "Tags query")
  2753. ((eq type 'tags-todo) "Tags (TODO)")
  2754. ((eq type 'tags-tree) "Tags tree")
  2755. ((eq type 'todo-tree) "TODO kwd tree")
  2756. ((eq type 'occur-tree) "Occur tree")
  2757. ((functionp type) (if (symbolp type)
  2758. (symbol-name type)
  2759. "Lambda expression"))
  2760. (t "???"))))
  2761. (cond
  2762. ((not (org-string-nw-p match)) nil)
  2763. (org-agenda-menu-show-matcher
  2764. (setq line
  2765. (concat line ": "
  2766. (cond
  2767. ((stringp match)
  2768. (propertize match 'face 'org-warning))
  2769. ((listp type)
  2770. (format "set of %d commands" (length type)))))))
  2771. (t
  2772. (org-add-props line nil 'help-echo (concat "Matcher: " match))))
  2773. (push line lines)))
  2774. (setq lines (nreverse lines))
  2775. (when prefixes
  2776. (mapc (lambda (x)
  2777. (push
  2778. (format "%s %s"
  2779. (org-add-props (char-to-string x)
  2780. nil 'face 'bold)
  2781. (or (cdr (assoc (concat selstring
  2782. (char-to-string x))
  2783. prefix-descriptions))
  2784. "Prefix key"))
  2785. lines))
  2786. prefixes))
  2787. ;; Check if we should display in two columns
  2788. (if org-agenda-menu-two-columns
  2789. (progn
  2790. (setq n (length lines)
  2791. n1 (+ (/ n 2) (mod n 2))
  2792. right (nthcdr n1 lines)
  2793. left (copy-sequence lines))
  2794. (setcdr (nthcdr (1- n1) left) nil))
  2795. (setq left lines right nil))
  2796. (while left
  2797. (insert "\n" (pop left))
  2798. (when right
  2799. (if (< (current-column) 40)
  2800. (move-to-column 40 t)
  2801. (insert " "))
  2802. (insert (pop right))))
  2803. ;; Make the window the right size
  2804. (goto-char (point-min))
  2805. (if second-time
  2806. (when (not (pos-visible-in-window-p (point-max)))
  2807. (org-fit-window-to-buffer))
  2808. (setq second-time t)
  2809. (org-fit-window-to-buffer))
  2810. ;; Hint to navigation if window too small for all information
  2811. (setq header-line-format
  2812. (when (not (pos-visible-in-window-p (point-max)))
  2813. "Use C-v, M-v, C-n or C-p to navigate."))
  2814. ;; Ask for selection
  2815. (cl-loop
  2816. do (progn
  2817. (message "Press key for agenda command%s:"
  2818. (if (or restrict-ok org-agenda-overriding-restriction)
  2819. (if org-agenda-overriding-restriction
  2820. " (restriction lock active)"
  2821. (if restriction
  2822. (format " (restricted to %s)" restriction)
  2823. " (unrestricted)"))
  2824. ""))
  2825. (setq c (read-char-exclusive)))
  2826. until (not (memq c '(14 16 22 134217846)))
  2827. do (org-scroll c))
  2828. (message "")
  2829. (cond
  2830. ((assoc (char-to-string c) custom)
  2831. (setq selstring (concat selstring (char-to-string c)))
  2832. (throw 'exit (cons selstring restriction)))
  2833. ((memq c prefixes)
  2834. (setq selstring (concat selstring (char-to-string c))
  2835. prefixes nil
  2836. rmheader (or rmheader t)
  2837. custom (delq nil (mapcar
  2838. (lambda (x)
  2839. (if (or (= (length (car x)) 1)
  2840. (/= (string-to-char (car x)) c))
  2841. nil
  2842. (cons (substring (car x) 1) (cdr x))))
  2843. custom))))
  2844. ((eq c ?*)
  2845. (call-interactively 'org-toggle-sticky-agenda)
  2846. (sit-for 2))
  2847. ((and (not restrict-ok) (memq c '(?1 ?0 ?<)))
  2848. (message "Restriction is only possible in Org buffers")
  2849. (ding) (sit-for 1))
  2850. ((eq c ?1)
  2851. (org-agenda-remove-restriction-lock 'noupdate)
  2852. (setq restriction 'buffer))
  2853. ((eq c ?0)
  2854. (org-agenda-remove-restriction-lock 'noupdate)
  2855. (setq restriction (if region-p 'region 'subtree)))
  2856. ((eq c ?<)
  2857. (org-agenda-remove-restriction-lock 'noupdate)
  2858. (setq restriction
  2859. (cond
  2860. ((eq restriction 'buffer)
  2861. (if region-p 'region 'subtree))
  2862. ((memq restriction '(subtree region))
  2863. nil)
  2864. (t 'buffer))))
  2865. ((eq c ?>)
  2866. (org-agenda-remove-restriction-lock 'noupdate)
  2867. (setq restriction nil))
  2868. ((and (equal selstring "") (memq c '(?s ?S ?a ?t ?m ?L ?C ?e ?T ?M ?# ?! ?/ ??)))
  2869. (throw 'exit (cons (setq selstring (char-to-string c)) restriction)))
  2870. ((and (> (length selstring) 0) (eq c ?\d))
  2871. (delete-window)
  2872. (org-agenda-get-restriction-and-command prefix-descriptions))
  2873. ((equal c ?q) (error "Abort"))
  2874. (t (user-error "Invalid key %c" c))))))))
  2875. (defun org-agenda-fit-window-to-buffer ()
  2876. "Fit the window to the buffer size."
  2877. (and (memq org-agenda-window-setup '(reorganize-frame))
  2878. (fboundp 'fit-window-to-buffer)
  2879. (if (and (= (cdr org-agenda-window-frame-fractions) 1.0)
  2880. (= (car org-agenda-window-frame-fractions) 1.0))
  2881. (delete-other-windows)
  2882. (org-fit-window-to-buffer
  2883. nil
  2884. (floor (* (frame-height) (cdr org-agenda-window-frame-fractions)))
  2885. (floor (* (frame-height) (car org-agenda-window-frame-fractions)))))))
  2886. (defvar org-cmd nil)
  2887. (defvar org-agenda-overriding-cmd nil)
  2888. (defvar org-agenda-overriding-arguments nil)
  2889. (defvar org-agenda-overriding-cmd-arguments nil)
  2890. (defun org-agenda-run-series (name series)
  2891. "Run agenda NAME as a SERIES of agenda commands."
  2892. (org-let (nth 1 series) '(org-agenda-prepare name))
  2893. ;; We need to reset agenda markers here, because when constructing a
  2894. ;; block agenda, the individual blocks do not do that.
  2895. (org-agenda-reset-markers)
  2896. (let* ((org-agenda-multi t)
  2897. (redo (list 'org-agenda-run-series name (list 'quote series)))
  2898. (cmds (car series))
  2899. (gprops (nth 1 series))
  2900. match ;; The byte compiler incorrectly complains about this. Keep it!
  2901. org-cmd type lprops)
  2902. (while (setq org-cmd (pop cmds))
  2903. (setq type (car org-cmd))
  2904. (setq match (eval (nth 1 org-cmd)))
  2905. (setq lprops (nth 2 org-cmd))
  2906. (let ((org-agenda-overriding-arguments
  2907. (if (eq org-agenda-overriding-cmd org-cmd)
  2908. (or org-agenda-overriding-arguments
  2909. org-agenda-overriding-cmd-arguments))))
  2910. (cond
  2911. ((eq type 'agenda)
  2912. (org-let2 gprops lprops
  2913. '(call-interactively 'org-agenda-list)))
  2914. ((eq type 'agenda*)
  2915. (org-let2 gprops lprops
  2916. '(funcall 'org-agenda-list nil nil t)))
  2917. ((eq type 'alltodo)
  2918. (org-let2 gprops lprops
  2919. '(call-interactively 'org-todo-list)))
  2920. ((eq type 'search)
  2921. (org-let2 gprops lprops
  2922. '(org-search-view current-prefix-arg match nil)))
  2923. ((eq type 'stuck)
  2924. (org-let2 gprops lprops
  2925. '(call-interactively 'org-agenda-list-stuck-projects)))
  2926. ((eq type 'tags)
  2927. (org-let2 gprops lprops
  2928. '(org-tags-view current-prefix-arg match)))
  2929. ((eq type 'tags-todo)
  2930. (org-let2 gprops lprops
  2931. '(org-tags-view '(4) match)))
  2932. ((eq type 'todo)
  2933. (org-let2 gprops lprops
  2934. '(org-todo-list match)))
  2935. ((fboundp type)
  2936. (org-let2 gprops lprops
  2937. '(funcall type match)))
  2938. (t (error "Invalid type in command series")))))
  2939. (widen)
  2940. (let ((inhibit-read-only t))
  2941. (add-text-properties (point-min) (point-max)
  2942. `(org-series t org-series-redo-cmd ,redo)))
  2943. (setq org-agenda-redo-command redo)
  2944. (goto-char (point-min)))
  2945. (org-agenda-fit-window-to-buffer)
  2946. (org-let (nth 1 series) '(org-agenda-finalize)))
  2947. ;;;###autoload
  2948. (defmacro org-batch-agenda (cmd-key &rest parameters)
  2949. "Run an agenda command in batch mode and send the result to STDOUT.
  2950. If CMD-KEY is a string of length 1, it is used as a key in
  2951. `org-agenda-custom-commands' and triggers this command. If it is a
  2952. longer string it is used as a tags/todo match string.
  2953. Parameters are alternating variable names and values that will be bound
  2954. before running the agenda command."
  2955. (org-eval-in-environment (org-make-parameter-alist parameters)
  2956. (let (org-agenda-sticky)
  2957. (if (> (length cmd-key) 1)
  2958. (org-tags-view nil cmd-key)
  2959. (org-agenda nil cmd-key))))
  2960. (set-buffer org-agenda-buffer-name)
  2961. (princ (buffer-string)))
  2962. (defvar org-agenda-info nil)
  2963. ;;;###autoload
  2964. (defmacro org-batch-agenda-csv (cmd-key &rest parameters)
  2965. "Run an agenda command in batch mode and send the result to STDOUT.
  2966. If CMD-KEY is a string of length 1, it is used as a key in
  2967. `org-agenda-custom-commands' and triggers this command. If it is a
  2968. longer string it is used as a tags/todo match string.
  2969. Parameters are alternating variable names and values that will be bound
  2970. before running the agenda command.
  2971. The output gives a line for each selected agenda item. Each
  2972. item is a list of comma-separated values, like this:
  2973. category,head,type,todo,tags,date,time,extra,priority-l,priority-n
  2974. category The category of the item
  2975. head The headline, without TODO kwd, TAGS and PRIORITY
  2976. type The type of the agenda entry, can be
  2977. todo selected in TODO match
  2978. tagsmatch selected in tags match
  2979. diary imported from diary
  2980. deadline a deadline on given date
  2981. scheduled scheduled on given date
  2982. timestamp entry has timestamp on given date
  2983. closed entry was closed on given date
  2984. upcoming-deadline warning about deadline
  2985. past-scheduled forwarded scheduled item
  2986. block entry has date block including g. date
  2987. todo The todo keyword, if any
  2988. tags All tags including inherited ones, separated by colons
  2989. date The relevant date, like 2007-2-14
  2990. time The time, like 15:00-16:50
  2991. extra String with extra planning info
  2992. priority-l The priority letter if any was given
  2993. priority-n The computed numerical priority
  2994. agenda-day The day in the agenda where this is listed"
  2995. (org-eval-in-environment (append '((org-agenda-remove-tags t))
  2996. (org-make-parameter-alist parameters))
  2997. (if (> (length cmd-key) 2)
  2998. (org-tags-view nil cmd-key)
  2999. (org-agenda nil cmd-key)))
  3000. (set-buffer org-agenda-buffer-name)
  3001. (let ((lines (org-split-string (buffer-string) "\n")))
  3002. (dolist (line lines)
  3003. (when (get-text-property 0 'org-category line)
  3004. (setq org-agenda-info
  3005. (org-fix-agenda-info (text-properties-at 0 line)))
  3006. (princ
  3007. (mapconcat 'org-agenda-export-csv-mapper
  3008. '(org-category txt type todo tags date time extra
  3009. priority-letter priority agenda-day)
  3010. ","))
  3011. (princ "\n")))))
  3012. (defun org-fix-agenda-info (props)
  3013. "Make sure all properties on an agenda item have a canonical form.
  3014. This ensures the export commands can easily use it."
  3015. (let (tmp re)
  3016. (when (setq tmp (plist-get props 'tags))
  3017. (setq props (plist-put props 'tags (mapconcat 'identity tmp ":"))))
  3018. (when (setq tmp (plist-get props 'date))
  3019. (when (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
  3020. (let ((calendar-date-display-form '(year "-" month "-" day)))
  3021. '((format "%4d, %9s %2s, %4s" dayname monthname day year))
  3022. (setq tmp (calendar-date-string tmp)))
  3023. (setq props (plist-put props 'date tmp)))
  3024. (when (setq tmp (plist-get props 'day))
  3025. (when (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
  3026. (let ((calendar-date-display-form '(year "-" month "-" day)))
  3027. (setq tmp (calendar-date-string tmp)))
  3028. (setq props (plist-put props 'day tmp))
  3029. (setq props (plist-put props 'agenda-day tmp)))
  3030. (when (setq tmp (plist-get props 'txt))
  3031. (when (string-match "\\[#\\([A-Z0-9]\\)\\] ?" tmp)
  3032. (plist-put props 'priority-letter (match-string 1 tmp))
  3033. (setq tmp (replace-match "" t t tmp)))
  3034. (when (and (setq re (plist-get props 'org-todo-regexp))
  3035. (setq re (concat "\\`\\.*" re " ?"))
  3036. (let ((case-fold-search nil)) (string-match re tmp)))
  3037. (plist-put props 'todo (match-string 1 tmp))
  3038. (setq tmp (replace-match "" t t tmp)))
  3039. (plist-put props 'txt tmp)))
  3040. props)
  3041. (defun org-agenda-export-csv-mapper (prop)
  3042. (let ((res (plist-get org-agenda-info prop)))
  3043. (setq res
  3044. (cond
  3045. ((not res) "")
  3046. ((stringp res) res)
  3047. (t (prin1-to-string res))))
  3048. (org-trim (replace-regexp-in-string "," ";" res nil t))))
  3049. ;;;###autoload
  3050. (defun org-store-agenda-views (&rest parameters)
  3051. "Store agenda views."
  3052. (interactive)
  3053. (eval (list 'org-batch-store-agenda-views)))
  3054. ;;;###autoload
  3055. (defmacro org-batch-store-agenda-views (&rest parameters)
  3056. "Run all custom agenda commands that have a file argument."
  3057. (let ((cmds (org-agenda-normalize-custom-commands org-agenda-custom-commands))
  3058. (pop-up-frames nil)
  3059. (dir default-directory)
  3060. (pars (org-make-parameter-alist parameters))
  3061. cmd thiscmdkey thiscmdcmd match files opts cmd-or-set bufname)
  3062. (save-window-excursion
  3063. (while cmds
  3064. (setq cmd (pop cmds)
  3065. thiscmdkey (car cmd)
  3066. thiscmdcmd (cdr cmd)
  3067. match (nth 2 thiscmdcmd)
  3068. bufname (if org-agenda-sticky
  3069. (or (and (stringp match)
  3070. (format "*Org Agenda(%s:%s)*" thiscmdkey match))
  3071. (format "*Org Agenda(%s)*" thiscmdkey))
  3072. org-agenda-buffer-name)
  3073. cmd-or-set (nth 2 cmd)
  3074. opts (nth (if (listp cmd-or-set) 3 4) cmd)
  3075. files (nth (if (listp cmd-or-set) 4 5) cmd))
  3076. (if (stringp files) (setq files (list files)))
  3077. (when files
  3078. (org-eval-in-environment (append org-agenda-exporter-settings
  3079. opts pars)
  3080. (org-agenda nil thiscmdkey))
  3081. (set-buffer bufname)
  3082. (while files
  3083. (org-eval-in-environment (append org-agenda-exporter-settings
  3084. opts pars)
  3085. (org-agenda-write (expand-file-name (pop files) dir) nil t bufname)))
  3086. (and (get-buffer bufname)
  3087. (kill-buffer bufname)))))))
  3088. (defvar org-agenda-current-span nil
  3089. "The current span used in the agenda view.") ; local variable in the agenda buffer
  3090. (defun org-agenda-mark-header-line (pos)
  3091. "Mark the line at POS as an agenda structure header."
  3092. (save-excursion
  3093. (goto-char pos)
  3094. (put-text-property (point-at-bol) (point-at-eol)
  3095. 'org-agenda-structural-header t)
  3096. (when org-agenda-title-append
  3097. (put-text-property (point-at-bol) (point-at-eol)
  3098. 'org-agenda-title-append org-agenda-title-append))))
  3099. (defvar org-mobile-creating-agendas) ; defined in org-mobile.el
  3100. (defvar org-agenda-write-buffer-name "Agenda View")
  3101. (defun org-agenda-write (file &optional open nosettings agenda-bufname)
  3102. "Write the current buffer (an agenda view) as a file.
  3103. Depending on the extension of the file name, plain text (.txt),
  3104. HTML (.html or .htm), PDF (.pdf) or Postscript (.ps) is produced.
  3105. If the extension is .ics, translate visible agenda into iCalendar
  3106. format. If the extension is .org, collect all subtrees
  3107. corresponding to the agenda entries and add them in an .org file.
  3108. With prefix argument OPEN, open the new file immediately. If
  3109. NOSETTINGS is given, do not scope the settings of
  3110. `org-agenda-exporter-settings' into the export commands. This is
  3111. used when the settings have already been scoped and we do not
  3112. wish to overrule other, higher priority settings. If
  3113. AGENDA-BUFFER-NAME is provided, use this as the buffer name for
  3114. the agenda to write."
  3115. (interactive "FWrite agenda to file: \nP")
  3116. (if (or (not (file-writable-p file))
  3117. (and (file-exists-p file)
  3118. (if (called-interactively-p 'any)
  3119. (not (y-or-n-p (format "Overwrite existing file %s? " file))))))
  3120. (user-error "Cannot write agenda to file %s" file))
  3121. (org-let (if nosettings nil org-agenda-exporter-settings)
  3122. '(save-excursion
  3123. (save-window-excursion
  3124. (let ((bs (copy-sequence (buffer-string)))
  3125. (extension (file-name-extension file))
  3126. (default-directory (file-name-directory file))
  3127. beg content)
  3128. (with-temp-buffer
  3129. (rename-buffer org-agenda-write-buffer-name t)
  3130. (set-buffer-modified-p nil)
  3131. (insert bs)
  3132. (org-agenda-remove-marked-text 'invisible 'org-filtered)
  3133. (run-hooks 'org-agenda-before-write-hook)
  3134. (cond
  3135. ((bound-and-true-p org-mobile-creating-agendas)
  3136. (org-mobile-write-agenda-for-mobile file))
  3137. ((string= "org" extension)
  3138. (let (content p m message-log-max)
  3139. (goto-char (point-min))
  3140. (while (setq p (next-single-property-change (point) 'org-hd-marker nil))
  3141. (goto-char p)
  3142. (setq m (get-text-property (point) 'org-hd-marker))
  3143. (when m
  3144. (push (save-excursion
  3145. (set-buffer (marker-buffer m))
  3146. (goto-char m)
  3147. (org-copy-subtree 1 nil t t)
  3148. org-subtree-clip)
  3149. content)))
  3150. (find-file file)
  3151. (erase-buffer)
  3152. (dolist (s content) (org-paste-subtree 1 s))
  3153. (write-file file)
  3154. (kill-buffer (current-buffer))
  3155. (message "Org file written to %s" file)))
  3156. ((member extension '("html" "htm"))
  3157. (or (require 'htmlize nil t)
  3158. (error "Please install htmlize from https://github.com/hniksic/emacs-htmlize"))
  3159. (set-buffer (htmlize-buffer (current-buffer)))
  3160. (when org-agenda-export-html-style
  3161. ;; replace <style> section with org-agenda-export-html-style
  3162. (goto-char (point-min))
  3163. (kill-region (- (search-forward "<style") 6)
  3164. (search-forward "</style>"))
  3165. (insert org-agenda-export-html-style))
  3166. (write-file file)
  3167. (kill-buffer (current-buffer))
  3168. (message "HTML written to %s" file))
  3169. ((string= "ps" extension)
  3170. (require 'ps-print)
  3171. (ps-print-buffer-with-faces file)
  3172. (message "Postscript written to %s" file))
  3173. ((string= "pdf" extension)
  3174. (require 'ps-print)
  3175. (ps-print-buffer-with-faces
  3176. (concat (file-name-sans-extension file) ".ps"))
  3177. (call-process "ps2pdf" nil nil nil
  3178. (expand-file-name
  3179. (concat (file-name-sans-extension file) ".ps"))
  3180. (expand-file-name file))
  3181. (delete-file (concat (file-name-sans-extension file) ".ps"))
  3182. (message "PDF written to %s" file))
  3183. ((string= "ics" extension)
  3184. (require 'ox-icalendar)
  3185. (org-icalendar-export-current-agenda (expand-file-name file)))
  3186. (t
  3187. (let ((bs (buffer-string)))
  3188. (find-file file)
  3189. (erase-buffer)
  3190. (insert bs)
  3191. (save-buffer 0)
  3192. (kill-buffer (current-buffer))
  3193. (message "Plain text written to %s" file))))))))
  3194. (set-buffer (or agenda-bufname
  3195. (and (called-interactively-p 'any) (buffer-name))
  3196. org-agenda-buffer-name)))
  3197. (when open (org-open-file file)))
  3198. (defun org-agenda-remove-marked-text (property &optional value)
  3199. "Delete all text marked with VALUE of PROPERTY.
  3200. VALUE defaults to t."
  3201. (let (beg)
  3202. (setq value (or value t))
  3203. (while (setq beg (text-property-any (point-min) (point-max)
  3204. property value))
  3205. (delete-region
  3206. beg (or (next-single-property-change beg property)
  3207. (point-max))))))
  3208. (defun org-agenda-add-entry-text ()
  3209. "Add entry text to agenda lines.
  3210. This will add a maximum of `org-agenda-add-entry-text-maxlines' lines of the
  3211. entry text following headings shown in the agenda.
  3212. Drawers will be excluded, also the line with scheduling/deadline info."
  3213. (when (and (> org-agenda-add-entry-text-maxlines 0)
  3214. (not (bound-and-true-p org-mobile-creating-agendas)))
  3215. (let (m txt)
  3216. (goto-char (point-min))
  3217. (while (not (eobp))
  3218. (if (not (setq m (org-get-at-bol 'org-hd-marker)))
  3219. (beginning-of-line 2)
  3220. (setq txt (org-agenda-get-some-entry-text
  3221. m org-agenda-add-entry-text-maxlines " > "))
  3222. (end-of-line 1)
  3223. (if (string-match "\\S-" txt)
  3224. (insert "\n" txt)
  3225. (or (eobp) (forward-char 1))))))))
  3226. (defun org-agenda-get-some-entry-text (marker n-lines &optional indent
  3227. &rest keep)
  3228. "Extract entry text from MARKER, at most N-LINES lines.
  3229. This will ignore drawers etc, just get the text.
  3230. If INDENT is given, prefix every line with this string. If KEEP is
  3231. given, it is a list of symbols, defining stuff that should not be
  3232. removed from the entry content. Currently only `planning' is allowed here."
  3233. (let (txt drawer-re kwd-time-re ind)
  3234. (save-excursion
  3235. (with-current-buffer (marker-buffer marker)
  3236. (if (not (derived-mode-p 'org-mode))
  3237. (setq txt "")
  3238. (org-with-wide-buffer
  3239. (goto-char marker)
  3240. (end-of-line 1)
  3241. (setq txt (buffer-substring
  3242. (min (1+ (point)) (point-max))
  3243. (progn (outline-next-heading) (point)))
  3244. drawer-re org-drawer-regexp
  3245. kwd-time-re (concat "^[ \t]*" org-keyword-time-regexp
  3246. ".*\n?"))
  3247. (with-temp-buffer
  3248. (insert txt)
  3249. (when org-agenda-add-entry-text-descriptive-links
  3250. (goto-char (point-min))
  3251. (while (org-activate-links (point-max))
  3252. (add-text-properties (match-beginning 0) (match-end 0)
  3253. '(face org-link))))
  3254. (goto-char (point-min))
  3255. (while (re-search-forward org-link-bracket-re (point-max) t)
  3256. (set-text-properties (match-beginning 0) (match-end 0)
  3257. nil))
  3258. (goto-char (point-min))
  3259. (while (re-search-forward drawer-re nil t)
  3260. (delete-region
  3261. (match-beginning 0)
  3262. (progn (re-search-forward
  3263. "^[ \t]*:END:.*\n?" nil 'move)
  3264. (point))))
  3265. (unless (member 'planning keep)
  3266. (goto-char (point-min))
  3267. (while (re-search-forward kwd-time-re nil t)
  3268. (replace-match "")))
  3269. (goto-char (point-min))
  3270. (when org-agenda-entry-text-exclude-regexps
  3271. (let ((re-list org-agenda-entry-text-exclude-regexps) re)
  3272. (while (setq re (pop re-list))
  3273. (goto-char (point-min))
  3274. (while (re-search-forward re nil t)
  3275. (replace-match "")))))
  3276. (goto-char (point-max))
  3277. (skip-chars-backward " \t\n")
  3278. (when (looking-at "[ \t\n]+\\'") (replace-match ""))
  3279. ;; find and remove min common indentation
  3280. (goto-char (point-min))
  3281. (untabify (point-min) (point-max))
  3282. (setq ind (current-indentation))
  3283. (while (not (eobp))
  3284. (unless (looking-at "[ \t]*$")
  3285. (setq ind (min ind (current-indentation))))
  3286. (beginning-of-line 2))
  3287. (goto-char (point-min))
  3288. (while (not (eobp))
  3289. (unless (looking-at "[ \t]*$")
  3290. (move-to-column ind)
  3291. (delete-region (point-at-bol) (point)))
  3292. (beginning-of-line 2))
  3293. (run-hooks 'org-agenda-entry-text-cleanup-hook)
  3294. (goto-char (point-min))
  3295. (when indent
  3296. (while (and (not (eobp)) (re-search-forward "^" nil t))
  3297. (replace-match indent t t)))
  3298. (goto-char (point-min))
  3299. (while (looking-at "[ \t]*\n") (replace-match ""))
  3300. (goto-char (point-max))
  3301. (when (> (org-current-line)
  3302. n-lines)
  3303. (org-goto-line (1+ n-lines))
  3304. (backward-char 1))
  3305. (setq txt (buffer-substring (point-min) (point))))))))
  3306. txt))
  3307. (defun org-check-for-org-mode ()
  3308. "Make sure current buffer is in Org mode. Error if not."
  3309. (or (derived-mode-p 'org-mode)
  3310. (error "Cannot execute Org agenda command on buffer in %s"
  3311. major-mode)))
  3312. ;;; Agenda prepare and finalize
  3313. (defvar org-agenda-multi nil) ; dynamically scoped
  3314. (defvar org-agenda-pre-window-conf nil)
  3315. (defvar org-agenda-columns-active nil)
  3316. (defvar org-agenda-name nil)
  3317. (defvar org-agenda-tag-filter nil)
  3318. (defvar org-agenda-category-filter nil)
  3319. (defvar org-agenda-regexp-filter nil)
  3320. (defvar org-agenda-effort-filter nil)
  3321. (defvar org-agenda-top-headline-filter nil)
  3322. (defvar org-agenda-represented-categories nil
  3323. "Cache for the list of all categories in the agenda.")
  3324. (defvar org-agenda-represented-tags nil
  3325. "Cache for the list of all categories in the agenda.")
  3326. (defvar org-agenda-tag-filter-preset nil
  3327. "A preset of the tags filter used for secondary agenda filtering.
  3328. This must be a list of strings, each string must be a single tag preceded
  3329. by \"+\" or \"-\".
  3330. This variable should not be set directly, but agenda custom commands can
  3331. bind it in the options section. The preset filter is a global property of
  3332. the entire agenda view. In a block agenda, it will not work reliably to
  3333. define a filter for one of the individual blocks. You need to set it in
  3334. the global options and expect it to be applied to the entire view.")
  3335. (defconst org-agenda-filter-variables
  3336. '((category . org-agenda-category-filter)
  3337. (tag . org-agenda-tag-filter)
  3338. (effort . org-agenda-effort-filter)
  3339. (regexp . org-agenda-regexp-filter))
  3340. "Alist of filter types and associated variables")
  3341. (defun org-agenda-filter-any ()
  3342. "Is any filter active?"
  3343. (let ((form (cons 'or (mapcar (lambda (x)
  3344. (if (or (symbol-value (cdr x))
  3345. (get :preset-filter x))
  3346. t nil))
  3347. org-agenda-filter-variables))))
  3348. (eval form)))
  3349. (defvar org-agenda-category-filter-preset nil
  3350. "A preset of the category filter used for secondary agenda filtering.
  3351. This must be a list of strings, each string must be a single category
  3352. preceded by \"+\" or \"-\".
  3353. This variable should not be set directly, but agenda custom commands can
  3354. bind it in the options section. The preset filter is a global property of
  3355. the entire agenda view. In a block agenda, it will not work reliably to
  3356. define a filter for one of the individual blocks. You need to set it in
  3357. the global options and expect it to be applied to the entire view.")
  3358. (defvar org-agenda-regexp-filter-preset nil
  3359. "A preset of the regexp filter used for secondary agenda filtering.
  3360. This must be a list of strings, each string must be a single regexp
  3361. preceded by \"+\" or \"-\".
  3362. This variable should not be set directly, but agenda custom commands can
  3363. bind it in the options section. The preset filter is a global property of
  3364. the entire agenda view. In a block agenda, it will not work reliably to
  3365. define a filter for one of the individual blocks. You need to set it in
  3366. the global options and expect it to be applied to the entire view.")
  3367. (defvar org-agenda-effort-filter-preset nil
  3368. "A preset of the effort condition used for secondary agenda filtering.
  3369. This must be a list of strings, each string must be a single regexp
  3370. preceded by \"+\" or \"-\".
  3371. This variable should not be set directly, but agenda custom commands can
  3372. bind it in the options section. The preset filter is a global property of
  3373. the entire agenda view. In a block agenda, it will not work reliably to
  3374. define a filter for one of the individual blocks. You need to set it in
  3375. the global options and expect it to be applied to the entire view.")
  3376. (defun org-agenda-use-sticky-p ()
  3377. "Return non-nil if an agenda buffer named
  3378. `org-agenda-buffer-name' exists and should be shown instead of
  3379. generating a new one."
  3380. (and
  3381. ;; turned off by user
  3382. org-agenda-sticky
  3383. ;; For multi-agenda buffer already exists
  3384. (not org-agenda-multi)
  3385. ;; buffer found
  3386. (get-buffer org-agenda-buffer-name)
  3387. ;; C-u parameter is same as last call
  3388. (with-current-buffer (get-buffer org-agenda-buffer-name)
  3389. (and
  3390. (equal current-prefix-arg
  3391. org-agenda-last-prefix-arg)
  3392. ;; In case user turned stickiness on, while having existing
  3393. ;; Agenda buffer active, don't reuse that buffer, because it
  3394. ;; does not have org variables local
  3395. org-agenda-this-buffer-is-sticky))))
  3396. (defun org-agenda-prepare-window (abuf filter-alist)
  3397. "Setup agenda buffer in the window.
  3398. ABUF is the buffer for the agenda window.
  3399. FILTER-ALIST is an alist of filters we need to apply when
  3400. `org-agenda-persistent-filter' is non-nil."
  3401. (let* ((awin (get-buffer-window abuf)) wconf)
  3402. (cond
  3403. ((equal (current-buffer) abuf) nil)
  3404. (awin (select-window awin))
  3405. ((not (setq wconf (current-window-configuration))))
  3406. ((eq org-agenda-window-setup 'current-window)
  3407. (pop-to-buffer-same-window abuf))
  3408. ((eq org-agenda-window-setup 'other-window)
  3409. (org-switch-to-buffer-other-window abuf))
  3410. ((eq org-agenda-window-setup 'other-frame)
  3411. (switch-to-buffer-other-frame abuf))
  3412. ((eq org-agenda-window-setup 'only-window)
  3413. (delete-other-windows)
  3414. (pop-to-buffer-same-window abuf))
  3415. ((eq org-agenda-window-setup 'reorganize-frame)
  3416. (delete-other-windows)
  3417. (org-switch-to-buffer-other-window abuf)))
  3418. (setq org-agenda-tag-filter (cdr (assq 'tag filter-alist)))
  3419. (setq org-agenda-category-filter (cdr (assq 'cat filter-alist)))
  3420. (setq org-agenda-effort-filter (cdr (assq 'effort filter-alist)))
  3421. (setq org-agenda-regexp-filter (cdr (assq 're filter-alist)))
  3422. ;; Additional test in case agenda is invoked from within agenda
  3423. ;; buffer via elisp link.
  3424. (unless (equal (current-buffer) abuf)
  3425. (pop-to-buffer-same-window abuf))
  3426. (setq org-agenda-pre-window-conf
  3427. (or wconf org-agenda-pre-window-conf))))
  3428. (defun org-agenda-prepare (&optional name)
  3429. (let ((filter-alist (when org-agenda-persistent-filter
  3430. (with-current-buffer
  3431. (get-buffer-create org-agenda-buffer-name)
  3432. `((tag . ,org-agenda-tag-filter)
  3433. (re . ,org-agenda-regexp-filter)
  3434. (effort . ,org-agenda-effort-filter)
  3435. (cat . ,org-agenda-category-filter))))))
  3436. (if (org-agenda-use-sticky-p)
  3437. (progn
  3438. (put 'org-agenda-tag-filter :preset-filter nil)
  3439. (put 'org-agenda-category-filter :preset-filter nil)
  3440. (put 'org-agenda-regexp-filter :preset-filter nil)
  3441. (put 'org-agenda-effort-filter :preset-filter nil)
  3442. ;; Popup existing buffer
  3443. (org-agenda-prepare-window (get-buffer org-agenda-buffer-name)
  3444. filter-alist)
  3445. (message "Sticky Agenda buffer, use `r' to refresh")
  3446. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  3447. (throw 'exit "Sticky Agenda buffer, use `r' to refresh"))
  3448. (setq org-todo-keywords-for-agenda nil)
  3449. (put 'org-agenda-tag-filter :preset-filter
  3450. org-agenda-tag-filter-preset)
  3451. (put 'org-agenda-category-filter :preset-filter
  3452. org-agenda-category-filter-preset)
  3453. (put 'org-agenda-regexp-filter :preset-filter
  3454. org-agenda-regexp-filter-preset)
  3455. (put 'org-agenda-effort-filter :preset-filter
  3456. org-agenda-effort-filter-preset)
  3457. (if org-agenda-multi
  3458. (progn
  3459. (setq buffer-read-only nil)
  3460. (goto-char (point-max))
  3461. (unless (or (bobp) org-agenda-compact-blocks
  3462. (not org-agenda-block-separator))
  3463. (insert "\n"
  3464. (if (stringp org-agenda-block-separator)
  3465. org-agenda-block-separator
  3466. (make-string (window-width) org-agenda-block-separator))
  3467. "\n"))
  3468. (narrow-to-region (point) (point-max)))
  3469. (setq org-done-keywords-for-agenda nil)
  3470. ;; Setting any org variables that are in org-agenda-local-vars
  3471. ;; list need to be done after the prepare call
  3472. (org-agenda-prepare-window
  3473. (get-buffer-create org-agenda-buffer-name) filter-alist)
  3474. (setq buffer-read-only nil)
  3475. (org-agenda-reset-markers)
  3476. (let ((inhibit-read-only t)) (erase-buffer))
  3477. (org-agenda-mode)
  3478. (setq org-agenda-buffer (current-buffer))
  3479. (setq org-agenda-contributing-files nil)
  3480. (setq org-agenda-columns-active nil)
  3481. (org-agenda-prepare-buffers (org-agenda-files nil 'ifmode))
  3482. (setq org-todo-keywords-for-agenda
  3483. (org-uniquify org-todo-keywords-for-agenda))
  3484. (setq org-done-keywords-for-agenda
  3485. (org-uniquify org-done-keywords-for-agenda))
  3486. (setq org-agenda-last-prefix-arg current-prefix-arg)
  3487. (setq org-agenda-this-buffer-name org-agenda-buffer-name)
  3488. (and name (not org-agenda-name)
  3489. (setq-local org-agenda-name name)))
  3490. (setq buffer-read-only nil))))
  3491. (defvar org-overriding-columns-format)
  3492. (defvar org-local-columns-format)
  3493. (defun org-agenda-finalize ()
  3494. "Finishing touch for the agenda buffer, called just before displaying it."
  3495. (unless org-agenda-multi
  3496. (save-excursion
  3497. (let ((inhibit-read-only t))
  3498. (goto-char (point-min))
  3499. (save-excursion
  3500. (while (org-activate-links (point-max))
  3501. (add-text-properties (match-beginning 0) (match-end 0)
  3502. '(face org-link))))
  3503. (unless (eq org-agenda-remove-tags t)
  3504. (org-agenda-align-tags))
  3505. (unless org-agenda-with-colors
  3506. (remove-text-properties (point-min) (point-max) '(face nil)))
  3507. (when (bound-and-true-p org-overriding-columns-format)
  3508. (setq-local org-local-columns-format
  3509. org-overriding-columns-format))
  3510. (when org-agenda-view-columns-initially
  3511. (org-agenda-columns))
  3512. (when org-agenda-fontify-priorities
  3513. (org-agenda-fontify-priorities))
  3514. (when (and org-agenda-dim-blocked-tasks org-blocker-hook)
  3515. (org-agenda-dim-blocked-tasks))
  3516. (org-agenda-mark-clocking-task)
  3517. (when org-agenda-entry-text-mode
  3518. (org-agenda-entry-text-hide)
  3519. (org-agenda-entry-text-show))
  3520. (when (and (featurep 'org-habit)
  3521. (save-excursion (next-single-property-change (point-min) 'org-habit-p)))
  3522. (org-habit-insert-consistency-graphs))
  3523. (setq org-agenda-type (org-get-at-bol 'org-agenda-type))
  3524. (unless (or (eq org-agenda-show-inherited-tags 'always)
  3525. (and (listp org-agenda-show-inherited-tags)
  3526. (memq org-agenda-type org-agenda-show-inherited-tags))
  3527. (and (eq org-agenda-show-inherited-tags t)
  3528. (or (eq org-agenda-use-tag-inheritance t)
  3529. (and (listp org-agenda-use-tag-inheritance)
  3530. (not (memq org-agenda-type
  3531. org-agenda-use-tag-inheritance))))))
  3532. (let (mrk)
  3533. (save-excursion
  3534. (goto-char (point-min))
  3535. (while (equal (forward-line) 0)
  3536. (when (setq mrk (get-text-property (point) 'org-hd-marker))
  3537. (put-text-property (point-at-bol) (point-at-eol)
  3538. 'tags
  3539. (org-with-point-at mrk
  3540. (mapcar #'downcase (org-get-tags)))))))))
  3541. (setq org-agenda-represented-tags nil
  3542. org-agenda-represented-categories nil)
  3543. (when org-agenda-top-headline-filter
  3544. (org-agenda-filter-top-headline-apply
  3545. org-agenda-top-headline-filter))
  3546. (when org-agenda-tag-filter
  3547. (org-agenda-filter-apply org-agenda-tag-filter 'tag t))
  3548. (when (get 'org-agenda-tag-filter :preset-filter)
  3549. (org-agenda-filter-apply
  3550. (get 'org-agenda-tag-filter :preset-filter) 'tag t))
  3551. (when org-agenda-category-filter
  3552. (org-agenda-filter-apply org-agenda-category-filter 'category))
  3553. (when (get 'org-agenda-category-filter :preset-filter)
  3554. (org-agenda-filter-apply
  3555. (get 'org-agenda-category-filter :preset-filter) 'category))
  3556. (when org-agenda-regexp-filter
  3557. (org-agenda-filter-apply org-agenda-regexp-filter 'regexp))
  3558. (when (get 'org-agenda-regexp-filter :preset-filter)
  3559. (org-agenda-filter-apply
  3560. (get 'org-agenda-regexp-filter :preset-filter) 'regexp))
  3561. (when org-agenda-effort-filter
  3562. (org-agenda-filter-apply org-agenda-effort-filter 'effort))
  3563. (when (get 'org-agenda-effort-filter :preset-filter)
  3564. (org-agenda-filter-apply
  3565. (get 'org-agenda-effort-filter :preset-filter) 'effort))
  3566. (add-hook 'kill-buffer-hook 'org-agenda-reset-markers 'append 'local)
  3567. (run-hooks 'org-agenda-finalize-hook)))))
  3568. (defun org-agenda-mark-clocking-task ()
  3569. "Mark the current clock entry in the agenda if it is present."
  3570. ;; We need to widen when `org-agenda-finalize' is called from
  3571. ;; `org-agenda-change-all-lines' (e.g. in `org-agenda-clock-in').
  3572. (when (bound-and-true-p org-clock-current-task)
  3573. (save-restriction
  3574. (widen)
  3575. (org-agenda-unmark-clocking-task)
  3576. (when (marker-buffer org-clock-hd-marker)
  3577. (save-excursion
  3578. (goto-char (point-min))
  3579. (let (s ov)
  3580. (while (setq s (next-single-property-change (point) 'org-hd-marker))
  3581. (goto-char s)
  3582. (when (equal (org-get-at-bol 'org-hd-marker)
  3583. org-clock-hd-marker)
  3584. (setq ov (make-overlay (point-at-bol) (1+ (point-at-eol))))
  3585. (overlay-put ov 'type 'org-agenda-clocking)
  3586. (overlay-put ov 'face 'org-agenda-clocking)
  3587. (overlay-put ov 'help-echo
  3588. "The clock is running in this item")))))))))
  3589. (defun org-agenda-unmark-clocking-task ()
  3590. "Unmark the current clocking task."
  3591. (mapc (lambda (o)
  3592. (when (eq (overlay-get o 'type) 'org-agenda-clocking)
  3593. (delete-overlay o)))
  3594. (overlays-in (point-min) (point-max))))
  3595. (defun org-agenda-fontify-priorities ()
  3596. "Make highest priority lines bold, and lowest italic."
  3597. (interactive)
  3598. (mapc (lambda (o) (when (eq (overlay-get o 'org-type) 'org-priority)
  3599. (delete-overlay o)))
  3600. (overlays-in (point-min) (point-max)))
  3601. (save-excursion
  3602. (let (b e p ov h l)
  3603. (goto-char (point-min))
  3604. (while (re-search-forward org-priority-regexp nil t)
  3605. (setq h (or (get-char-property (point) 'org-priority-highest)
  3606. org-priority-highest)
  3607. l (or (get-char-property (point) 'org-priority-lowest)
  3608. org-priority-lowest)
  3609. p (string-to-char (match-string 2))
  3610. b (match-beginning 1)
  3611. e (if (eq org-agenda-fontify-priorities 'cookies)
  3612. (match-end 1)
  3613. (point-at-eol))
  3614. ov (make-overlay b e))
  3615. (overlay-put
  3616. ov 'face
  3617. (let ((special-face
  3618. (cond ((org-face-from-face-or-color
  3619. 'priority 'org-priority
  3620. (cdr (assoc p org-priority-faces))))
  3621. ((and (listp org-agenda-fontify-priorities)
  3622. (org-face-from-face-or-color
  3623. 'priority 'org-priority
  3624. (cdr (assoc p org-agenda-fontify-priorities)))))
  3625. ((equal p l) 'italic)
  3626. ((equal p h) 'bold))))
  3627. (if special-face (list special-face 'org-priority) 'org-priority)))
  3628. (overlay-put ov 'org-type 'org-priority)))))
  3629. (defvar org-depend-tag-blocked)
  3630. (defun org-agenda-dim-blocked-tasks (&optional invisible)
  3631. "Dim currently blocked TODOs in the agenda display.
  3632. When INVISIBLE is non-nil, hide currently blocked TODO instead of
  3633. dimming them."
  3634. (interactive "P")
  3635. (when (called-interactively-p 'interactive)
  3636. (message "Dim or hide blocked tasks..."))
  3637. (dolist (o (overlays-in (point-min) (point-max)))
  3638. (when (eq (overlay-get o 'face) 'org-agenda-dimmed-todo-face)
  3639. (delete-overlay o)))
  3640. (save-excursion
  3641. (let ((inhibit-read-only t))
  3642. (goto-char (point-min))
  3643. (while (let ((pos (text-property-not-all
  3644. (point) (point-max) 'org-todo-blocked nil)))
  3645. (when pos (goto-char pos)))
  3646. (let* ((invisible
  3647. (eq (org-get-at-bol 'org-todo-blocked) 'invisible))
  3648. (todo-blocked
  3649. (eq (org-get-at-bol 'org-filter-type) 'todo-blocked))
  3650. (ov (make-overlay (if invisible
  3651. (line-end-position 0)
  3652. (line-beginning-position))
  3653. (line-end-position))))
  3654. (when todo-blocked
  3655. (overlay-put ov 'face 'org-agenda-dimmed-todo-face))
  3656. (when invisible
  3657. (org-agenda-filter-hide-line 'todo-blocked)))
  3658. (move-beginning-of-line 2))))
  3659. (when (called-interactively-p 'interactive)
  3660. (message "Dim or hide blocked tasks...done")))
  3661. (defun org-agenda--mark-blocked-entry (entry)
  3662. "If ENTRY is blocked, mark it for fontification or invisibility.
  3663. If the header at `org-hd-marker' is blocked according to
  3664. `org-entry-blocked-p', then if `org-agenda-dim-blocked-tasks' is
  3665. 'invisible and the header is not blocked by checkboxes, set the
  3666. text property `org-todo-blocked' to `invisible', otherwise set it
  3667. to t."
  3668. (when (get-text-property 0 'todo-state entry)
  3669. (let ((entry-marker (get-text-property 0 'org-hd-marker entry))
  3670. (org-blocked-by-checkboxes nil)
  3671. ;; Necessary so that `org-entry-blocked-p' does not change
  3672. ;; the buffer.
  3673. (org-depend-tag-blocked nil))
  3674. (when entry-marker
  3675. (let ((blocked
  3676. (with-current-buffer (marker-buffer entry-marker)
  3677. (save-excursion
  3678. (goto-char entry-marker)
  3679. (org-entry-blocked-p)))))
  3680. (when blocked
  3681. (let ((really-invisible
  3682. (and (not org-blocked-by-checkboxes)
  3683. (eq org-agenda-dim-blocked-tasks 'invisible))))
  3684. (put-text-property
  3685. 0 (length entry) 'org-todo-blocked
  3686. (if really-invisible 'invisible t)
  3687. entry)
  3688. (put-text-property
  3689. 0 (length entry) 'org-filter-type 'todo-blocked entry)))))))
  3690. entry)
  3691. (defvar org-agenda-skip-function nil
  3692. "Function to be called at each match during agenda construction.
  3693. If this function returns nil, the current match should not be skipped.
  3694. Otherwise, the function must return a position from where the search
  3695. should be continued.
  3696. This may also be a Lisp form, it will be evaluated.
  3697. Never set this variable using `setq' or so, because then it will apply
  3698. to all future agenda commands. If you do want a global skipping condition,
  3699. use the option `org-agenda-skip-function-global' instead.
  3700. The correct usage for `org-agenda-skip-function' is to bind it with
  3701. `let' to scope it dynamically into the agenda-constructing command.
  3702. A good way to set it is through options in `org-agenda-custom-commands'.")
  3703. (defun org-agenda-skip ()
  3704. "Throw to `:skip' in places that should be skipped.
  3705. Also moves point to the end of the skipped region, so that search can
  3706. continue from there."
  3707. (let ((p (point-at-bol)) to)
  3708. (when (or
  3709. (save-excursion (goto-char p) (looking-at comment-start-skip))
  3710. (and org-agenda-skip-archived-trees (not org-agenda-archives-mode)
  3711. (get-text-property p :org-archived)
  3712. (org-end-of-subtree t))
  3713. (and org-agenda-skip-comment-trees
  3714. (get-text-property p :org-comment)
  3715. (org-end-of-subtree t))
  3716. (and (setq to (or (org-agenda-skip-eval org-agenda-skip-function-global)
  3717. (org-agenda-skip-eval org-agenda-skip-function)))
  3718. (goto-char to))
  3719. (org-in-src-block-p t))
  3720. (throw :skip t))))
  3721. (defun org-agenda-skip-eval (form)
  3722. "If FORM is a function or a list, call (or eval) it and return the result.
  3723. `save-excursion' and `save-match-data' are wrapped around the call, so point
  3724. and match data are returned to the previous state no matter what these
  3725. functions do."
  3726. (let (fp)
  3727. (and form
  3728. (or (setq fp (functionp form))
  3729. (consp form))
  3730. (save-excursion
  3731. (save-match-data
  3732. (if fp
  3733. (funcall form)
  3734. (eval form)))))))
  3735. (defvar org-agenda-markers nil
  3736. "List of all currently active markers created by `org-agenda'.")
  3737. (defvar org-agenda-last-marker-time (float-time)
  3738. "Creation time of the last agenda marker.")
  3739. (defun org-agenda-new-marker (&optional pos)
  3740. "Return a new agenda marker.
  3741. Maker is at point, or at POS if non-nil. Org mode keeps a list of
  3742. these markers and resets them when they are no longer in use."
  3743. (let ((m (copy-marker (or pos (point)) t)))
  3744. (setq org-agenda-last-marker-time (float-time))
  3745. (if org-agenda-buffer
  3746. (with-current-buffer org-agenda-buffer
  3747. (push m org-agenda-markers))
  3748. (push m org-agenda-markers))
  3749. m))
  3750. (defun org-agenda-reset-markers ()
  3751. "Reset markers created by `org-agenda'."
  3752. (while org-agenda-markers
  3753. (move-marker (pop org-agenda-markers) nil)))
  3754. (defun org-agenda-save-markers-for-cut-and-paste (beg end)
  3755. "Save relative positions of markers in region.
  3756. This check for agenda markers in all agenda buffers currently active."
  3757. (dolist (buf (buffer-list))
  3758. (with-current-buffer buf
  3759. (when (eq major-mode 'org-agenda-mode)
  3760. (mapc (lambda (m) (org-check-and-save-marker m beg end))
  3761. org-agenda-markers)))))
  3762. ;;; Entry text mode
  3763. (defun org-agenda-entry-text-show-here ()
  3764. "Add some text from the entry as context to the current line."
  3765. (let (m txt o)
  3766. (setq m (org-get-at-bol 'org-hd-marker))
  3767. (unless (marker-buffer m)
  3768. (error "No marker points to an entry here"))
  3769. (setq txt (concat "\n" (org-no-properties
  3770. (org-agenda-get-some-entry-text
  3771. m org-agenda-entry-text-maxlines
  3772. org-agenda-entry-text-leaders))))
  3773. (when (string-match "\\S-" txt)
  3774. (setq o (make-overlay (point-at-bol) (point-at-eol)))
  3775. (overlay-put o 'evaporate t)
  3776. (overlay-put o 'org-overlay-type 'agenda-entry-content)
  3777. (overlay-put o 'after-string txt))))
  3778. (defun org-agenda-entry-text-show ()
  3779. "Add entry context for all agenda lines."
  3780. (interactive)
  3781. (save-excursion
  3782. (goto-char (point-max))
  3783. (beginning-of-line 1)
  3784. (while (not (bobp))
  3785. (when (org-get-at-bol 'org-hd-marker)
  3786. (org-agenda-entry-text-show-here))
  3787. (beginning-of-line 0))))
  3788. (defun org-agenda-entry-text-hide ()
  3789. "Remove any shown entry context."
  3790. (mapc (lambda (o)
  3791. (when (eq (overlay-get o 'org-overlay-type)
  3792. 'agenda-entry-content)
  3793. (delete-overlay o)))
  3794. (overlays-in (point-min) (point-max))))
  3795. (defun org-agenda-get-day-face (date)
  3796. "Return the face DATE should be displayed with."
  3797. (cond ((and (functionp org-agenda-day-face-function)
  3798. (funcall org-agenda-day-face-function date)))
  3799. ((org-agenda-today-p date) 'org-agenda-date-today)
  3800. ((memq (calendar-day-of-week date) org-agenda-weekend-days)
  3801. 'org-agenda-date-weekend)
  3802. (t 'org-agenda-date)))
  3803. (defvar org-agenda-show-log-scoped)
  3804. ;;; Agenda Daily/Weekly
  3805. (defvar org-agenda-start-day nil ; dynamically scoped parameter
  3806. "Start day for the agenda view.
  3807. Custom commands can set this variable in the options section.
  3808. This is usually a string like \"2007-11-01\", \"+2d\" or any other
  3809. input allowed when reading a date through the Org calendar.
  3810. See the docstring of `org-read-date' for details.")
  3811. (defvar org-starting-day nil) ; local variable in the agenda buffer
  3812. (defvar org-arg-loc nil) ; local variable
  3813. (defvar org-agenda-buffer-tmp-name nil)
  3814. ;;;###autoload
  3815. (defun org-agenda-list (&optional arg start-day span with-hour)
  3816. "Produce a daily/weekly view from all files in variable `org-agenda-files'.
  3817. The view will be for the current day or week, but from the overview buffer
  3818. you will be able to go to other days/weeks.
  3819. With a numeric prefix argument in an interactive call, the agenda will
  3820. span ARG days. Lisp programs should instead specify SPAN to change
  3821. the number of days. SPAN defaults to `org-agenda-span'.
  3822. START-DAY defaults to TODAY, or to the most recent match for the weekday
  3823. given in `org-agenda-start-on-weekday'.
  3824. When WITH-HOUR is non-nil, only include scheduled and deadline
  3825. items if they have an hour specification like [h]h:mm."
  3826. (interactive "P")
  3827. (when org-agenda-overriding-arguments
  3828. (setq arg (car org-agenda-overriding-arguments)
  3829. start-day (nth 1 org-agenda-overriding-arguments)
  3830. span (nth 2 org-agenda-overriding-arguments)))
  3831. (when (and (integerp arg) (> arg 0))
  3832. (setq span arg arg nil))
  3833. (when (numberp span)
  3834. (unless (< 0 span)
  3835. (user-error "Agenda creation impossible for this span(=%d days)." span)))
  3836. (catch 'exit
  3837. (setq org-agenda-buffer-name
  3838. (or org-agenda-buffer-tmp-name
  3839. (and org-agenda-doing-sticky-redo org-agenda-buffer-name)
  3840. (when org-agenda-sticky
  3841. (cond ((and org-keys (stringp org-match))
  3842. (format "*Org Agenda(%s:%s)*" org-keys org-match))
  3843. (org-keys
  3844. (format "*Org Agenda(%s)*" org-keys))
  3845. (t "*Org Agenda(a)*")))
  3846. "*Org Agenda*"))
  3847. (org-agenda-prepare "Day/Week")
  3848. (setq start-day (or start-day org-agenda-start-day))
  3849. (when (stringp start-day)
  3850. ;; Convert to an absolute day number
  3851. (setq start-day (time-to-days (org-read-date nil t start-day))))
  3852. (org-compile-prefix-format 'agenda)
  3853. (org-set-sorting-strategy 'agenda)
  3854. (let* ((span (org-agenda-ndays-to-span (or span org-agenda-span)))
  3855. (today (org-today))
  3856. (sd (or start-day today))
  3857. (ndays (org-agenda-span-to-ndays span sd))
  3858. (org-agenda-start-on-weekday
  3859. (and (or (eq ndays 7) (eq ndays 14))
  3860. org-agenda-start-on-weekday))
  3861. (thefiles (org-agenda-files nil 'ifmode))
  3862. (files thefiles)
  3863. (start (if (or (null org-agenda-start-on-weekday)
  3864. (< ndays 7))
  3865. sd
  3866. (let* ((nt (calendar-day-of-week
  3867. (calendar-gregorian-from-absolute sd)))
  3868. (n1 org-agenda-start-on-weekday)
  3869. (d (- nt n1)))
  3870. (- sd (+ (if (< d 0) 7 0) d)))))
  3871. (day-numbers (list start))
  3872. (day-cnt 0)
  3873. (inhibit-redisplay (not debug-on-error))
  3874. (org-agenda-show-log-scoped org-agenda-show-log)
  3875. s e rtn rtnall file date d start-pos end-pos todayp
  3876. clocktable-start clocktable-end filter)
  3877. (setq org-agenda-redo-command
  3878. (list 'org-agenda-list (list 'quote arg) start-day (list 'quote span) with-hour))
  3879. (dotimes (n (1- ndays))
  3880. (push (1+ (car day-numbers)) day-numbers))
  3881. (setq day-numbers (nreverse day-numbers))
  3882. (setq clocktable-start (car day-numbers)
  3883. clocktable-end (1+ (or (org-last day-numbers) 0)))
  3884. (setq-local org-starting-day (car day-numbers))
  3885. (setq-local org-arg-loc arg)
  3886. (setq-local org-agenda-current-span (org-agenda-ndays-to-span span))
  3887. (unless org-agenda-compact-blocks
  3888. (let* ((d1 (car day-numbers))
  3889. (d2 (org-last day-numbers))
  3890. (w1 (org-days-to-iso-week d1))
  3891. (w2 (org-days-to-iso-week d2)))
  3892. (setq s (point))
  3893. (org-agenda--insert-overriding-header
  3894. (concat (org-agenda-span-name span)
  3895. "-agenda"
  3896. (cond ((<= 350 (- d2 d1)) "")
  3897. ((= w1 w2) (format " (W%02d)" w1))
  3898. (t (format " (W%02d-W%02d)" w1 w2)))
  3899. ":\n")))
  3900. ;; Add properties if we actually inserted a header.
  3901. (when (> (point) s)
  3902. (add-text-properties s (1- (point))
  3903. (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. (when (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. (when 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. (when (or rtnall org-agenda-show-all-dates)
  3959. (setq day-cnt (1+ day-cnt))
  3960. (insert
  3961. (if (stringp org-agenda-format-date)
  3962. (format-time-string org-agenda-format-date
  3963. (org-time-from-absolute date))
  3964. (funcall org-agenda-format-date date))
  3965. "\n")
  3966. (put-text-property s (1- (point)) 'face
  3967. (org-agenda-get-day-face date))
  3968. (put-text-property s (1- (point)) 'org-date-line t)
  3969. (put-text-property s (1- (point)) 'org-agenda-date-header t)
  3970. (put-text-property s (1- (point)) 'org-day-cnt day-cnt)
  3971. (when todayp
  3972. (put-text-property s (1- (point)) 'org-today t))
  3973. (setq rtnall
  3974. (org-agenda-add-time-grid-maybe rtnall ndays todayp))
  3975. (when rtnall (insert ;; all entries
  3976. (org-agenda-finalize-entries rtnall 'agenda)
  3977. "\n"))
  3978. (put-text-property s (1- (point)) 'day d)
  3979. (put-text-property s (1- (point)) 'org-day-cnt day-cnt)))
  3980. (when (and org-agenda-clockreport-mode clocktable-start)
  3981. (let ((org-agenda-files (org-agenda-files nil 'ifmode))
  3982. ;; the above line is to ensure the restricted range!
  3983. (p (copy-sequence org-agenda-clockreport-parameter-plist))
  3984. tbl)
  3985. (setq p (org-plist-delete p :block))
  3986. (setq p (plist-put p :tstart clocktable-start))
  3987. (setq p (plist-put p :tend clocktable-end))
  3988. (setq p (plist-put p :scope 'agenda))
  3989. (setq tbl (apply 'org-clock-get-clocktable p))
  3990. (insert tbl)))
  3991. (goto-char (point-min))
  3992. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  3993. (unless (or (not (get-buffer-window org-agenda-buffer-name))
  3994. (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. (when (not (pos-visible-in-window-p (or start-pos 1)))
  3999. (goto-char (or start-pos 1))
  4000. (recenter 1)))
  4001. (goto-char (or start-pos 1))
  4002. (add-text-properties (point-min) (point-max)
  4003. `(org-agenda-type agenda
  4004. org-last-args (,arg ,start-day ,span)
  4005. org-redo-cmd ,org-agenda-redo-command
  4006. org-series-cmd ,org-cmd))
  4007. (when (eq org-agenda-show-log-scoped 'clockcheck)
  4008. (org-agenda-show-clocking-issues))
  4009. (org-agenda-finalize)
  4010. (setq buffer-read-only t)
  4011. (message ""))))
  4012. (defun org-agenda-ndays-to-span (n)
  4013. "Return a span symbol for a span of N days, or N if none matches."
  4014. (cond ((symbolp n) n)
  4015. ((= n 1) 'day)
  4016. ((= n 7) 'week)
  4017. ((= n 14) 'fortnight)
  4018. (t n)))
  4019. (defun org-agenda-span-to-ndays (span &optional start-day)
  4020. "Return ndays from SPAN, possibly starting at START-DAY.
  4021. START-DAY is an absolute time value."
  4022. (cond ((numberp span) span)
  4023. ((eq span 'day) 1)
  4024. ((eq span 'week) 7)
  4025. ((eq span 'fortnight) 14)
  4026. ((eq span 'month)
  4027. (let ((date (calendar-gregorian-from-absolute start-day)))
  4028. (calendar-last-day-of-month (car date) (cl-caddr date))))
  4029. ((eq span 'year)
  4030. (let ((date (calendar-gregorian-from-absolute start-day)))
  4031. (if (calendar-leap-year-p (cl-caddr date)) 366 365)))))
  4032. (defun org-agenda-span-name (span)
  4033. "Return a SPAN name."
  4034. (if (null span)
  4035. ""
  4036. (if (symbolp span)
  4037. (capitalize (symbol-name span))
  4038. (format "%d days" span))))
  4039. ;;; Agenda word search
  4040. (defvar org-agenda-search-history nil)
  4041. (defvar org-search-syntax-table nil
  4042. "Special syntax table for Org search.
  4043. In this table, we have single quotes not as word constituents, to
  4044. that when \"+Ameli\" is searched as a work, it will also match \"Ameli's\"")
  4045. (defvar org-mode-syntax-table) ; From org.el
  4046. (defun org-search-syntax-table ()
  4047. (unless org-search-syntax-table
  4048. (setq org-search-syntax-table (copy-syntax-table org-mode-syntax-table))
  4049. (modify-syntax-entry ?' "." org-search-syntax-table)
  4050. (modify-syntax-entry ?` "." org-search-syntax-table))
  4051. org-search-syntax-table)
  4052. (defvar org-agenda-last-search-view-search-was-boolean nil)
  4053. ;;;###autoload
  4054. (defun org-search-view (&optional todo-only string edit-at)
  4055. "Show all entries that contain a phrase or words or regular expressions.
  4056. With optional prefix argument TODO-ONLY, only consider entries that are
  4057. TODO entries. The argument STRING can be used to pass a default search
  4058. string into this function. If EDIT-AT is non-nil, it means that the
  4059. user should get a chance to edit this string, with cursor at position
  4060. EDIT-AT.
  4061. The search string can be viewed either as a phrase that should be found as
  4062. is, or it can be broken into a number of snippets, each of which must match
  4063. in a Boolean way to select an entry. The default depends on the variable
  4064. `org-agenda-search-view-always-boolean'.
  4065. Even if this is turned off (the default) you can always switch to
  4066. Boolean search dynamically by preceding the first word with \"+\" or \"-\".
  4067. The default is a direct search of the whole phrase, where each space in
  4068. the search string can expand to an arbitrary amount of whitespace,
  4069. including newlines.
  4070. If using a Boolean search, the search string is split on whitespace and
  4071. each snippet is searched separately, with logical AND to select an entry.
  4072. Words prefixed with a minus must *not* occur in the entry. Words without
  4073. a prefix or prefixed with a plus must occur in the entry. Matching is
  4074. case-insensitive. Words are enclosed by word delimiters (i.e. they must
  4075. match whole words, not parts of a word) if
  4076. `org-agenda-search-view-force-full-words' is set (default is nil).
  4077. Boolean search snippets enclosed by curly braces are interpreted as
  4078. regular expressions that must or (when preceded with \"-\") must not
  4079. match in the entry. Snippets enclosed into double quotes will be taken
  4080. as a whole, to include whitespace.
  4081. - If the search string starts with an asterisk, search only in headlines.
  4082. - If (possibly after the leading star) the search string starts with an
  4083. exclamation mark, this also means to look at TODO entries only, an effect
  4084. that can also be achieved with a prefix argument.
  4085. - If (possibly after star and exclamation mark) the search string starts
  4086. with a colon, this will mean that the (non-regexp) snippets of the
  4087. Boolean search must match as full words.
  4088. This command searches the agenda files, and in addition the files
  4089. listed in `org-agenda-text-search-extra-files' unless a restriction lock
  4090. is active."
  4091. (interactive "P")
  4092. (when 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. (when 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. (when (or org-agenda-search-view-always-boolean
  4144. (member (string-to-char words) '(?- ?+ ?\{)))
  4145. (setq boolean t))
  4146. (setq words (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. (when (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. (when hdl-only (setq regexp (concat org-outline-regexp-bol ".*?"
  4198. regexp))))
  4199. (setq files (org-agenda-files nil 'ifmode))
  4200. ;; Add `org-agenda-text-search-extra-files' unless there is some
  4201. ;; restriction.
  4202. (when (eq (car org-agenda-text-search-extra-files) 'agenda-archives)
  4203. (pop org-agenda-text-search-extra-files)
  4204. (unless (get 'org-agenda-files 'org-restrict)
  4205. (setq files (org-add-archive-files files))))
  4206. ;; Uniquify files. However, let `org-check-agenda-file' handle
  4207. ;; non-existent ones.
  4208. (setq files (cl-remove-duplicates
  4209. (append files org-agenda-text-search-extra-files)
  4210. :test (lambda (a b)
  4211. (and (file-exists-p a)
  4212. (file-exists-p b)
  4213. (file-equal-p a b))))
  4214. rtnall nil)
  4215. (while (setq file (pop files))
  4216. (setq ee nil)
  4217. (catch 'nextfile
  4218. (org-check-agenda-file file)
  4219. (setq buffer (if (file-exists-p file)
  4220. (org-get-agenda-file-buffer file)
  4221. (error "No such file %s" file)))
  4222. (unless buffer
  4223. ;; If file does not exist, make sure an error message is sent
  4224. (setq rtn (list (format "ORG-AGENDA-ERROR: No such org-file %s"
  4225. file))))
  4226. (with-current-buffer buffer
  4227. (with-syntax-table (org-search-syntax-table)
  4228. (unless (derived-mode-p 'org-mode)
  4229. (error "Agenda file %s is not in Org mode" file))
  4230. (let ((case-fold-search t))
  4231. (save-excursion
  4232. (save-restriction
  4233. (if (eq buffer org-agenda-restrict)
  4234. (narrow-to-region org-agenda-restrict-begin
  4235. org-agenda-restrict-end)
  4236. (widen))
  4237. (goto-char (point-min))
  4238. (unless (or (org-at-heading-p)
  4239. (outline-next-heading))
  4240. (throw 'nextfile t))
  4241. (goto-char (max (point-min) (1- (point))))
  4242. (while (re-search-forward regexp nil t)
  4243. (org-back-to-heading t)
  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. (org-back-to-heading t)))
  4249. (skip-chars-forward "* ")
  4250. (setq beg (point-at-bol)
  4251. beg1 (point)
  4252. end (progn
  4253. (outline-next-heading)
  4254. (while (and (not (zerop org-agenda-search-view-max-outline-level))
  4255. (> (org-reduced-level (org-outline-level))
  4256. org-agenda-search-view-max-outline-level)
  4257. (forward-line 1)
  4258. (outline-next-heading)))
  4259. (point)))
  4260. (catch :skip
  4261. (goto-char beg)
  4262. (org-agenda-skip)
  4263. (setq str (buffer-substring-no-properties
  4264. (point-at-bol)
  4265. (if hdl-only (point-at-eol) end)))
  4266. (mapc (lambda (wr) (when (string-match wr str)
  4267. (goto-char (1- end))
  4268. (throw :skip t)))
  4269. regexps-)
  4270. (mapc (lambda (wr) (unless (string-match wr str)
  4271. (goto-char (1- end))
  4272. (throw :skip t)))
  4273. (if todo-only
  4274. (cons (concat "^\\*+[ \t]+"
  4275. org-not-done-regexp)
  4276. regexps+)
  4277. regexps+))
  4278. (goto-char beg)
  4279. (setq marker (org-agenda-new-marker (point))
  4280. category (org-get-category)
  4281. level (make-string (org-reduced-level (org-outline-level)) ? )
  4282. inherited-tags
  4283. (or (eq org-agenda-show-inherited-tags 'always)
  4284. (and (listp org-agenda-show-inherited-tags)
  4285. (memq 'todo org-agenda-show-inherited-tags))
  4286. (and (eq org-agenda-show-inherited-tags t)
  4287. (or (eq org-agenda-use-tag-inheritance t)
  4288. (memq 'todo org-agenda-use-tag-inheritance))))
  4289. tags (org-get-tags nil (not inherited-tags))
  4290. txt (org-agenda-format-item
  4291. ""
  4292. (buffer-substring-no-properties
  4293. beg1 (point-at-eol))
  4294. level category tags t))
  4295. (org-add-props txt props
  4296. 'org-marker marker 'org-hd-marker marker
  4297. 'org-todo-regexp org-todo-regexp
  4298. 'level level
  4299. 'org-complex-heading-regexp org-complex-heading-regexp
  4300. 'priority 1000
  4301. 'type "search")
  4302. (push txt ee)
  4303. (goto-char (1- end))))))))))
  4304. (setq rtn (nreverse ee))
  4305. (setq rtnall (append rtnall rtn)))
  4306. (org-agenda--insert-overriding-header
  4307. (with-temp-buffer
  4308. (insert "Search words: ")
  4309. (add-text-properties (point-min) (1- (point))
  4310. (list 'face 'org-agenda-structure))
  4311. (setq pos (point))
  4312. (insert string "\n")
  4313. (add-text-properties pos (1- (point)) (list 'face 'org-warning))
  4314. (setq pos (point))
  4315. (unless org-agenda-multi
  4316. (insert (substitute-command-keys "\\<org-agenda-mode-map>\
  4317. Press `\\[org-agenda-manipulate-query-add]', \
  4318. `\\[org-agenda-manipulate-query-subtract]' to add/sub word, \
  4319. `\\[org-agenda-manipulate-query-add-re]', \
  4320. `\\[org-agenda-manipulate-query-subtract-re]' to add/sub regexp, \
  4321. `\\[universal-argument] \\[org-agenda-redo]' for a fresh search\n"))
  4322. (add-text-properties pos (1- (point))
  4323. (list 'face 'org-agenda-structure)))
  4324. (buffer-string)))
  4325. (org-agenda-mark-header-line (point-min))
  4326. (when rtnall
  4327. (insert (org-agenda-finalize-entries rtnall 'search) "\n"))
  4328. (goto-char (point-min))
  4329. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4330. (add-text-properties (point-min) (point-max)
  4331. `(org-agenda-type search
  4332. org-last-args (,todo-only ,string ,edit-at)
  4333. org-redo-cmd ,org-agenda-redo-command
  4334. org-series-cmd ,org-cmd))
  4335. (org-agenda-finalize)
  4336. (setq buffer-read-only t))))
  4337. ;;; Agenda TODO list
  4338. (defun org-agenda-propertize-selected-todo-keywords (keywords)
  4339. "Use `org-todo-keyword-faces' for the selected todo KEYWORDS."
  4340. (concat
  4341. (if (or (equal keywords "ALL") (not keywords))
  4342. (propertize "ALL" 'face 'warning)
  4343. (mapconcat
  4344. (lambda (kw)
  4345. (propertize kw 'face (org-get-todo-face kw)))
  4346. (org-split-string keywords "|")
  4347. "|"))
  4348. "\n"))
  4349. (defvar org-select-this-todo-keyword nil)
  4350. (defvar org-last-arg nil)
  4351. ;;;###autoload
  4352. (defun org-todo-list (&optional arg)
  4353. "Show all (not done) TODO entries from all agenda file in a single list.
  4354. The prefix arg can be used to select a specific TODO keyword and limit
  4355. the list to these. When using `\\[universal-argument]', you will be prompted
  4356. for a keyword. A numeric prefix directly selects the Nth keyword in
  4357. `org-todo-keywords-1'."
  4358. (interactive "P")
  4359. (when org-agenda-overriding-arguments
  4360. (setq arg org-agenda-overriding-arguments))
  4361. (when (and (stringp arg) (not (string-match "\\S-" arg))) (setq arg nil))
  4362. (let* ((today (org-today))
  4363. (date (calendar-gregorian-from-absolute today))
  4364. (completion-ignore-case t)
  4365. kwds org-select-this-todo-keyword rtn rtnall files file pos)
  4366. (catch 'exit
  4367. (when 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. (setq kwds org-todo-keywords-for-agenda
  4375. org-select-this-todo-keyword (if (stringp arg) arg
  4376. (and (integerp arg)
  4377. (> arg 0)
  4378. (nth (1- arg) kwds))))
  4379. (when (equal arg '(4))
  4380. (setq org-select-this-todo-keyword
  4381. (completing-read "Keyword (or KWD1|K2D2|...): "
  4382. (mapcar #'list kwds) nil nil)))
  4383. (and (equal 0 arg) (setq org-select-this-todo-keyword nil))
  4384. (org-compile-prefix-format 'todo)
  4385. (org-set-sorting-strategy 'todo)
  4386. (setq org-agenda-redo-command
  4387. `(org-todo-list (or (and (numberp current-prefix-arg)
  4388. current-prefix-arg)
  4389. ,org-select-this-todo-keyword
  4390. current-prefix-arg ,arg)))
  4391. (setq files (org-agenda-files nil 'ifmode)
  4392. rtnall nil)
  4393. (while (setq file (pop files))
  4394. (catch 'nextfile
  4395. (org-check-agenda-file file)
  4396. (setq rtn (org-agenda-get-day-entries file date :todo))
  4397. (setq rtnall (append rtnall rtn))))
  4398. (org-agenda--insert-overriding-header
  4399. (with-temp-buffer
  4400. (insert "Global list of TODO items of type: ")
  4401. (add-text-properties (point-min) (1- (point))
  4402. (list 'face 'org-agenda-structure
  4403. 'short-heading
  4404. (concat "ToDo: "
  4405. (or org-select-this-todo-keyword "ALL"))))
  4406. (org-agenda-mark-header-line (point-min))
  4407. (insert (org-agenda-propertize-selected-todo-keywords
  4408. org-select-this-todo-keyword))
  4409. (setq pos (point))
  4410. (unless org-agenda-multi
  4411. (insert (substitute-command-keys "Press \
  4412. \\<org-agenda-mode-map>`N \\[org-agenda-redo]' (e.g. `0 \\[org-agenda-redo]') \
  4413. to search again: (0)[ALL]"))
  4414. (let ((n 0))
  4415. (dolist (k kwds)
  4416. (let ((s (format "(%d)%s" (cl-incf n) k)))
  4417. (when (> (+ (current-column) (string-width s) 1) (window-width))
  4418. (insert "\n "))
  4419. (insert " " s))))
  4420. (insert "\n"))
  4421. (add-text-properties pos (1- (point)) (list 'face 'org-agenda-structure))
  4422. (buffer-string)))
  4423. (org-agenda-mark-header-line (point-min))
  4424. (when rtnall
  4425. (insert (org-agenda-finalize-entries rtnall 'todo) "\n"))
  4426. (goto-char (point-min))
  4427. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4428. (add-text-properties (point-min) (point-max)
  4429. `(org-agenda-type todo
  4430. org-last-args ,arg
  4431. org-redo-cmd ,org-agenda-redo-command
  4432. org-series-cmd ,org-cmd))
  4433. (org-agenda-finalize)
  4434. (setq buffer-read-only t))))
  4435. ;;; Agenda tags match
  4436. ;;;###autoload
  4437. (defun org-tags-view (&optional todo-only match)
  4438. "Show all headlines for all `org-agenda-files' matching a TAGS criterion.
  4439. The prefix arg TODO-ONLY limits the search to TODO entries."
  4440. (interactive "P")
  4441. (when org-agenda-overriding-arguments
  4442. (setq todo-only (car org-agenda-overriding-arguments)
  4443. match (nth 1 org-agenda-overriding-arguments)))
  4444. (let* ((org-tags-match-list-sublevels
  4445. org-tags-match-list-sublevels)
  4446. (completion-ignore-case t)
  4447. (org--matcher-tags-todo-only todo-only)
  4448. rtn rtnall files file pos matcher
  4449. buffer)
  4450. (when (and (stringp match) (not (string-match "\\S-" match)))
  4451. (setq match nil))
  4452. (catch 'exit
  4453. ;; TODO: this code is repeated a lot...
  4454. (when org-agenda-sticky
  4455. (setq org-agenda-buffer-name
  4456. (if (stringp match)
  4457. (format "*Org Agenda(%s:%s)*"
  4458. (or org-keys (or (and todo-only "M") "m")) match)
  4459. (format "*Org Agenda(%s)*" (or (and todo-only "M") "m")))))
  4460. (setq matcher (org-make-tags-matcher match))
  4461. ;; Prepare agendas (and `org-tag-alist-for-agenda') before
  4462. ;; expanding tags within `org-make-tags-matcher'
  4463. (org-agenda-prepare (concat "TAGS " match))
  4464. (setq match (car matcher)
  4465. matcher (cdr matcher))
  4466. (org-compile-prefix-format 'tags)
  4467. (org-set-sorting-strategy 'tags)
  4468. (setq org-agenda-query-string match)
  4469. (setq org-agenda-redo-command
  4470. (list 'org-tags-view
  4471. `(quote ,org--matcher-tags-todo-only)
  4472. `(if current-prefix-arg nil ,org-agenda-query-string)))
  4473. (setq files (org-agenda-files nil 'ifmode)
  4474. rtnall nil)
  4475. (while (setq file (pop files))
  4476. (catch 'nextfile
  4477. (org-check-agenda-file file)
  4478. (setq buffer (if (file-exists-p file)
  4479. (org-get-agenda-file-buffer file)
  4480. (error "No such file %s" file)))
  4481. (if (not buffer)
  4482. ;; If file does not exist, error message to agenda
  4483. (setq rtn (list
  4484. (format "ORG-AGENDA-ERROR: No such org-file %s" file))
  4485. rtnall (append rtnall rtn))
  4486. (with-current-buffer buffer
  4487. (unless (derived-mode-p 'org-mode)
  4488. (error "Agenda file %s is not in Org mode" file))
  4489. (save-excursion
  4490. (save-restriction
  4491. (if (eq buffer org-agenda-restrict)
  4492. (narrow-to-region org-agenda-restrict-begin
  4493. org-agenda-restrict-end)
  4494. (widen))
  4495. (setq rtn (org-scan-tags 'agenda
  4496. matcher
  4497. org--matcher-tags-todo-only))
  4498. (setq rtnall (append rtnall rtn))))))))
  4499. (org-agenda--insert-overriding-header
  4500. (with-temp-buffer
  4501. (insert "Headlines with TAGS match: ")
  4502. (add-text-properties (point-min) (1- (point))
  4503. (list 'face 'org-agenda-structure
  4504. 'short-heading
  4505. (concat "Match: " match)))
  4506. (setq pos (point))
  4507. (insert match "\n")
  4508. (add-text-properties pos (1- (point)) (list 'face 'org-warning))
  4509. (setq pos (point))
  4510. (unless org-agenda-multi
  4511. (insert (substitute-command-keys
  4512. "Press \
  4513. \\<org-agenda-mode-map>`\\[universal-argument] \\[org-agenda-redo]' \
  4514. to search again\n")))
  4515. (add-text-properties pos (1- (point))
  4516. (list 'face 'org-agenda-structure))
  4517. (buffer-string)))
  4518. (org-agenda-mark-header-line (point-min))
  4519. (when rtnall
  4520. (insert (org-agenda-finalize-entries rtnall 'tags) "\n"))
  4521. (goto-char (point-min))
  4522. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4523. (add-text-properties
  4524. (point-min) (point-max)
  4525. `(org-agenda-type tags
  4526. org-last-args (,org--matcher-tags-todo-only ,match)
  4527. org-redo-cmd ,org-agenda-redo-command
  4528. org-series-cmd ,org-cmd))
  4529. (org-agenda-finalize)
  4530. (setq buffer-read-only t))))
  4531. ;;; Agenda Finding stuck projects
  4532. (defvar org-agenda-skip-regexp nil
  4533. "Regular expression used in skipping subtrees for the agenda.
  4534. This is basically a temporary global variable that can be set and then
  4535. used by user-defined selections using `org-agenda-skip-function'.")
  4536. (defvar org-agenda-overriding-header nil
  4537. "When set during agenda, todo and tags searches it replaces the header.
  4538. If an empty string, no header will be inserted. If any other
  4539. string, it will be inserted as a header. If nil, a header will
  4540. be generated automatically according to the command. This
  4541. variable should not be set directly, but custom commands can bind
  4542. it in the options section.")
  4543. (defun org-agenda-skip-entry-if (&rest conditions)
  4544. "Skip entry if any of CONDITIONS is true.
  4545. See `org-agenda-skip-if' for details."
  4546. (org-agenda-skip-if nil conditions))
  4547. (defun org-agenda-skip-subtree-if (&rest conditions)
  4548. "Skip subtree if any of CONDITIONS is true.
  4549. See `org-agenda-skip-if' for details."
  4550. (org-agenda-skip-if t conditions))
  4551. (defun org-agenda-skip-if (subtree conditions)
  4552. "Checks current entity for CONDITIONS.
  4553. If SUBTREE is non-nil, the entire subtree is checked. Otherwise, only
  4554. the entry (i.e. the text before the next heading) is checked.
  4555. CONDITIONS is a list of symbols, boolean OR is used to combine the results
  4556. from different tests. Valid conditions are:
  4557. scheduled Check if there is a scheduled cookie
  4558. notscheduled Check if there is no scheduled cookie
  4559. deadline Check if there is a deadline
  4560. notdeadline Check if there is no deadline
  4561. timestamp Check if there is a timestamp (also deadline or scheduled)
  4562. nottimestamp Check if there is no timestamp (also deadline or scheduled)
  4563. regexp Check if regexp matches
  4564. notregexp Check if regexp does not match.
  4565. todo Check if TODO keyword matches
  4566. nottodo Check if TODO keyword does not match
  4567. The regexp is taken from the conditions list, it must come right after
  4568. the `regexp' or `notregexp' element.
  4569. `todo' and `nottodo' accept as an argument a list of todo
  4570. keywords, which may include \"*\" to match any todo keyword.
  4571. (org-agenda-skip-entry-if \\='todo \\='(\"TODO\" \"WAITING\"))
  4572. would skip all entries with \"TODO\" or \"WAITING\" keywords.
  4573. Instead of a list, a keyword class may be given. For example:
  4574. (org-agenda-skip-entry-if \\='nottodo \\='done)
  4575. would skip entries that haven't been marked with any of \"DONE\"
  4576. keywords. Possible classes are: `todo', `done', `any'.
  4577. If any of these conditions is met, this function returns the end point of
  4578. the entity, causing the search to continue from there. This is a function
  4579. that can be put into `org-agenda-skip-function' for the duration of a command."
  4580. (org-back-to-heading t)
  4581. (let* ((beg (point))
  4582. (end (if subtree (save-excursion (org-end-of-subtree t) (point))
  4583. (org-entry-end-position)))
  4584. (planning-end (if subtree end (line-end-position 2)))
  4585. m)
  4586. (and
  4587. (or (and (memq 'scheduled conditions)
  4588. (re-search-forward org-scheduled-time-regexp planning-end t))
  4589. (and (memq 'notscheduled conditions)
  4590. (not
  4591. (save-excursion
  4592. (re-search-forward org-scheduled-time-regexp planning-end t))))
  4593. (and (memq 'deadline conditions)
  4594. (re-search-forward org-deadline-time-regexp planning-end t))
  4595. (and (memq 'notdeadline conditions)
  4596. (not
  4597. (save-excursion
  4598. (re-search-forward org-deadline-time-regexp planning-end t))))
  4599. (and (memq 'timestamp conditions)
  4600. (re-search-forward org-ts-regexp end t))
  4601. (and (memq 'nottimestamp conditions)
  4602. (not (save-excursion (re-search-forward org-ts-regexp end t))))
  4603. (and (setq m (memq 'regexp conditions))
  4604. (stringp (nth 1 m))
  4605. (re-search-forward (nth 1 m) end t))
  4606. (and (setq m (memq 'notregexp conditions))
  4607. (stringp (nth 1 m))
  4608. (not (save-excursion (re-search-forward (nth 1 m) end t))))
  4609. (and (or
  4610. (setq m (memq 'nottodo conditions))
  4611. (setq m (memq 'todo-unblocked conditions))
  4612. (setq m (memq 'nottodo-unblocked conditions))
  4613. (setq m (memq 'todo conditions)))
  4614. (org-agenda-skip-if-todo m end)))
  4615. end)))
  4616. (defun org-agenda-skip-if-todo (args end)
  4617. "Helper function for `org-agenda-skip-if', do not use it directly.
  4618. ARGS is a list with first element either `todo', `nottodo',
  4619. `todo-unblocked' or `nottodo-unblocked'. The remainder is either
  4620. a list of TODO keywords, or a state symbol `todo' or `done' or
  4621. `any'."
  4622. (let ((todo-re
  4623. (concat "^\\*+[ \t]+"
  4624. (regexp-opt
  4625. (pcase args
  4626. (`(,_ todo)
  4627. (org-delete-all org-done-keywords
  4628. (copy-sequence org-todo-keywords-1)))
  4629. (`(,_ done) org-done-keywords)
  4630. (`(,_ any) org-todo-keywords-1)
  4631. (`(,_ ,(pred atom))
  4632. (error "Invalid TODO class or type: %S" args))
  4633. (`(,_ ,(pred (member "*"))) org-todo-keywords-1)
  4634. (`(,_ ,todo-list) todo-list))
  4635. 'words))))
  4636. (pcase args
  4637. (`(todo . ,_)
  4638. (let (case-fold-search) (re-search-forward todo-re end t)))
  4639. (`(nottodo . ,_)
  4640. (not (let (case-fold-search) (re-search-forward todo-re end t))))
  4641. (`(todo-unblocked . ,_)
  4642. (catch :unblocked
  4643. (while (let (case-fold-search) (re-search-forward todo-re end t))
  4644. (when (org-entry-blocked-p) (throw :unblocked t)))
  4645. nil))
  4646. (`(nottodo-unblocked . ,_)
  4647. (catch :unblocked
  4648. (while (let (case-fold-search) (re-search-forward todo-re end t))
  4649. (when (org-entry-blocked-p) (throw :unblocked nil)))
  4650. t))
  4651. (`(,type . ,_) (error "Unknown TODO skip type: %S" type)))))
  4652. ;;;###autoload
  4653. (defun org-agenda-list-stuck-projects (&rest ignore)
  4654. "Create agenda view for projects that are stuck.
  4655. Stuck projects are project that have no next actions. For the definitions
  4656. of what a project is and how to check if it stuck, customize the variable
  4657. `org-stuck-projects'."
  4658. (interactive)
  4659. (let* ((org-agenda-overriding-header
  4660. (or org-agenda-overriding-header "List of stuck projects: "))
  4661. (matcher (nth 0 org-stuck-projects))
  4662. (todo (nth 1 org-stuck-projects))
  4663. (tags (nth 2 org-stuck-projects))
  4664. (gen-re (org-string-nw-p (nth 3 org-stuck-projects)))
  4665. (todo-wds
  4666. (if (not (member "*" todo)) todo
  4667. (org-agenda-prepare-buffers (org-agenda-files nil 'ifmode))
  4668. (org-delete-all org-done-keywords-for-agenda
  4669. (copy-sequence org-todo-keywords-for-agenda))))
  4670. (todo-re (and todo
  4671. (format "^\\*+[ \t]+\\(%s\\)\\>"
  4672. (mapconcat #'identity todo-wds "\\|"))))
  4673. (tags-re (cond ((null tags) nil)
  4674. ((member "*" tags) org-tag-line-re)
  4675. (tags
  4676. (let ((other-tags (format "\\(?:%s:\\)*" org-tag-re)))
  4677. (concat org-outline-regexp-bol
  4678. ".*?[ \t]:"
  4679. other-tags
  4680. (regexp-opt tags t)
  4681. ":" other-tags "[ \t]*$")))
  4682. (t nil)))
  4683. (re-list (delq nil (list todo-re tags-re gen-re)))
  4684. (skip-re
  4685. (if (null re-list)
  4686. (error "Missing information to identify unstuck projects")
  4687. (mapconcat #'identity re-list "\\|")))
  4688. (org-agenda-skip-function
  4689. ;; Skip entry if `org-agenda-skip-regexp' matches anywhere
  4690. ;; in the subtree.
  4691. `(lambda ()
  4692. (and (save-excursion
  4693. (let ((case-fold-search nil))
  4694. (re-search-forward
  4695. ,skip-re (save-excursion (org-end-of-subtree t)) t)))
  4696. (progn (outline-next-heading) (point))))))
  4697. (org-tags-view nil matcher)
  4698. (setq org-agenda-buffer-name (buffer-name))
  4699. (with-current-buffer org-agenda-buffer-name
  4700. (setq org-agenda-redo-command
  4701. `(org-agenda-list-stuck-projects ,current-prefix-arg))
  4702. (let ((inhibit-read-only t))
  4703. (add-text-properties
  4704. (point-min) (point-max)
  4705. `(org-redo-cmd ,org-agenda-redo-command))))))
  4706. ;;; Diary integration
  4707. (defvar org-disable-agenda-to-diary nil) ;Dynamically-scoped param.
  4708. (defvar diary-list-entries-hook)
  4709. (defvar diary-time-regexp)
  4710. (defun org-get-entries-from-diary (date)
  4711. "Get the (Emacs Calendar) diary entries for DATE."
  4712. (require 'diary-lib)
  4713. (let* ((diary-fancy-buffer "*temporary-fancy-diary-buffer*")
  4714. (diary-display-function 'diary-fancy-display)
  4715. (pop-up-frames nil)
  4716. (diary-list-entries-hook
  4717. (cons 'org-diary-default-entry diary-list-entries-hook))
  4718. (diary-file-name-prefix nil) ; turn this feature off
  4719. (diary-modify-entry-list-string-function 'org-modify-diary-entry-string)
  4720. (diary-time-regexp (concat "^" diary-time-regexp))
  4721. entries
  4722. (org-disable-agenda-to-diary t))
  4723. (save-excursion
  4724. (save-window-excursion
  4725. (funcall (if (fboundp 'diary-list-entries)
  4726. 'diary-list-entries 'list-diary-entries)
  4727. date 1)))
  4728. (if (not (get-buffer diary-fancy-buffer))
  4729. (setq entries nil)
  4730. (with-current-buffer diary-fancy-buffer
  4731. (setq buffer-read-only nil)
  4732. (if (zerop (buffer-size))
  4733. ;; No entries
  4734. (setq entries nil)
  4735. ;; Omit the date and other unnecessary stuff
  4736. (org-agenda-cleanup-fancy-diary)
  4737. ;; Add prefix to each line and extend the text properties
  4738. (if (zerop (buffer-size))
  4739. (setq entries nil)
  4740. (setq entries (buffer-substring (point-min) (- (point-max) 1)))
  4741. (setq entries
  4742. (with-temp-buffer
  4743. (insert entries) (goto-char (point-min))
  4744. (while (re-search-forward "\n[ \t]+\\(.+\\)$" nil t)
  4745. (unless (save-match-data (string-match diary-time-regexp (match-string 1)))
  4746. (replace-match (concat "; " (match-string 1)))))
  4747. (buffer-string)))))
  4748. (set-buffer-modified-p nil)
  4749. (kill-buffer diary-fancy-buffer)))
  4750. (when entries
  4751. (setq entries (org-split-string entries "\n"))
  4752. (setq entries
  4753. (mapcar
  4754. (lambda (x)
  4755. (setq x (org-agenda-format-item "" x nil "Diary" nil 'time))
  4756. ;; Extend the text properties to the beginning of the line
  4757. (org-add-props x (text-properties-at (1- (length x)) x)
  4758. 'type "diary" 'date date 'face 'org-agenda-diary))
  4759. entries)))))
  4760. (defvar org-agenda-cleanup-fancy-diary-hook nil
  4761. "Hook run when the fancy diary buffer is cleaned up.")
  4762. (defun org-agenda-cleanup-fancy-diary ()
  4763. "Remove unwanted stuff in buffer created by `fancy-diary-display'.
  4764. This gets rid of the date, the underline under the date, and the
  4765. dummy entry installed by Org mode to ensure non-empty diary for
  4766. each date. It also removes lines that contain only whitespace."
  4767. (goto-char (point-min))
  4768. (if (looking-at ".*?:[ \t]*")
  4769. (progn
  4770. (replace-match "")
  4771. (re-search-forward "\n=+$" nil t)
  4772. (replace-match "")
  4773. (while (re-search-backward "^ +\n?" nil t) (replace-match "")))
  4774. (re-search-forward "\n=+$" nil t)
  4775. (delete-region (point-min) (min (point-max) (1+ (match-end 0)))))
  4776. (goto-char (point-min))
  4777. (while (re-search-forward "^ +\n" nil t)
  4778. (replace-match ""))
  4779. (goto-char (point-min))
  4780. (when (re-search-forward "^Org mode dummy\n?" nil t)
  4781. (replace-match ""))
  4782. (run-hooks 'org-agenda-cleanup-fancy-diary-hook))
  4783. (defun org-modify-diary-entry-string (string)
  4784. "Add text properties to string, allowing Org to act on it."
  4785. (org-add-props string nil
  4786. 'mouse-face 'highlight
  4787. 'help-echo (if buffer-file-name
  4788. (format "mouse-2 or RET jump to diary file %s"
  4789. (abbreviate-file-name buffer-file-name))
  4790. "")
  4791. 'org-agenda-diary-link t
  4792. 'org-marker (org-agenda-new-marker (point-at-bol))))
  4793. (defun org-diary-default-entry ()
  4794. "Add a dummy entry to the diary.
  4795. Needed to avoid empty dates which mess up holiday display."
  4796. ;; Catch the error if dealing with the new add-to-diary-alist
  4797. (when org-disable-agenda-to-diary
  4798. (condition-case nil
  4799. (org-add-to-diary-list original-date "Org mode dummy" "")
  4800. (error
  4801. (org-add-to-diary-list original-date "Org mode dummy" "" nil)))))
  4802. (defun org-add-to-diary-list (&rest args)
  4803. (if (fboundp 'diary-add-to-list)
  4804. (apply 'diary-add-to-list args)
  4805. (apply 'add-to-diary-list args)))
  4806. (defvar org-diary-last-run-time nil)
  4807. ;;;###autoload
  4808. (defun org-diary (&rest args)
  4809. "Return diary information from org files.
  4810. This function can be used in a \"sexp\" diary entry in the Emacs calendar.
  4811. It accesses org files and extracts information from those files to be
  4812. listed in the diary. The function accepts arguments specifying what
  4813. items should be listed. For a list of arguments allowed here, see the
  4814. variable `org-agenda-entry-types'.
  4815. The call in the diary file should look like this:
  4816. &%%(org-diary) ~/path/to/some/orgfile.org
  4817. Use a separate line for each org file to check. Or, if you omit the file name,
  4818. all files listed in `org-agenda-files' will be checked automatically:
  4819. &%%(org-diary)
  4820. If you don't give any arguments (as in the example above), the default value
  4821. of `org-agenda-entry-types' is used: (:deadline :scheduled :timestamp :sexp).
  4822. So the example above may also be written as
  4823. &%%(org-diary :deadline :timestamp :sexp :scheduled)
  4824. The function expects the lisp variables `entry' and `date' to be provided
  4825. by the caller, because this is how the calendar works. Don't use this
  4826. function from a program - use `org-agenda-get-day-entries' instead."
  4827. (when (> (- (float-time)
  4828. org-agenda-last-marker-time)
  4829. 5)
  4830. ;; I am not sure if this works with sticky agendas, because the marker
  4831. ;; list is then no longer a global variable.
  4832. (org-agenda-reset-markers))
  4833. (org-compile-prefix-format 'agenda)
  4834. (org-set-sorting-strategy 'agenda)
  4835. (setq args (or args org-agenda-entry-types))
  4836. (let* ((files (if (and entry (stringp entry) (string-match "\\S-" entry))
  4837. (list entry)
  4838. (org-agenda-files t)))
  4839. (time (float-time))
  4840. file rtn results)
  4841. (when (or (not org-diary-last-run-time)
  4842. (> (- time
  4843. org-diary-last-run-time)
  4844. 3))
  4845. (org-agenda-prepare-buffers files))
  4846. (setq org-diary-last-run-time time)
  4847. ;; If this is called during org-agenda, don't return any entries to
  4848. ;; the calendar. Org Agenda will list these entries itself.
  4849. (when org-disable-agenda-to-diary (setq files nil))
  4850. (while (setq file (pop files))
  4851. (setq rtn (apply 'org-agenda-get-day-entries file date args))
  4852. (setq results (append results rtn)))
  4853. (when results
  4854. (setq results
  4855. (mapcar (lambda (i) (replace-regexp-in-string
  4856. org-link-bracket-re "\\2" i)) results))
  4857. (concat (org-agenda-finalize-entries results) "\n"))))
  4858. ;;; Agenda entry finders
  4859. (defun org-agenda--timestamp-to-absolute (&rest args)
  4860. "Call `org-time-string-to-absolute' with ARGS.
  4861. However, throw `:skip' whenever an error is raised."
  4862. (condition-case e
  4863. (apply #'org-time-string-to-absolute args)
  4864. (org-diary-sexp-no-match (throw :skip nil))
  4865. (error
  4866. (message "%s; Skipping entry" (error-message-string e))
  4867. (throw :skip nil))))
  4868. (defun org-agenda-get-day-entries (file date &rest args)
  4869. "Does the work for `org-diary' and `org-agenda'.
  4870. FILE is the path to a file to be checked for entries. DATE is date like
  4871. the one returned by `calendar-current-date'. ARGS are symbols indicating
  4872. which kind of entries should be extracted. For details about these, see
  4873. the documentation of `org-diary'."
  4874. (let* ((org-startup-folded nil)
  4875. (org-startup-align-all-tables nil)
  4876. (buffer (if (file-exists-p file) (org-get-agenda-file-buffer file)
  4877. (error "No such file %s" file))))
  4878. (if (not buffer)
  4879. ;; If file does not exist, signal it in diary nonetheless.
  4880. (list (format "ORG-AGENDA-ERROR: No such org-file %s" file))
  4881. (with-current-buffer buffer
  4882. (unless (derived-mode-p 'org-mode)
  4883. (error "Agenda file %s is not in Org mode" file))
  4884. (setq org-agenda-buffer (or org-agenda-buffer buffer))
  4885. (setf org-agenda-current-date date)
  4886. (save-excursion
  4887. (save-restriction
  4888. (if (eq buffer org-agenda-restrict)
  4889. (narrow-to-region org-agenda-restrict-begin
  4890. org-agenda-restrict-end)
  4891. (widen))
  4892. ;; Rationalize ARGS. Also make sure `:deadline' comes
  4893. ;; first in order to populate DEADLINES before passing it.
  4894. ;;
  4895. ;; We use `delq' since `org-uniquify' duplicates ARGS,
  4896. ;; guarding us from modifying `org-agenda-entry-types'.
  4897. (setf args (org-uniquify (or args org-agenda-entry-types)))
  4898. (when (and (memq :scheduled args) (memq :scheduled* args))
  4899. (setf args (delq :scheduled* args)))
  4900. (cond
  4901. ((memq :deadline args)
  4902. (setf args (cons :deadline
  4903. (delq :deadline (delq :deadline* args)))))
  4904. ((memq :deadline* args)
  4905. (setf args (cons :deadline* (delq :deadline* args)))))
  4906. ;; Collect list of headlines. Return them flattened.
  4907. (let ((case-fold-search nil) results deadlines)
  4908. (dolist (arg args (apply #'nconc (nreverse results)))
  4909. (pcase arg
  4910. ((and :todo (guard (org-agenda-today-p date)))
  4911. (push (org-agenda-get-todos) results))
  4912. (:timestamp
  4913. (push (org-agenda-get-blocks) results)
  4914. (push (org-agenda-get-timestamps deadlines) results))
  4915. (:sexp
  4916. (push (org-agenda-get-sexps) results))
  4917. (:scheduled
  4918. (push (org-agenda-get-scheduled deadlines) results))
  4919. (:scheduled*
  4920. (push (org-agenda-get-scheduled deadlines t) results))
  4921. (:closed
  4922. (push (org-agenda-get-progress) results))
  4923. (:deadline
  4924. (setf deadlines (org-agenda-get-deadlines))
  4925. (push deadlines results))
  4926. (:deadline*
  4927. (setf deadlines (org-agenda-get-deadlines t))
  4928. (push deadlines results)))))))))))
  4929. (defsubst org-em (x y list)
  4930. "Is X or Y a member of LIST?"
  4931. (or (memq x list) (memq y list)))
  4932. (defvar org-heading-keyword-regexp-format) ; defined in org.el
  4933. (defvar org-agenda-sorting-strategy-selected nil)
  4934. (defun org-agenda-entry-get-agenda-timestamp (pom)
  4935. "Retrieve timestamp information for sorting agenda views.
  4936. Given a point or marker POM, returns a cons cell of the timestamp
  4937. and the timestamp type relevant for the sorting strategy in
  4938. `org-agenda-sorting-strategy-selected'."
  4939. (let (ts ts-date-type)
  4940. (save-match-data
  4941. (cond ((org-em 'scheduled-up 'scheduled-down
  4942. org-agenda-sorting-strategy-selected)
  4943. (setq ts (org-entry-get pom "SCHEDULED")
  4944. ts-date-type " scheduled"))
  4945. ((org-em 'deadline-up 'deadline-down
  4946. org-agenda-sorting-strategy-selected)
  4947. (setq ts (org-entry-get pom "DEADLINE")
  4948. ts-date-type " deadline"))
  4949. ((org-em 'ts-up 'ts-down
  4950. org-agenda-sorting-strategy-selected)
  4951. (setq ts (org-entry-get pom "TIMESTAMP")
  4952. ts-date-type " timestamp"))
  4953. ((org-em 'tsia-up 'tsia-down
  4954. org-agenda-sorting-strategy-selected)
  4955. (setq ts (org-entry-get pom "TIMESTAMP_IA")
  4956. ts-date-type " timestamp_ia"))
  4957. ((org-em 'timestamp-up 'timestamp-down
  4958. org-agenda-sorting-strategy-selected)
  4959. (setq ts (or (org-entry-get pom "SCHEDULED")
  4960. (org-entry-get pom "DEADLINE")
  4961. (org-entry-get pom "TIMESTAMP")
  4962. (org-entry-get pom "TIMESTAMP_IA"))
  4963. ts-date-type ""))
  4964. (t (setq ts-date-type "")))
  4965. (cons (when ts (ignore-errors (org-time-string-to-absolute ts)))
  4966. ts-date-type))))
  4967. (defun org-agenda-get-todos ()
  4968. "Return the TODO information for agenda display."
  4969. (let* ((props (list 'face nil
  4970. 'done-face 'org-agenda-done
  4971. 'org-not-done-regexp org-not-done-regexp
  4972. 'org-todo-regexp org-todo-regexp
  4973. 'org-complex-heading-regexp org-complex-heading-regexp
  4974. 'mouse-face 'highlight
  4975. 'help-echo
  4976. (format "mouse-2 or RET jump to org file %s"
  4977. (abbreviate-file-name buffer-file-name))))
  4978. (case-fold-search nil)
  4979. (regexp (format org-heading-keyword-regexp-format
  4980. (cond
  4981. ((and org-select-this-todo-keyword
  4982. (equal org-select-this-todo-keyword "*"))
  4983. org-todo-regexp)
  4984. (org-select-this-todo-keyword
  4985. (concat "\\("
  4986. (mapconcat 'identity
  4987. (org-split-string
  4988. org-select-this-todo-keyword
  4989. "|")
  4990. "\\|") "\\)"))
  4991. (t org-not-done-regexp))))
  4992. marker priority category level tags todo-state
  4993. ts-date ts-date-type ts-date-pair
  4994. ee txt beg end inherited-tags todo-state-end-pos)
  4995. (goto-char (point-min))
  4996. (while (re-search-forward regexp nil t)
  4997. (catch :skip
  4998. (save-match-data
  4999. (beginning-of-line)
  5000. (org-agenda-skip)
  5001. (setq beg (point) end (save-excursion (outline-next-heading) (point)))
  5002. (unless (and (setq todo-state (org-get-todo-state))
  5003. (setq todo-state-end-pos (match-end 2)))
  5004. (goto-char end)
  5005. (throw :skip nil))
  5006. (when (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item end)
  5007. (goto-char (1+ beg))
  5008. (or org-agenda-todo-list-sublevels (org-end-of-subtree 'invisible))
  5009. (throw :skip nil)))
  5010. (goto-char (match-beginning 2))
  5011. (setq marker (org-agenda-new-marker (match-beginning 0))
  5012. category (org-get-category)
  5013. ts-date-pair (org-agenda-entry-get-agenda-timestamp (point))
  5014. ts-date (car ts-date-pair)
  5015. ts-date-type (cdr ts-date-pair)
  5016. txt (org-trim (buffer-substring (match-beginning 2) (match-end 0)))
  5017. inherited-tags
  5018. (or (eq org-agenda-show-inherited-tags 'always)
  5019. (and (listp org-agenda-show-inherited-tags)
  5020. (memq 'todo org-agenda-show-inherited-tags))
  5021. (and (eq org-agenda-show-inherited-tags t)
  5022. (or (eq org-agenda-use-tag-inheritance t)
  5023. (memq 'todo org-agenda-use-tag-inheritance))))
  5024. tags (org-get-tags nil (not inherited-tags))
  5025. level (make-string (org-reduced-level (org-outline-level)) ? )
  5026. txt (org-agenda-format-item "" txt level category tags t)
  5027. priority (1+ (org-get-priority txt)))
  5028. (org-add-props txt props
  5029. 'org-marker marker 'org-hd-marker marker
  5030. 'priority priority
  5031. 'level level
  5032. 'ts-date ts-date
  5033. 'type (concat "todo" ts-date-type) 'todo-state todo-state)
  5034. (push txt ee)
  5035. (if org-agenda-todo-list-sublevels
  5036. (goto-char todo-state-end-pos)
  5037. (org-end-of-subtree 'invisible))))
  5038. (nreverse ee)))
  5039. (defun org-agenda-todo-custom-ignore-p (time n)
  5040. "Check whether timestamp is farther away than n number of days.
  5041. This function is invoked if `org-agenda-todo-ignore-deadlines',
  5042. `org-agenda-todo-ignore-scheduled' or
  5043. `org-agenda-todo-ignore-timestamp' is set to an integer."
  5044. (let ((days (org-time-stamp-to-now
  5045. time org-agenda-todo-ignore-time-comparison-use-seconds)))
  5046. (if (>= n 0)
  5047. (>= days n)
  5048. (<= days n))))
  5049. ;;;###autoload
  5050. (defun org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item
  5051. (&optional end)
  5052. "Do we have a reason to ignore this TODO entry because it has a time stamp?"
  5053. (when (or org-agenda-todo-ignore-with-date
  5054. org-agenda-todo-ignore-scheduled
  5055. org-agenda-todo-ignore-deadlines
  5056. org-agenda-todo-ignore-timestamp)
  5057. (setq end (or end (save-excursion (outline-next-heading) (point))))
  5058. (save-excursion
  5059. (or (and org-agenda-todo-ignore-with-date
  5060. (re-search-forward org-ts-regexp end t))
  5061. (and org-agenda-todo-ignore-scheduled
  5062. (re-search-forward org-scheduled-time-regexp end t)
  5063. (cond
  5064. ((eq org-agenda-todo-ignore-scheduled 'future)
  5065. (> (org-time-stamp-to-now
  5066. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5067. ((eq org-agenda-todo-ignore-scheduled 'past)
  5068. (<= (org-time-stamp-to-now
  5069. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5070. ((numberp org-agenda-todo-ignore-scheduled)
  5071. (org-agenda-todo-custom-ignore-p
  5072. (match-string 1) org-agenda-todo-ignore-scheduled))
  5073. (t)))
  5074. (and org-agenda-todo-ignore-deadlines
  5075. (re-search-forward org-deadline-time-regexp end t)
  5076. (cond
  5077. ((eq org-agenda-todo-ignore-deadlines 'all) t)
  5078. ((eq org-agenda-todo-ignore-deadlines 'far)
  5079. (not (org-deadline-close-p (match-string 1))))
  5080. ((eq org-agenda-todo-ignore-deadlines 'future)
  5081. (> (org-time-stamp-to-now
  5082. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5083. ((eq org-agenda-todo-ignore-deadlines 'past)
  5084. (<= (org-time-stamp-to-now
  5085. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5086. ((numberp org-agenda-todo-ignore-deadlines)
  5087. (org-agenda-todo-custom-ignore-p
  5088. (match-string 1) org-agenda-todo-ignore-deadlines))
  5089. (t (org-deadline-close-p (match-string 1)))))
  5090. (and org-agenda-todo-ignore-timestamp
  5091. (let ((buffer (current-buffer))
  5092. (regexp
  5093. (concat
  5094. org-scheduled-time-regexp "\\|" org-deadline-time-regexp))
  5095. (start (point)))
  5096. ;; Copy current buffer into a temporary one
  5097. (with-temp-buffer
  5098. (insert-buffer-substring buffer start end)
  5099. (goto-char (point-min))
  5100. ;; Delete SCHEDULED and DEADLINE items
  5101. (while (re-search-forward regexp end t)
  5102. (delete-region (match-beginning 0) (match-end 0)))
  5103. (goto-char (point-min))
  5104. ;; No search for timestamp left
  5105. (when (re-search-forward org-ts-regexp nil t)
  5106. (cond
  5107. ((eq org-agenda-todo-ignore-timestamp 'future)
  5108. (> (org-time-stamp-to-now
  5109. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5110. ((eq org-agenda-todo-ignore-timestamp 'past)
  5111. (<= (org-time-stamp-to-now
  5112. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5113. ((numberp org-agenda-todo-ignore-timestamp)
  5114. (org-agenda-todo-custom-ignore-p
  5115. (match-string 1) org-agenda-todo-ignore-timestamp))
  5116. (t))))))))))
  5117. (defun org-agenda-get-timestamps (&optional deadlines)
  5118. "Return the date stamp information for agenda display.
  5119. Optional argument DEADLINES is a list of deadline items to be
  5120. displayed in agenda view."
  5121. (let* ((props (list 'face 'org-agenda-calendar-event
  5122. 'org-not-done-regexp org-not-done-regexp
  5123. 'org-todo-regexp org-todo-regexp
  5124. 'org-complex-heading-regexp org-complex-heading-regexp
  5125. 'mouse-face 'highlight
  5126. 'help-echo
  5127. (format "mouse-2 or RET jump to Org file %s"
  5128. (abbreviate-file-name buffer-file-name))))
  5129. (current (calendar-absolute-from-gregorian date))
  5130. (today (org-today))
  5131. (deadline-position-alist
  5132. (mapcar (lambda (d)
  5133. (let ((m (get-text-property 0 'org-hd-marker d)))
  5134. (and m (marker-position m))))
  5135. deadlines))
  5136. ;; Match time-stamps set to current date, time-stamps with
  5137. ;; a repeater, and S-exp time-stamps.
  5138. (regexp
  5139. (concat
  5140. (if org-agenda-include-inactive-timestamps "[[<]" "<")
  5141. (regexp-quote
  5142. (substring
  5143. (format-time-string
  5144. (car org-time-stamp-formats)
  5145. (encode-time ; DATE bound by calendar
  5146. 0 0 0 (nth 1 date) (car date) (nth 2 date)))
  5147. 1 11))
  5148. "\\|\\(<[0-9]+-[0-9]+-[0-9]+[^>\n]+?\\+[0-9]+[hdwmy]>\\)"
  5149. "\\|\\(<%%\\(([^>\n]+)\\)>\\)"))
  5150. timestamp-items)
  5151. (goto-char (point-min))
  5152. (while (re-search-forward regexp nil t)
  5153. ;; Skip date ranges, scheduled and deadlines, which are handled
  5154. ;; specially. Also skip time-stamps before first headline as
  5155. ;; there would be no entry to add to the agenda. Eventually,
  5156. ;; ignore clock entries.
  5157. (catch :skip
  5158. (save-match-data
  5159. (when (or (org-at-date-range-p)
  5160. (org-at-planning-p)
  5161. (org-before-first-heading-p)
  5162. (and org-agenda-include-inactive-timestamps
  5163. (org-at-clock-log-p)))
  5164. (throw :skip nil))
  5165. (org-agenda-skip))
  5166. (let* ((pos (match-beginning 0))
  5167. (repeat (match-string 1))
  5168. (sexp-entry (match-string 3))
  5169. (time-stamp (if (or repeat sexp-entry) (match-string 0)
  5170. (save-excursion
  5171. (goto-char pos)
  5172. (looking-at org-ts-regexp-both)
  5173. (match-string 0))))
  5174. (todo-state (org-get-todo-state))
  5175. (warntime (get-text-property (point) 'org-appt-warntime))
  5176. (done? (member todo-state org-done-keywords)))
  5177. ;; Possibly skip done tasks.
  5178. (when (and done? org-agenda-skip-timestamp-if-done)
  5179. (throw :skip t))
  5180. ;; S-exp entry doesn't match current day: skip it.
  5181. (when (and sexp-entry (not (org-diary-sexp-entry sexp-entry "" date)))
  5182. (throw :skip nil))
  5183. (when repeat
  5184. (let* ((past
  5185. ;; A repeating time stamp is shown at its base
  5186. ;; date and every repeated date up to TODAY. If
  5187. ;; `org-agenda-prefer-last-repeat' is non-nil,
  5188. ;; however, only the last repeat before today
  5189. ;; (inclusive) is shown.
  5190. (org-agenda--timestamp-to-absolute
  5191. repeat
  5192. (if (or (> current today)
  5193. (eq org-agenda-prefer-last-repeat t)
  5194. (member todo-state org-agenda-prefer-last-repeat))
  5195. today
  5196. current)
  5197. 'past (current-buffer) pos))
  5198. (future
  5199. ;; Display every repeated date past TODAY
  5200. ;; (exclusive) unless
  5201. ;; `org-agenda-show-future-repeats' is nil. If
  5202. ;; this variable is set to `next', only display
  5203. ;; the first repeated date after TODAY
  5204. ;; (exclusive).
  5205. (cond
  5206. ((<= current today) past)
  5207. ((not org-agenda-show-future-repeats) past)
  5208. (t
  5209. (let ((base (if (eq org-agenda-show-future-repeats 'next)
  5210. (1+ today)
  5211. current)))
  5212. (org-agenda--timestamp-to-absolute
  5213. repeat base 'future (current-buffer) pos))))))
  5214. (when (and (/= current past) (/= current future))
  5215. (throw :skip nil))))
  5216. (save-excursion
  5217. (re-search-backward org-outline-regexp-bol nil t)
  5218. ;; Possibly skip time-stamp when a deadline is set.
  5219. (when (and org-agenda-skip-timestamp-if-deadline-is-shown
  5220. (assq (point) deadline-position-alist))
  5221. (throw :skip nil))
  5222. (let* ((category (org-get-category pos))
  5223. (inherited-tags
  5224. (or (eq org-agenda-show-inherited-tags 'always)
  5225. (and (consp org-agenda-show-inherited-tags)
  5226. (memq 'agenda org-agenda-show-inherited-tags))
  5227. (and (eq org-agenda-show-inherited-tags t)
  5228. (or (eq org-agenda-use-tag-inheritance t)
  5229. (memq 'agenda
  5230. org-agenda-use-tag-inheritance)))))
  5231. (tags (org-get-tags nil (not inherited-tags)))
  5232. (level (make-string (org-reduced-level (org-outline-level))
  5233. ?\s))
  5234. (head (and (looking-at "\\*+[ \t]+\\(.*\\)")
  5235. (match-string 1)))
  5236. (inactive? (= (char-after pos) ?\[))
  5237. (habit? (and (fboundp 'org-is-habit-p) (org-is-habit-p)))
  5238. (item
  5239. (org-agenda-format-item
  5240. (and inactive? org-agenda-inactive-leader)
  5241. head level category tags time-stamp org-ts-regexp habit?)))
  5242. (org-add-props item props
  5243. 'priority (if habit?
  5244. (org-habit-get-priority (org-habit-parse-todo))
  5245. (org-get-priority item))
  5246. 'org-marker (org-agenda-new-marker pos)
  5247. 'org-hd-marker (org-agenda-new-marker)
  5248. 'date date
  5249. 'level level
  5250. 'ts-date (if repeat (org-agenda--timestamp-to-absolute repeat)
  5251. current)
  5252. 'todo-state todo-state
  5253. 'warntime warntime
  5254. 'type "timestamp")
  5255. (push item timestamp-items))))
  5256. (when org-agenda-skip-additional-timestamps-same-entry
  5257. (outline-next-heading))))
  5258. (nreverse timestamp-items)))
  5259. (defun org-agenda-get-sexps ()
  5260. "Return the sexp information for agenda display."
  5261. (require 'diary-lib)
  5262. (let* ((props (list 'face 'org-agenda-calendar-sexp
  5263. 'mouse-face 'highlight
  5264. 'help-echo
  5265. (format "mouse-2 or RET jump to org file %s"
  5266. (abbreviate-file-name buffer-file-name))))
  5267. (regexp "^&?%%(")
  5268. marker category extra level ee txt tags entry
  5269. result beg b sexp sexp-entry todo-state warntime inherited-tags)
  5270. (goto-char (point-min))
  5271. (while (re-search-forward regexp nil t)
  5272. (catch :skip
  5273. (org-agenda-skip)
  5274. (setq beg (match-beginning 0))
  5275. (goto-char (1- (match-end 0)))
  5276. (setq b (point))
  5277. (forward-sexp 1)
  5278. (setq sexp (buffer-substring b (point)))
  5279. (setq sexp-entry (if (looking-at "[ \t]*\\(\\S-.*\\)")
  5280. (org-trim (match-string 1))
  5281. ""))
  5282. (setq result (org-diary-sexp-entry sexp sexp-entry date))
  5283. (when result
  5284. (setq marker (org-agenda-new-marker beg)
  5285. level (make-string (org-reduced-level (org-outline-level)) ? )
  5286. category (org-get-category beg)
  5287. inherited-tags
  5288. (or (eq org-agenda-show-inherited-tags 'always)
  5289. (and (listp org-agenda-show-inherited-tags)
  5290. (memq 'agenda org-agenda-show-inherited-tags))
  5291. (and (eq org-agenda-show-inherited-tags t)
  5292. (or (eq org-agenda-use-tag-inheritance t)
  5293. (memq 'agenda org-agenda-use-tag-inheritance))))
  5294. tags (org-get-tags nil (not inherited-tags))
  5295. todo-state (org-get-todo-state)
  5296. warntime (get-text-property (point) 'org-appt-warntime)
  5297. extra nil)
  5298. (dolist (r (if (stringp result)
  5299. (list result)
  5300. result)) ;; we expect a list here
  5301. (when (and org-agenda-diary-sexp-prefix
  5302. (string-match org-agenda-diary-sexp-prefix r))
  5303. (setq extra (match-string 0 r)
  5304. r (replace-match "" nil nil r)))
  5305. (if (string-match "\\S-" r)
  5306. (setq txt r)
  5307. (setq txt "SEXP entry returned empty string"))
  5308. (setq txt (org-agenda-format-item extra txt level category tags 'time))
  5309. (org-add-props txt props 'org-marker marker
  5310. 'date date 'todo-state todo-state
  5311. 'level level 'type "sexp" 'warntime warntime)
  5312. (push txt ee)))))
  5313. (nreverse ee)))
  5314. ;; Calendar sanity: define some functions that are independent of
  5315. ;; `calendar-date-style'.
  5316. (defun org-anniversary (year month day &optional mark)
  5317. "Like `diary-anniversary', but with fixed (ISO) order of arguments."
  5318. (with-no-warnings
  5319. (let ((calendar-date-style 'iso))
  5320. (diary-anniversary year month day mark))))
  5321. (defun org-cyclic (N year month day &optional mark)
  5322. "Like `diary-cyclic', but with fixed (ISO) order of arguments."
  5323. (with-no-warnings
  5324. (let ((calendar-date-style 'iso))
  5325. (diary-cyclic N year month day mark))))
  5326. (defun org-block (Y1 M1 D1 Y2 M2 D2 &optional mark)
  5327. "Like `diary-block', but with fixed (ISO) order of arguments."
  5328. (with-no-warnings
  5329. (let ((calendar-date-style 'iso))
  5330. (diary-block Y1 M1 D1 Y2 M2 D2 mark))))
  5331. (defun org-date (year month day &optional mark)
  5332. "Like `diary-date', but with fixed (ISO) order of arguments."
  5333. (with-no-warnings
  5334. (let ((calendar-date-style 'iso))
  5335. (diary-date year month day mark))))
  5336. ;; Define the `org-class' function
  5337. (defun org-class (y1 m1 d1 y2 m2 d2 dayname &rest skip-weeks)
  5338. "Entry applies if date is between dates on DAYNAME, but skips SKIP-WEEKS.
  5339. DAYNAME is a number between 0 (Sunday) and 6 (Saturday).
  5340. SKIP-WEEKS is any number of ISO weeks in the block period for which the
  5341. item should be skipped. If any of the SKIP-WEEKS arguments is the symbol
  5342. `holidays', then any date that is known by the Emacs calendar to be a
  5343. holiday will also be skipped. If SKIP-WEEKS arguments are holiday strings,
  5344. then those holidays will be skipped."
  5345. (let* ((date1 (calendar-absolute-from-gregorian (list m1 d1 y1)))
  5346. (date2 (calendar-absolute-from-gregorian (list m2 d2 y2)))
  5347. (d (calendar-absolute-from-gregorian date))
  5348. (h (when skip-weeks (calendar-check-holidays date))))
  5349. (and
  5350. (<= date1 d)
  5351. (<= d date2)
  5352. (= (calendar-day-of-week date) dayname)
  5353. (or (not skip-weeks)
  5354. (progn
  5355. (require 'cal-iso)
  5356. (not (member (car (calendar-iso-from-absolute d)) skip-weeks))))
  5357. (not (or (and h (memq 'holidays skip-weeks))
  5358. (delq nil (mapcar (lambda(g) (member g skip-weeks)) h))))
  5359. entry)))
  5360. (defalias 'org-get-closed 'org-agenda-get-progress)
  5361. (defun org-agenda-get-progress ()
  5362. "Return the logged TODO entries for agenda display."
  5363. (let* ((props (list 'mouse-face 'highlight
  5364. 'org-not-done-regexp org-not-done-regexp
  5365. 'org-todo-regexp org-todo-regexp
  5366. 'org-complex-heading-regexp org-complex-heading-regexp
  5367. 'help-echo
  5368. (format "mouse-2 or RET jump to org file %s"
  5369. (abbreviate-file-name buffer-file-name))))
  5370. (items (if (consp org-agenda-show-log-scoped)
  5371. org-agenda-show-log-scoped
  5372. (if (eq org-agenda-show-log-scoped 'clockcheck)
  5373. '(clock)
  5374. org-agenda-log-mode-items)))
  5375. (parts
  5376. (delq nil
  5377. (list
  5378. (when (memq 'closed items) (concat "\\<" org-closed-string))
  5379. (when (memq 'clock items) (concat "\\<" org-clock-string))
  5380. (when (memq 'state items)
  5381. (format "- +State \"%s\".*?" org-todo-regexp)))))
  5382. (parts-re (if parts (mapconcat 'identity parts "\\|")
  5383. (error "`org-agenda-log-mode-items' is empty")))
  5384. (regexp (concat
  5385. "\\(" parts-re "\\)"
  5386. " *\\["
  5387. (regexp-quote
  5388. (substring
  5389. (format-time-string
  5390. (car org-time-stamp-formats)
  5391. (encode-time ; DATE bound by calendar
  5392. 0 0 0 (nth 1 date) (car date) (nth 2 date)))
  5393. 1 11))))
  5394. (org-agenda-search-headline-for-time nil)
  5395. marker hdmarker priority category level tags closedp type
  5396. statep clockp state ee txt extra timestr rest clocked inherited-tags)
  5397. (goto-char (point-min))
  5398. (while (re-search-forward regexp nil t)
  5399. (catch :skip
  5400. (org-agenda-skip)
  5401. (setq marker (org-agenda-new-marker (match-beginning 0))
  5402. closedp (equal (match-string 1) org-closed-string)
  5403. statep (equal (string-to-char (match-string 1)) ?-)
  5404. clockp (not (or closedp statep))
  5405. state (and statep (match-string 2))
  5406. category (org-get-category (match-beginning 0))
  5407. timestr (buffer-substring (match-beginning 0) (point-at-eol)))
  5408. (when (string-match "\\]" timestr)
  5409. ;; substring should only run to end of time stamp
  5410. (setq rest (substring timestr (match-end 0))
  5411. timestr (substring timestr 0 (match-end 0)))
  5412. (if (and (not closedp) (not statep)
  5413. (string-match "\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)\\].*?\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)"
  5414. rest))
  5415. (progn (setq timestr (concat (substring timestr 0 -1)
  5416. "-" (match-string 1 rest) "]"))
  5417. (setq clocked (match-string 2 rest)))
  5418. (setq clocked "-")))
  5419. (save-excursion
  5420. (setq extra
  5421. (cond
  5422. ((not org-agenda-log-mode-add-notes) nil)
  5423. (statep
  5424. (and (looking-at ".*\\\\\n[ \t]*\\([^-\n \t].*?\\)[ \t]*$")
  5425. (match-string 1)))
  5426. (clockp
  5427. (and (looking-at ".*\n[ \t]*-[ \t]+\\([^-\n \t].*?\\)[ \t]*$")
  5428. (match-string 1)))))
  5429. (if (not (re-search-backward org-outline-regexp-bol nil t))
  5430. (throw :skip nil)
  5431. (goto-char (match-beginning 0))
  5432. (setq hdmarker (org-agenda-new-marker)
  5433. inherited-tags
  5434. (or (eq org-agenda-show-inherited-tags 'always)
  5435. (and (listp org-agenda-show-inherited-tags)
  5436. (memq 'todo org-agenda-show-inherited-tags))
  5437. (and (eq org-agenda-show-inherited-tags t)
  5438. (or (eq org-agenda-use-tag-inheritance t)
  5439. (memq 'todo org-agenda-use-tag-inheritance))))
  5440. tags (org-get-tags nil (not inherited-tags))
  5441. level (make-string (org-reduced-level (org-outline-level)) ? ))
  5442. (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
  5443. (setq txt (match-string 1))
  5444. (when extra
  5445. (if (string-match "\\([ \t]+\\)\\(:[^ \n\t]*?:\\)[ \t]*$" txt)
  5446. (setq txt (concat (substring txt 0 (match-beginning 1))
  5447. " - " extra " " (match-string 2 txt)))
  5448. (setq txt (concat txt " - " extra))))
  5449. (setq txt (org-agenda-format-item
  5450. (cond
  5451. (closedp "Closed: ")
  5452. (statep (concat "State: (" state ")"))
  5453. (t (concat "Clocked: (" clocked ")")))
  5454. txt level category tags timestr)))
  5455. (setq type (cond (closedp "closed")
  5456. (statep "state")
  5457. (t "clock")))
  5458. (setq priority 100000)
  5459. (org-add-props txt props
  5460. 'org-marker marker 'org-hd-marker hdmarker 'face 'org-agenda-done
  5461. 'priority priority 'level level
  5462. 'type type 'date date
  5463. 'undone-face 'org-warning 'done-face 'org-agenda-done)
  5464. (push txt ee))
  5465. (goto-char (point-at-eol))))
  5466. (nreverse ee)))
  5467. (defun org-agenda-show-clocking-issues ()
  5468. "Add overlays, showing issues with clocking.
  5469. See also the user option `org-agenda-clock-consistency-checks'."
  5470. (interactive)
  5471. (let* ((pl org-agenda-clock-consistency-checks)
  5472. (re (concat "^[ \t]*"
  5473. org-clock-string
  5474. "[ \t]+"
  5475. "\\(\\[.*?\\]\\)" ; group 1 is first stamp
  5476. "\\(-\\{1,3\\}\\(\\[.*?\\]\\)\\)?")) ; group 3 is second
  5477. (tlstart 0.)
  5478. (tlend 0.)
  5479. (maxtime (org-duration-to-minutes
  5480. (or (plist-get pl :max-duration) "24:00")))
  5481. (mintime (org-duration-to-minutes
  5482. (or (plist-get pl :min-duration) 0)))
  5483. (maxgap (org-duration-to-minutes
  5484. ;; default 30:00 means never complain
  5485. (or (plist-get pl :max-gap) "30:00")))
  5486. (gapok (mapcar #'org-duration-to-minutes
  5487. (plist-get pl :gap-ok-around)))
  5488. (def-face (or (plist-get pl :default-face)
  5489. '((:background "DarkRed") (:foreground "white"))))
  5490. issue face m te ts dt ov)
  5491. (goto-char (point-min))
  5492. (while (re-search-forward " Clocked: +(-\\|\\([0-9]+:[0-9]+\\))" nil t)
  5493. (setq issue nil face def-face)
  5494. (catch 'next
  5495. (setq m (org-get-at-bol 'org-marker)
  5496. te nil ts nil)
  5497. (unless (and m (markerp m))
  5498. (setq issue "No valid clock line") (throw 'next t))
  5499. (org-with-point-at m
  5500. (save-excursion
  5501. (goto-char (point-at-bol))
  5502. (unless (looking-at re)
  5503. (error "No valid Clock line")
  5504. (throw 'next t))
  5505. (unless (match-end 3)
  5506. (setq issue
  5507. (format
  5508. "No end time: (%s)"
  5509. (org-duration-from-minutes
  5510. (floor
  5511. (- (float-time (org-current-time))
  5512. (float-time (org-time-string-to-time (match-string 1))))
  5513. 60)))
  5514. face (or (plist-get pl :no-end-time-face) face))
  5515. (throw 'next t))
  5516. (setq ts (match-string 1)
  5517. te (match-string 3)
  5518. ts (float-time (org-time-string-to-time ts))
  5519. te (float-time (org-time-string-to-time te))
  5520. dt (- te ts))))
  5521. (cond
  5522. ((> dt (* 60 maxtime))
  5523. ;; a very long clocking chunk
  5524. (setq issue (format "Clocking interval is very long: %s"
  5525. (org-duration-from-minutes (floor dt 60)))
  5526. face (or (plist-get pl :long-face) face)))
  5527. ((< dt (* 60 mintime))
  5528. ;; a very short clocking chunk
  5529. (setq issue (format "Clocking interval is very short: %s"
  5530. (org-duration-from-minutes (floor dt 60)))
  5531. face (or (plist-get pl :short-face) face)))
  5532. ((and (> tlend 0) (< ts tlend))
  5533. ;; Two clock entries are overlapping
  5534. (setq issue (format "Clocking overlap: %d minutes"
  5535. (/ (- tlend ts) 60))
  5536. face (or (plist-get pl :overlap-face) face)))
  5537. ((and (> tlend 0) (> ts (+ tlend (* 60 maxgap))))
  5538. ;; There is a gap, lets see if we need to report it
  5539. (unless (org-agenda-check-clock-gap tlend ts gapok)
  5540. (setq issue (format "Clocking gap: %d minutes"
  5541. (/ (- ts tlend) 60))
  5542. face (or (plist-get pl :gap-face) face))))
  5543. (t nil)))
  5544. (setq tlend (or te tlend) tlstart (or ts tlstart))
  5545. (when issue
  5546. ;; OK, there was some issue, add an overlay to show the issue
  5547. (setq ov (make-overlay (point-at-bol) (point-at-eol)))
  5548. (overlay-put ov 'before-string
  5549. (concat
  5550. (org-add-props
  5551. (format "%-43s" (concat " " issue))
  5552. nil
  5553. 'face face)
  5554. "\n"))
  5555. (overlay-put ov 'evaporate t)))))
  5556. (defun org-agenda-check-clock-gap (t1 t2 ok-list)
  5557. "Check if gap T1 -> T2 contains one of the OK-LIST time-of-day values."
  5558. (catch 'exit
  5559. (unless ok-list
  5560. ;; there are no OK times for gaps...
  5561. (throw 'exit nil))
  5562. (when (> (- (/ t2 36000) (/ t1 36000)) 24)
  5563. ;; This is more than 24 hours, so it is OK.
  5564. ;; because we have at least one OK time, that must be in the
  5565. ;; 24 hour interval.
  5566. (throw 'exit t))
  5567. ;; We have a shorter gap.
  5568. ;; Now we have to get the minute of the day when these times are
  5569. (let* ((t1dec (org-decode-time t1))
  5570. (t2dec (org-decode-time t2))
  5571. ;; compute the minute on the day
  5572. (min1 (+ (nth 1 t1dec) (* 60 (nth 2 t1dec))))
  5573. (min2 (+ (nth 1 t2dec) (* 60 (nth 2 t2dec)))))
  5574. (when (< min2 min1)
  5575. ;; if min2 is smaller than min1, this means it is on the next day.
  5576. ;; Wrap it to after midnight.
  5577. (setq min2 (+ min2 1440)))
  5578. ;; Now check if any of the OK times is in the gap
  5579. (mapc (lambda (x)
  5580. ;; Wrap the time to after midnight if necessary
  5581. (when (< x min1) (setq x (+ x 1440)))
  5582. ;; Check if in interval
  5583. (and (<= min1 x) (>= min2 x) (throw 'exit t)))
  5584. ok-list)
  5585. ;; Nope, this gap is not OK
  5586. nil)))
  5587. (defun org-agenda-get-deadlines (&optional with-hour)
  5588. "Return the deadline information for agenda display.
  5589. When WITH-HOUR is non-nil, only return deadlines with an hour
  5590. specification like [h]h:mm."
  5591. (let* ((props (list 'mouse-face 'highlight
  5592. 'org-not-done-regexp org-not-done-regexp
  5593. 'org-todo-regexp org-todo-regexp
  5594. 'org-complex-heading-regexp org-complex-heading-regexp
  5595. 'help-echo
  5596. (format "mouse-2 or RET jump to org file %s"
  5597. (abbreviate-file-name buffer-file-name))))
  5598. (regexp (if with-hour
  5599. org-deadline-time-hour-regexp
  5600. org-deadline-time-regexp))
  5601. (today (org-today))
  5602. (today? (org-agenda-today-p date)) ; DATE bound by calendar.
  5603. (current (calendar-absolute-from-gregorian date))
  5604. deadline-items)
  5605. (goto-char (point-min))
  5606. (while (re-search-forward regexp nil t)
  5607. (catch :skip
  5608. (unless (save-match-data (org-at-planning-p)) (throw :skip nil))
  5609. (org-agenda-skip)
  5610. (let* ((s (match-string 1))
  5611. (pos (1- (match-beginning 1)))
  5612. (todo-state (save-match-data (org-get-todo-state)))
  5613. (done? (member todo-state org-done-keywords))
  5614. (sexp? (string-prefix-p "%%" s))
  5615. ;; DEADLINE is the deadline date for the entry. It is
  5616. ;; either the base date or the last repeat, according
  5617. ;; to `org-agenda-prefer-last-repeat'.
  5618. (deadline
  5619. (cond
  5620. (sexp? (org-agenda--timestamp-to-absolute s current))
  5621. ((or (eq org-agenda-prefer-last-repeat t)
  5622. (member todo-state org-agenda-prefer-last-repeat))
  5623. (org-agenda--timestamp-to-absolute
  5624. s today 'past (current-buffer) pos))
  5625. (t (org-agenda--timestamp-to-absolute s))))
  5626. ;; REPEAT is the future repeat closest from CURRENT,
  5627. ;; according to `org-agenda-show-future-repeats'. If
  5628. ;; the latter is nil, or if the time stamp has no
  5629. ;; repeat part, default to DEADLINE.
  5630. (repeat
  5631. (cond
  5632. (sexp? deadline)
  5633. ((<= current today) deadline)
  5634. ((not org-agenda-show-future-repeats) deadline)
  5635. (t
  5636. (let ((base (if (eq org-agenda-show-future-repeats 'next)
  5637. (1+ today)
  5638. current)))
  5639. (org-agenda--timestamp-to-absolute
  5640. s base 'future (current-buffer) pos)))))
  5641. (diff (- deadline current))
  5642. (suppress-prewarning
  5643. (let ((scheduled
  5644. (and org-agenda-skip-deadline-prewarning-if-scheduled
  5645. (org-entry-get nil "SCHEDULED"))))
  5646. (cond
  5647. ((not scheduled) nil)
  5648. ;; The current item has a scheduled date, so
  5649. ;; evaluate its prewarning lead time.
  5650. ((integerp org-agenda-skip-deadline-prewarning-if-scheduled)
  5651. ;; Use global prewarning-restart lead time.
  5652. org-agenda-skip-deadline-prewarning-if-scheduled)
  5653. ((eq org-agenda-skip-deadline-prewarning-if-scheduled
  5654. 'pre-scheduled)
  5655. ;; Set pre-warning to no earlier than SCHEDULED.
  5656. (min (- deadline
  5657. (org-agenda--timestamp-to-absolute scheduled))
  5658. org-deadline-warning-days))
  5659. ;; Set pre-warning to deadline.
  5660. (t 0))))
  5661. (wdays (or suppress-prewarning (org-get-wdays s))))
  5662. (cond
  5663. ;; Only display deadlines at their base date, at future
  5664. ;; repeat occurrences or in today agenda.
  5665. ((= current deadline) nil)
  5666. ((= current repeat) nil)
  5667. ((not today?) (throw :skip nil))
  5668. ;; Upcoming deadline: display within warning period WDAYS.
  5669. ((> deadline current) (when (> diff wdays) (throw :skip nil)))
  5670. ;; Overdue deadline: warn about it for
  5671. ;; `org-deadline-past-days' duration.
  5672. (t (when (< org-deadline-past-days (- diff)) (throw :skip nil))))
  5673. ;; Possibly skip done tasks.
  5674. (when (and done?
  5675. (or org-agenda-skip-deadline-if-done
  5676. (/= deadline current)))
  5677. (throw :skip nil))
  5678. (save-excursion
  5679. (re-search-backward "^\\*+[ \t]+" nil t)
  5680. (goto-char (match-end 0))
  5681. (let* ((category (org-get-category))
  5682. (level (make-string (org-reduced-level (org-outline-level))
  5683. ?\s))
  5684. (head (buffer-substring (point) (line-end-position)))
  5685. (inherited-tags
  5686. (or (eq org-agenda-show-inherited-tags 'always)
  5687. (and (listp org-agenda-show-inherited-tags)
  5688. (memq 'agenda org-agenda-show-inherited-tags))
  5689. (and (eq org-agenda-show-inherited-tags t)
  5690. (or (eq org-agenda-use-tag-inheritance t)
  5691. (memq 'agenda
  5692. org-agenda-use-tag-inheritance)))))
  5693. (tags (org-get-tags nil (not inherited-tags)))
  5694. (time
  5695. (cond
  5696. ;; No time of day designation if it is only
  5697. ;; a reminder.
  5698. ((and (/= current deadline) (/= current repeat)) nil)
  5699. ((string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
  5700. (concat (substring s (match-beginning 1)) " "))
  5701. (t 'time)))
  5702. (item
  5703. (org-agenda-format-item
  5704. ;; Insert appropriate suffixes before deadlines.
  5705. ;; Those only apply to today agenda.
  5706. (pcase-let ((`(,now ,future ,past)
  5707. org-agenda-deadline-leaders))
  5708. (cond
  5709. ((and today? (< deadline today)) (format past (- diff)))
  5710. ((and today? (> deadline today)) (format future diff))
  5711. (t now)))
  5712. head level category tags time))
  5713. (face (org-agenda-deadline-face
  5714. (- 1 (/ (float diff) (max wdays 1)))))
  5715. (upcoming? (and today? (> deadline today)))
  5716. (warntime (get-text-property (point) 'org-appt-warntime)))
  5717. (org-add-props item props
  5718. 'org-marker (org-agenda-new-marker pos)
  5719. 'org-hd-marker (org-agenda-new-marker (line-beginning-position))
  5720. 'warntime warntime
  5721. 'level level
  5722. 'ts-date deadline
  5723. 'priority
  5724. ;; Adjust priority to today reminders about deadlines.
  5725. ;; Overdue deadlines get the highest priority
  5726. ;; increase, then imminent deadlines and eventually
  5727. ;; more distant deadlines.
  5728. (let ((adjust (if today? (- diff) 0)))
  5729. (+ adjust (org-get-priority item)))
  5730. 'todo-state todo-state
  5731. 'type (if upcoming? "upcoming-deadline" "deadline")
  5732. 'date (if upcoming? date deadline)
  5733. 'face (if done? 'org-agenda-done face)
  5734. 'undone-face face
  5735. 'done-face 'org-agenda-done)
  5736. (push item deadline-items))))))
  5737. (nreverse deadline-items)))
  5738. (defun org-agenda-deadline-face (fraction)
  5739. "Return the face to displaying a deadline item.
  5740. FRACTION is what fraction of the head-warning time has passed."
  5741. (assoc-default fraction org-agenda-deadline-faces #'<=))
  5742. (defun org-agenda-get-scheduled (&optional deadlines with-hour)
  5743. "Return the scheduled information for agenda display.
  5744. Optional argument DEADLINES is a list of deadline items to be
  5745. displayed in agenda view. When WITH-HOUR is non-nil, only return
  5746. scheduled items with an hour specification like [h]h:mm."
  5747. (let* ((props (list 'org-not-done-regexp org-not-done-regexp
  5748. 'org-todo-regexp org-todo-regexp
  5749. 'org-complex-heading-regexp org-complex-heading-regexp
  5750. 'done-face 'org-agenda-done
  5751. 'mouse-face 'highlight
  5752. 'help-echo
  5753. (format "mouse-2 or RET jump to Org file %s"
  5754. (abbreviate-file-name buffer-file-name))))
  5755. (regexp (if with-hour
  5756. org-scheduled-time-hour-regexp
  5757. org-scheduled-time-regexp))
  5758. (today (org-today))
  5759. (todayp (org-agenda-today-p date)) ; DATE bound by calendar.
  5760. (current (calendar-absolute-from-gregorian date))
  5761. (deadline-pos
  5762. (mapcar (lambda (d)
  5763. (let ((m (get-text-property 0 'org-hd-marker d)))
  5764. (and m (marker-position m))))
  5765. deadlines))
  5766. scheduled-items)
  5767. (goto-char (point-min))
  5768. (while (re-search-forward regexp nil t)
  5769. (catch :skip
  5770. (unless (save-match-data (org-at-planning-p)) (throw :skip nil))
  5771. (org-agenda-skip)
  5772. (let* ((s (match-string 1))
  5773. (pos (1- (match-beginning 1)))
  5774. (todo-state (save-match-data (org-get-todo-state)))
  5775. (donep (member todo-state org-done-keywords))
  5776. (sexp? (string-prefix-p "%%" s))
  5777. ;; SCHEDULE is the scheduled date for the entry. It is
  5778. ;; either the bare date or the last repeat, according
  5779. ;; to `org-agenda-prefer-last-repeat'.
  5780. (schedule
  5781. (cond
  5782. (sexp? (org-agenda--timestamp-to-absolute s current))
  5783. ((or (eq org-agenda-prefer-last-repeat t)
  5784. (member todo-state org-agenda-prefer-last-repeat))
  5785. (org-agenda--timestamp-to-absolute
  5786. s today 'past (current-buffer) pos))
  5787. (t (org-agenda--timestamp-to-absolute s))))
  5788. ;; REPEAT is the future repeat closest from CURRENT,
  5789. ;; according to `org-agenda-show-future-repeats'. If
  5790. ;; the latter is nil, or if the time stamp has no
  5791. ;; repeat part, default to SCHEDULE.
  5792. (repeat
  5793. (cond
  5794. (sexp? schedule)
  5795. ((<= current today) schedule)
  5796. ((not org-agenda-show-future-repeats) schedule)
  5797. (t
  5798. (let ((base (if (eq org-agenda-show-future-repeats 'next)
  5799. (1+ today)
  5800. current)))
  5801. (org-agenda--timestamp-to-absolute
  5802. s base 'future (current-buffer) pos)))))
  5803. (diff (- current schedule))
  5804. (warntime (get-text-property (point) 'org-appt-warntime))
  5805. (pastschedp (< schedule today))
  5806. (futureschedp (> schedule today))
  5807. (habitp (and (fboundp 'org-is-habit-p) (org-is-habit-p)))
  5808. (suppress-delay
  5809. (let ((deadline (and org-agenda-skip-scheduled-delay-if-deadline
  5810. (org-entry-get nil "DEADLINE"))))
  5811. (cond
  5812. ((not deadline) nil)
  5813. ;; The current item has a deadline date, so
  5814. ;; evaluate its delay time.
  5815. ((integerp org-agenda-skip-scheduled-delay-if-deadline)
  5816. ;; Use global delay time.
  5817. (- org-agenda-skip-scheduled-delay-if-deadline))
  5818. ((eq org-agenda-skip-scheduled-delay-if-deadline
  5819. 'post-deadline)
  5820. ;; Set delay to no later than DEADLINE.
  5821. (min (- schedule
  5822. (org-agenda--timestamp-to-absolute deadline))
  5823. org-scheduled-delay-days))
  5824. (t 0))))
  5825. (diff-r (abs (- repeat current)))
  5826. (ddays-once (or (and (string-match "--\\([0-9]+\\)[hdwmy]" s)
  5827. (string-to-number (match-string 1 s)))
  5828. 0))
  5829. (ddays
  5830. (cond
  5831. ;; Nullify delay when a repeater triggered already
  5832. ;; and the delay is of the form --Xd.
  5833. ((and (string-match-p "--[0-9]+[hdwmy]" s)
  5834. (> schedule (org-agenda--timestamp-to-absolute s)))
  5835. 0)
  5836. (suppress-delay
  5837. (let ((org-scheduled-delay-days suppress-delay))
  5838. (org-get-wdays s t t)))
  5839. (t (org-get-wdays s t)))))
  5840. ;; Display scheduled items at base date (SCHEDULE), today if
  5841. ;; scheduled before the current date, and at any repeat past
  5842. ;; today. However, skip delayed items and items that have
  5843. ;; been displayed for more than `org-scheduled-past-days'.
  5844. (unless (and todayp
  5845. habitp
  5846. (bound-and-true-p org-habit-show-all-today))
  5847. (when (or
  5848. ;; no one-time delay, not repeated delay
  5849. (and (not ddays-once) (not (= ddays diff-r)))
  5850. ;; one-time delay, but not for today
  5851. (and ddays-once
  5852. (not (= diff diff-r))
  5853. (= ddays-once diff-r))
  5854. ;; normal delay, but already in the past
  5855. (and (> ddays 0) (< diff ddays))
  5856. ;; a habit, but past `org-habit-scheduled-past-days'
  5857. (> diff (or (and habitp org-habit-scheduled-past-days)
  5858. org-scheduled-past-days))
  5859. ;; schedule in the future
  5860. (> schedule current)
  5861. ;; no delay, not scheduled today, no deadline for today
  5862. (and (= ddays 0)
  5863. (/= current schedule)
  5864. (/= current today)
  5865. (/= current repeat)))
  5866. (throw :skip nil)))
  5867. ;; Possibly skip done tasks.
  5868. (when (and donep
  5869. (or org-agenda-skip-scheduled-if-done
  5870. (/= schedule current)))
  5871. (throw :skip nil))
  5872. ;; Skip entry if it already appears as a deadline, per
  5873. ;; `org-agenda-skip-scheduled-if-deadline-is-shown'. This
  5874. ;; doesn't apply to habits.
  5875. (when (pcase org-agenda-skip-scheduled-if-deadline-is-shown
  5876. ((guard
  5877. (or (not (memq (line-beginning-position 0) deadline-pos))
  5878. habitp))
  5879. nil)
  5880. (`repeated-after-deadline
  5881. (let ((deadline (time-to-days
  5882. (org-get-deadline-time (point)))))
  5883. (and (<= schedule deadline) (> current deadline))))
  5884. (`not-today pastschedp)
  5885. (`t t)
  5886. (_ nil))
  5887. (throw :skip nil))
  5888. ;; Skip habits if `org-habit-show-habits' is nil, or if we
  5889. ;; only show them for today. Also skip done habits.
  5890. (when (and habitp
  5891. (or donep
  5892. (not (bound-and-true-p org-habit-show-habits))
  5893. (and (not todayp)
  5894. (bound-and-true-p
  5895. org-habit-show-habits-only-for-today))))
  5896. (throw :skip nil))
  5897. (save-excursion
  5898. (re-search-backward "^\\*+[ \t]+" nil t)
  5899. (goto-char (match-end 0))
  5900. (let* ((category (org-get-category))
  5901. (inherited-tags
  5902. (or (eq org-agenda-show-inherited-tags 'always)
  5903. (and (listp org-agenda-show-inherited-tags)
  5904. (memq 'agenda org-agenda-show-inherited-tags))
  5905. (and (eq org-agenda-show-inherited-tags t)
  5906. (or (eq org-agenda-use-tag-inheritance t)
  5907. (memq 'agenda
  5908. org-agenda-use-tag-inheritance)))))
  5909. (tags (org-get-tags nil (not inherited-tags)))
  5910. (level (make-string (org-reduced-level (org-outline-level))
  5911. ?\s))
  5912. (head (buffer-substring (point) (line-end-position)))
  5913. (time
  5914. (cond
  5915. ;; No time of day designation if it is only a
  5916. ;; reminder, except for habits, which always show
  5917. ;; the time of day. Habits are an exception
  5918. ;; because if there is a time of day, that is
  5919. ;; interpreted to mean they should usually happen
  5920. ;; then, even if doing the habit was missed.
  5921. ((and
  5922. (not habitp)
  5923. (/= current schedule)
  5924. (/= current repeat))
  5925. nil)
  5926. ((string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
  5927. (concat (substring s (match-beginning 1)) " "))
  5928. (t 'time)))
  5929. (item
  5930. (org-agenda-format-item
  5931. (pcase-let ((`(,first ,past) org-agenda-scheduled-leaders))
  5932. ;; Show a reminder of a past scheduled today.
  5933. (if (and todayp pastschedp)
  5934. (format past diff)
  5935. first))
  5936. head level category tags time nil habitp))
  5937. (face (cond ((and (not habitp) pastschedp)
  5938. 'org-scheduled-previously)
  5939. ((and habitp futureschedp)
  5940. 'org-agenda-done)
  5941. (todayp 'org-scheduled-today)
  5942. (t 'org-scheduled)))
  5943. (habitp (and habitp (org-habit-parse-todo))))
  5944. (org-add-props item props
  5945. 'undone-face face
  5946. 'face (if donep 'org-agenda-done face)
  5947. 'org-marker (org-agenda-new-marker pos)
  5948. 'org-hd-marker (org-agenda-new-marker (line-beginning-position))
  5949. 'type (if pastschedp "past-scheduled" "scheduled")
  5950. 'date (if pastschedp schedule date)
  5951. 'ts-date schedule
  5952. 'warntime warntime
  5953. 'level level
  5954. 'priority (if habitp (org-habit-get-priority habitp)
  5955. (+ 99 diff (org-get-priority item)))
  5956. 'org-habit-p habitp
  5957. 'todo-state todo-state)
  5958. (push item scheduled-items))))))
  5959. (nreverse scheduled-items)))
  5960. (defun org-agenda-get-blocks ()
  5961. "Return the date-range information for agenda display."
  5962. (let* ((props (list 'face nil
  5963. 'org-not-done-regexp org-not-done-regexp
  5964. 'org-todo-regexp org-todo-regexp
  5965. 'org-complex-heading-regexp org-complex-heading-regexp
  5966. 'mouse-face 'highlight
  5967. 'help-echo
  5968. (format "mouse-2 or RET jump to org file %s"
  5969. (abbreviate-file-name buffer-file-name))))
  5970. (regexp org-tr-regexp)
  5971. (d0 (calendar-absolute-from-gregorian date))
  5972. marker hdmarker ee txt d1 d2 s1 s2 category
  5973. level todo-state tags pos head donep inherited-tags)
  5974. (goto-char (point-min))
  5975. (while (re-search-forward regexp nil t)
  5976. (catch :skip
  5977. (org-agenda-skip)
  5978. (setq pos (point))
  5979. (let ((start-time (match-string 1))
  5980. (end-time (match-string 2)))
  5981. (setq s1 (match-string 1)
  5982. s2 (match-string 2)
  5983. d1 (time-to-days
  5984. (condition-case err
  5985. (org-time-string-to-time s1)
  5986. (error
  5987. (error
  5988. "Bad timestamp %S at %d in buffer %S\nError was: %s"
  5989. s1
  5990. pos
  5991. (current-buffer)
  5992. (error-message-string err)))))
  5993. d2 (time-to-days
  5994. (condition-case err
  5995. (org-time-string-to-time s2)
  5996. (error
  5997. (error
  5998. "Bad timestamp %S at %d in buffer %S\nError was: %s"
  5999. s2
  6000. pos
  6001. (current-buffer)
  6002. (error-message-string err))))))
  6003. (when (and (> (- d0 d1) -1) (> (- d2 d0) -1))
  6004. ;; Only allow days between the limits, because the normal
  6005. ;; date stamps will catch the limits.
  6006. (save-excursion
  6007. (setq todo-state (org-get-todo-state))
  6008. (setq donep (member todo-state org-done-keywords))
  6009. (when (and donep org-agenda-skip-timestamp-if-done)
  6010. (throw :skip t))
  6011. (setq marker (org-agenda-new-marker (point))
  6012. category (org-get-category))
  6013. (if (not (re-search-backward org-outline-regexp-bol nil t))
  6014. (throw :skip nil)
  6015. (goto-char (match-beginning 0))
  6016. (setq hdmarker (org-agenda-new-marker (point))
  6017. inherited-tags
  6018. (or (eq org-agenda-show-inherited-tags 'always)
  6019. (and (listp org-agenda-show-inherited-tags)
  6020. (memq 'agenda org-agenda-show-inherited-tags))
  6021. (and (eq org-agenda-show-inherited-tags t)
  6022. (or (eq org-agenda-use-tag-inheritance t)
  6023. (memq 'agenda org-agenda-use-tag-inheritance))))
  6024. tags (org-get-tags nil (not inherited-tags)))
  6025. (setq level (make-string (org-reduced-level (org-outline-level)) ? ))
  6026. (looking-at "\\*+[ \t]+\\(.*\\)")
  6027. (setq head (match-string 1))
  6028. (let ((remove-re
  6029. (if org-agenda-remove-timeranges-from-blocks
  6030. (concat
  6031. "<" (regexp-quote s1) ".*?>"
  6032. "--"
  6033. "<" (regexp-quote s2) ".*?>")
  6034. nil)))
  6035. (setq txt (org-agenda-format-item
  6036. (format
  6037. (nth (if (= d1 d2) 0 1)
  6038. org-agenda-timerange-leaders)
  6039. (1+ (- d0 d1)) (1+ (- d2 d1)))
  6040. head level category tags
  6041. (save-match-data
  6042. (let ((hhmm1 (and (string-match org-ts-regexp1 s1)
  6043. (match-string 6 s1)))
  6044. (hhmm2 (and (string-match org-ts-regexp1 s2)
  6045. (match-string 6 s2))))
  6046. (cond ((string= hhmm1 hhmm2)
  6047. (concat "<" start-time ">--<" end-time ">"))
  6048. ((and (= d1 d0) (= d2 d0))
  6049. (concat "<" start-time ">--<" end-time ">"))
  6050. ((= d1 d0)
  6051. (concat "<" start-time ">"))
  6052. ((= d2 d0)
  6053. (concat "<" end-time ">")))))
  6054. remove-re))))
  6055. (org-add-props txt props
  6056. 'org-marker marker 'org-hd-marker hdmarker
  6057. 'type "block" 'date date
  6058. 'level level
  6059. 'todo-state todo-state
  6060. 'priority (org-get-priority txt))
  6061. (push txt ee))))
  6062. (goto-char pos)))
  6063. ;; Sort the entries by expiration date.
  6064. (nreverse ee)))
  6065. ;;; Agenda presentation and sorting
  6066. (defvar org-prefix-has-time nil
  6067. "A flag, set by `org-compile-prefix-format'.
  6068. The flag is set if the currently compiled format contains a `%t'.")
  6069. (defvar org-prefix-has-tag nil
  6070. "A flag, set by `org-compile-prefix-format'.
  6071. The flag is set if the currently compiled format contains a `%T'.")
  6072. (defvar org-prefix-has-effort nil
  6073. "A flag, set by `org-compile-prefix-format'.
  6074. The flag is set if the currently compiled format contains a `%e'.")
  6075. (defvar org-prefix-has-breadcrumbs nil
  6076. "A flag, set by `org-compile-prefix-format'.
  6077. The flag is set if the currently compiled format contains a `%b'.")
  6078. (defvar org-prefix-category-length nil
  6079. "Used by `org-compile-prefix-format' to remember the category field width.")
  6080. (defvar org-prefix-category-max-length nil
  6081. "Used by `org-compile-prefix-format' to remember the category field width.")
  6082. (defun org-agenda-get-category-icon (category)
  6083. "Return an image for CATEGORY according to `org-agenda-category-icon-alist'."
  6084. (cl-dolist (entry org-agenda-category-icon-alist)
  6085. (when (string-match-p (car entry) category)
  6086. (if (listp (cadr entry))
  6087. (cl-return (cadr entry))
  6088. (cl-return (apply #'create-image (cdr entry)))))))
  6089. (defun org-agenda-format-item (extra txt &optional level category tags dotime
  6090. remove-re habitp)
  6091. "Format TXT to be inserted into the agenda buffer.
  6092. In particular, add the prefix and corresponding text properties.
  6093. EXTRA must be a string to replace the `%s' specifier in the prefix format.
  6094. LEVEL may be a string to replace the `%l' specifier.
  6095. CATEGORY (a string, a symbol or nil) may be used to overrule the default
  6096. category taken from local variable or file name. It will replace the `%c'
  6097. specifier in the format.
  6098. DOTIME, when non-nil, indicates that a time-of-day should be extracted from
  6099. TXT for sorting of this entry, and for the `%t' specifier in the format.
  6100. When DOTIME is a string, this string is searched for a time before TXT is.
  6101. TAGS can be the tags of the headline.
  6102. Any match of REMOVE-RE will be removed from TXT."
  6103. ;; We keep the org-prefix-* variable values along with a compiled
  6104. ;; formatter, so that multiple agendas existing at the same time do
  6105. ;; not step on each other toes.
  6106. ;;
  6107. ;; It was inconvenient to make these variables buffer local in
  6108. ;; Agenda buffers, because this function expects to be called with
  6109. ;; the buffer where item comes from being current, and not agenda
  6110. ;; buffer
  6111. (let* ((bindings (car org-prefix-format-compiled))
  6112. (formatter (cadr org-prefix-format-compiled)))
  6113. (cl-loop for (var value) in bindings
  6114. do (set var value))
  6115. (save-match-data
  6116. ;; Diary entries sometimes have extra whitespace at the beginning
  6117. (setq txt (org-trim txt))
  6118. ;; Fix the tags part in txt
  6119. (setq txt (org-agenda-fix-displayed-tags
  6120. txt tags
  6121. org-agenda-show-inherited-tags
  6122. org-agenda-hide-tags-regexp))
  6123. (let* ((category (or category
  6124. (if buffer-file-name
  6125. (file-name-sans-extension
  6126. (file-name-nondirectory buffer-file-name))
  6127. "")))
  6128. (category-icon (org-agenda-get-category-icon category))
  6129. (category-icon (if category-icon
  6130. (propertize " " 'display category-icon)
  6131. ""))
  6132. (effort (and (not (string= txt ""))
  6133. (get-text-property 1 'effort txt)))
  6134. ;; time, tag, effort are needed for the eval of the prefix format
  6135. (tag (if tags (nth (1- (length tags)) tags) ""))
  6136. (time-grid-trailing-characters (nth 2 org-agenda-time-grid))
  6137. time
  6138. (ts (when dotime (concat
  6139. (if (stringp dotime) dotime "")
  6140. (and org-agenda-search-headline-for-time txt))))
  6141. (time-of-day (and dotime (org-get-time-of-day ts)))
  6142. stamp plain s0 s1 s2 rtn srp l
  6143. duration breadcrumbs)
  6144. (and (derived-mode-p 'org-mode) buffer-file-name
  6145. (add-to-list 'org-agenda-contributing-files buffer-file-name))
  6146. (when (and dotime time-of-day)
  6147. ;; Extract starting and ending time and move them to prefix
  6148. (when (or (setq stamp (string-match org-stamp-time-of-day-regexp ts))
  6149. (setq plain (string-match org-plain-time-of-day-regexp ts)))
  6150. (setq s0 (match-string 0 ts)
  6151. srp (and stamp (match-end 3))
  6152. s1 (match-string (if plain 1 2) ts)
  6153. s2 (match-string (if plain 8 (if srp 4 6)) ts))
  6154. ;; If the times are in TXT (not in DOTIMES), and the prefix will list
  6155. ;; them, we might want to remove them there to avoid duplication.
  6156. ;; The user can turn this off with a variable.
  6157. (when (and org-prefix-has-time
  6158. org-agenda-remove-times-when-in-prefix (or stamp plain)
  6159. (string-match (concat (regexp-quote s0) " *") txt)
  6160. (not (equal ?\] (string-to-char (substring txt (match-end 0)))))
  6161. (if (eq org-agenda-remove-times-when-in-prefix 'beg)
  6162. (= (match-beginning 0) 0)
  6163. t))
  6164. (setq txt (replace-match "" nil nil txt))))
  6165. ;; Normalize the time(s) to 24 hour
  6166. (when s1 (setq s1 (org-get-time-of-day s1 'string t)))
  6167. (when s2 (setq s2 (org-get-time-of-day s2 'string t)))
  6168. ;; Try to set s2 if s1 and
  6169. ;; `org-agenda-default-appointment-duration' are set
  6170. (when (and s1 (not s2) org-agenda-default-appointment-duration)
  6171. (setq s2
  6172. (org-duration-from-minutes
  6173. (+ (org-duration-to-minutes s1 t)
  6174. org-agenda-default-appointment-duration)
  6175. nil t)))
  6176. ;; Compute the duration
  6177. (when s2
  6178. (setq duration (- (org-duration-to-minutes s2)
  6179. (org-duration-to-minutes s1)))))
  6180. (when (string-match org-tag-group-re txt)
  6181. ;; Tags are in the string
  6182. (if (or (eq org-agenda-remove-tags t)
  6183. (and org-agenda-remove-tags
  6184. org-prefix-has-tag))
  6185. (setq txt (replace-match "" t t txt))
  6186. (setq txt (replace-match
  6187. (concat (make-string (max (- 50 (length txt)) 1) ?\ )
  6188. (match-string 1 txt))
  6189. t t txt))))
  6190. (when remove-re
  6191. (while (string-match remove-re txt)
  6192. (setq txt (replace-match "" t t txt))))
  6193. ;; Set org-heading property on `txt' to mark the start of the
  6194. ;; heading.
  6195. (add-text-properties 0 (length txt) '(org-heading t) txt)
  6196. ;; Prepare the variables needed in the eval of the compiled format
  6197. (when org-prefix-has-breadcrumbs
  6198. (setq breadcrumbs (org-with-point-at (org-get-at-bol 'org-marker)
  6199. (let ((s (org-format-outline-path (org-get-outline-path)
  6200. (1- (frame-width))
  6201. nil org-agenda-breadcrumbs-separator)))
  6202. (if (eq "" s) "" (concat s org-agenda-breadcrumbs-separator))))))
  6203. (setq time (cond (s2 (concat
  6204. (org-agenda-time-of-day-to-ampm-maybe s1)
  6205. "-" (org-agenda-time-of-day-to-ampm-maybe s2)
  6206. (when org-agenda-timegrid-use-ampm " ")))
  6207. (s1 (concat
  6208. (org-agenda-time-of-day-to-ampm-maybe s1)
  6209. (if org-agenda-timegrid-use-ampm
  6210. (concat time-grid-trailing-characters " ")
  6211. time-grid-trailing-characters)))
  6212. (t ""))
  6213. extra (or (and (not habitp) extra) "")
  6214. category (if (symbolp category) (symbol-name category) category)
  6215. level (or level ""))
  6216. (if (string-match org-link-bracket-re category)
  6217. (progn
  6218. (setq l (string-width (or (match-string 2) (match-string 1))))
  6219. (when (< l (or org-prefix-category-length 0))
  6220. (setq category (copy-sequence category))
  6221. (org-add-props category nil
  6222. 'extra-space (make-string
  6223. (- org-prefix-category-length l 1) ?\ ))))
  6224. (when (and org-prefix-category-max-length
  6225. (>= (length category) org-prefix-category-max-length))
  6226. (setq category (substring category 0 (1- org-prefix-category-max-length)))))
  6227. ;; Evaluate the compiled format
  6228. (setq rtn (concat (eval formatter) txt))
  6229. ;; And finally add the text properties
  6230. (remove-text-properties 0 (length rtn) '(line-prefix t wrap-prefix t) rtn)
  6231. (org-add-props rtn nil
  6232. 'org-category category
  6233. 'tags (mapcar 'org-downcase-keep-props tags)
  6234. 'org-priority-highest org-priority-highest
  6235. 'org-priority-lowest org-priority-lowest
  6236. 'time-of-day time-of-day
  6237. 'duration duration
  6238. 'breadcrumbs breadcrumbs
  6239. 'txt txt
  6240. 'level level
  6241. 'time time
  6242. 'extra extra
  6243. 'format org-prefix-format-compiled
  6244. 'dotime dotime)))))
  6245. (defun org-agenda-fix-displayed-tags (txt tags add-inherited hide-re)
  6246. "Remove tags string from TXT, and add a modified list of tags.
  6247. The modified list may contain inherited tags, and tags matched by
  6248. `org-agenda-hide-tags-regexp' will be removed."
  6249. (when (or add-inherited hide-re)
  6250. (when (string-match org-tag-group-re txt)
  6251. (setq txt (substring txt 0 (match-beginning 0))))
  6252. (setq tags
  6253. (delq nil
  6254. (mapcar (lambda (tg)
  6255. (if (or (and hide-re (string-match hide-re tg))
  6256. (and (not add-inherited)
  6257. (get-text-property 0 'inherited tg)))
  6258. nil
  6259. tg))
  6260. tags)))
  6261. (when tags
  6262. (let ((have-i (get-text-property 0 'inherited (car tags)))
  6263. i)
  6264. (setq txt (concat txt " :"
  6265. (mapconcat
  6266. (lambda (x)
  6267. (setq i (get-text-property 0 'inherited x))
  6268. (if (and have-i (not i))
  6269. (progn
  6270. (setq have-i nil)
  6271. (concat ":" x))
  6272. x))
  6273. tags ":")
  6274. (if have-i "::" ":"))))))
  6275. txt)
  6276. (defun org-downcase-keep-props (s)
  6277. (let ((props (text-properties-at 0 s)))
  6278. (setq s (downcase s))
  6279. (add-text-properties 0 (length s) props s)
  6280. s))
  6281. (defvar org-agenda-sorting-strategy) ;; because the def is in a let form
  6282. (defun org-agenda-add-time-grid-maybe (list ndays todayp)
  6283. "Add a time-grid for agenda items which need it.
  6284. LIST is the list of agenda items formatted by `org-agenda-list'.
  6285. NDAYS is the span of the current agenda view.
  6286. TODAYP is t when the current agenda view is on today."
  6287. (catch 'exit
  6288. (cond ((not org-agenda-use-time-grid) (throw 'exit list))
  6289. ((and todayp (member 'today (car org-agenda-time-grid))))
  6290. ((and (= ndays 1) (member 'daily (car org-agenda-time-grid))))
  6291. ((member 'weekly (car org-agenda-time-grid)))
  6292. (t (throw 'exit list)))
  6293. (let* ((have (delq nil (mapcar
  6294. (lambda (x) (get-text-property 1 'time-of-day x))
  6295. list)))
  6296. (string (nth 3 org-agenda-time-grid))
  6297. (gridtimes (nth 1 org-agenda-time-grid))
  6298. (req (car org-agenda-time-grid))
  6299. (remove (member 'remove-match req))
  6300. new time)
  6301. (when (and (member 'require-timed req) (not have))
  6302. ;; don't show empty grid
  6303. (throw 'exit list))
  6304. (while (setq time (pop gridtimes))
  6305. (unless (and remove (member time have))
  6306. (setq time (replace-regexp-in-string " " "0" (format "%04s" time)))
  6307. (push (org-agenda-format-item
  6308. nil string nil "" nil
  6309. (concat (substring time 0 -2) ":" (substring time -2)))
  6310. new)
  6311. (put-text-property
  6312. 2 (length (car new)) 'face 'org-time-grid (car new))))
  6313. (when (and todayp org-agenda-show-current-time-in-grid)
  6314. (push (org-agenda-format-item
  6315. nil org-agenda-current-time-string nil "" nil
  6316. (format-time-string "%H:%M "))
  6317. new)
  6318. (put-text-property
  6319. 2 (length (car new)) 'face 'org-agenda-current-time (car new)))
  6320. (if (member 'time-up org-agenda-sorting-strategy-selected)
  6321. (append new list)
  6322. (append list new)))))
  6323. (defun org-compile-prefix-format (key)
  6324. "Compile the prefix format into a Lisp form that can be evaluated.
  6325. The resulting form and associated variable bindings is returned
  6326. and stored in the variable `org-prefix-format-compiled'."
  6327. (setq org-prefix-has-time nil
  6328. org-prefix-has-tag nil
  6329. org-prefix-category-length nil
  6330. org-prefix-has-effort nil
  6331. org-prefix-has-breadcrumbs nil)
  6332. (let ((s (cond
  6333. ((stringp org-agenda-prefix-format)
  6334. org-agenda-prefix-format)
  6335. ((assq key org-agenda-prefix-format)
  6336. (cdr (assq key org-agenda-prefix-format)))
  6337. (t " %-12:c%?-12t% s")))
  6338. (start 0)
  6339. varform vars var e c f opt)
  6340. (while (string-match "%\\(\\?\\)?\\([-+]?[0-9.]*\\)\\([ .;,:!?=|/<>]?\\)\\([cltseib]\\|(.+)\\)"
  6341. s start)
  6342. (setq var (or (cdr (assoc (match-string 4 s)
  6343. '(("c" . category) ("t" . time) ("l" . level) ("s" . extra)
  6344. ("i" . category-icon) ("T" . tag) ("e" . effort) ("b" . breadcrumbs))))
  6345. 'eval)
  6346. c (or (match-string 3 s) "")
  6347. opt (match-beginning 1)
  6348. start (1+ (match-beginning 0)))
  6349. (cl-case var
  6350. (time (setq org-prefix-has-time t))
  6351. (tag (setq org-prefix-has-tag t))
  6352. (effort (setq org-prefix-has-effort t))
  6353. (breadcrumbs (setq org-prefix-has-breadcrumbs t)))
  6354. (setq f (concat "%" (match-string 2 s) "s"))
  6355. (when (eq var 'category)
  6356. (setq org-prefix-category-length
  6357. (floor (abs (string-to-number (match-string 2 s)))))
  6358. (setq org-prefix-category-max-length
  6359. (let ((x (match-string 2 s)))
  6360. (save-match-data
  6361. (and (string-match "\\.[0-9]+" x)
  6362. (string-to-number (substring (match-string 0 x) 1)))))))
  6363. (if (eq var 'eval)
  6364. (setq varform `(format ,f (org-eval ,(read (match-string 4 s)))))
  6365. (if opt
  6366. (setq varform
  6367. `(if (or (equal "" ,var) (equal nil ,var))
  6368. ""
  6369. (format ,f (concat ,var ,c))))
  6370. (setq varform
  6371. `(format ,f (if (or (equal ,var "")
  6372. (equal ,var nil)) ""
  6373. (concat ,var ,c (get-text-property 0 'extra-space ,var)))))))
  6374. (setq s (replace-match "%s" t nil s))
  6375. (push varform vars))
  6376. (setq vars (nreverse vars))
  6377. (with-current-buffer (or org-agenda-buffer (current-buffer))
  6378. (setq org-prefix-format-compiled
  6379. (list
  6380. `((org-prefix-has-time ,org-prefix-has-time)
  6381. (org-prefix-has-tag ,org-prefix-has-tag)
  6382. (org-prefix-category-length ,org-prefix-category-length)
  6383. (org-prefix-has-effort ,org-prefix-has-effort)
  6384. (org-prefix-has-breadcrumbs ,org-prefix-has-breadcrumbs))
  6385. `(format ,s ,@vars))))))
  6386. (defun org-set-sorting-strategy (key)
  6387. (if (symbolp (car org-agenda-sorting-strategy))
  6388. ;; the old format
  6389. (setq org-agenda-sorting-strategy-selected org-agenda-sorting-strategy)
  6390. (setq org-agenda-sorting-strategy-selected
  6391. (or (cdr (assq key org-agenda-sorting-strategy))
  6392. (cdr (assq 'agenda org-agenda-sorting-strategy))
  6393. '(time-up category-keep priority-down)))))
  6394. (defun org-get-time-of-day (s &optional string mod24)
  6395. "Check string S for a time of day.
  6396. If found, return it as a military time number between 0 and 2400.
  6397. If not found, return nil.
  6398. The optional STRING argument forces conversion into a 5 character wide string
  6399. HH:MM."
  6400. (save-match-data
  6401. (when
  6402. (and
  6403. (or (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)\\([AaPp][Mm]\\)?\\> *" s)
  6404. (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?\\([AaPp][Mm]\\)\\> *" s))
  6405. (not (eq (get-text-property 1 'face s) 'org-link)))
  6406. (let* ((h (string-to-number (match-string 1 s)))
  6407. (m (if (match-end 3) (string-to-number (match-string 3 s)) 0))
  6408. (ampm (when (match-end 4) (downcase (match-string 4 s))))
  6409. (am-p (equal ampm "am"))
  6410. (h1 (cond ((not ampm) h)
  6411. ((= h 12) (if am-p 0 12))
  6412. (t (+ h (if am-p 0 12)))))
  6413. (h2 (if (and string mod24 (not (and (= m 0) (= h1 24))))
  6414. (mod h1 24) h1))
  6415. (t0 (+ (* 100 h2) m))
  6416. (t1 (concat (if (>= h1 24) "+" " ")
  6417. (if (and org-agenda-time-leading-zero
  6418. (< t0 1000)) "0" "")
  6419. (if (< t0 100) "0" "")
  6420. (if (< t0 10) "0" "")
  6421. (number-to-string t0))))
  6422. (if string (concat (substring t1 -4 -2) ":" (substring t1 -2)) t0)))))
  6423. (defvar org-agenda-before-sorting-filter-function nil
  6424. "Function to be applied to agenda items prior to sorting.
  6425. Prior to sorting also means just before they are inserted into the agenda.
  6426. To aid sorting, you may revisit the original entries and add more text
  6427. properties which will later be used by the sorting functions.
  6428. The function should take a string argument, an agenda line.
  6429. It has access to the text properties in that line, which contain among
  6430. other things, the property `org-hd-marker' that points to the entry
  6431. where the line comes from. Note that not all lines going into the agenda
  6432. have this property, only most.
  6433. The function should return the modified string. It is probably best
  6434. to ONLY change text properties.
  6435. You can also use this function as a filter, by returning nil for lines
  6436. you don't want to have in the agenda at all. For this application, you
  6437. could bind the variable in the options section of a custom command.")
  6438. (defun org-agenda-finalize-entries (list &optional type)
  6439. "Sort, limit and concatenate the LIST of agenda items.
  6440. The optional argument TYPE tells the agenda type."
  6441. (let ((max-effort (cond ((listp org-agenda-max-effort)
  6442. (cdr (assoc type org-agenda-max-effort)))
  6443. (t org-agenda-max-effort)))
  6444. (max-todo (cond ((listp org-agenda-max-todos)
  6445. (cdr (assoc type org-agenda-max-todos)))
  6446. (t org-agenda-max-todos)))
  6447. (max-tags (cond ((listp org-agenda-max-tags)
  6448. (cdr (assoc type org-agenda-max-tags)))
  6449. (t org-agenda-max-tags)))
  6450. (max-entries (cond ((listp org-agenda-max-entries)
  6451. (cdr (assoc type org-agenda-max-entries)))
  6452. (t org-agenda-max-entries))))
  6453. (when org-agenda-before-sorting-filter-function
  6454. (setq list
  6455. (delq nil
  6456. (mapcar
  6457. org-agenda-before-sorting-filter-function list))))
  6458. (setq list (mapcar 'org-agenda-highlight-todo list)
  6459. list (mapcar 'identity (sort list 'org-entries-lessp)))
  6460. (when max-effort
  6461. (setq list (org-agenda-limit-entries
  6462. list 'effort-minutes max-effort
  6463. (lambda (e) (or e (if org-sort-agenda-noeffort-is-high
  6464. 32767 -1))))))
  6465. (when max-todo
  6466. (setq list (org-agenda-limit-entries list 'todo-state max-todo)))
  6467. (when max-tags
  6468. (setq list (org-agenda-limit-entries list 'tags max-tags)))
  6469. (when max-entries
  6470. (setq list (org-agenda-limit-entries list 'org-hd-marker max-entries)))
  6471. (when (and org-agenda-dim-blocked-tasks org-blocker-hook)
  6472. (setq list (mapcar #'org-agenda--mark-blocked-entry list)))
  6473. (mapconcat 'identity list "\n")))
  6474. (defun org-agenda-limit-entries (list prop limit &optional fn)
  6475. "Limit the number of agenda entries."
  6476. (let ((include (and limit (< limit 0))))
  6477. (if limit
  6478. (let ((fun (or fn (lambda (p) (when p 1))))
  6479. (lim 0))
  6480. (delq nil
  6481. (mapcar
  6482. (lambda (e)
  6483. (let ((pval (funcall
  6484. fun (get-text-property (1- (length e))
  6485. prop e))))
  6486. (when pval (setq lim (+ lim pval)))
  6487. (cond ((and pval (<= lim (abs limit))) e)
  6488. ((and include (not pval)) e))))
  6489. list)))
  6490. list)))
  6491. (defun org-agenda-limit-interactively (remove)
  6492. "In agenda, interactively limit entries to various maximums."
  6493. (interactive "P")
  6494. (if remove
  6495. (progn (setq org-agenda-max-entries nil
  6496. org-agenda-max-todos nil
  6497. org-agenda-max-tags nil
  6498. org-agenda-max-effort nil)
  6499. (org-agenda-redo))
  6500. (let* ((max (read-char "Number of [e]ntries [t]odos [T]ags [E]ffort? "))
  6501. (msg (cond ((= max ?E) "How many minutes? ")
  6502. ((= max ?e) "How many entries? ")
  6503. ((= max ?t) "How many TODO entries? ")
  6504. ((= max ?T) "How many tagged entries? ")
  6505. (t (user-error "Wrong input"))))
  6506. (num (string-to-number (read-from-minibuffer msg))))
  6507. (cond ((equal max ?e)
  6508. (let ((org-agenda-max-entries num)) (org-agenda-redo)))
  6509. ((equal max ?t)
  6510. (let ((org-agenda-max-todos num)) (org-agenda-redo)))
  6511. ((equal max ?T)
  6512. (let ((org-agenda-max-tags num)) (org-agenda-redo)))
  6513. ((equal max ?E)
  6514. (let ((org-agenda-max-effort num)) (org-agenda-redo))))))
  6515. (org-agenda-fit-window-to-buffer))
  6516. (defun org-agenda-highlight-todo (x)
  6517. (let ((org-done-keywords org-done-keywords-for-agenda)
  6518. (case-fold-search nil)
  6519. re)
  6520. (if (eq x 'line)
  6521. (save-excursion
  6522. (beginning-of-line 1)
  6523. (setq re (org-get-at-bol 'org-todo-regexp))
  6524. (goto-char (or (text-property-any (point-at-bol) (point-at-eol) 'org-heading t) (point)))
  6525. (when (looking-at (concat "[ \t]*\\.*\\(" re "\\) +"))
  6526. (add-text-properties (match-beginning 0) (match-end 1)
  6527. (list 'face (org-get-todo-face 1)))
  6528. (let ((s (buffer-substring (match-beginning 1) (match-end 1))))
  6529. (delete-region (match-beginning 1) (1- (match-end 0)))
  6530. (goto-char (match-beginning 1))
  6531. (insert (format org-agenda-todo-keyword-format s)))))
  6532. (let ((pl (text-property-any 0 (length x) 'org-heading t x)))
  6533. (setq re (get-text-property 0 'org-todo-regexp x))
  6534. (when (and re
  6535. ;; Test `pl' because if there's no heading content,
  6536. ;; there's no point matching to highlight. Note
  6537. ;; that if we didn't test `pl' first, and there
  6538. ;; happened to be no keyword from `org-todo-regexp'
  6539. ;; on this heading line, then the `equal' comparison
  6540. ;; afterwards would spuriously succeed in the case
  6541. ;; where `pl' is nil -- causing an args-out-of-range
  6542. ;; error when we try to add text properties to text
  6543. ;; that isn't there.
  6544. pl
  6545. (equal (string-match (concat "\\(\\.*\\)" re "\\( +\\)")
  6546. x pl) pl))
  6547. (add-text-properties
  6548. (or (match-end 1) (match-end 0)) (match-end 0)
  6549. (list 'face (org-get-todo-face (match-string 2 x)))
  6550. x)
  6551. (when (match-end 1)
  6552. (setq x
  6553. (concat
  6554. (substring x 0 (match-end 1))
  6555. (format org-agenda-todo-keyword-format
  6556. (match-string 2 x))
  6557. ;; Remove `display' property as the icon could leak
  6558. ;; on the white space.
  6559. (org-add-props " " (org-plist-delete (text-properties-at 0 x)
  6560. 'display))
  6561. (substring x (match-end 3)))))))
  6562. x)))
  6563. (defsubst org-cmp-values (a b property)
  6564. "Compare the numeric value of text PROPERTY for string A and B."
  6565. (let ((pa (or (get-text-property (1- (length a)) property a) 0))
  6566. (pb (or (get-text-property (1- (length b)) property b) 0)))
  6567. (cond ((> pa pb) +1)
  6568. ((< pa pb) -1))))
  6569. (defsubst org-cmp-effort (a b)
  6570. "Compare the effort values of string A and B."
  6571. (let* ((def (if org-sort-agenda-noeffort-is-high 32767 -1))
  6572. ;; `effort-minutes' property is not directly accessible from
  6573. ;; the strings, but is stored as a property in `txt'.
  6574. (ea (or (get-text-property
  6575. 0 'effort-minutes (get-text-property 0 'txt a))
  6576. def))
  6577. (eb (or (get-text-property
  6578. 0 'effort-minutes (get-text-property 0 'txt b))
  6579. def)))
  6580. (cond ((> ea eb) +1)
  6581. ((< ea eb) -1))))
  6582. (defsubst org-cmp-category (a b)
  6583. "Compare the string values of categories of strings A and B."
  6584. (let ((ca (or (get-text-property (1- (length a)) 'org-category a) ""))
  6585. (cb (or (get-text-property (1- (length b)) 'org-category b) "")))
  6586. (cond ((string-lessp ca cb) -1)
  6587. ((string-lessp cb ca) +1))))
  6588. (defsubst org-cmp-todo-state (a b)
  6589. "Compare the todo states of strings A and B."
  6590. (let* ((ma (or (get-text-property 1 'org-marker a)
  6591. (get-text-property 1 'org-hd-marker a)))
  6592. (mb (or (get-text-property 1 'org-marker b)
  6593. (get-text-property 1 'org-hd-marker b)))
  6594. (fa (and ma (marker-buffer ma)))
  6595. (fb (and mb (marker-buffer mb)))
  6596. (todo-kwds
  6597. (or (and fa (with-current-buffer fa org-todo-keywords-1))
  6598. (and fb (with-current-buffer fb org-todo-keywords-1))))
  6599. (ta (or (get-text-property 1 'todo-state a) ""))
  6600. (tb (or (get-text-property 1 'todo-state b) ""))
  6601. (la (- (length (member ta todo-kwds))))
  6602. (lb (- (length (member tb todo-kwds))))
  6603. (donepa (member ta org-done-keywords-for-agenda))
  6604. (donepb (member tb org-done-keywords-for-agenda)))
  6605. (cond ((and donepa (not donepb)) -1)
  6606. ((and (not donepa) donepb) +1)
  6607. ((< la lb) -1)
  6608. ((< lb la) +1))))
  6609. (defsubst org-cmp-alpha (a b)
  6610. "Compare the headlines, alphabetically."
  6611. (let* ((pla (text-property-any 0 (length a) 'org-heading t a))
  6612. (plb (text-property-any 0 (length b) 'org-heading t b))
  6613. (ta (and pla (substring a pla)))
  6614. (tb (and plb (substring b plb)))
  6615. (case-fold-search nil))
  6616. (when pla
  6617. (when (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp a) "")
  6618. "\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *") ta)
  6619. (setq ta (substring ta (match-end 0))))
  6620. (setq ta (downcase ta)))
  6621. (when plb
  6622. (when (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp b) "")
  6623. "\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *") tb)
  6624. (setq tb (substring tb (match-end 0))))
  6625. (setq tb (downcase tb)))
  6626. (cond ((not (or ta tb)) nil)
  6627. ((not ta) +1)
  6628. ((not tb) -1)
  6629. ((string-lessp ta tb) -1)
  6630. ((string-lessp tb ta) +1))))
  6631. (defsubst org-cmp-tag (a b)
  6632. "Compare the string values of the first tags of A and B."
  6633. (let ((ta (car (last (get-text-property 1 'tags a))))
  6634. (tb (car (last (get-text-property 1 'tags b)))))
  6635. (cond ((not (or ta tb)) nil)
  6636. ((not ta) +1)
  6637. ((not tb) -1)
  6638. ((string-lessp ta tb) -1)
  6639. ((string-lessp tb ta) +1))))
  6640. (defsubst org-cmp-time (a b)
  6641. "Compare the time-of-day values of strings A and B."
  6642. (let* ((def (if org-sort-agenda-notime-is-late 9901 -1))
  6643. (ta (or (get-text-property 1 'time-of-day a) def))
  6644. (tb (or (get-text-property 1 'time-of-day b) def)))
  6645. (cond ((< ta tb) -1)
  6646. ((< tb ta) +1))))
  6647. (defsubst org-cmp-ts (a b type)
  6648. "Compare the timestamps values of entries A and B.
  6649. When TYPE is \"scheduled\", \"deadline\", \"timestamp\" or
  6650. \"timestamp_ia\", compare within each of these type. When TYPE
  6651. is the empty string, compare all timestamps without respect of
  6652. their type."
  6653. (let* ((def (and (not org-sort-agenda-notime-is-late) -1))
  6654. (ta (or (and (string-match type (or (get-text-property 1 'type a) ""))
  6655. (get-text-property 1 'ts-date a))
  6656. def))
  6657. (tb (or (and (string-match type (or (get-text-property 1 'type b) ""))
  6658. (get-text-property 1 'ts-date b))
  6659. def)))
  6660. (cond ((if ta (and tb (< ta tb)) tb) -1)
  6661. ((if tb (and ta (< tb ta)) ta) +1))))
  6662. (defsubst org-cmp-habit-p (a b)
  6663. "Compare the todo states of strings A and B."
  6664. (let ((ha (get-text-property 1 'org-habit-p a))
  6665. (hb (get-text-property 1 'org-habit-p b)))
  6666. (cond ((and ha (not hb)) -1)
  6667. ((and (not ha) hb) +1))))
  6668. (defun org-entries-lessp (a b)
  6669. "Predicate for sorting agenda entries."
  6670. ;; The following variables will be used when the form is evaluated.
  6671. ;; So even though the compiler complains, keep them.
  6672. (let* ((ss org-agenda-sorting-strategy-selected)
  6673. (timestamp-up (and (org-em 'timestamp-up 'timestamp-down ss)
  6674. (org-cmp-ts a b "")))
  6675. (timestamp-down (if timestamp-up (- timestamp-up) nil))
  6676. (scheduled-up (and (org-em 'scheduled-up 'scheduled-down ss)
  6677. (org-cmp-ts a b "scheduled")))
  6678. (scheduled-down (if scheduled-up (- scheduled-up) nil))
  6679. (deadline-up (and (org-em 'deadline-up 'deadline-down ss)
  6680. (org-cmp-ts a b "deadline")))
  6681. (deadline-down (if deadline-up (- deadline-up) nil))
  6682. (tsia-up (and (org-em 'tsia-up 'tsia-down ss)
  6683. (org-cmp-ts a b "timestamp_ia")))
  6684. (tsia-down (if tsia-up (- tsia-up) nil))
  6685. (ts-up (and (org-em 'ts-up 'ts-down ss)
  6686. (org-cmp-ts a b "timestamp")))
  6687. (ts-down (if ts-up (- ts-up) nil))
  6688. (time-up (and (org-em 'time-up 'time-down ss)
  6689. (org-cmp-time a b)))
  6690. (time-down (if time-up (- time-up) nil))
  6691. (stats-up (and (org-em 'stats-up 'stats-down ss)
  6692. (org-cmp-values a b 'org-stats)))
  6693. (stats-down (if stats-up (- stats-up) nil))
  6694. (priority-up (and (org-em 'priority-up 'priority-down ss)
  6695. (org-cmp-values a b 'priority)))
  6696. (priority-down (if priority-up (- priority-up) nil))
  6697. (effort-up (and (org-em 'effort-up 'effort-down ss)
  6698. (org-cmp-effort a b)))
  6699. (effort-down (if effort-up (- effort-up) nil))
  6700. (category-up (and (or (org-em 'category-up 'category-down ss)
  6701. (memq 'category-keep ss))
  6702. (org-cmp-category a b)))
  6703. (category-down (if category-up (- category-up) nil))
  6704. (category-keep (if category-up +1 nil))
  6705. (tag-up (and (org-em 'tag-up 'tag-down ss)
  6706. (org-cmp-tag a b)))
  6707. (tag-down (if tag-up (- tag-up) nil))
  6708. (todo-state-up (and (org-em 'todo-state-up 'todo-state-down ss)
  6709. (org-cmp-todo-state a b)))
  6710. (todo-state-down (if todo-state-up (- todo-state-up) nil))
  6711. (habit-up (and (org-em 'habit-up 'habit-down ss)
  6712. (org-cmp-habit-p a b)))
  6713. (habit-down (if habit-up (- habit-up) nil))
  6714. (alpha-up (and (org-em 'alpha-up 'alpha-down ss)
  6715. (org-cmp-alpha a b)))
  6716. (alpha-down (if alpha-up (- alpha-up) nil))
  6717. (need-user-cmp (org-em 'user-defined-up 'user-defined-down ss))
  6718. user-defined-up user-defined-down)
  6719. (when (and need-user-cmp org-agenda-cmp-user-defined
  6720. (functionp org-agenda-cmp-user-defined))
  6721. (setq user-defined-up
  6722. (funcall org-agenda-cmp-user-defined a b)
  6723. user-defined-down (if user-defined-up (- user-defined-up) nil)))
  6724. (cdr (assoc
  6725. (eval (cons 'or org-agenda-sorting-strategy-selected))
  6726. '((-1 . t) (1 . nil) (nil . nil))))))
  6727. ;;; Agenda restriction lock
  6728. (defvar org-agenda-restriction-lock-overlay (make-overlay 1 1)
  6729. "Overlay to mark the headline to which agenda commands are restricted.")
  6730. (overlay-put org-agenda-restriction-lock-overlay
  6731. 'face 'org-agenda-restriction-lock)
  6732. (overlay-put org-agenda-restriction-lock-overlay
  6733. 'help-echo "Agendas are currently limited to this subtree.")
  6734. (delete-overlay org-agenda-restriction-lock-overlay)
  6735. (defun org-agenda-set-restriction-lock-from-agenda (arg)
  6736. "Set the restriction lock to the agenda item at point from within the agenda.
  6737. When called with a `\\[universal-argument]' prefix, restrict to
  6738. the file which contains the item.
  6739. Argument ARG is the prefix argument."
  6740. (interactive "P")
  6741. (unless (derived-mode-p 'org-agenda-mode)
  6742. (user-error "Not in an Org agenda buffer"))
  6743. (let* ((marker (or (org-get-at-bol 'org-marker)
  6744. (org-agenda-error)))
  6745. (buffer (marker-buffer marker))
  6746. (pos (marker-position marker)))
  6747. (with-current-buffer buffer
  6748. (goto-char pos)
  6749. (org-agenda-set-restriction-lock arg))))
  6750. ;;;###autoload
  6751. (defun org-agenda-set-restriction-lock (&optional type)
  6752. "Set restriction lock for agenda to current subtree or file.
  6753. When in a restricted subtree, remove it.
  6754. The restriction will span over the entire file if TYPE is `file',
  6755. or if type is '(4), or if the cursor is before the first headline
  6756. in the file. Otherwise, only apply the restriction to the current
  6757. subtree."
  6758. (interactive "P")
  6759. (if (and org-agenda-overriding-restriction
  6760. (member org-agenda-restriction-lock-overlay
  6761. (overlays-at (point)))
  6762. (equal (overlay-start org-agenda-restriction-lock-overlay)
  6763. (point)))
  6764. (org-agenda-remove-restriction-lock 'noupdate)
  6765. (org-agenda-remove-restriction-lock 'noupdate)
  6766. (and (equal type '(4)) (setq type 'file))
  6767. (setq type (cond
  6768. (type type)
  6769. ((org-at-heading-p) 'subtree)
  6770. ((condition-case nil (org-back-to-heading t) (error nil))
  6771. 'subtree)
  6772. (t 'file)))
  6773. (if (eq type 'subtree)
  6774. (progn
  6775. (setq org-agenda-restrict (current-buffer))
  6776. (setq org-agenda-overriding-restriction 'subtree)
  6777. (put 'org-agenda-files 'org-restrict
  6778. (list (buffer-file-name (buffer-base-buffer))))
  6779. (org-back-to-heading t)
  6780. (move-overlay org-agenda-restriction-lock-overlay
  6781. (point)
  6782. (if org-agenda-restriction-lock-highlight-subtree
  6783. (save-excursion (org-end-of-subtree t t) (point))
  6784. (point-at-eol)))
  6785. (move-marker org-agenda-restrict-begin (point))
  6786. (move-marker org-agenda-restrict-end
  6787. (save-excursion (org-end-of-subtree t t)))
  6788. (message "Locking agenda restriction to subtree"))
  6789. (put 'org-agenda-files 'org-restrict
  6790. (list (buffer-file-name (buffer-base-buffer))))
  6791. (setq org-agenda-restrict nil)
  6792. (setq org-agenda-overriding-restriction 'file)
  6793. (move-marker org-agenda-restrict-begin nil)
  6794. (move-marker org-agenda-restrict-end nil)
  6795. (message "Locking agenda restriction to file"))
  6796. (setq current-prefix-arg nil))
  6797. (org-agenda-maybe-redo))
  6798. (defun org-agenda-remove-restriction-lock (&optional noupdate)
  6799. "Remove agenda restriction lock."
  6800. (interactive "P")
  6801. (if (not org-agenda-restrict)
  6802. (message "No agenda restriction to remove.")
  6803. (delete-overlay org-agenda-restriction-lock-overlay)
  6804. (delete-overlay org-speedbar-restriction-lock-overlay)
  6805. (setq org-agenda-overriding-restriction nil)
  6806. (setq org-agenda-restrict nil)
  6807. (put 'org-agenda-files 'org-restrict nil)
  6808. (move-marker org-agenda-restrict-begin nil)
  6809. (move-marker org-agenda-restrict-end nil)
  6810. (setq current-prefix-arg nil)
  6811. (message "Agenda restriction lock removed")
  6812. (or noupdate (org-agenda-maybe-redo))))
  6813. (defun org-agenda-maybe-redo ()
  6814. "If there is any window showing the agenda view, update it."
  6815. (let ((w (get-buffer-window (or org-agenda-this-buffer-name
  6816. org-agenda-buffer-name)
  6817. t))
  6818. (w0 (selected-window)))
  6819. (when w
  6820. (select-window w)
  6821. (org-agenda-redo)
  6822. (select-window w0)
  6823. (if org-agenda-overriding-restriction
  6824. (message "Agenda view shifted to new %s restriction"
  6825. org-agenda-overriding-restriction)
  6826. (message "Agenda restriction lock removed")))))
  6827. ;;; Agenda commands
  6828. (defun org-agenda-check-type (error &rest types)
  6829. "Check if agenda buffer or component is of allowed type.
  6830. If ERROR is non-nil, throw an error, otherwise just return nil.
  6831. Allowed types are `agenda' `todo' `tags' `search'."
  6832. (cond ((not org-agenda-type)
  6833. (error "No Org agenda currently displayed"))
  6834. ((memq org-agenda-type types) t)
  6835. (error
  6836. (error "Not allowed in '%s'-type agenda buffer or component" org-agenda-type))
  6837. (t nil)))
  6838. (defun org-agenda-Quit ()
  6839. "Exit the agenda, killing the agenda buffer.
  6840. Like `org-agenda-quit', but kill the buffer even when
  6841. `org-agenda-sticky' is non-nil."
  6842. (interactive)
  6843. (org-agenda--quit))
  6844. (defun org-agenda-quit ()
  6845. "Exit the agenda.
  6846. When `org-agenda-sticky' is non-nil, bury the agenda buffer
  6847. instead of killing it.
  6848. When `org-agenda-restore-windows-after-quit' is non-nil, restore
  6849. the pre-agenda window configuration.
  6850. When column view is active, exit column view instead of the
  6851. agenda."
  6852. (interactive)
  6853. (org-agenda--quit org-agenda-sticky))
  6854. (defun org-agenda--quit (&optional bury)
  6855. (if org-agenda-columns-active
  6856. (org-columns-quit)
  6857. (let ((wconf org-agenda-pre-window-conf)
  6858. (buf (current-buffer))
  6859. (org-agenda-last-indirect-window
  6860. (and (eq org-indirect-buffer-display 'other-window)
  6861. org-agenda-last-indirect-buffer
  6862. (get-buffer-window org-agenda-last-indirect-buffer))))
  6863. (cond
  6864. ((eq org-agenda-window-setup 'other-frame)
  6865. (delete-frame))
  6866. ((and org-agenda-restore-windows-after-quit
  6867. wconf)
  6868. ;; Maybe restore the pre-agenda window configuration. Reset
  6869. ;; `org-agenda-pre-window-conf' before running
  6870. ;; `set-window-configuration', which loses the current buffer.
  6871. (setq org-agenda-pre-window-conf nil)
  6872. (set-window-configuration wconf))
  6873. (t
  6874. (when org-agenda-last-indirect-window
  6875. (delete-window org-agenda-last-indirect-window))
  6876. (and (not (eq org-agenda-window-setup 'current-window))
  6877. (not (one-window-p))
  6878. (delete-window))))
  6879. (if bury
  6880. ;; Set the agenda buffer as the current buffer instead of
  6881. ;; passing it as an argument to `bury-buffer' so that
  6882. ;; `bury-buffer' removes it from the window.
  6883. (with-current-buffer buf
  6884. (bury-buffer))
  6885. (kill-buffer buf)
  6886. (setq org-agenda-archives-mode nil
  6887. org-agenda-buffer nil)))))
  6888. (defun org-agenda-exit ()
  6889. "Exit the agenda, killing Org buffers loaded by the agenda.
  6890. Like `org-agenda-Quit', but kill any buffers that were created by
  6891. the agenda. Org buffers visited directly by the user will not be
  6892. touched. Also, exit the agenda even if it is in column view."
  6893. (interactive)
  6894. (when org-agenda-columns-active
  6895. (org-columns-quit))
  6896. (org-release-buffers org-agenda-new-buffers)
  6897. (setq org-agenda-new-buffers nil)
  6898. (org-agenda-Quit))
  6899. (defun org-agenda-kill-all-agenda-buffers ()
  6900. "Kill all buffers in `org-agenda-mode'.
  6901. This is used when toggling sticky agendas."
  6902. (interactive)
  6903. (let (blist)
  6904. (dolist (buf (buffer-list))
  6905. (when (with-current-buffer buf (eq major-mode 'org-agenda-mode))
  6906. (push buf blist)))
  6907. (mapc 'kill-buffer blist)))
  6908. (defun org-agenda-execute (arg)
  6909. "Execute another agenda command, keeping same window.
  6910. So this is just a shortcut for \\<global-map>`\\[org-agenda]', available
  6911. in the agenda."
  6912. (interactive "P")
  6913. (let ((org-agenda-window-setup 'current-window))
  6914. (org-agenda arg)))
  6915. (defun org-agenda-redo (&optional all)
  6916. "Rebuild possibly ALL agenda view(s) in the current buffer."
  6917. (interactive "P")
  6918. (let* ((p (or (and (looking-at "\\'") (1- (point))) (point)))
  6919. (cpa (unless (eq all t) current-prefix-arg))
  6920. (org-agenda-doing-sticky-redo org-agenda-sticky)
  6921. (org-agenda-sticky nil)
  6922. (org-agenda-buffer-name (or org-agenda-this-buffer-name
  6923. org-agenda-buffer-name))
  6924. (org-agenda-keep-modes t)
  6925. (tag-filter org-agenda-tag-filter)
  6926. (tag-preset (get 'org-agenda-tag-filter :preset-filter))
  6927. (top-hl-filter org-agenda-top-headline-filter)
  6928. (cat-filter org-agenda-category-filter)
  6929. (cat-preset (get 'org-agenda-category-filter :preset-filter))
  6930. (re-filter org-agenda-regexp-filter)
  6931. (re-preset (get 'org-agenda-regexp-filter :preset-filter))
  6932. (effort-filter org-agenda-effort-filter)
  6933. (effort-preset (get 'org-agenda-effort-filter :preset-filter))
  6934. (org-agenda-tag-filter-while-redo (or tag-filter tag-preset))
  6935. (cols org-agenda-columns-active)
  6936. (line (org-current-line))
  6937. (window-line (- line (org-current-line (window-start))))
  6938. (lprops (get 'org-agenda-redo-command 'org-lprops))
  6939. (redo-cmd (get-text-property p 'org-redo-cmd))
  6940. (last-args (get-text-property p 'org-last-args))
  6941. (org-agenda-overriding-cmd (get-text-property p 'org-series-cmd))
  6942. (org-agenda-overriding-cmd-arguments
  6943. (unless (eq all t)
  6944. (cond ((listp last-args)
  6945. (cons (or cpa (car last-args)) (cdr last-args)))
  6946. ((stringp last-args)
  6947. last-args))))
  6948. (series-redo-cmd (get-text-property p 'org-series-redo-cmd)))
  6949. (put 'org-agenda-tag-filter :preset-filter nil)
  6950. (put 'org-agenda-category-filter :preset-filter nil)
  6951. (put 'org-agenda-regexp-filter :preset-filter nil)
  6952. (put 'org-agenda-effort-filter :preset-filter nil)
  6953. (and cols (org-columns-quit))
  6954. (message "Rebuilding agenda buffer...")
  6955. (if series-redo-cmd
  6956. (eval series-redo-cmd)
  6957. (org-let lprops redo-cmd))
  6958. (setq org-agenda-undo-list nil
  6959. org-agenda-pending-undo-list nil
  6960. org-agenda-tag-filter tag-filter
  6961. org-agenda-category-filter cat-filter
  6962. org-agenda-regexp-filter re-filter
  6963. org-agenda-effort-filter effort-filter
  6964. org-agenda-top-headline-filter top-hl-filter)
  6965. (message "Rebuilding agenda buffer...done")
  6966. (put 'org-agenda-tag-filter :preset-filter tag-preset)
  6967. (put 'org-agenda-category-filter :preset-filter cat-preset)
  6968. (put 'org-agenda-regexp-filter :preset-filter re-preset)
  6969. (put 'org-agenda-effort-filter :preset-filter effort-preset)
  6970. (let ((tag (or tag-filter tag-preset))
  6971. (cat (or cat-filter cat-preset))
  6972. (effort (or effort-filter effort-preset))
  6973. (re (or re-filter re-preset)))
  6974. (when tag (org-agenda-filter-apply tag 'tag t))
  6975. (when cat (org-agenda-filter-apply cat 'category))
  6976. (when effort (org-agenda-filter-apply effort 'effort))
  6977. (when re (org-agenda-filter-apply re 'regexp)))
  6978. (and top-hl-filter (org-agenda-filter-top-headline-apply top-hl-filter))
  6979. (and cols (called-interactively-p 'any) (org-agenda-columns))
  6980. (org-goto-line line)
  6981. (recenter window-line)))
  6982. (defun org-agenda-redo-all (&optional exhaustive)
  6983. "Rebuild all agenda views in the current buffer.
  6984. With a prefix argument, do so in all agenda buffers."
  6985. (interactive "P")
  6986. (if exhaustive
  6987. (dolist (buffer (buffer-list))
  6988. (with-current-buffer buffer
  6989. (when (derived-mode-p 'org-agenda-mode)
  6990. (org-agenda-redo t))))
  6991. (org-agenda-redo t)))
  6992. (defvar org-global-tags-completion-table nil)
  6993. (defvar org-agenda-filter-form nil)
  6994. (defvar org-agenda-filtered-by-category nil)
  6995. (defsubst org-agenda-get-category ()
  6996. "Return the category of the agenda line."
  6997. (org-get-at-bol 'org-category))
  6998. (defun org-agenda-filter-by-category (strip)
  6999. "Filter lines in the agenda buffer that have a specific category.
  7000. The category is that of the current line.
  7001. With a `\\[universal-argument]' prefix argument, exclude the lines of that category.
  7002. When there is already a category filter in place, this command removes the filter."
  7003. (interactive "P")
  7004. (if (and org-agenda-filtered-by-category
  7005. org-agenda-category-filter)
  7006. (org-agenda-filter-show-all-cat)
  7007. (let ((cat (org-no-properties (org-get-at-eol 'org-category 1))))
  7008. (cond
  7009. ((and cat strip)
  7010. (org-agenda-filter-apply
  7011. (push (concat "-" cat) org-agenda-category-filter) 'category))
  7012. (cat
  7013. (org-agenda-filter-apply
  7014. (setq org-agenda-category-filter
  7015. (list (concat "+" cat))) 'category))
  7016. (t (error "No category at point"))))))
  7017. (defun org-find-top-headline (&optional pos)
  7018. "Find the topmost parent headline and return it.
  7019. POS when non-nil is the marker or buffer position to start the
  7020. search from."
  7021. (save-excursion
  7022. (with-current-buffer (if (markerp pos) (marker-buffer pos) (current-buffer))
  7023. (when pos (goto-char pos))
  7024. ;; Skip up to the topmost parent.
  7025. (while (org-up-heading-safe))
  7026. (ignore-errors (nth 4 (org-heading-components))))))
  7027. (defvar org-agenda-filtered-by-top-headline nil)
  7028. (defun org-agenda-filter-by-top-headline (strip)
  7029. "Keep only those lines that are descendants from the same top headline.
  7030. The top headline is that of the current line. With prefix arg STRIP, hide
  7031. all lines of the category at point."
  7032. (interactive "P")
  7033. (if org-agenda-filtered-by-top-headline
  7034. (progn
  7035. (setq org-agenda-filtered-by-top-headline nil
  7036. org-agenda-top-headline-filter nil)
  7037. (org-agenda-filter-show-all-top-filter))
  7038. (let ((toph (org-find-top-headline (org-get-at-bol 'org-hd-marker))))
  7039. (if toph (org-agenda-filter-top-headline-apply toph strip)
  7040. (error "No top-level headline at point")))))
  7041. (defvar org-agenda-regexp-filter nil)
  7042. (defun org-agenda-filter-by-regexp (strip-or-accumulate)
  7043. "Filter agenda entries by a regular expressions.
  7044. You will be prompted for the regular expression, and the agenda
  7045. view will only show entries that are matched by that expression.
  7046. With one `\\[universal-argument]' prefix argument, hide entries matching the regexp.
  7047. When there is already a regexp filter active, this command removed the
  7048. filter. However, with two `\\[universal-argument]' prefix arguments, add a new condition to
  7049. an already existing regexp filter."
  7050. (interactive "P")
  7051. (let* ((strip (equal strip-or-accumulate '(4)))
  7052. (accumulate (equal strip-or-accumulate '(16))))
  7053. (cond
  7054. ((and org-agenda-regexp-filter (not accumulate))
  7055. (org-agenda-filter-show-all-re)
  7056. (message "Regexp filter removed"))
  7057. (t (let ((flt (concat (if strip "-" "+")
  7058. (read-from-minibuffer
  7059. (if strip
  7060. "Hide entries matching regexp: "
  7061. "Narrow to entries matching regexp: ")))))
  7062. (push flt org-agenda-regexp-filter)
  7063. (org-agenda-filter-apply org-agenda-regexp-filter 'regexp))))))
  7064. (defvar org-agenda-effort-filter nil)
  7065. (defun org-agenda-filter-by-effort (strip-or-accumulate)
  7066. "Filter agenda entries by effort.
  7067. With no `\\[universal-argument]' prefix argument, keep entries matching the effort condition.
  7068. With one `\\[universal-argument]' prefix argument, filter out entries matching the condition.
  7069. With two `\\[universal-argument]' prefix arguments, add a second condition to the existing filter.
  7070. This last option is in practice not very useful, but it is available for
  7071. consistency with the other filter commands."
  7072. (interactive "P")
  7073. (let* ((efforts (split-string
  7074. (or (cdr (assoc (concat org-effort-property "_ALL")
  7075. org-global-properties))
  7076. "0 0:10 0:30 1:00 2:00 3:00 4:00 5:00 6:00 7:00")))
  7077. ;; XXX: the following handles only up to 10 different
  7078. ;; effort values.
  7079. (allowed-keys (if (null efforts) nil
  7080. (mapcar (lambda (n) (mod n 10)) ;turn 10 into 0
  7081. (number-sequence 1 (length efforts)))))
  7082. (keep (equal strip-or-accumulate '(16)))
  7083. (negative (equal strip-or-accumulate '(4)))
  7084. (current org-agenda-effort-filter)
  7085. (op nil))
  7086. (while (not (memq op '(?< ?> ?= ?_)))
  7087. (setq op (read-char-exclusive
  7088. "Effort operator? (> = or <) or press `_' again to remove filter")))
  7089. ;; Select appropriate duration. Ignore non-digit characters.
  7090. (if (eq op ?_)
  7091. (progn
  7092. (org-agenda-filter-show-all-effort)
  7093. (message "Effort filter removed"))
  7094. (let ((prompt
  7095. (apply #'format
  7096. (concat "Effort %c "
  7097. (mapconcat (lambda (s) (concat "[%d]" s))
  7098. efforts
  7099. " "))
  7100. op allowed-keys))
  7101. (eff -1))
  7102. (while (not (memq eff allowed-keys))
  7103. (message prompt)
  7104. (setq eff (- (read-char-exclusive) 48)))
  7105. (org-agenda-filter-show-all-effort)
  7106. (setq org-agenda-effort-filter
  7107. (append
  7108. (list (concat (if negative "-" "+")
  7109. (char-to-string op)
  7110. ;; Numbering is 1 2 3 ... 9 0, but we want
  7111. ;; 0 1 2 ... 8 9.
  7112. (nth (mod (1- eff) 10) efforts)))
  7113. (if keep current nil)))
  7114. (org-agenda-filter-apply org-agenda-effort-filter 'effort)))))
  7115. (defun org-agenda-filter (&optional strip-or-accumulate)
  7116. "Prompt for a general filter string and apply it to the agenda.
  7117. The string may contain filter elements like
  7118. +category
  7119. +tag
  7120. +<effort > and = are also allowed as effort operators
  7121. +/regexp/
  7122. Instead of `+', `-' is allowed to strip the agenda of matching entries.
  7123. `+' is optional if it is not required to separate two string parts.
  7124. Multiple filter elements can be concatenated without spaces, for example
  7125. +work-John<0:10-/plot/
  7126. selects entries with category `work' and effort estimates below 10 minutes,
  7127. and deselects entries with tag `John' or matching the regexp `plot'.
  7128. During entry of the filter, completion for tags, categories and effort
  7129. values is offered. Since the syntax for categories and tags is identical
  7130. there should be no overlap between categories and tags. If there is, tags
  7131. get priority.
  7132. A single `\\[universal-argument]' prefix arg STRIP-OR-ACCUMULATE will negate the
  7133. entire filter, which can be useful in connection with the prompt history.
  7134. A double `\\[universal-argument] \\[universal-argument]' prefix arg will add the new filter elements to the
  7135. existing ones. A shortcut for this is to add an additional `+' at the
  7136. beginning of the string, like `+-John'.
  7137. With a triple prefix argument, execute the computed filtering defined in
  7138. the variable `org-agenda-auto-exclude-function'."
  7139. (interactive "P")
  7140. (if (equal strip-or-accumulate '(64))
  7141. ;; Execute the auto-exclude action
  7142. (if (not org-agenda-auto-exclude-function)
  7143. (user-error "`org-agenda-auto-exclude-function' is undefined")
  7144. (org-agenda-filter-show-all-tag)
  7145. (setq org-agenda-tag-filter nil)
  7146. (dolist (tag (org-agenda-get-represented-tags))
  7147. (let ((modifier (funcall org-agenda-auto-exclude-function tag)))
  7148. (when modifier
  7149. (push modifier org-agenda-tag-filter))))
  7150. (unless (null org-agenda-tag-filter)
  7151. (org-agenda-filter-apply org-agenda-tag-filter 'tag 'expand)))
  7152. ;; Prompt for a filter and act
  7153. (let* ((tag-list (org-agenda-get-represented-tags))
  7154. (category-list (org-agenda-get-represented-categories))
  7155. (negate (equal strip-or-accumulate '(4)))
  7156. (cf (mapconcat #'identity org-agenda-category-filter ""))
  7157. (tf (mapconcat #'identity org-agenda-tag-filter ""))
  7158. (rpl-fn (lambda (c) (replace-regexp-in-string "^\+" "" (or (car c) ""))))
  7159. (ef (replace-regexp-in-string "^\+" "" (or (car org-agenda-effort-filter) "")))
  7160. (rf (replace-regexp-in-string "^\+" "" (or (car org-agenda-regexp-filter) "")))
  7161. (ff (concat cf tf ef (when (not (equal rf "")) (concat "/" rf "/"))))
  7162. (f-string (completing-read
  7163. (concat
  7164. (if negate "Negative filter" "Filter")
  7165. " [+cat-tag<0:10-/regexp/]: ")
  7166. 'org-agenda-filter-completion-function
  7167. nil nil ff))
  7168. (keep (or (if (string-match "^\\+[+-]" f-string)
  7169. (progn (setq f-string (substring f-string 1)) t))
  7170. (equal strip-or-accumulate '(16))))
  7171. (fc (if keep org-agenda-category-filter))
  7172. (ft (if keep org-agenda-tag-filter))
  7173. (fe (if keep org-agenda-effort-filter))
  7174. (fr (if keep org-agenda-regexp-filter))
  7175. pm s)
  7176. (while (string-match "^[ \t]*\\([-+]\\)?\\(\\([^-+<>=/ \t]+\\)\\|\\([<>=][0-9:]+\\)\\|\\(/\\([^/]+\\)/?\\)\\)" f-string)
  7177. (setq pm (if (match-beginning 1) (match-string 1 f-string) "+"))
  7178. (when negate
  7179. (setq pm (if (equal pm "+") "-" "+")))
  7180. (cond
  7181. ((match-beginning 3)
  7182. ;; category or tag
  7183. (setq s (match-string 3 f-string))
  7184. (cond
  7185. ((member s tag-list)
  7186. (add-to-list 'ft (concat pm s) 'append 'equal))
  7187. ((member s category-list)
  7188. (add-to-list 'fc (concat pm s) 'append 'equal))
  7189. (t (message
  7190. "`%s%s' filter ignored because tag/category is not represented"
  7191. pm s))))
  7192. ((match-beginning 4)
  7193. ;; effort
  7194. (add-to-list 'fe (concat pm (match-string 4 f-string)) t 'equal))
  7195. ((match-beginning 5)
  7196. ;; regexp
  7197. (add-to-list 'fr (concat pm (match-string 6 f-string)) t 'equal)))
  7198. (setq f-string (substring f-string (match-end 0))))
  7199. (org-agenda-filter-remove-all)
  7200. (and fc (org-agenda-filter-apply
  7201. (setq org-agenda-category-filter fc) 'category))
  7202. (and ft (org-agenda-filter-apply
  7203. (setq org-agenda-tag-filter ft) 'tag 'expand))
  7204. (and fe (org-agenda-filter-apply
  7205. (setq org-agenda-effort-filter fe) 'effort))
  7206. (and fr (org-agenda-filter-apply
  7207. (setq org-agenda-regexp-filter fr) 'regexp)))))
  7208. (defun org-agenda-filter-completion-function (string _predicate &optional flag)
  7209. "Complete a complex filter string.
  7210. FLAG specifies the type of completion operation to perform. This
  7211. function is passed as a collection function to `completing-read',
  7212. which see."
  7213. (let ((completion-ignore-case t) ;tags are case-sensitive
  7214. (confirm (lambda (x) (stringp x)))
  7215. (prefix "")
  7216. (operator "")
  7217. table)
  7218. (when (string-match "^\\(.*\\([-+<>=]\\)\\)\\([^-+<>=]*\\)$" string)
  7219. (setq prefix (match-string 1 string)
  7220. operator (match-string 2 string)
  7221. string (match-string 3 string)))
  7222. (cond
  7223. ((member operator '("+" "-" "" nil))
  7224. (setq table (append (org-agenda-get-represented-categories)
  7225. (org-agenda-get-represented-tags))))
  7226. ((member operator '("<" ">" "="))
  7227. (setq table (split-string
  7228. (or (cdr (assoc (concat org-effort-property "_ALL")
  7229. org-global-properties))
  7230. "0 0:10 0:30 1:00 2:00 3:00 4:00 5:00 6:00 7:00")
  7231. " +")))
  7232. (t (setq table nil)))
  7233. (pcase flag
  7234. (`t (all-completions string table confirm))
  7235. (`lambda (assoc string table)) ;exact match?
  7236. (`nil
  7237. (pcase (try-completion string table confirm)
  7238. ((and completion (pred stringp))
  7239. (concat prefix completion))
  7240. (completion completion)))
  7241. (_ nil))))
  7242. (defun org-agenda-filter-remove-all ()
  7243. "Remove all filters from the current agenda buffer."
  7244. (interactive)
  7245. (when org-agenda-tag-filter
  7246. (org-agenda-filter-show-all-tag))
  7247. (when org-agenda-category-filter
  7248. (org-agenda-filter-show-all-cat))
  7249. (when org-agenda-regexp-filter
  7250. (org-agenda-filter-show-all-re))
  7251. (when org-agenda-top-headline-filter
  7252. (org-agenda-filter-show-all-top-filter))
  7253. (when org-agenda-effort-filter
  7254. (org-agenda-filter-show-all-effort))
  7255. (org-agenda-finalize)
  7256. (when (called-interactively-p 'interactive)
  7257. (message "All agenda filters removed")))
  7258. (defun org-agenda-filter-by-tag (strip-or-accumulate &optional char exclude)
  7259. "Keep only those lines in the agenda buffer that have a specific tag.
  7260. The tag is selected with its fast selection letter, as configured.
  7261. With a `\\[universal-argument]' prefix, apply the filter negatively, stripping all matches.
  7262. With a `\\[universal-argument] \\[universal-argument]' prefix, add the new tag to the existing filter
  7263. instead of replacing it.
  7264. With a `\\[universal-argument] \\[universal-argument] \\[universal-argument]' prefix, filter the literal tag, \
  7265. i.e. don't
  7266. filter on all its group members.
  7267. A lisp caller can specify CHAR. EXCLUDE means that the new tag
  7268. should be used to exclude the search - the interactive user can
  7269. also press `-' or `+' to switch between filtering and excluding."
  7270. (interactive "P")
  7271. (let* ((alist org-tag-alist-for-agenda)
  7272. (seen-chars nil)
  7273. (tag-chars (mapconcat
  7274. (lambda (x) (if (and (not (symbolp (car x)))
  7275. (cdr x)
  7276. (not (member (cdr x) seen-chars)))
  7277. (progn
  7278. (push (cdr x) seen-chars)
  7279. (char-to-string (cdr x)))
  7280. ""))
  7281. org-tag-alist-for-agenda ""))
  7282. (valid-char-list (append '(?\t ?\r ?\\ ?. ?\s ?q)
  7283. (string-to-list tag-chars)))
  7284. (exclude (or exclude (equal strip-or-accumulate '(4))))
  7285. (accumulate (equal strip-or-accumulate '(16)))
  7286. (expand (not (equal strip-or-accumulate '(64))))
  7287. (inhibit-read-only t)
  7288. (current org-agenda-tag-filter)
  7289. a n tag)
  7290. (unless char
  7291. (while (not (memq char valid-char-list))
  7292. (org-unlogged-message
  7293. "%s by tag%s: [%s ]tag-char [TAB]tag %s[\\]off [q]uit"
  7294. (if exclude "Exclude[+]" "Filter[-]")
  7295. (if expand "" " (no grouptag expand)")
  7296. tag-chars
  7297. (if org-agenda-auto-exclude-function "[RET] " ""))
  7298. (setq char (read-char-exclusive))
  7299. ;; Excluding or filtering down
  7300. (cond ((eq char ?-) (setq exclude t))
  7301. ((eq char ?+) (setq exclude nil)))))
  7302. (when (eq char ?\t)
  7303. (unless (local-variable-p 'org-global-tags-completion-table)
  7304. (setq-local org-global-tags-completion-table
  7305. (org-global-tags-completion-table)))
  7306. (let ((completion-ignore-case t))
  7307. (setq tag (completing-read
  7308. "Tag: " org-global-tags-completion-table nil t))))
  7309. (cond
  7310. ((eq char ?\r)
  7311. (org-agenda-filter-show-all-tag)
  7312. (when org-agenda-auto-exclude-function
  7313. (setq org-agenda-tag-filter nil)
  7314. (dolist (tag (org-agenda-get-represented-tags))
  7315. (let ((modifier (funcall org-agenda-auto-exclude-function tag)))
  7316. (when modifier
  7317. (push modifier org-agenda-tag-filter))))
  7318. (unless (null org-agenda-tag-filter)
  7319. (org-agenda-filter-apply org-agenda-tag-filter 'tag expand))))
  7320. ((eq char ?\\)
  7321. (org-agenda-filter-show-all-tag)
  7322. (when (get 'org-agenda-tag-filter :preset-filter)
  7323. (org-agenda-filter-apply org-agenda-tag-filter 'tag expand)))
  7324. ((eq char ?.)
  7325. (setq org-agenda-tag-filter
  7326. (mapcar (lambda(tag) (concat "+" tag))
  7327. (org-get-at-bol 'tags)))
  7328. (org-agenda-filter-apply org-agenda-tag-filter 'tag expand))
  7329. ((eq char ?q)) ;If q, abort (even if there is a q-key for a tag...)
  7330. ((or (eq char ?\s)
  7331. (setq a (rassoc char alist))
  7332. (and tag (setq a (cons tag nil))))
  7333. (org-agenda-filter-show-all-tag)
  7334. (setq tag (car a))
  7335. (setq org-agenda-tag-filter
  7336. (cons (concat (if exclude "-" "+") tag)
  7337. (if accumulate current nil)))
  7338. (org-agenda-filter-apply org-agenda-tag-filter 'tag expand))
  7339. (t (error "Invalid tag selection character %c" char)))))
  7340. (defun org-agenda-get-represented-categories ()
  7341. "Return a list of all categories used in this agenda buffer."
  7342. (or org-agenda-represented-categories
  7343. (when (derived-mode-p 'org-agenda-mode)
  7344. (let ((pos (point-min)) categories)
  7345. (while (and (< pos (point-max))
  7346. (setq pos (next-single-property-change
  7347. pos 'org-category nil (point-max))))
  7348. (push (get-text-property pos 'org-category) categories))
  7349. (setq org-agenda-represented-categories
  7350. (nreverse (org-uniquify (delq nil categories))))))))
  7351. (defvar org-tag-groups-alist-for-agenda)
  7352. (defun org-agenda-get-represented-tags ()
  7353. "Return a list of all tags used in this agenda buffer.
  7354. These will be lower-case, for filtering."
  7355. (or org-agenda-represented-tags
  7356. (when (derived-mode-p 'org-agenda-mode)
  7357. (let ((pos (point-min)) tags-lists tt)
  7358. (while (and (< pos (point-max))
  7359. (setq pos (next-single-property-change
  7360. pos 'tags nil (point-max))))
  7361. (setq tt (get-text-property pos 'tags))
  7362. (if tt (push tt tags-lists)))
  7363. (setq tags-lists
  7364. (nreverse (org-uniquify
  7365. (delq nil (apply 'append tags-lists)))))
  7366. (dolist (tag tags-lists)
  7367. (mapc
  7368. (lambda (group)
  7369. (when (member tag (mapcar #'downcase group))
  7370. (push (downcase (car group)) tags-lists)))
  7371. org-tag-groups-alist-for-agenda))
  7372. (setq org-agenda-represented-tags tags-lists)))))
  7373. (defun org-agenda-filter-make-matcher (filter type &optional expand)
  7374. "Create the form that tests a line for agenda filter. Optional
  7375. argument EXPAND can be used for the TYPE tag and will expand the
  7376. tags in the FILTER if any of the tags in FILTER are grouptags."
  7377. (let (f f1)
  7378. (cond
  7379. ;; Tag filter
  7380. ((eq type 'tag)
  7381. (setq filter
  7382. (delete-dups
  7383. (append (get 'org-agenda-tag-filter :preset-filter)
  7384. filter)))
  7385. (dolist (x filter)
  7386. (let ((op (string-to-char x)))
  7387. (if expand (setq x (org-agenda-filter-expand-tags (list x) t))
  7388. (setq x (list x)))
  7389. (setq f1 (org-agenda-filter-make-matcher-tag-exp x op))
  7390. (push f1 f))))
  7391. ;; Category filter
  7392. ((eq type 'category)
  7393. (setq filter
  7394. (delete-dups
  7395. (append (get 'org-agenda-category-filter :preset-filter)
  7396. filter)))
  7397. (dolist (x filter)
  7398. (if (equal "-" (substring x 0 1))
  7399. (setq f1 (list 'not (list 'equal (substring x 1) 'cat)))
  7400. (setq f1 (list 'equal (substring x 1) 'cat)))
  7401. (push f1 f)))
  7402. ;; Regexp filter
  7403. ((eq type 'regexp)
  7404. (setq filter
  7405. (delete-dups
  7406. (append (get 'org-agenda-regexp-filter :preset-filter)
  7407. filter)))
  7408. (dolist (x filter)
  7409. (if (equal "-" (substring x 0 1))
  7410. (setq f1 (list 'not (list 'string-match (substring x 1) 'txt)))
  7411. (setq f1 (list 'string-match (substring x 1) 'txt)))
  7412. (push f1 f)))
  7413. ;; Effort filter
  7414. ((eq type 'effort)
  7415. (setq filter
  7416. (delete-dups
  7417. (append (get 'org-agenda-effort-filter :preset-filter)
  7418. filter)))
  7419. (dolist (x filter)
  7420. (push (org-agenda-filter-effort-form x) f))))
  7421. (cons (if (eq type 'category) 'or 'and) (nreverse f))))
  7422. (defun org-agenda-filter-make-matcher-tag-exp (tags op)
  7423. "Return a form associated to tag-expression TAGS.
  7424. Build a form testing a line for agenda filter for
  7425. tag-expressions. OP is an operator of type CHAR that allows the
  7426. function to set the right switches in the returned form."
  7427. (let (form)
  7428. ;; Any of the expressions can match if OP is +, all must match if
  7429. ;; the operator is -.
  7430. (dolist (x tags (cons (if (eq op ?-) 'and 'or) form))
  7431. (let* ((tag (substring x 1))
  7432. (f (cond
  7433. ((string= "" tag) 'tags)
  7434. ((and (string-match-p "\\`{" tag) (string-match-p "}\\'" tag))
  7435. ;; TAG is a regexp.
  7436. (list 'org-match-any-p (substring tag 1 -1) 'tags))
  7437. (t (list 'member (downcase tag) 'tags)))))
  7438. (push (if (eq op ?-) (list 'not f) f) form)))))
  7439. (defun org-agenda-filter-effort-form (e)
  7440. "Return the form to compare the effort of the current line with what E says.
  7441. E looks like \"+<2:25\"."
  7442. (let (op)
  7443. (setq e (substring e 1))
  7444. (setq op (string-to-char e) e (substring e 1))
  7445. (setq op (cond ((equal op ?<) '<=)
  7446. ((equal op ?>) '>=)
  7447. ((equal op ??) op)
  7448. (t '=)))
  7449. (list 'org-agenda-compare-effort (list 'quote op)
  7450. (org-duration-to-minutes e))))
  7451. (defun org-agenda-compare-effort (op value)
  7452. "Compare the effort of the current line with VALUE, using OP.
  7453. If the line does not have an effort defined, return nil."
  7454. ;; `effort-minutes' property cannot be extracted directly from
  7455. ;; current line but is stored as a property in `txt'.
  7456. (let ((effort (get-text-property 0 'effort-minutes (org-get-at-bol 'txt))))
  7457. (funcall op
  7458. (or effort (if org-sort-agenda-noeffort-is-high 32767 -1))
  7459. value)))
  7460. (defun org-agenda-filter-expand-tags (filter &optional no-operator)
  7461. "Expand group tags in FILTER for the agenda.
  7462. When NO-OPERATOR is non-nil, do not add the + operator to returned tags."
  7463. (if org-group-tags
  7464. (let ((case-fold-search t) rtn)
  7465. (mapc
  7466. (lambda (f)
  7467. (let (f0 dir)
  7468. (if (string-match "^\\([+-]\\)\\(.+\\)" f)
  7469. (setq dir (match-string 1 f) f0 (match-string 2 f))
  7470. (setq dir (if no-operator "" "+") f0 f))
  7471. (setq rtn (append (mapcar (lambda(f1) (concat dir f1))
  7472. (org-tags-expand f0 t t))
  7473. rtn))))
  7474. filter)
  7475. (reverse rtn))
  7476. filter))
  7477. (defun org-agenda-filter-apply (filter type &optional expand)
  7478. "Set FILTER as the new agenda filter and apply it. Optional
  7479. argument EXPAND can be used for the TYPE tag and will expand the
  7480. tags in the FILTER if any of the tags in FILTER are grouptags."
  7481. ;; Deactivate `org-agenda-entry-text-mode' when filtering
  7482. (when org-agenda-entry-text-mode (org-agenda-entry-text-mode))
  7483. (setq org-agenda-filter-form (org-agenda-filter-make-matcher
  7484. filter type expand))
  7485. ;; Only set `org-agenda-filtered-by-category' to t when a unique
  7486. ;; category is used as the filter:
  7487. (setq org-agenda-filtered-by-category
  7488. (and (eq type 'category)
  7489. (not (equal (substring (car filter) 0 1) "-"))))
  7490. (org-agenda-set-mode-name)
  7491. (save-excursion
  7492. (goto-char (point-min))
  7493. (while (not (eobp))
  7494. (when (or (org-get-at-bol 'org-hd-marker)
  7495. (org-get-at-bol 'org-marker))
  7496. (let ((tags (org-get-at-bol 'tags))
  7497. (cat (org-agenda-get-category))
  7498. (txt (or (org-get-at-bol 'txt) "")))
  7499. (unless (eval org-agenda-filter-form)
  7500. (org-agenda-filter-hide-line type))))
  7501. (beginning-of-line 2)))
  7502. (when (get-char-property (point) 'invisible)
  7503. (ignore-errors (org-agenda-previous-line))))
  7504. (defun org-agenda-filter-top-headline-apply (hl &optional negative)
  7505. "Filter by top headline HL."
  7506. (org-agenda-set-mode-name)
  7507. (save-excursion
  7508. (goto-char (point-min))
  7509. (while (not (eobp))
  7510. (let* ((pos (org-get-at-bol 'org-hd-marker))
  7511. (tophl (and pos (org-find-top-headline pos))))
  7512. (when (and tophl (funcall (if negative 'identity 'not)
  7513. (string= hl tophl)))
  7514. (org-agenda-filter-hide-line 'top-headline)))
  7515. (beginning-of-line 2)))
  7516. (when (get-char-property (point) 'invisible)
  7517. (org-agenda-previous-line))
  7518. (setq org-agenda-top-headline-filter hl
  7519. org-agenda-filtered-by-top-headline t))
  7520. (defun org-agenda-filter-hide-line (type)
  7521. "If current line is TYPE, hide it in the agenda buffer."
  7522. (let* (buffer-invisibility-spec
  7523. (beg (max (point-min) (1- (point-at-bol))))
  7524. (end (point-at-eol)))
  7525. (let ((inhibit-read-only t))
  7526. (add-text-properties
  7527. beg end `(invisible org-filtered org-filter-type ,type)))))
  7528. (defun org-agenda-remove-filter (type)
  7529. (interactive)
  7530. "Remove filter of type TYPE from the agenda buffer."
  7531. (save-excursion
  7532. (goto-char (point-min))
  7533. (let ((inhibit-read-only t) pos)
  7534. (while (setq pos (text-property-any (point) (point-max)
  7535. 'org-filter-type type))
  7536. (goto-char pos)
  7537. (remove-text-properties
  7538. (point) (next-single-property-change (point) 'org-filter-type)
  7539. `(invisible org-filtered org-filter-type ,type))))
  7540. (set (intern (format "org-agenda-%s-filter" (intern-soft type))) nil)
  7541. (setq org-agenda-filter-form nil)
  7542. (org-agenda-set-mode-name)
  7543. (org-agenda-finalize)))
  7544. (defun org-agenda-filter-show-all-tag nil
  7545. (org-agenda-remove-filter 'tag))
  7546. (defun org-agenda-filter-show-all-re nil
  7547. (org-agenda-remove-filter 'regexp))
  7548. (defun org-agenda-filter-show-all-effort nil
  7549. (org-agenda-remove-filter 'effort))
  7550. (defun org-agenda-filter-show-all-cat nil
  7551. (org-agenda-remove-filter 'category))
  7552. (defun org-agenda-filter-show-all-top-filter nil
  7553. (org-agenda-remove-filter 'top-headline))
  7554. (defun org-agenda-manipulate-query-add ()
  7555. "Manipulate the query by adding a search term with positive selection.
  7556. Positive selection means the term must be matched for selection of an entry."
  7557. (interactive)
  7558. (org-agenda-manipulate-query ?\[))
  7559. (defun org-agenda-manipulate-query-subtract ()
  7560. "Manipulate the query by adding a search term with negative selection.
  7561. Negative selection means term must not be matched for selection of an entry."
  7562. (interactive)
  7563. (org-agenda-manipulate-query ?\]))
  7564. (defun org-agenda-manipulate-query-add-re ()
  7565. "Manipulate the query by adding a search regexp with positive selection.
  7566. Positive selection means the regexp must match for selection of an entry."
  7567. (interactive)
  7568. (org-agenda-manipulate-query ?\{))
  7569. (defun org-agenda-manipulate-query-subtract-re ()
  7570. "Manipulate the query by adding a search regexp with negative selection.
  7571. Negative selection means regexp must not match for selection of an entry."
  7572. (interactive)
  7573. (org-agenda-manipulate-query ?\}))
  7574. (defun org-agenda-manipulate-query (char)
  7575. (cond
  7576. ((eq org-agenda-type 'agenda)
  7577. (let ((org-agenda-include-inactive-timestamps t))
  7578. (org-agenda-redo))
  7579. (message "Display now includes inactive timestamps as well"))
  7580. ((eq org-agenda-type 'search)
  7581. (org-add-to-string
  7582. 'org-agenda-query-string
  7583. (if org-agenda-last-search-view-search-was-boolean
  7584. (cdr (assoc char '((?\[ . " +") (?\] . " -")
  7585. (?\{ . " +{}") (?\} . " -{}"))))
  7586. " "))
  7587. (setq org-agenda-redo-command
  7588. (list 'org-search-view
  7589. (car (get-text-property (min (1- (point-max)) (point))
  7590. 'org-last-args))
  7591. org-agenda-query-string
  7592. (+ (length org-agenda-query-string)
  7593. (if (member char '(?\{ ?\})) 0 1))))
  7594. (set-register org-agenda-query-register org-agenda-query-string)
  7595. (let ((org-agenda-overriding-arguments
  7596. (cdr org-agenda-redo-command)))
  7597. (org-agenda-redo)))
  7598. (t (error "Cannot manipulate query for %s-type agenda buffers"
  7599. org-agenda-type))))
  7600. (defun org-add-to-string (var string)
  7601. (set var (concat (symbol-value var) string)))
  7602. (defun org-agenda-goto-date (span)
  7603. "Jump to DATE in agenda."
  7604. (interactive "P")
  7605. (let* ((org-read-date-prefer-future
  7606. (eval org-agenda-jump-prefer-future))
  7607. (date (org-read-date))
  7608. (day (time-to-days (org-time-string-to-time date)))
  7609. (org-agenda-sticky-orig org-agenda-sticky)
  7610. (org-agenda-buffer-tmp-name (buffer-name))
  7611. (args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7612. (0-arg (or current-prefix-arg (car args)))
  7613. (2-arg (nth 2 args))
  7614. (with-hour-p (nth 4 org-agenda-redo-command))
  7615. (newcmd (list 'org-agenda-list 0-arg date
  7616. (org-agenda-span-to-ndays
  7617. 2-arg (org-time-string-to-absolute date))
  7618. with-hour-p))
  7619. (newargs (cdr newcmd))
  7620. (inhibit-read-only t)
  7621. org-agenda-sticky)
  7622. (if (not (org-agenda-check-type t 'agenda))
  7623. (error "Not available in non-agenda views")
  7624. (add-text-properties (point-min) (point-max)
  7625. `(org-redo-cmd ,newcmd org-last-args ,newargs))
  7626. (org-agenda-redo)
  7627. (goto-char (point-min))
  7628. (while (not (or (= (or (get-text-property (point) 'day) 0) day)
  7629. (save-excursion (move-beginning-of-line 2) (eobp))))
  7630. (move-beginning-of-line 2))
  7631. (setq org-agenda-sticky org-agenda-sticky-orig
  7632. org-agenda-this-buffer-is-sticky org-agenda-sticky))))
  7633. (defun org-agenda-goto-today ()
  7634. "Go to today."
  7635. (interactive)
  7636. (org-agenda-check-type t 'agenda)
  7637. (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7638. (curspan (nth 2 args))
  7639. (tdpos (text-property-any (point-min) (point-max) 'org-today t)))
  7640. (cond
  7641. (tdpos (goto-char tdpos))
  7642. ((eq org-agenda-type 'agenda)
  7643. (let* ((sd (org-agenda-compute-starting-span
  7644. (org-today) (or curspan org-agenda-span)))
  7645. (org-agenda-overriding-arguments args))
  7646. (setf (nth 1 org-agenda-overriding-arguments) sd)
  7647. (org-agenda-redo)
  7648. (org-agenda-find-same-or-today-or-agenda)))
  7649. (t (error "Cannot find today")))))
  7650. (defun org-agenda-find-same-or-today-or-agenda (&optional cnt)
  7651. (goto-char
  7652. (or (and cnt (text-property-any (point-min) (point-max) 'org-day-cnt cnt))
  7653. (text-property-any (point-min) (point-max) 'org-today t)
  7654. (text-property-any (point-min) (point-max) 'org-agenda-type 'agenda)
  7655. (and (get-text-property (min (1- (point-max)) (point)) 'org-series)
  7656. (org-agenda-backward-block))
  7657. (point-min))))
  7658. (defun org-agenda-backward-block ()
  7659. "Move backward by one agenda block."
  7660. (interactive)
  7661. (org-agenda-forward-block 'backward))
  7662. (defun org-agenda-forward-block (&optional backward)
  7663. "Move forward by one agenda block.
  7664. When optional argument BACKWARD is set, go backward."
  7665. (interactive)
  7666. (cond ((not (derived-mode-p 'org-agenda-mode))
  7667. (user-error
  7668. "Cannot execute this command outside of org-agenda-mode buffers"))
  7669. ((looking-at (if backward "\\`" "\\'"))
  7670. (message "Already at the %s block" (if backward "first" "last")))
  7671. (t (let ((pos (prog1 (point)
  7672. (ignore-errors (if backward (backward-char 1)
  7673. (move-end-of-line 1)))))
  7674. (f (if backward
  7675. 'previous-single-property-change
  7676. 'next-single-property-change))
  7677. moved dest)
  7678. (while (and (setq dest (funcall
  7679. f (point) 'org-agenda-structural-header))
  7680. (not (get-text-property
  7681. (point) 'org-agenda-structural-header)))
  7682. (setq moved t)
  7683. (goto-char dest))
  7684. (if moved (move-beginning-of-line 1)
  7685. (goto-char (if backward (point-min) (point-max)))
  7686. (move-beginning-of-line 1)
  7687. (message "No %s block" (if backward "previous" "further")))))))
  7688. (defun org-agenda-later (arg)
  7689. "Go forward in time by the current span.
  7690. With prefix ARG, go forward that many times the current span."
  7691. (interactive "p")
  7692. (org-agenda-check-type t 'agenda)
  7693. (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7694. (span (or (nth 2 args) org-agenda-current-span))
  7695. (sd (or (nth 1 args) (org-get-at-bol 'day) org-starting-day))
  7696. (greg (calendar-gregorian-from-absolute sd))
  7697. (cnt (org-get-at-bol 'org-day-cnt))
  7698. greg2)
  7699. (cond
  7700. ((numberp span)
  7701. (setq sd (+ (* span arg) sd)))
  7702. ((eq span 'day)
  7703. (setq sd (+ arg sd)))
  7704. ((eq span 'week)
  7705. (setq sd (+ (* 7 arg) sd)))
  7706. ((eq span 'fortnight)
  7707. (setq sd (+ (* 14 arg) sd)))
  7708. ((eq span 'month)
  7709. (setq greg2 (list (+ (car greg) arg) (nth 1 greg) (nth 2 greg))
  7710. sd (calendar-absolute-from-gregorian greg2))
  7711. (setcar greg2 (1+ (car greg2))))
  7712. ((eq span 'year)
  7713. (setq greg2 (list (car greg) (nth 1 greg) (+ arg (nth 2 greg)))
  7714. sd (calendar-absolute-from-gregorian greg2))
  7715. (setcar (nthcdr 2 greg2) (1+ (nth 2 greg2))))
  7716. (t
  7717. (setq sd (+ (* span arg) sd))))
  7718. (let ((org-agenda-overriding-cmd
  7719. ;; `cmd' may have been set by `org-agenda-run-series' which
  7720. ;; uses `org-agenda-overriding-cmd' to decide whether
  7721. ;; overriding is allowed for `cmd'
  7722. (get-text-property (min (1- (point-max)) (point)) 'org-series-cmd))
  7723. (org-agenda-overriding-arguments
  7724. (list (car args) sd span)))
  7725. (org-agenda-redo)
  7726. (org-agenda-find-same-or-today-or-agenda cnt))))
  7727. (defun org-agenda-earlier (arg)
  7728. "Go backward in time by the current span.
  7729. With prefix ARG, go backward that many times the current span."
  7730. (interactive "p")
  7731. (org-agenda-later (- arg)))
  7732. (defun org-agenda-view-mode-dispatch ()
  7733. "Call one of the view mode commands."
  7734. (interactive)
  7735. (org-unlogged-message
  7736. "View: [d]ay [w]eek for[t]night [m]onth [y]ear [SPC]reset [q]uit/abort
  7737. time[G]rid [[]inactive [f]ollow [l]og [L]og-all [c]lockcheck
  7738. [a]rch-trees [A]rch-files clock[R]eport include[D]iary [E]ntryText")
  7739. (pcase (read-char-exclusive)
  7740. (?\ (call-interactively 'org-agenda-reset-view))
  7741. (?d (call-interactively 'org-agenda-day-view))
  7742. (?w (call-interactively 'org-agenda-week-view))
  7743. (?t (call-interactively 'org-agenda-fortnight-view))
  7744. (?m (call-interactively 'org-agenda-month-view))
  7745. (?y (call-interactively 'org-agenda-year-view))
  7746. (?l (call-interactively 'org-agenda-log-mode))
  7747. (?L (org-agenda-log-mode '(4)))
  7748. (?c (org-agenda-log-mode 'clockcheck))
  7749. ((or ?F ?f) (call-interactively 'org-agenda-follow-mode))
  7750. (?a (call-interactively 'org-agenda-archives-mode))
  7751. (?A (org-agenda-archives-mode 'files))
  7752. ((or ?R ?r) (call-interactively 'org-agenda-clockreport-mode))
  7753. ((or ?E ?e) (call-interactively 'org-agenda-entry-text-mode))
  7754. (?G (call-interactively 'org-agenda-toggle-time-grid))
  7755. (?D (call-interactively 'org-agenda-toggle-diary))
  7756. (?\! (call-interactively 'org-agenda-toggle-deadlines))
  7757. (?\[ (let ((org-agenda-include-inactive-timestamps t))
  7758. (org-agenda-check-type t 'agenda)
  7759. (org-agenda-redo))
  7760. (message "Display now includes inactive timestamps as well"))
  7761. (?q (message "Abort"))
  7762. (key (user-error "Invalid key: %s" key))))
  7763. (defun org-agenda-reset-view ()
  7764. "Switch to default view for agenda."
  7765. (interactive)
  7766. (org-agenda-change-time-span org-agenda-span))
  7767. (defun org-agenda-day-view (&optional day-of-month)
  7768. "Switch to daily view for agenda.
  7769. With argument DAY-OF-MONTH, switch to that day of the month."
  7770. (interactive "P")
  7771. (org-agenda-change-time-span 'day day-of-month))
  7772. (defun org-agenda-week-view (&optional iso-week)
  7773. "Switch to weekly view for agenda.
  7774. With argument ISO-WEEK, switch to the corresponding ISO week.
  7775. If ISO-WEEK has more then 2 digits, only the last two encode
  7776. the week. Any digits before this encode a year. So 200712
  7777. means week 12 of year 2007. Years ranging from 70 years ago
  7778. to 30 years in the future can also be written as 2-digit years."
  7779. (interactive "P")
  7780. (org-agenda-change-time-span 'week iso-week))
  7781. (defun org-agenda-fortnight-view (&optional iso-week)
  7782. "Switch to fortnightly view for agenda.
  7783. With argument ISO-WEEK, switch to the corresponding ISO week.
  7784. If ISO-WEEK has more then 2 digits, only the last two encode
  7785. the week. Any digits before this encode a year. So 200712
  7786. means week 12 of year 2007. Years ranging from 70 years ago
  7787. to 30 years in the future can also be written as 2-digit years."
  7788. (interactive "P")
  7789. (org-agenda-change-time-span 'fortnight iso-week))
  7790. (defun org-agenda-month-view (&optional month)
  7791. "Switch to monthly view for agenda.
  7792. With argument MONTH, switch to that month. If MONTH has more
  7793. then 2 digits, only the last two encode the month. Any digits
  7794. before this encode a year. So 200712 means December year 2007.
  7795. Years ranging from 70 years ago to 30 years in the future can
  7796. also be written as 2-digit years."
  7797. (interactive "P")
  7798. (org-agenda-change-time-span 'month month))
  7799. (defun org-agenda-year-view (&optional year)
  7800. "Switch to yearly view for agenda.
  7801. With argument YEAR, switch to that year. Years ranging from 70
  7802. years ago to 30 years in the future can also be written as
  7803. 2-digit years."
  7804. (interactive "P")
  7805. (when year
  7806. (setq year (org-small-year-to-year year)))
  7807. (if (y-or-n-p "Are you sure you want to compute the agenda for an entire year? ")
  7808. (org-agenda-change-time-span 'year year)
  7809. (error "Abort")))
  7810. (defun org-agenda-change-time-span (span &optional n)
  7811. "Change the agenda view to SPAN.
  7812. SPAN may be `day', `week', `fortnight', `month', `year'."
  7813. (org-agenda-check-type t 'agenda)
  7814. (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7815. (curspan (nth 2 args)))
  7816. (when (and (not n) (equal curspan span))
  7817. (error "Viewing span is already \"%s\"" span))
  7818. (let* ((sd (or (org-get-at-bol 'day)
  7819. (nth 1 args)
  7820. org-starting-day))
  7821. (sd (org-agenda-compute-starting-span sd span n))
  7822. (org-agenda-overriding-cmd
  7823. (get-text-property (min (1- (point-max)) (point)) 'org-series-cmd))
  7824. (org-agenda-overriding-arguments
  7825. (list (car args) sd span)))
  7826. (org-agenda-redo)
  7827. (org-agenda-find-same-or-today-or-agenda))
  7828. (org-agenda-set-mode-name)
  7829. (message "Switched to %s view" span)))
  7830. (defun org-agenda-compute-starting-span (sd span &optional n)
  7831. "Compute starting date for agenda.
  7832. SPAN may be `day', `week', `fortnight', `month', `year'. The return value
  7833. is a cons cell with the starting date and the number of days,
  7834. so that the date SD will be in that range."
  7835. (let* ((greg (calendar-gregorian-from-absolute sd))
  7836. (dg (nth 1 greg))
  7837. (mg (car greg))
  7838. (yg (nth 2 greg)))
  7839. (cond
  7840. ((eq span 'day)
  7841. (when n
  7842. (setq sd (+ (calendar-absolute-from-gregorian
  7843. (list mg 1 yg))
  7844. n -1))))
  7845. ((or (eq span 'week) (eq span 'fortnight))
  7846. (let* ((nt (calendar-day-of-week
  7847. (calendar-gregorian-from-absolute sd)))
  7848. (d (if org-agenda-start-on-weekday
  7849. (- nt org-agenda-start-on-weekday)
  7850. 0))
  7851. y1)
  7852. (setq sd (- sd (+ (if (< d 0) 7 0) d)))
  7853. (when n
  7854. (require 'cal-iso)
  7855. (when (> n 99)
  7856. (setq y1 (org-small-year-to-year (/ n 100))
  7857. n (mod n 100)))
  7858. (setq sd
  7859. (calendar-iso-to-absolute
  7860. (list n 1
  7861. (or y1 (nth 2 (calendar-iso-from-absolute sd)))))))))
  7862. ((eq span 'month)
  7863. (let (y1)
  7864. (when (and n (> n 99))
  7865. (setq y1 (org-small-year-to-year (/ n 100))
  7866. n (mod n 100)))
  7867. (setq sd (calendar-absolute-from-gregorian
  7868. (list (or n mg) 1 (or y1 yg))))))
  7869. ((eq span 'year)
  7870. (setq sd (calendar-absolute-from-gregorian
  7871. (list 1 1 (or n yg))))))
  7872. sd))
  7873. (defun org-agenda-next-date-line (&optional arg)
  7874. "Jump to the next line indicating a date in agenda buffer."
  7875. (interactive "p")
  7876. (org-agenda-check-type t 'agenda)
  7877. (beginning-of-line 1)
  7878. ;; This does not work if user makes date format that starts with a blank
  7879. (when (looking-at-p "^\\S-") (forward-char 1))
  7880. (unless (re-search-forward "^\\S-" nil t arg)
  7881. (backward-char 1)
  7882. (error "No next date after this line in this buffer"))
  7883. (goto-char (match-beginning 0)))
  7884. (defun org-agenda-previous-date-line (&optional arg)
  7885. "Jump to the previous line indicating a date in agenda buffer."
  7886. (interactive "p")
  7887. (org-agenda-check-type t 'agenda)
  7888. (beginning-of-line 1)
  7889. (unless (re-search-backward "^\\S-" nil t arg)
  7890. (error "No previous date before this line in this buffer")))
  7891. ;; Initialize the highlight
  7892. (defvar org-hl (make-overlay 1 1))
  7893. (overlay-put org-hl 'face 'highlight)
  7894. (defun org-highlight (begin end &optional buffer)
  7895. "Highlight a region with overlay."
  7896. (move-overlay org-hl begin end (or buffer (current-buffer))))
  7897. (defun org-unhighlight ()
  7898. "Detach overlay INDEX."
  7899. (delete-overlay org-hl))
  7900. (defun org-unhighlight-once ()
  7901. "Remove the highlight from its position, and this function from the hook."
  7902. (remove-hook 'pre-command-hook 'org-unhighlight-once)
  7903. (org-unhighlight))
  7904. (defvar org-agenda-pre-follow-window-conf nil)
  7905. (defun org-agenda-follow-mode ()
  7906. "Toggle follow mode in an agenda buffer."
  7907. (interactive)
  7908. (unless org-agenda-follow-mode
  7909. (setq org-agenda-pre-follow-window-conf
  7910. (current-window-configuration)))
  7911. (setq org-agenda-follow-mode (not org-agenda-follow-mode))
  7912. (unless org-agenda-follow-mode
  7913. (set-window-configuration org-agenda-pre-follow-window-conf))
  7914. (org-agenda-set-mode-name)
  7915. (org-agenda-do-context-action)
  7916. (message "Follow mode is %s"
  7917. (if org-agenda-follow-mode "on" "off")))
  7918. (defun org-agenda-entry-text-mode (&optional arg)
  7919. "Toggle entry text mode in an agenda buffer."
  7920. (interactive "P")
  7921. (if (or org-agenda-tag-filter
  7922. org-agenda-category-filter
  7923. org-agenda-regexp-filter
  7924. org-agenda-top-headline-filter)
  7925. (user-error "Can't show entry text in filtered views")
  7926. (setq org-agenda-entry-text-mode (or (integerp arg)
  7927. (not org-agenda-entry-text-mode)))
  7928. (org-agenda-entry-text-hide)
  7929. (and org-agenda-entry-text-mode
  7930. (let ((org-agenda-entry-text-maxlines
  7931. (if (integerp arg) arg org-agenda-entry-text-maxlines)))
  7932. (org-agenda-entry-text-show)))
  7933. (org-agenda-set-mode-name)
  7934. (message "Entry text mode is %s%s"
  7935. (if org-agenda-entry-text-mode "on" "off")
  7936. (if (not org-agenda-entry-text-mode) ""
  7937. (format " (maximum number of lines is %d)"
  7938. (if (integerp arg) arg org-agenda-entry-text-maxlines))))))
  7939. (defun org-agenda-clockreport-mode ()
  7940. "Toggle clocktable mode in an agenda buffer."
  7941. (interactive)
  7942. (org-agenda-check-type t 'agenda)
  7943. (setq org-agenda-clockreport-mode (not org-agenda-clockreport-mode))
  7944. (org-agenda-set-mode-name)
  7945. (org-agenda-redo)
  7946. (message "Clocktable mode is %s"
  7947. (if org-agenda-clockreport-mode "on" "off")))
  7948. (defun org-agenda-log-mode (&optional special)
  7949. "Toggle log mode in an agenda buffer.
  7950. With argument SPECIAL, show all possible log items, not only the ones
  7951. configured in `org-agenda-log-mode-items'.
  7952. With a `\\[universal-argument] \\[universal-argument]' prefix, show *only* \
  7953. log items, nothing else."
  7954. (interactive "P")
  7955. (org-agenda-check-type t 'agenda)
  7956. (setq org-agenda-show-log
  7957. (cond
  7958. ((equal special '(16)) 'only)
  7959. ((eq special 'clockcheck)
  7960. (if (eq org-agenda-show-log 'clockcheck)
  7961. nil 'clockcheck))
  7962. (special '(closed clock state))
  7963. (t (not org-agenda-show-log))))
  7964. (org-agenda-set-mode-name)
  7965. (org-agenda-redo)
  7966. (message "Log mode is %s" (if org-agenda-show-log "on" "off")))
  7967. (defun org-agenda-archives-mode (&optional with-files)
  7968. "Toggle inclusion of items in trees marked with :ARCHIVE:.
  7969. When called with a prefix argument, include all archive files as well."
  7970. (interactive "P")
  7971. (setq org-agenda-archives-mode
  7972. (if with-files t (if org-agenda-archives-mode nil 'trees)))
  7973. (org-agenda-set-mode-name)
  7974. (org-agenda-redo)
  7975. (message
  7976. "%s"
  7977. (cond
  7978. ((eq org-agenda-archives-mode nil)
  7979. "No archives are included")
  7980. ((eq org-agenda-archives-mode 'trees)
  7981. (format "Trees with :%s: tag are included" org-archive-tag))
  7982. ((eq org-agenda-archives-mode t)
  7983. (format "Trees with :%s: tag and all active archive files are included"
  7984. org-archive-tag)))))
  7985. (defun org-agenda-toggle-diary ()
  7986. "Toggle diary inclusion in an agenda buffer."
  7987. (interactive)
  7988. (org-agenda-check-type t 'agenda)
  7989. (setq org-agenda-include-diary (not org-agenda-include-diary))
  7990. (org-agenda-redo)
  7991. (org-agenda-set-mode-name)
  7992. (message "Diary inclusion turned %s"
  7993. (if org-agenda-include-diary "on" "off")))
  7994. (defun org-agenda-toggle-deadlines ()
  7995. "Toggle inclusion of entries with a deadline in an agenda buffer."
  7996. (interactive)
  7997. (org-agenda-check-type t 'agenda)
  7998. (setq org-agenda-include-deadlines (not org-agenda-include-deadlines))
  7999. (org-agenda-redo)
  8000. (org-agenda-set-mode-name)
  8001. (message "Deadlines inclusion turned %s"
  8002. (if org-agenda-include-deadlines "on" "off")))
  8003. (defun org-agenda-toggle-time-grid ()
  8004. "Toggle time grid in an agenda buffer."
  8005. (interactive)
  8006. (org-agenda-check-type t 'agenda)
  8007. (setq org-agenda-use-time-grid (not org-agenda-use-time-grid))
  8008. (org-agenda-redo)
  8009. (org-agenda-set-mode-name)
  8010. (message "Time-grid turned %s"
  8011. (if org-agenda-use-time-grid "on" "off")))
  8012. (defun org-agenda-set-mode-name ()
  8013. "Set the mode name to indicate all the small mode settings."
  8014. (setq mode-name
  8015. (list "Org-Agenda"
  8016. (if (get 'org-agenda-files 'org-restrict) " []" "")
  8017. " "
  8018. '(:eval (org-agenda-span-name org-agenda-current-span))
  8019. (if org-agenda-follow-mode " Follow" "")
  8020. (if org-agenda-entry-text-mode " ETxt" "")
  8021. (if org-agenda-include-diary " Diary" "")
  8022. (if org-agenda-include-deadlines " Ddl" "")
  8023. (if org-agenda-use-time-grid " Grid" "")
  8024. (if (and (boundp 'org-habit-show-habits)
  8025. org-habit-show-habits) " Habit" "")
  8026. (cond
  8027. ((consp org-agenda-show-log) " LogAll")
  8028. ((eq org-agenda-show-log 'clockcheck) " ClkCk")
  8029. (org-agenda-show-log " Log")
  8030. (t ""))
  8031. (if (org-agenda-filter-any) " " "")
  8032. (if (or org-agenda-category-filter
  8033. (get 'org-agenda-category-filter :preset-filter))
  8034. '(:eval (propertize
  8035. (concat "["
  8036. (mapconcat
  8037. 'identity
  8038. (append
  8039. (get 'org-agenda-category-filter :preset-filter)
  8040. org-agenda-category-filter)
  8041. "")
  8042. "]")
  8043. 'face 'org-agenda-filter-category
  8044. 'help-echo "Category used in filtering")) "")
  8045. (if (or org-agenda-tag-filter
  8046. (get 'org-agenda-tag-filter :preset-filter))
  8047. '(:eval (propertize
  8048. (concat (mapconcat
  8049. 'identity
  8050. (append
  8051. (get 'org-agenda-tag-filter :preset-filter)
  8052. org-agenda-tag-filter)
  8053. ""))
  8054. 'face 'org-agenda-filter-tags
  8055. 'help-echo "Tags used in filtering")) "")
  8056. (if (or org-agenda-effort-filter
  8057. (get 'org-agenda-effort-filter :preset-filter))
  8058. '(:eval (propertize
  8059. (concat (mapconcat
  8060. 'identity
  8061. (append
  8062. (get 'org-agenda-effort-filter :preset-filter)
  8063. org-agenda-effort-filter)
  8064. ""))
  8065. 'face 'org-agenda-filter-effort
  8066. 'help-echo "Effort conditions used in filtering")) "")
  8067. (if (or org-agenda-regexp-filter
  8068. (get 'org-agenda-regexp-filter :preset-filter))
  8069. '(:eval (propertize
  8070. (concat (mapconcat
  8071. (lambda (x) (concat (substring x 0 1) "/" (substring x 1) "/"))
  8072. (append
  8073. (get 'org-agenda-regexp-filter :preset-filter)
  8074. org-agenda-regexp-filter)
  8075. ""))
  8076. 'face 'org-agenda-filter-regexp
  8077. 'help-echo "Regexp used in filtering")) "")
  8078. (if org-agenda-archives-mode
  8079. (if (eq org-agenda-archives-mode t)
  8080. " Archives"
  8081. (format " :%s:" org-archive-tag))
  8082. "")
  8083. (if org-agenda-clockreport-mode " Clock" "")))
  8084. (force-mode-line-update))
  8085. (defun org-agenda-update-agenda-type ()
  8086. "Update the agenda type after each command."
  8087. (setq org-agenda-type
  8088. (or (get-text-property (point) 'org-agenda-type)
  8089. (get-text-property (max (point-min) (1- (point))) 'org-agenda-type))))
  8090. (defun org-agenda-next-line ()
  8091. "Move cursor to the next line, and show if follow mode is active."
  8092. (interactive)
  8093. (call-interactively 'next-line)
  8094. (org-agenda-do-context-action))
  8095. (defun org-agenda-previous-line ()
  8096. "Move cursor to the previous line, and show if follow-mode is active."
  8097. (interactive)
  8098. (call-interactively 'previous-line)
  8099. (org-agenda-do-context-action))
  8100. (defun org-agenda-next-item (n)
  8101. "Move cursor to next agenda item."
  8102. (interactive "p")
  8103. (let ((col (current-column)))
  8104. (dotimes (c n)
  8105. (when (next-single-property-change (point-at-eol) 'org-marker)
  8106. (move-end-of-line 1)
  8107. (goto-char (next-single-property-change (point) 'org-marker))))
  8108. (org-move-to-column col))
  8109. (org-agenda-do-context-action))
  8110. (defun org-agenda-previous-item (n)
  8111. "Move cursor to next agenda item."
  8112. (interactive "p")
  8113. (dotimes (c n)
  8114. (let ((col (current-column))
  8115. (goto (save-excursion
  8116. (move-end-of-line 0)
  8117. (previous-single-property-change (point) 'org-marker))))
  8118. (when goto (goto-char goto))
  8119. (org-move-to-column col)))
  8120. (org-agenda-do-context-action))
  8121. (defun org-agenda-do-context-action ()
  8122. "Show outline path and, maybe, follow mode window."
  8123. (let ((m (org-get-at-bol 'org-marker)))
  8124. (when (and (markerp m) (marker-buffer m))
  8125. (and org-agenda-follow-mode
  8126. (if org-agenda-follow-indirect
  8127. (org-agenda-tree-to-indirect-buffer nil)
  8128. (org-agenda-show)))
  8129. (and org-agenda-show-outline-path
  8130. (org-with-point-at m (org-display-outline-path t))))))
  8131. (defun org-agenda-show-tags ()
  8132. "Show the tags applicable to the current item."
  8133. (interactive)
  8134. (let* ((tags (org-get-at-bol 'tags)))
  8135. (if tags
  8136. (message "Tags are :%s:"
  8137. (org-no-properties (mapconcat 'identity tags ":")))
  8138. (message "No tags associated with this line"))))
  8139. (defun org-agenda-goto (&optional highlight)
  8140. "Go to the entry at point in the corresponding Org file."
  8141. (interactive)
  8142. (let* ((marker (or (org-get-at-bol 'org-marker)
  8143. (org-agenda-error)))
  8144. (buffer (marker-buffer marker))
  8145. (pos (marker-position marker)))
  8146. ;; FIXME: use `org-switch-to-buffer-other-window'?
  8147. (switch-to-buffer-other-window buffer)
  8148. (widen)
  8149. (push-mark)
  8150. (goto-char pos)
  8151. (when (derived-mode-p 'org-mode)
  8152. (org-show-context 'agenda)
  8153. (recenter (/ (window-height) 2))
  8154. (org-back-to-heading t)
  8155. (let ((case-fold-search nil))
  8156. (when (re-search-forward org-complex-heading-regexp nil t)
  8157. (goto-char (match-beginning 4)))))
  8158. (run-hooks 'org-agenda-after-show-hook)
  8159. (and highlight (org-highlight (point-at-bol) (point-at-eol)))))
  8160. (defvar org-agenda-after-show-hook nil
  8161. "Normal hook run after an item has been shown from the agenda.
  8162. Point is in the buffer where the item originated.")
  8163. ;; Defined later in org-agenda.el
  8164. (defvar org-agenda-loop-over-headlines-in-active-region nil)
  8165. (defun org-agenda-do-in-region (beg end cmd &optional arg force-arg delete)
  8166. "Between region BEG and END, call agenda command CMD.
  8167. When optional argument ARG is non-nil or FORCE-ARG is `t', pass
  8168. ARG to CMD. When optional argument DELETE is non-nil, assume CMD
  8169. deletes the agenda entry and don't move to the next entry."
  8170. (save-excursion
  8171. (goto-char beg)
  8172. (let ((mend (move-marker (make-marker) end))
  8173. (all (eq org-agenda-loop-over-headlines-in-active-region t))
  8174. (match (and (stringp org-agenda-loop-over-headlines-in-active-region)
  8175. org-agenda-loop-over-headlines-in-active-region))
  8176. (level (and (eq org-agenda-loop-over-headlines-in-active-region 'start-level)
  8177. (org-get-at-bol 'level))))
  8178. (while (< (point) mend)
  8179. (let ((ov (make-overlay (point) (point-at-eol))))
  8180. (if (not (or all
  8181. (and match (looking-at-p match))
  8182. (eq level (org-get-at-bol 'level))))
  8183. (org-agenda-next-item 1)
  8184. (overlay-put ov 'face 'region)
  8185. (if (or arg force-arg) (funcall cmd arg) (funcall cmd))
  8186. (when (not delete) (org-agenda-next-item 1))
  8187. (delete-overlay ov)))))))
  8188. ;; org-agenda-[schedule,deadline,date-prompt,todo,[toggle]archive*,
  8189. ;; kill,set-property,set-effort] commands may loop over agenda
  8190. ;; entries. Commands `org-agenda-set-tags' and `org-agenda-bulk-mark'
  8191. ;; use their own mechanisms on active regions.
  8192. (defmacro org-agenda-maybe-loop (cmd arg force-arg delete &rest body)
  8193. "Maybe loop over agenda entries and perform CMD.
  8194. Pass ARG, FORCE-ARG, DELETE and BODY to `org-agenda-do-in-region'."
  8195. (declare (debug t))
  8196. `(if (and (called-interactively-p 'any)
  8197. org-agenda-loop-over-headlines-in-active-region
  8198. (org-region-active-p))
  8199. (org-agenda-do-in-region
  8200. (region-beginning) (region-end) ,cmd ,arg ,force-arg ,delete)
  8201. ,@body))
  8202. (defun org-agenda-kill ()
  8203. "Kill the entry or subtree belonging to the current agenda entry."
  8204. (interactive)
  8205. (or (eq major-mode 'org-agenda-mode) (user-error "Not in agenda"))
  8206. (org-agenda-maybe-loop
  8207. #'org-agenda-kill nil nil t
  8208. (let* ((bufname-orig (buffer-name))
  8209. (marker (or (org-get-at-bol 'org-marker)
  8210. (org-agenda-error)))
  8211. (buffer (marker-buffer marker))
  8212. (pos (marker-position marker))
  8213. (type (org-get-at-bol 'type))
  8214. dbeg dend (n 0))
  8215. (org-with-remote-undo buffer
  8216. (with-current-buffer buffer
  8217. (save-excursion
  8218. (goto-char pos)
  8219. (if (and (derived-mode-p 'org-mode) (not (member type '("sexp"))))
  8220. (setq dbeg (progn (org-back-to-heading t) (point))
  8221. dend (org-end-of-subtree t t))
  8222. (setq dbeg (point-at-bol)
  8223. dend (min (point-max) (1+ (point-at-eol)))))
  8224. (goto-char dbeg)
  8225. (while (re-search-forward "^[ \t]*\\S-" dend t) (setq n (1+ n)))))
  8226. (when (or (eq t org-agenda-confirm-kill)
  8227. (and (numberp org-agenda-confirm-kill)
  8228. (> n org-agenda-confirm-kill)))
  8229. (let ((win-conf (current-window-configuration)))
  8230. (unwind-protect
  8231. (and
  8232. (prog2
  8233. (org-agenda-tree-to-indirect-buffer nil)
  8234. (not (y-or-n-p
  8235. (format "Delete entry with %d lines in buffer \"%s\"? "
  8236. n (buffer-name buffer))))
  8237. (kill-buffer org-last-indirect-buffer))
  8238. (error "Abort"))
  8239. (set-window-configuration win-conf))))
  8240. (let ((org-agenda-buffer-name bufname-orig))
  8241. (org-remove-subtree-entries-from-agenda buffer dbeg dend))
  8242. (with-current-buffer buffer (delete-region dbeg dend))
  8243. (message "Agenda item and source killed")))))
  8244. (defvar org-archive-default-command) ; defined in org-archive.el
  8245. (defun org-agenda-archive-default ()
  8246. "Archive the entry or subtree belonging to the current agenda entry."
  8247. (interactive)
  8248. (require 'org-archive)
  8249. (funcall-interactively
  8250. #'org-agenda-archive-with org-archive-default-command))
  8251. (defun org-agenda-archive-default-with-confirmation ()
  8252. "Archive the entry or subtree belonging to the current agenda entry."
  8253. (interactive)
  8254. (require 'org-archive)
  8255. (funcall-interactively
  8256. #'org-agenda-archive-with org-archive-default-command 'confirm))
  8257. (defun org-agenda-archive ()
  8258. "Archive the entry or subtree belonging to the current agenda entry."
  8259. (interactive)
  8260. (funcall-interactively
  8261. #'org-agenda-archive-with 'org-archive-subtree))
  8262. (defun org-agenda-archive-to-archive-sibling ()
  8263. "Move the entry to the archive sibling."
  8264. (interactive)
  8265. (funcall-interactively
  8266. #'org-agenda-archive-with 'org-archive-to-archive-sibling))
  8267. (defun org-agenda-archive-with (cmd &optional confirm)
  8268. "Move the entry to the archive sibling."
  8269. (interactive)
  8270. (or (eq major-mode 'org-agenda-mode) (user-error "Not in agenda"))
  8271. (org-agenda-maybe-loop
  8272. #'org-agenda-archive-with cmd nil t
  8273. (let* ((bufname-orig (buffer-name))
  8274. (marker (or (org-get-at-bol 'org-marker)
  8275. (org-agenda-error)))
  8276. (buffer (marker-buffer marker))
  8277. (pos (marker-position marker)))
  8278. (org-with-remote-undo buffer
  8279. (with-current-buffer buffer
  8280. (if (derived-mode-p 'org-mode)
  8281. (if (and confirm
  8282. (not (y-or-n-p "Archive this subtree or entry? ")))
  8283. (error "Abort")
  8284. (save-window-excursion
  8285. (goto-char pos)
  8286. (let ((org-agenda-buffer-name bufname-orig))
  8287. (org-remove-subtree-entries-from-agenda))
  8288. (org-back-to-heading t)
  8289. (let ((org-archive-from-agenda t))
  8290. (funcall cmd))))
  8291. (error "Archiving works only in Org files")))))))
  8292. (defun org-remove-subtree-entries-from-agenda (&optional buf beg end)
  8293. "Remove all lines in the agenda that correspond to a given subtree.
  8294. The subtree is the one in buffer BUF, starting at BEG and ending at END.
  8295. If this information is not given, the function uses the tree at point."
  8296. (let ((buf (or buf (current-buffer))) m p)
  8297. (save-excursion
  8298. (unless (and beg end)
  8299. (org-back-to-heading t)
  8300. (setq beg (point))
  8301. (org-end-of-subtree t)
  8302. (setq end (point)))
  8303. (set-buffer (get-buffer org-agenda-buffer-name))
  8304. (save-excursion
  8305. (goto-char (point-max))
  8306. (beginning-of-line 1)
  8307. (while (not (bobp))
  8308. (when (and (setq m (org-get-at-bol 'org-marker))
  8309. (equal buf (marker-buffer m))
  8310. (setq p (marker-position m))
  8311. (>= p beg)
  8312. (< p end))
  8313. (let ((inhibit-read-only t))
  8314. (delete-region (point-at-bol) (1+ (point-at-eol)))))
  8315. (beginning-of-line 0))))))
  8316. (defun org-agenda-refile (&optional goto rfloc no-update)
  8317. "Refile the item at point.
  8318. When called with `\\[universal-argument] \\[universal-argument]', \
  8319. go to the location of the last
  8320. refiled item.
  8321. When called with `\\[universal-argument] \\[universal-argument] \
  8322. \\[universal-argument]' prefix or when GOTO is 0, clear
  8323. the refile cache.
  8324. RFLOC can be a refile location obtained in a different way.
  8325. When NO-UPDATE is non-nil, don't redo the agenda buffer."
  8326. (interactive "P")
  8327. (cond
  8328. ((member goto '(0 (64)))
  8329. (org-refile-cache-clear))
  8330. ((equal goto '(16))
  8331. (org-refile-goto-last-stored))
  8332. (t
  8333. (let* ((buffer-orig (buffer-name))
  8334. (marker (or (org-get-at-bol 'org-hd-marker)
  8335. (org-agenda-error)))
  8336. (buffer (marker-buffer marker))
  8337. (pos (marker-position marker))
  8338. (rfloc (or rfloc
  8339. (org-refile-get-location
  8340. (if goto "Goto" "Refile to") buffer
  8341. org-refile-allow-creating-parent-nodes))))
  8342. (with-current-buffer buffer
  8343. (org-with-wide-buffer
  8344. (goto-char marker)
  8345. (let ((org-agenda-buffer-name buffer-orig))
  8346. (org-remove-subtree-entries-from-agenda))
  8347. (org-refile goto buffer rfloc))))
  8348. (unless no-update (org-agenda-redo)))))
  8349. (defun org-agenda-open-link (&optional arg)
  8350. "Open the link(s) in the current entry, if any.
  8351. This looks for a link in the displayed line in the agenda.
  8352. It also looks at the text of the entry itself."
  8353. (interactive "P")
  8354. (let* ((marker (or (org-get-at-bol 'org-hd-marker)
  8355. (org-get-at-bol 'org-marker)))
  8356. (buffer (and marker (marker-buffer marker)))
  8357. (prefix (buffer-substring (point-at-bol) (point-at-eol)))
  8358. (lkall (and buffer (org-offer-links-in-entry
  8359. buffer marker arg prefix)))
  8360. (lk0 (car lkall))
  8361. (lk (if (stringp lk0) (list lk0) lk0))
  8362. (lkend (cdr lkall))
  8363. trg)
  8364. (cond
  8365. ((and buffer lk)
  8366. (mapcar (lambda(l)
  8367. (with-current-buffer buffer
  8368. (setq trg (and (string-match org-link-bracket-re l)
  8369. (match-string 1 l)))
  8370. (if (or (not trg) (string-match org-link-any-re trg))
  8371. ;; Don't use `org-with-wide-buffer' here as
  8372. ;; opening the link may result in moving the point
  8373. (save-restriction
  8374. (widen)
  8375. (goto-char marker)
  8376. (when (search-forward l nil lkend)
  8377. (goto-char (match-beginning 0))
  8378. (org-open-at-point)))
  8379. ;; This is an internal link, widen the buffer
  8380. ;; FIXME: use `org-switch-to-buffer-other-window'?
  8381. (switch-to-buffer-other-window buffer)
  8382. (widen)
  8383. (goto-char marker)
  8384. (when (search-forward l nil lkend)
  8385. (goto-char (match-beginning 0))
  8386. (org-open-at-point)))))
  8387. lk))
  8388. ((or (org-in-regexp (concat "\\(" org-link-bracket-re "\\)"))
  8389. (save-excursion
  8390. (beginning-of-line 1)
  8391. (looking-at (concat ".*?\\(" org-link-bracket-re "\\)"))))
  8392. (org-link-open-from-string (match-string 1)))
  8393. (t (message "No link to open here")))))
  8394. (defun org-agenda-copy-local-variable (var)
  8395. "Get a variable from a referenced buffer and install it here."
  8396. (let ((m (org-get-at-bol 'org-marker)))
  8397. (when (and m (buffer-live-p (marker-buffer m)))
  8398. (set (make-local-variable var)
  8399. (with-current-buffer (marker-buffer m)
  8400. (symbol-value var))))))
  8401. (defun org-agenda-switch-to (&optional delete-other-windows)
  8402. "Go to the Org mode file which contains the item at point.
  8403. When optional argument DELETE-OTHER-WINDOWS is non-nil, the
  8404. displayed Org file fills the frame."
  8405. (interactive)
  8406. (if (and org-return-follows-link
  8407. (not (org-get-at-bol 'org-marker))
  8408. (org-in-regexp org-link-bracket-re))
  8409. (org-link-open-from-string (match-string 0))
  8410. (let* ((marker (or (org-get-at-bol 'org-marker)
  8411. (org-agenda-error)))
  8412. (buffer (marker-buffer marker))
  8413. (pos (marker-position marker)))
  8414. (unless buffer (user-error "Trying to switch to non-existent buffer"))
  8415. (pop-to-buffer-same-window buffer)
  8416. (when delete-other-windows (delete-other-windows))
  8417. (widen)
  8418. (goto-char pos)
  8419. (when (derived-mode-p 'org-mode)
  8420. (org-show-context 'agenda)
  8421. (run-hooks 'org-agenda-after-show-hook)))))
  8422. (defun org-agenda-goto-mouse (ev)
  8423. "Go to the Org file which contains the item at the mouse click."
  8424. (interactive "e")
  8425. (mouse-set-point ev)
  8426. (org-agenda-goto))
  8427. (defun org-agenda-show (&optional full-entry)
  8428. "Display the Org file which contains the item at point.
  8429. With prefix argument FULL-ENTRY, make the entire entry visible
  8430. if it was hidden in the outline."
  8431. (interactive "P")
  8432. (let ((win (selected-window)))
  8433. (org-agenda-goto t)
  8434. (when full-entry (org-show-entry))
  8435. (select-window win)))
  8436. (defvar org-agenda-show-window nil)
  8437. (defun org-agenda-show-and-scroll-up (&optional arg)
  8438. "Display the Org file which contains the item at point.
  8439. When called repeatedly, scroll the window that is displaying the buffer.
  8440. With a `\\[universal-argument]' prefix argument, display the item, but \
  8441. fold drawers."
  8442. (interactive "P")
  8443. (let ((win (selected-window)))
  8444. (if (and (window-live-p org-agenda-show-window)
  8445. (eq this-command last-command))
  8446. (progn
  8447. (select-window org-agenda-show-window)
  8448. (ignore-errors (scroll-up)))
  8449. (org-agenda-goto t)
  8450. (org-show-entry)
  8451. (if arg (org-cycle-hide-drawers 'children)
  8452. (org-with-wide-buffer
  8453. (narrow-to-region (org-entry-beginning-position)
  8454. (org-entry-end-position))
  8455. (org-show-all '(drawers))))
  8456. (setq org-agenda-show-window (selected-window)))
  8457. (select-window win)))
  8458. (defun org-agenda-show-scroll-down ()
  8459. "Scroll down the window showing the agenda."
  8460. (interactive)
  8461. (let ((win (selected-window)))
  8462. (when (window-live-p org-agenda-show-window)
  8463. (select-window org-agenda-show-window)
  8464. (ignore-errors (scroll-down))
  8465. (select-window win))))
  8466. (defun org-agenda-show-1 (&optional more)
  8467. "Display the Org file which contains the item at point.
  8468. The prefix arg selects the amount of information to display:
  8469. 0 hide the subtree
  8470. 1 just show the entry according to defaults.
  8471. 2 show the children view
  8472. 3 show the subtree view
  8473. 4 show the entire subtree and any LOGBOOK drawers
  8474. 5 show the entire subtree and any drawers
  8475. With prefix argument FULL-ENTRY, make the entire entry visible
  8476. if it was hidden in the outline."
  8477. (interactive "p")
  8478. (let ((win (selected-window)))
  8479. (org-agenda-goto t)
  8480. (org-back-to-heading)
  8481. (set-window-start (selected-window) (point-at-bol))
  8482. (cond
  8483. ((= more 0)
  8484. (org-flag-subtree t)
  8485. (save-excursion
  8486. (org-back-to-heading)
  8487. (run-hook-with-args 'org-cycle-hook 'folded))
  8488. (message "Remote: FOLDED"))
  8489. ((and (called-interactively-p 'any) (= more 1))
  8490. (message "Remote: show with default settings"))
  8491. ((= more 2)
  8492. (outline-show-entry)
  8493. (org-show-children)
  8494. (save-excursion
  8495. (org-back-to-heading)
  8496. (run-hook-with-args 'org-cycle-hook 'children))
  8497. (message "Remote: CHILDREN"))
  8498. ((= more 3)
  8499. (outline-show-subtree)
  8500. (save-excursion
  8501. (org-back-to-heading)
  8502. (run-hook-with-args 'org-cycle-hook 'subtree))
  8503. (message "Remote: SUBTREE"))
  8504. ((= more 4)
  8505. (outline-show-subtree)
  8506. (save-excursion
  8507. (org-back-to-heading)
  8508. (org-cycle-hide-drawers 'subtree '("LOGBOOK")))
  8509. (message "Remote: SUBTREE AND LOGBOOK"))
  8510. ((> more 4)
  8511. (outline-show-subtree)
  8512. (message "Remote: SUBTREE AND ALL DRAWERS")))
  8513. (select-window win)))
  8514. (defvar org-agenda-cycle-counter nil)
  8515. (defun org-agenda-cycle-show (&optional n)
  8516. "Show the current entry in another window, with default settings.
  8517. Default settings are taken from `org-show-context-detail'. When
  8518. use repeatedly in immediate succession, the remote entry will
  8519. cycle through visibility
  8520. children -> subtree -> folded
  8521. When called with a numeric prefix arg, that arg will be passed through to
  8522. `org-agenda-show-1'. For the interpretation of that argument, see the
  8523. docstring of `org-agenda-show-1'."
  8524. (interactive "P")
  8525. (if (integerp n)
  8526. (setq org-agenda-cycle-counter n)
  8527. (if (not (eq last-command this-command))
  8528. (setq org-agenda-cycle-counter 1)
  8529. (if (equal org-agenda-cycle-counter 0)
  8530. (setq org-agenda-cycle-counter 2)
  8531. (setq org-agenda-cycle-counter (1+ org-agenda-cycle-counter))
  8532. (when (> org-agenda-cycle-counter 3)
  8533. (setq org-agenda-cycle-counter 0)))))
  8534. (org-agenda-show-1 org-agenda-cycle-counter))
  8535. (defun org-agenda-recenter (arg)
  8536. "Display the Org file which contains the item at point and recenter."
  8537. (interactive "P")
  8538. (let ((win (selected-window)))
  8539. (org-agenda-goto t)
  8540. (recenter arg)
  8541. (select-window win)))
  8542. (defun org-agenda-show-mouse (ev)
  8543. "Display the Org file which contains the item at the mouse click."
  8544. (interactive "e")
  8545. (mouse-set-point ev)
  8546. (org-agenda-show))
  8547. (defun org-agenda-check-no-diary ()
  8548. "Check if the entry is a diary link and abort if yes."
  8549. (when (org-get-at-bol 'org-agenda-diary-link)
  8550. (org-agenda-error)))
  8551. (defun org-agenda-error ()
  8552. "Throw an error when a command is not allowed in the agenda."
  8553. (user-error "Command not allowed in this line"))
  8554. (defun org-agenda-tree-to-indirect-buffer (arg)
  8555. "Show the subtree corresponding to the current entry in an indirect buffer.
  8556. This calls the command `org-tree-to-indirect-buffer' from the original buffer.
  8557. With a numerical prefix ARG, go up to this level and then take that tree.
  8558. With a negative numeric ARG, go up by this number of levels.
  8559. With a `\\[universal-argument]' prefix, make a separate frame for this tree, \
  8560. i.e. don't use
  8561. the dedicated frame."
  8562. (interactive "P")
  8563. (if current-prefix-arg
  8564. (org-agenda-do-tree-to-indirect-buffer arg)
  8565. (let ((agenda-buffer (buffer-name))
  8566. (agenda-window (selected-window))
  8567. (indirect-window
  8568. (and org-last-indirect-buffer
  8569. (get-buffer-window org-last-indirect-buffer))))
  8570. (save-window-excursion (org-agenda-do-tree-to-indirect-buffer arg))
  8571. (unless (or (eq org-indirect-buffer-display 'new-frame)
  8572. (eq org-indirect-buffer-display 'dedicated-frame))
  8573. (unwind-protect
  8574. (unless (and indirect-window (window-live-p indirect-window))
  8575. (setq indirect-window (split-window agenda-window)))
  8576. (and indirect-window (select-window indirect-window))
  8577. (switch-to-buffer org-last-indirect-buffer :norecord)
  8578. (fit-window-to-buffer indirect-window)))
  8579. (select-window (get-buffer-window agenda-buffer))
  8580. (setq org-agenda-last-indirect-buffer org-last-indirect-buffer))))
  8581. (defun org-agenda-do-tree-to-indirect-buffer (arg)
  8582. "Same as `org-agenda-tree-to-indirect-buffer' without saving window."
  8583. (org-agenda-check-no-diary)
  8584. (let* ((marker (or (org-get-at-bol 'org-marker)
  8585. (org-agenda-error)))
  8586. (buffer (marker-buffer marker))
  8587. (pos (marker-position marker)))
  8588. (with-current-buffer buffer
  8589. (save-excursion
  8590. (goto-char pos)
  8591. (org-tree-to-indirect-buffer arg)))))
  8592. (defvar org-last-heading-marker (make-marker)
  8593. "Marker pointing to the headline that last changed its TODO state
  8594. by a remote command from the agenda.")
  8595. (defun org-agenda-todo-nextset ()
  8596. "Switch TODO entry to next sequence."
  8597. (interactive)
  8598. (org-agenda-todo 'nextset))
  8599. (defun org-agenda-todo-previousset ()
  8600. "Switch TODO entry to previous sequence."
  8601. (interactive)
  8602. (org-agenda-todo 'previousset))
  8603. (defun org-agenda-todo (&optional arg)
  8604. "Cycle TODO state of line at point, also in Org file.
  8605. This changes the line at point, all other lines in the agenda referring to
  8606. the same tree node, and the headline of the tree node in the Org file."
  8607. (interactive "P")
  8608. (org-agenda-check-no-diary)
  8609. (org-agenda-maybe-loop
  8610. #'org-agenda-todo arg nil nil
  8611. (let* ((col (current-column))
  8612. (marker (or (org-get-at-bol 'org-marker)
  8613. (org-agenda-error)))
  8614. (buffer (marker-buffer marker))
  8615. (pos (marker-position marker))
  8616. (hdmarker (org-get-at-bol 'org-hd-marker))
  8617. (todayp (org-agenda-today-p (org-get-at-bol 'day)))
  8618. (inhibit-read-only t)
  8619. org-loop-over-headlines-in-active-region
  8620. org-agenda-headline-snapshot-before-repeat newhead just-one)
  8621. (org-with-remote-undo buffer
  8622. (with-current-buffer buffer
  8623. (widen)
  8624. (goto-char pos)
  8625. (org-show-context 'agenda)
  8626. (let ((current-prefix-arg arg))
  8627. (call-interactively 'org-todo))
  8628. (and (bolp) (forward-char 1))
  8629. (setq newhead (org-get-heading))
  8630. (when (and (bound-and-true-p
  8631. org-agenda-headline-snapshot-before-repeat)
  8632. (not (equal org-agenda-headline-snapshot-before-repeat
  8633. newhead))
  8634. todayp)
  8635. (setq newhead org-agenda-headline-snapshot-before-repeat
  8636. just-one t))
  8637. (save-excursion
  8638. (org-back-to-heading)
  8639. (move-marker org-last-heading-marker (point))))
  8640. (beginning-of-line 1)
  8641. (save-window-excursion
  8642. (org-agenda-change-all-lines newhead hdmarker 'fixface just-one))
  8643. (when (bound-and-true-p org-clock-out-when-done)
  8644. (string-match (concat "^" (regexp-opt org-done-keywords-for-agenda))
  8645. newhead)
  8646. (org-agenda-unmark-clocking-task))
  8647. (org-move-to-column col)
  8648. (org-agenda-mark-clocking-task)))))
  8649. (defun org-agenda-add-note (&optional arg)
  8650. "Add a time-stamped note to the entry at point."
  8651. (interactive "P")
  8652. (org-agenda-check-no-diary)
  8653. (let* ((marker (or (org-get-at-bol 'org-marker)
  8654. (org-agenda-error)))
  8655. (buffer (marker-buffer marker))
  8656. (pos (marker-position marker))
  8657. (hdmarker (org-get-at-bol 'org-hd-marker))
  8658. (inhibit-read-only t))
  8659. (with-current-buffer buffer
  8660. (widen)
  8661. (goto-char pos)
  8662. (org-show-context 'agenda)
  8663. (org-add-note))))
  8664. (defun org-agenda-change-all-lines (newhead hdmarker
  8665. &optional fixface just-this)
  8666. "Change all lines in the agenda buffer which match HDMARKER.
  8667. The new content of the line will be NEWHEAD (as modified by
  8668. `org-agenda-format-item'). HDMARKER is checked with
  8669. `equal' against all `org-hd-marker' text properties in the file.
  8670. If FIXFACE is non-nil, the face of each item is modified according to
  8671. the new TODO state.
  8672. If JUST-THIS is non-nil, change just the current line, not all.
  8673. If FORCE-TAGS is non-nil, the car of it returns the new tags."
  8674. (let* ((inhibit-read-only t)
  8675. (line (org-current-line))
  8676. (org-agenda-buffer (current-buffer))
  8677. (thetags (with-current-buffer (marker-buffer hdmarker)
  8678. (org-get-tags hdmarker)))
  8679. props m pl undone-face done-face finish new dotime level cat tags)
  8680. (save-excursion
  8681. (goto-char (point-max))
  8682. (beginning-of-line 1)
  8683. (while (not finish)
  8684. (setq finish (bobp))
  8685. (when (and (setq m (org-get-at-bol 'org-hd-marker))
  8686. (or (not just-this) (= (org-current-line) line))
  8687. (equal m hdmarker))
  8688. (setq props (text-properties-at (point))
  8689. dotime (org-get-at-bol 'dotime)
  8690. cat (org-agenda-get-category)
  8691. level (org-get-at-bol 'level)
  8692. tags thetags
  8693. new
  8694. (let ((org-prefix-format-compiled
  8695. (or (get-text-property (min (1- (point-max)) (point)) 'format)
  8696. org-prefix-format-compiled))
  8697. (extra (org-get-at-bol 'extra)))
  8698. (with-current-buffer (marker-buffer hdmarker)
  8699. (org-with-wide-buffer
  8700. (org-agenda-format-item extra newhead level cat tags dotime))))
  8701. pl (text-property-any (point-at-bol) (point-at-eol) 'org-heading t)
  8702. undone-face (org-get-at-bol 'undone-face)
  8703. done-face (org-get-at-bol 'done-face))
  8704. (beginning-of-line 1)
  8705. (cond
  8706. ((equal new "") (delete-region (point) (line-beginning-position 2)))
  8707. ((looking-at ".*")
  8708. ;; When replacing the whole line, preserve bulk mark
  8709. ;; overlay, if any.
  8710. (let ((mark (catch :overlay
  8711. (dolist (o (overlays-in (point) (+ 2 (point))))
  8712. (when (eq (overlay-get o 'type)
  8713. 'org-marked-entry-overlay)
  8714. (throw :overlay o))))))
  8715. (replace-match new t t)
  8716. (beginning-of-line)
  8717. (when mark (move-overlay mark (point) (+ 2 (point)))))
  8718. (add-text-properties (point-at-bol) (point-at-eol) props)
  8719. (when fixface
  8720. (add-text-properties
  8721. (point-at-bol) (point-at-eol)
  8722. (list 'face
  8723. (if org-last-todo-state-is-todo
  8724. undone-face done-face))))
  8725. (org-agenda-highlight-todo 'line)
  8726. (beginning-of-line 1))
  8727. (t (error "Line update did not work")))
  8728. (save-restriction
  8729. (narrow-to-region (point-at-bol) (point-at-eol))
  8730. (org-agenda-finalize)))
  8731. (beginning-of-line 0)))))
  8732. (defun org-agenda-align-tags (&optional line)
  8733. "Align all tags in agenda items to `org-agenda-tags-column'.
  8734. When optional argument LINE is non-nil, align tags only on the
  8735. current line."
  8736. (let ((inhibit-read-only t)
  8737. (org-agenda-tags-column (if (eq 'auto org-agenda-tags-column)
  8738. (- (window-text-width))
  8739. org-agenda-tags-column))
  8740. (end (and line (line-end-position)))
  8741. l c)
  8742. (save-excursion
  8743. (goto-char (if line (line-beginning-position) (point-min)))
  8744. (while (re-search-forward org-tag-group-re end t)
  8745. (add-text-properties
  8746. (match-beginning 1) (match-end 1)
  8747. (list 'face (delq nil (let ((prop (get-text-property
  8748. (match-beginning 1) 'face)))
  8749. (or (listp prop) (setq prop (list prop)))
  8750. (if (memq 'org-tag prop)
  8751. prop
  8752. (cons 'org-tag prop))))))
  8753. (setq l (string-width (match-string 1))
  8754. c (if (< org-agenda-tags-column 0)
  8755. (- (abs org-agenda-tags-column) l)
  8756. org-agenda-tags-column))
  8757. (goto-char (match-beginning 1))
  8758. (delete-region (save-excursion (skip-chars-backward " \t") (point))
  8759. (point))
  8760. (insert (org-add-props
  8761. (make-string (max 1 (- c (current-column))) ?\s)
  8762. (plist-put (copy-sequence (text-properties-at (point)))
  8763. 'face nil))))
  8764. (goto-char (point-min))
  8765. (org-font-lock-add-tag-faces (point-max)))))
  8766. (defun org-agenda-priority-up ()
  8767. "Increase the priority of line at point, also in Org file."
  8768. (interactive)
  8769. (org-agenda-priority 'up))
  8770. (defun org-agenda-priority-down ()
  8771. "Decrease the priority of line at point, also in Org file."
  8772. (interactive)
  8773. (org-agenda-priority 'down))
  8774. (defun org-agenda-priority (&optional force-direction)
  8775. "Set the priority of line at point, also in Org file.
  8776. This changes the line at point, all other lines in the agenda referring to
  8777. the same tree node, and the headline of the tree node in the Org file.
  8778. Called with a universal prefix arg, show the priority instead of setting it."
  8779. (interactive "P")
  8780. (if (equal force-direction '(4))
  8781. (org-priority-show)
  8782. (unless org-priority-enable-commands
  8783. (user-error "Priority commands are disabled"))
  8784. (org-agenda-check-no-diary)
  8785. (let* ((col (current-column))
  8786. (marker (or (org-get-at-bol 'org-marker)
  8787. (org-agenda-error)))
  8788. (hdmarker (org-get-at-bol 'org-hd-marker))
  8789. (buffer (marker-buffer hdmarker))
  8790. (pos (marker-position hdmarker))
  8791. (inhibit-read-only t)
  8792. newhead)
  8793. (org-with-remote-undo buffer
  8794. (with-current-buffer buffer
  8795. (widen)
  8796. (goto-char pos)
  8797. (org-show-context 'agenda)
  8798. (org-priority force-direction)
  8799. (end-of-line 1)
  8800. (setq newhead (org-get-heading)))
  8801. (org-agenda-change-all-lines newhead hdmarker)
  8802. (org-move-to-column col)))))
  8803. ;; FIXME: should fix the tags property of the agenda line.
  8804. (defun org-agenda-set-tags (&optional tag onoff)
  8805. "Set tags for the current headline."
  8806. (interactive)
  8807. (org-agenda-check-no-diary)
  8808. (if (and (org-region-active-p) (called-interactively-p 'any))
  8809. (call-interactively 'org-change-tag-in-region)
  8810. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8811. (org-agenda-error)))
  8812. (buffer (marker-buffer hdmarker))
  8813. (pos (marker-position hdmarker))
  8814. (inhibit-read-only t)
  8815. newhead)
  8816. (org-with-remote-undo buffer
  8817. (with-current-buffer buffer
  8818. (widen)
  8819. (goto-char pos)
  8820. (org-show-context 'agenda)
  8821. (if tag
  8822. (org-toggle-tag tag onoff)
  8823. (call-interactively #'org-set-tags-command))
  8824. (end-of-line 1)
  8825. (setq newhead (org-get-heading)))
  8826. (org-agenda-change-all-lines newhead hdmarker)
  8827. (beginning-of-line 1)))))
  8828. (defun org-agenda-set-property ()
  8829. "Set a property for the current headline."
  8830. (interactive)
  8831. (org-agenda-check-no-diary)
  8832. (org-agenda-maybe-loop
  8833. #'org-agenda-set-property nil nil nil
  8834. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8835. (org-agenda-error)))
  8836. (buffer (marker-buffer hdmarker))
  8837. (pos (marker-position hdmarker))
  8838. (inhibit-read-only t)
  8839. newhead)
  8840. (org-with-remote-undo buffer
  8841. (with-current-buffer buffer
  8842. (widen)
  8843. (goto-char pos)
  8844. (org-show-context 'agenda)
  8845. (call-interactively 'org-set-property))))))
  8846. (defun org-agenda-set-effort ()
  8847. "Set the effort property for the current headline."
  8848. (interactive)
  8849. (org-agenda-check-no-diary)
  8850. (org-agenda-maybe-loop
  8851. #'org-agenda-set-effort nil nil nil
  8852. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8853. (org-agenda-error)))
  8854. (buffer (marker-buffer hdmarker))
  8855. (pos (marker-position hdmarker))
  8856. (inhibit-read-only t)
  8857. newhead)
  8858. (org-with-remote-undo buffer
  8859. (with-current-buffer buffer
  8860. (widen)
  8861. (goto-char pos)
  8862. (org-show-context 'agenda)
  8863. (call-interactively 'org-set-effort)
  8864. (end-of-line 1)
  8865. (setq newhead (org-get-heading)))
  8866. (org-agenda-change-all-lines newhead hdmarker)))))
  8867. (defun org-agenda-toggle-archive-tag ()
  8868. "Toggle the archive tag for the current entry."
  8869. (interactive)
  8870. (org-agenda-check-no-diary)
  8871. (org-agenda-maybe-loop
  8872. #'org-agenda-toggle-archive-tag nil nil nil
  8873. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8874. (org-agenda-error)))
  8875. (buffer (marker-buffer hdmarker))
  8876. (pos (marker-position hdmarker))
  8877. (inhibit-read-only t)
  8878. newhead)
  8879. (org-with-remote-undo buffer
  8880. (with-current-buffer buffer
  8881. (widen)
  8882. (goto-char pos)
  8883. (org-show-context 'agenda)
  8884. (call-interactively 'org-toggle-archive-tag)
  8885. (end-of-line 1)
  8886. (setq newhead (org-get-heading)))
  8887. (org-agenda-change-all-lines newhead hdmarker)
  8888. (beginning-of-line 1)))))
  8889. (defun org-agenda-do-date-later (arg)
  8890. (interactive "P")
  8891. (cond
  8892. ((or (equal arg '(16))
  8893. (memq last-command
  8894. '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
  8895. (setq this-command 'org-agenda-date-later-minutes)
  8896. (org-agenda-date-later-minutes 1))
  8897. ((or (equal arg '(4))
  8898. (memq last-command
  8899. '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
  8900. (setq this-command 'org-agenda-date-later-hours)
  8901. (org-agenda-date-later-hours 1))
  8902. (t
  8903. (org-agenda-date-later (prefix-numeric-value arg)))))
  8904. (defun org-agenda-do-date-earlier (arg)
  8905. (interactive "P")
  8906. (cond
  8907. ((or (equal arg '(16))
  8908. (memq last-command
  8909. '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
  8910. (setq this-command 'org-agenda-date-earlier-minutes)
  8911. (org-agenda-date-earlier-minutes 1))
  8912. ((or (equal arg '(4))
  8913. (memq last-command
  8914. '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
  8915. (setq this-command 'org-agenda-date-earlier-hours)
  8916. (org-agenda-date-earlier-hours 1))
  8917. (t
  8918. (org-agenda-date-earlier (prefix-numeric-value arg)))))
  8919. (defun org-agenda-date-later (arg &optional what)
  8920. "Change the date of this item to ARG day(s) later."
  8921. (interactive "p")
  8922. (org-agenda-check-type t 'agenda)
  8923. (org-agenda-check-no-diary)
  8924. (let* ((marker (or (org-get-at-bol 'org-marker)
  8925. (org-agenda-error)))
  8926. (buffer (marker-buffer marker))
  8927. (pos (marker-position marker))
  8928. cdate today)
  8929. (org-with-remote-undo buffer
  8930. (with-current-buffer buffer
  8931. (widen)
  8932. (goto-char pos)
  8933. (unless (org-at-timestamp-p 'lax) (error "Cannot find time stamp"))
  8934. (when (and org-agenda-move-date-from-past-immediately-to-today
  8935. (equal arg 1)
  8936. (or (not what) (eq what 'day))
  8937. (not (save-match-data (org-at-date-range-p))))
  8938. (setq cdate (org-parse-time-string (match-string 0) 'nodefault)
  8939. cdate (calendar-absolute-from-gregorian
  8940. (list (nth 4 cdate) (nth 3 cdate) (nth 5 cdate)))
  8941. today (org-today))
  8942. (when (> today cdate)
  8943. ;; immediately shift to today
  8944. (setq arg (- today cdate))))
  8945. (org-timestamp-change arg (or what 'day))
  8946. (when (and (org-at-date-range-p)
  8947. (re-search-backward org-tr-regexp-both (point-at-bol)))
  8948. (let ((end org-last-changed-timestamp))
  8949. (org-timestamp-change arg (or what 'day))
  8950. (setq org-last-changed-timestamp
  8951. (concat org-last-changed-timestamp "--" end)))))
  8952. (org-agenda-show-new-time marker org-last-changed-timestamp))
  8953. (message "Time stamp changed to %s" org-last-changed-timestamp)))
  8954. (defun org-agenda-date-earlier (arg &optional what)
  8955. "Change the date of this item to ARG day(s) earlier."
  8956. (interactive "p")
  8957. (org-agenda-date-later (- arg) what))
  8958. (defun org-agenda-date-later-minutes (arg)
  8959. "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
  8960. (interactive "p")
  8961. (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
  8962. (org-agenda-date-later arg 'minute))
  8963. (defun org-agenda-date-earlier-minutes (arg)
  8964. "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
  8965. (interactive "p")
  8966. (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
  8967. (org-agenda-date-earlier arg 'minute))
  8968. (defun org-agenda-date-later-hours (arg)
  8969. "Change the time of this item, in hour steps."
  8970. (interactive "p")
  8971. (org-agenda-date-later arg 'hour))
  8972. (defun org-agenda-date-earlier-hours (arg)
  8973. "Change the time of this item, in hour steps."
  8974. (interactive "p")
  8975. (org-agenda-date-earlier arg 'hour))
  8976. (defun org-agenda-show-new-time (marker stamp &optional prefix)
  8977. "Show new date stamp via text properties."
  8978. ;; We use text properties to make this undoable
  8979. (let ((inhibit-read-only t))
  8980. (setq stamp (concat prefix " => " stamp " "))
  8981. (save-excursion
  8982. (goto-char (point-max))
  8983. (while (not (bobp))
  8984. (when (equal marker (org-get-at-bol 'org-marker))
  8985. (remove-text-properties (line-beginning-position)
  8986. (line-end-position)
  8987. '(display nil))
  8988. (org-move-to-column
  8989. (- (/ (window-width nil t) (window-font-width)) (length stamp)) t)
  8990. (add-text-properties
  8991. (1- (point)) (point-at-eol)
  8992. (list 'display (org-add-props stamp nil
  8993. 'face '(secondary-selection default))))
  8994. (beginning-of-line 1))
  8995. (beginning-of-line 0)))))
  8996. (defun org-agenda-date-prompt (arg)
  8997. "Change the date of this item. Date is prompted for, with default today.
  8998. The prefix ARG is passed to the `org-time-stamp' command and can therefore
  8999. be used to request time specification in the time stamp."
  9000. (interactive "P")
  9001. (org-agenda-check-type t 'agenda)
  9002. (org-agenda-check-no-diary)
  9003. (org-agenda-maybe-loop
  9004. #'org-agenda-date-prompt arg t nil
  9005. (let* ((marker (or (org-get-at-bol 'org-marker)
  9006. (org-agenda-error)))
  9007. (buffer (marker-buffer marker))
  9008. (pos (marker-position marker)))
  9009. (org-with-remote-undo buffer
  9010. (with-current-buffer buffer
  9011. (widen)
  9012. (goto-char pos)
  9013. (unless (org-at-timestamp-p 'lax) (error "Cannot find time stamp"))
  9014. (org-time-stamp arg (equal (char-after (match-beginning 0)) ?\[)))
  9015. (org-agenda-show-new-time marker org-last-changed-timestamp))
  9016. (message "Time stamp changed to %s" org-last-changed-timestamp))))
  9017. (defun org-agenda-schedule (arg &optional time)
  9018. "Schedule the item at point.
  9019. ARG is passed through to `org-schedule'."
  9020. (interactive "P")
  9021. (org-agenda-check-type t 'agenda 'todo 'tags 'search)
  9022. (org-agenda-check-no-diary)
  9023. (org-agenda-maybe-loop
  9024. #'org-agenda-schedule arg t nil
  9025. (let* ((marker (or (org-get-at-bol 'org-marker)
  9026. (org-agenda-error)))
  9027. (type (marker-insertion-type marker))
  9028. (buffer (marker-buffer marker))
  9029. (pos (marker-position marker))
  9030. ts)
  9031. (set-marker-insertion-type marker t)
  9032. (org-with-remote-undo buffer
  9033. (with-current-buffer buffer
  9034. (widen)
  9035. (goto-char pos)
  9036. (setq ts (org-schedule arg time)))
  9037. (org-agenda-show-new-time marker ts " S"))
  9038. (message "%s" ts))))
  9039. (defun org-agenda-deadline (arg &optional time)
  9040. "Schedule the item at point.
  9041. ARG is passed through to `org-deadline'."
  9042. (interactive "P")
  9043. (org-agenda-check-type t 'agenda 'todo 'tags 'search)
  9044. (org-agenda-check-no-diary)
  9045. (org-agenda-maybe-loop
  9046. #'org-agenda-deadline arg t nil
  9047. (let* ((marker (or (org-get-at-bol 'org-marker)
  9048. (org-agenda-error)))
  9049. (buffer (marker-buffer marker))
  9050. (pos (marker-position marker))
  9051. ts)
  9052. (org-with-remote-undo buffer
  9053. (with-current-buffer buffer
  9054. (widen)
  9055. (goto-char pos)
  9056. (setq ts (org-deadline arg time)))
  9057. (org-agenda-show-new-time marker ts " D"))
  9058. (message "%s" ts))))
  9059. (defun org-agenda-clock-in (&optional arg)
  9060. "Start the clock on the currently selected item."
  9061. (interactive "P")
  9062. (org-agenda-check-no-diary)
  9063. (if (equal arg '(4))
  9064. (org-clock-in arg)
  9065. (let* ((marker (or (org-get-at-bol 'org-marker)
  9066. (org-agenda-error)))
  9067. (hdmarker (or (org-get-at-bol 'org-hd-marker) marker))
  9068. (pos (marker-position marker))
  9069. (col (current-column))
  9070. newhead)
  9071. (org-with-remote-undo (marker-buffer marker)
  9072. (with-current-buffer (marker-buffer marker)
  9073. (widen)
  9074. (goto-char pos)
  9075. (org-show-context 'agenda)
  9076. (org-clock-in arg)
  9077. (setq newhead (org-get-heading)))
  9078. (org-agenda-change-all-lines newhead hdmarker))
  9079. (org-move-to-column col))))
  9080. (defun org-agenda-clock-out ()
  9081. "Stop the currently running clock."
  9082. (interactive)
  9083. (unless (marker-buffer org-clock-marker)
  9084. (user-error "No running clock"))
  9085. (let ((marker (make-marker)) (col (current-column)) newhead)
  9086. (org-with-remote-undo (marker-buffer org-clock-marker)
  9087. (with-current-buffer (marker-buffer org-clock-marker)
  9088. (org-with-wide-buffer
  9089. (goto-char org-clock-marker)
  9090. (org-back-to-heading t)
  9091. (move-marker marker (point))
  9092. (org-clock-out)
  9093. (setq newhead (org-get-heading)))))
  9094. (org-agenda-change-all-lines newhead marker)
  9095. (move-marker marker nil)
  9096. (org-move-to-column col)
  9097. (org-agenda-unmark-clocking-task)))
  9098. (defun org-agenda-clock-cancel (&optional arg)
  9099. "Cancel the currently running clock."
  9100. (interactive "P")
  9101. (unless (marker-buffer org-clock-marker)
  9102. (user-error "No running clock"))
  9103. (org-with-remote-undo (marker-buffer org-clock-marker)
  9104. (org-clock-cancel)))
  9105. (defun org-agenda-clock-goto ()
  9106. "Jump to the currently clocked in task within the agenda.
  9107. If the currently clocked in task is not listed in the agenda
  9108. buffer, display it in another window."
  9109. (interactive)
  9110. (let (pos)
  9111. (mapc (lambda (o)
  9112. (when (eq (overlay-get o 'type) 'org-agenda-clocking)
  9113. (setq pos (overlay-start o))))
  9114. (overlays-in (point-min) (point-max)))
  9115. (cond (pos (goto-char pos))
  9116. ;; If the currently clocked entry is not in the agenda
  9117. ;; buffer, we visit it in another window:
  9118. ((bound-and-true-p org-clock-current-task)
  9119. (org-switch-to-buffer-other-window (org-clock-goto)))
  9120. (t (message "No running clock, use `C-c C-x C-j' to jump to the most recent one")))))
  9121. (defun org-agenda-diary-entry-in-org-file ()
  9122. "Make a diary entry in the file `org-agenda-diary-file'."
  9123. (let (d1 d2 char (text "") dp1 dp2)
  9124. (if (equal (buffer-name) "*Calendar*")
  9125. (setq d1 (calendar-cursor-to-date t)
  9126. d2 (car calendar-mark-ring))
  9127. (setq dp1 (get-text-property (point-at-bol) 'day))
  9128. (unless dp1 (user-error "No date defined in current line"))
  9129. (setq d1 (calendar-gregorian-from-absolute dp1)
  9130. d2 (and (ignore-errors (mark))
  9131. (save-excursion
  9132. (goto-char (mark))
  9133. (setq dp2 (get-text-property (point-at-bol) 'day)))
  9134. (calendar-gregorian-from-absolute dp2))))
  9135. (message "Diary entry: [d]ay [a]nniversary [b]lock [j]ump to date tree")
  9136. (setq char (read-char-exclusive))
  9137. (cond
  9138. ((equal char ?d)
  9139. (setq text (read-string "Day entry: "))
  9140. (org-agenda-add-entry-to-org-agenda-diary-file 'day text d1)
  9141. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  9142. ((equal char ?a)
  9143. (setq d1 (list (car d1) (nth 1 d1)
  9144. (read-number (format "Reference year [%d]: " (nth 2 d1))
  9145. (nth 2 d1))))
  9146. (setq text (read-string "Anniversary (use %d to show years): "))
  9147. (org-agenda-add-entry-to-org-agenda-diary-file 'anniversary text d1)
  9148. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  9149. ((equal char ?b)
  9150. (setq text (read-string "Block entry: "))
  9151. (unless (and d1 d2 (not (equal d1 d2)))
  9152. (user-error "No block of days selected"))
  9153. (org-agenda-add-entry-to-org-agenda-diary-file 'block text d1 d2)
  9154. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  9155. ((equal char ?j)
  9156. (org-switch-to-buffer-other-window
  9157. (find-file-noselect org-agenda-diary-file))
  9158. (require 'org-datetree)
  9159. (org-datetree-find-date-create d1)
  9160. (org-reveal t))
  9161. (t (user-error "Invalid selection character `%c'" char)))))
  9162. (defcustom org-agenda-insert-diary-strategy 'date-tree
  9163. "Where in `org-agenda-diary-file' should new entries be added?
  9164. Valid values:
  9165. date-tree in the date tree, as first child of the date
  9166. date-tree-last in the date tree, as last child of the date
  9167. top-level as top-level entries at the end of the file."
  9168. :group 'org-agenda
  9169. :type '(choice
  9170. (const :tag "first in a date tree" date-tree)
  9171. (const :tag "last in a date tree" date-tree-last)
  9172. (const :tag "as top level at end of file" top-level)))
  9173. (defcustom org-agenda-insert-diary-extract-time nil
  9174. "Non-nil means extract any time specification from the diary entry."
  9175. :group 'org-agenda
  9176. :version "24.1"
  9177. :type 'boolean)
  9178. (defcustom org-agenda-bulk-mark-char ">"
  9179. "A single-character string to be used as the bulk mark."
  9180. :group 'org-agenda
  9181. :version "24.1"
  9182. :type 'string)
  9183. (defun org-agenda-add-entry-to-org-agenda-diary-file (type text &optional d1 d2)
  9184. "Add a diary entry with TYPE to `org-agenda-diary-file'.
  9185. If TEXT is not empty, it will become the headline of the new entry, and
  9186. the resulting entry will not be shown. When TEXT is empty, switch to
  9187. `org-agenda-diary-file' and let the user finish the entry there."
  9188. (let ((cw (current-window-configuration)))
  9189. (org-switch-to-buffer-other-window
  9190. (find-file-noselect org-agenda-diary-file))
  9191. (widen)
  9192. (goto-char (point-min))
  9193. (cl-case type
  9194. (anniversary
  9195. (or (re-search-forward "^\\*[ \t]+Anniversaries" nil t)
  9196. (progn
  9197. (or (org-at-heading-p t)
  9198. (progn
  9199. (outline-next-heading)
  9200. (insert "* Anniversaries\n\n")
  9201. (beginning-of-line -1)))))
  9202. (outline-next-heading)
  9203. (org-back-over-empty-lines)
  9204. (backward-char 1)
  9205. (insert "\n")
  9206. (insert (format "%%%%(org-anniversary %d %2d %2d) %s"
  9207. (nth 2 d1) (car d1) (nth 1 d1) text)))
  9208. (day
  9209. (let ((org-prefix-has-time t)
  9210. (org-agenda-time-leading-zero t)
  9211. fmt time time2)
  9212. (when org-agenda-insert-diary-extract-time
  9213. ;; Use org-agenda-format-item to parse text for a time-range and
  9214. ;; remove it. FIXME: This is a hack, we should refactor
  9215. ;; that function to make time extraction available separately
  9216. (setq fmt (org-agenda-format-item nil text nil nil nil t)
  9217. time (get-text-property 0 'time fmt)
  9218. time2 (if (> (length time) 0)
  9219. ;; split-string removes trailing ...... if
  9220. ;; no end time given. First space
  9221. ;; separates time from date.
  9222. (concat " " (car (split-string time "\\.")))
  9223. nil)
  9224. text (get-text-property 0 'txt fmt)))
  9225. (if (eq org-agenda-insert-diary-strategy 'top-level)
  9226. (org-agenda-insert-diary-as-top-level text)
  9227. (require 'org-datetree)
  9228. (org-datetree-find-date-create d1)
  9229. (org-agenda-insert-diary-make-new-entry text))
  9230. (org-insert-time-stamp (org-time-from-absolute
  9231. (calendar-absolute-from-gregorian d1))
  9232. nil nil nil nil time2))
  9233. (end-of-line 0))
  9234. ((block) ;; Wrap this in (strictly unnecessary) parens because
  9235. ;; otherwise the indentation gets confused by the
  9236. ;; special meaning of 'block
  9237. (when (> (calendar-absolute-from-gregorian d1)
  9238. (calendar-absolute-from-gregorian d2))
  9239. (setq d1 (prog1 d2 (setq d2 d1))))
  9240. (if (eq org-agenda-insert-diary-strategy 'top-level)
  9241. (org-agenda-insert-diary-as-top-level text)
  9242. (require 'org-datetree)
  9243. (org-datetree-find-date-create d1)
  9244. (org-agenda-insert-diary-make-new-entry text))
  9245. (org-insert-time-stamp (org-time-from-absolute
  9246. (calendar-absolute-from-gregorian d1)))
  9247. (insert "--")
  9248. (org-insert-time-stamp (org-time-from-absolute
  9249. (calendar-absolute-from-gregorian d2)))
  9250. (end-of-line 0)))
  9251. (if (string-match "\\S-" text)
  9252. (progn
  9253. (set-window-configuration cw)
  9254. (message "%s entry added to %s"
  9255. (capitalize (symbol-name type))
  9256. (abbreviate-file-name org-agenda-diary-file)))
  9257. (org-reveal t)
  9258. (message "Please finish entry here"))))
  9259. (defun org-agenda-insert-diary-as-top-level (text)
  9260. "Make new entry as a top-level entry at the end of the file.
  9261. Add TEXT as headline, and position the cursor in the second line so that
  9262. a timestamp can be added there."
  9263. (widen)
  9264. (goto-char (point-max))
  9265. (unless (bolp) (insert "\n"))
  9266. (org-insert-heading nil t t)
  9267. (insert text)
  9268. (org-end-of-meta-data)
  9269. (unless (bolp) (insert "\n"))
  9270. (when org-adapt-indentation (indent-to-column 2)))
  9271. (defun org-agenda-insert-diary-make-new-entry (text)
  9272. "Make a new entry with TEXT as a child of the current subtree.
  9273. Position the point in the heading's first body line so that
  9274. a timestamp can be added there."
  9275. (cond
  9276. ((eq org-agenda-insert-diary-strategy 'date-tree-last)
  9277. (end-of-line)
  9278. (org-insert-heading '(4) t)
  9279. (org-do-demote))
  9280. (t
  9281. (outline-next-heading)
  9282. (org-back-over-empty-lines)
  9283. (unless (looking-at "[ \t]*$") (save-excursion (insert "\n")))
  9284. (org-insert-heading nil t)
  9285. (org-do-demote)))
  9286. (let ((col (current-column)))
  9287. (insert text)
  9288. (org-end-of-meta-data)
  9289. ;; Ensure point is left on a blank line, at proper indentation.
  9290. (unless (bolp) (insert "\n"))
  9291. (unless (looking-at-p "^[ \t]*$") (save-excursion (insert "\n")))
  9292. (when org-adapt-indentation (indent-to-column col)))
  9293. (org-show-set-visibility 'lineage))
  9294. (defun org-agenda-diary-entry ()
  9295. "Make a diary entry, like the `i' command from the calendar.
  9296. All the standard commands work: block, weekly etc.
  9297. When `org-agenda-diary-file' points to a file,
  9298. `org-agenda-diary-entry-in-org-file' is called instead to create
  9299. entries in that Org file."
  9300. (interactive)
  9301. (if (not (eq org-agenda-diary-file 'diary-file))
  9302. (org-agenda-diary-entry-in-org-file)
  9303. (require 'diary-lib)
  9304. (let* ((char (read-char-exclusive
  9305. "Diary entry: [d]ay [w]eekly [m]onthly [y]early\
  9306. [a]nniversary [b]lock [c]yclic"))
  9307. (cmd (cdr (assoc char
  9308. '((?d . diary-insert-entry)
  9309. (?w . diary-insert-weekly-entry)
  9310. (?m . diary-insert-monthly-entry)
  9311. (?y . diary-insert-yearly-entry)
  9312. (?a . diary-insert-anniversary-entry)
  9313. (?b . diary-insert-block-entry)
  9314. (?c . diary-insert-cyclic-entry)))))
  9315. (oldf (symbol-function 'calendar-cursor-to-date))
  9316. ;; (buf (get-file-buffer (substitute-in-file-name diary-file)))
  9317. (point (point))
  9318. (mark (or (mark t) (point))))
  9319. (unless cmd
  9320. (user-error "No command associated with <%c>" char))
  9321. (unless (and (get-text-property point 'day)
  9322. (or (not (equal ?b char))
  9323. (get-text-property mark 'day)))
  9324. (user-error "Don't know which date to use for diary entry"))
  9325. ;; We implement this by hacking the `calendar-cursor-to-date' function
  9326. ;; and the `calendar-mark-ring' variable. Saves a lot of code.
  9327. (let ((calendar-mark-ring
  9328. (list (calendar-gregorian-from-absolute
  9329. (or (get-text-property mark 'day)
  9330. (get-text-property point 'day))))))
  9331. (unwind-protect
  9332. (progn
  9333. (fset 'calendar-cursor-to-date
  9334. (lambda (&optional error dummy)
  9335. (calendar-gregorian-from-absolute
  9336. (get-text-property point 'day))))
  9337. (call-interactively cmd))
  9338. (fset 'calendar-cursor-to-date oldf))))))
  9339. (defun org-agenda-execute-calendar-command (cmd)
  9340. "Execute a calendar command from the agenda with date from cursor."
  9341. (org-agenda-check-type t 'agenda)
  9342. (require 'diary-lib)
  9343. (unless (get-text-property (min (1- (point-max)) (point)) 'day)
  9344. (user-error "Don't know which date to use for the calendar command"))
  9345. (let* ((oldf (symbol-function 'calendar-cursor-to-date))
  9346. (point (point))
  9347. (date (calendar-gregorian-from-absolute
  9348. (get-text-property point 'day)))
  9349. ;; the following 2 vars are needed in the calendar
  9350. (displayed-month (car date))
  9351. (displayed-year (nth 2 date)))
  9352. (unwind-protect
  9353. (progn
  9354. (fset 'calendar-cursor-to-date
  9355. (lambda (&optional error dummy)
  9356. (calendar-gregorian-from-absolute
  9357. (get-text-property point 'day))))
  9358. (call-interactively cmd))
  9359. (fset 'calendar-cursor-to-date oldf))))
  9360. (defun org-agenda-phases-of-moon ()
  9361. "Display the phases of the moon for the 3 months around the cursor date."
  9362. (interactive)
  9363. (org-agenda-execute-calendar-command 'calendar-lunar-phases))
  9364. (defun org-agenda-holidays ()
  9365. "Display the holidays for the 3 months around the cursor date."
  9366. (interactive)
  9367. (org-agenda-execute-calendar-command 'calendar-list-holidays))
  9368. (defvar calendar-longitude) ; defined in calendar.el
  9369. (defvar calendar-latitude) ; defined in calendar.el
  9370. (defvar calendar-location-name) ; defined in calendar.el
  9371. (defun org-agenda-sunrise-sunset (arg)
  9372. "Display sunrise and sunset for the cursor date.
  9373. Latitude and longitude can be specified with the variables
  9374. `calendar-latitude' and `calendar-longitude'. When called with prefix
  9375. argument, latitude and longitude will be prompted for."
  9376. (interactive "P")
  9377. (require 'solar)
  9378. (let ((calendar-longitude (if arg nil calendar-longitude))
  9379. (calendar-latitude (if arg nil calendar-latitude))
  9380. (calendar-location-name
  9381. (if arg "the given coordinates" calendar-location-name)))
  9382. (org-agenda-execute-calendar-command 'calendar-sunrise-sunset)))
  9383. (defun org-agenda-goto-calendar ()
  9384. "Open the Emacs calendar with the date at the cursor."
  9385. (interactive)
  9386. (org-agenda-check-type t 'agenda)
  9387. (let* ((day (or (get-text-property (min (1- (point-max)) (point)) 'day)
  9388. (user-error "Don't know which date to open in calendar")))
  9389. (date (calendar-gregorian-from-absolute day))
  9390. (calendar-move-hook nil)
  9391. (calendar-view-holidays-initially-flag nil)
  9392. (calendar-view-diary-initially-flag nil))
  9393. (calendar)
  9394. (calendar-goto-date date)))
  9395. ;;;###autoload
  9396. (defun org-calendar-goto-agenda ()
  9397. "Compute the Org agenda for the calendar date displayed at the cursor.
  9398. This is a command that has to be installed in `calendar-mode-map'."
  9399. (interactive)
  9400. ;; Temporarily disable sticky agenda since user clearly wants to
  9401. ;; refresh view anyway.
  9402. (let ((org-agenda-buffer-tmp-name "*Org Agenda(a)*")
  9403. (org-agenda-sticky nil))
  9404. (org-agenda-list nil (calendar-absolute-from-gregorian
  9405. (calendar-cursor-to-date))
  9406. nil)))
  9407. (defun org-agenda-convert-date ()
  9408. (interactive)
  9409. (org-agenda-check-type t 'agenda)
  9410. (let ((day (get-text-property (min (1- (point-max)) (point)) 'day))
  9411. date s)
  9412. (unless day
  9413. (user-error "Don't know which date to convert"))
  9414. (setq date (calendar-gregorian-from-absolute day))
  9415. (setq s (concat
  9416. "Gregorian: " (calendar-date-string date) "\n"
  9417. "ISO: " (calendar-iso-date-string date) "\n"
  9418. "Day of Yr: " (calendar-day-of-year-string date) "\n"
  9419. "Julian: " (calendar-julian-date-string date) "\n"
  9420. "Astron. JD: " (calendar-astro-date-string date)
  9421. " (Julian date number at noon UTC)\n"
  9422. "Hebrew: " (calendar-hebrew-date-string date) " (until sunset)\n"
  9423. "Islamic: " (calendar-islamic-date-string date) " (until sunset)\n"
  9424. "French: " (calendar-french-date-string date) "\n"
  9425. "Bahá’í: " (calendar-bahai-date-string date) " (until sunset)\n"
  9426. "Mayan: " (calendar-mayan-date-string date) "\n"
  9427. "Coptic: " (calendar-coptic-date-string date) "\n"
  9428. "Ethiopic: " (calendar-ethiopic-date-string date) "\n"
  9429. "Persian: " (calendar-persian-date-string date) "\n"
  9430. "Chinese: " (calendar-chinese-date-string date) "\n"))
  9431. (with-output-to-temp-buffer "*Dates*"
  9432. (princ s))
  9433. (org-fit-window-to-buffer (get-buffer-window "*Dates*"))))
  9434. ;;; Bulk commands
  9435. (defun org-agenda-bulk-marked-p ()
  9436. "Non-nil when current entry is marked for bulk action."
  9437. (eq (get-char-property (point-at-bol) 'type)
  9438. 'org-marked-entry-overlay))
  9439. (defun org-agenda-bulk-mark (&optional arg)
  9440. "Mark entries for future bulk action.
  9441. When ARG is nil or one and region is not active then mark the
  9442. entry at point.
  9443. When ARG is nil or one and region is active then mark the entries
  9444. in the region.
  9445. When ARG is greater than one mark ARG lines."
  9446. (interactive "p")
  9447. (when (and (or (not arg) (= arg 1)) (use-region-p))
  9448. (setq arg (count-lines (region-beginning) (region-end)))
  9449. (goto-char (region-beginning))
  9450. (deactivate-mark))
  9451. (dotimes (i (or arg 1))
  9452. (unless (org-get-at-bol 'org-agenda-diary-link)
  9453. (let* ((m (org-get-at-bol 'org-hd-marker))
  9454. ov)
  9455. (unless (org-agenda-bulk-marked-p)
  9456. (unless m (user-error "Nothing to mark at point"))
  9457. (push m org-agenda-bulk-marked-entries)
  9458. (setq ov (make-overlay (point-at-bol) (+ 2 (point-at-bol))))
  9459. (org-overlay-display ov (concat org-agenda-bulk-mark-char " ")
  9460. (org-get-todo-face "TODO")
  9461. 'evaporate)
  9462. (overlay-put ov 'type 'org-marked-entry-overlay))
  9463. (end-of-line 1)
  9464. (or (ignore-errors
  9465. (goto-char (next-single-property-change (point) 'org-hd-marker)))
  9466. (beginning-of-line 2))
  9467. (while (and (get-char-property (point) 'invisible) (not (eobp)))
  9468. (beginning-of-line 2)))))
  9469. (message "%d entries marked for bulk action"
  9470. (length org-agenda-bulk-marked-entries)))
  9471. (defun org-agenda-bulk-mark-all ()
  9472. "Mark all entries for future agenda bulk action."
  9473. (interactive)
  9474. (org-agenda-bulk-mark-regexp "."))
  9475. (defun org-agenda-bulk-mark-regexp (regexp)
  9476. "Mark entries matching REGEXP for future agenda bulk action."
  9477. (interactive "sMark entries matching regexp: ")
  9478. (let ((entries-marked 0) txt-at-point)
  9479. (save-excursion
  9480. (goto-char (point-min))
  9481. (goto-char (next-single-property-change (point) 'org-hd-marker))
  9482. (while (and (re-search-forward regexp nil t)
  9483. (setq txt-at-point
  9484. (get-text-property (match-beginning 0) 'txt)))
  9485. (if (get-char-property (point) 'invisible)
  9486. (beginning-of-line 2)
  9487. (when (string-match-p regexp txt-at-point)
  9488. (setq entries-marked (1+ entries-marked))
  9489. (call-interactively 'org-agenda-bulk-mark)))))
  9490. (unless entries-marked
  9491. (message "No entry matching this regexp."))))
  9492. (defun org-agenda-bulk-unmark (&optional arg)
  9493. "Unmark the entry at point for future bulk action."
  9494. (interactive "P")
  9495. (if arg
  9496. (org-agenda-bulk-unmark-all)
  9497. (cond ((org-agenda-bulk-marked-p)
  9498. (org-agenda-bulk-remove-overlays
  9499. (point-at-bol) (+ 2 (point-at-bol)))
  9500. (setq org-agenda-bulk-marked-entries
  9501. (delete (org-get-at-bol 'org-hd-marker)
  9502. org-agenda-bulk-marked-entries))
  9503. (end-of-line 1)
  9504. (or (ignore-errors
  9505. (goto-char (next-single-property-change (point) 'txt)))
  9506. (beginning-of-line 2))
  9507. (while (and (get-char-property (point) 'invisible) (not (eobp)))
  9508. (beginning-of-line 2))
  9509. (message "%d entries left marked for bulk action"
  9510. (length org-agenda-bulk-marked-entries)))
  9511. (t (message "No entry to unmark here")))))
  9512. (defun org-agenda-bulk-toggle-all ()
  9513. "Toggle all marks for bulk action."
  9514. (interactive)
  9515. (save-excursion
  9516. (goto-char (point-min))
  9517. (while (ignore-errors
  9518. (goto-char (next-single-property-change (point) 'org-hd-marker)))
  9519. (org-agenda-bulk-toggle))))
  9520. (defun org-agenda-bulk-toggle ()
  9521. "Toggle the mark at point for bulk action."
  9522. (interactive)
  9523. (if (org-agenda-bulk-marked-p)
  9524. (org-agenda-bulk-unmark)
  9525. (org-agenda-bulk-mark)))
  9526. (defun org-agenda-bulk-remove-overlays (&optional beg end)
  9527. "Remove the mark overlays between BEG and END in the agenda buffer.
  9528. BEG and END default to the buffer limits.
  9529. This only removes the overlays, it does not remove the markers
  9530. from the list in `org-agenda-bulk-marked-entries'."
  9531. (interactive)
  9532. (mapc (lambda (ov)
  9533. (and (eq (overlay-get ov 'type) 'org-marked-entry-overlay)
  9534. (delete-overlay ov)))
  9535. (overlays-in (or beg (point-min)) (or end (point-max)))))
  9536. (defun org-agenda-bulk-unmark-all ()
  9537. "Remove all marks in the agenda buffer.
  9538. This will remove the markers and the overlays."
  9539. (interactive)
  9540. (if (null org-agenda-bulk-marked-entries)
  9541. (message "No entry to unmark")
  9542. (setq org-agenda-bulk-marked-entries nil)
  9543. (org-agenda-bulk-remove-overlays (point-min) (point-max))))
  9544. (defcustom org-agenda-persistent-marks nil
  9545. "Non-nil means marked items will stay marked after a bulk action.
  9546. You can toggle this interactively by typing `p' when prompted for a
  9547. bulk action."
  9548. :group 'org-agenda
  9549. :version "24.1"
  9550. :type 'boolean)
  9551. (defcustom org-agenda-loop-over-headlines-in-active-region nil
  9552. "Shall some commands act upon headlines in the active region?
  9553. When set to t, some commands will be performed in all headlines
  9554. within the active region.
  9555. When set to `start-level', some commands will be performed in all
  9556. headlines within the active region, provided that these headlines
  9557. are of the same level than the first one.
  9558. When set to a regular expression, those commands will be
  9559. performed on the matching headlines within the active region.
  9560. The list of commands is: `org-agenda-schedule',
  9561. `org-agenda-deadline', `org-agenda-date-prompt',
  9562. `org-agenda-todo', `org-agenda-archive*', `org-agenda-kill'.
  9563. See `org-loop-over-headlines-in-active-region' for the equivalent
  9564. option for Org buffers."
  9565. :type '(choice (const :tag "Don't loop" nil)
  9566. (const :tag "All headlines in active region" t)
  9567. (const :tag "In active region, headlines at the same level than the first one" start-level)
  9568. (regexp :tag "Regular expression matcher"))
  9569. :package-version '(Org . "9.4")
  9570. :group 'org-agenda)
  9571. (defun org-agenda-bulk-action (&optional arg)
  9572. "Execute an remote-editing action on all marked entries.
  9573. The prefix arg is passed through to the command if possible."
  9574. (interactive "P")
  9575. ;; When there is no mark, act on the agenda entry at point.
  9576. (if (not org-agenda-bulk-marked-entries)
  9577. (save-excursion (org-agenda-bulk-mark)))
  9578. (dolist (m org-agenda-bulk-marked-entries)
  9579. (unless (and (markerp m)
  9580. (marker-buffer m)
  9581. (buffer-live-p (marker-buffer m))
  9582. (marker-position m))
  9583. (user-error "Marker %s for bulk command is invalid" m)))
  9584. ;; Prompt for the bulk command.
  9585. (org-unlogged-message
  9586. (concat "Bulk (" (if org-agenda-persistent-marks "" "don't ") "[p]ersist marks): "
  9587. "[$]arch [A]rch->sib [t]odo [+/-]tag [s]chd [d]eadline [r]efile "
  9588. "[S]catter [f]unction "
  9589. (and org-agenda-bulk-custom-functions
  9590. (format " Custom: [%s]"
  9591. (mapconcat (lambda (f) (char-to-string (car f)))
  9592. org-agenda-bulk-custom-functions
  9593. "")))))
  9594. (catch 'exit
  9595. (let* ((org-log-refile (if org-log-refile 'time nil))
  9596. (entries (reverse org-agenda-bulk-marked-entries))
  9597. (org-overriding-default-time
  9598. (and (get-text-property (point) 'org-agenda-date-header)
  9599. (org-get-cursor-date)))
  9600. redo-at-end
  9601. cmd)
  9602. (pcase (read-char-exclusive)
  9603. (?p
  9604. (let ((org-agenda-persistent-marks
  9605. (not org-agenda-persistent-marks)))
  9606. (org-agenda-bulk-action)
  9607. (throw 'exit nil)))
  9608. (?$
  9609. (setq cmd #'org-agenda-archive))
  9610. (?A
  9611. (setq cmd #'org-agenda-archive-to-archive-sibling))
  9612. ((or ?r ?w)
  9613. (let ((refile-location
  9614. (org-refile-get-location
  9615. "Refile to"
  9616. (marker-buffer (car entries))
  9617. org-refile-allow-creating-parent-nodes)))
  9618. (when (nth 3 refile-location)
  9619. (setcar (nthcdr 3 refile-location)
  9620. (move-marker
  9621. (make-marker)
  9622. (nth 3 refile-location)
  9623. (or (get-file-buffer (nth 1 refile-location))
  9624. (find-buffer-visiting (nth 1 refile-location))
  9625. (error "This should not happen")))))
  9626. (setq cmd `(lambda () (org-agenda-refile nil ',refile-location t)))
  9627. (setq redo-at-end t)))
  9628. (?t
  9629. (let ((state (completing-read
  9630. "Todo state: "
  9631. (with-current-buffer (marker-buffer (car entries))
  9632. (mapcar #'list org-todo-keywords-1)))))
  9633. (setq cmd `(lambda ()
  9634. (let ((org-inhibit-blocking t)
  9635. (org-inhibit-logging 'note))
  9636. (org-agenda-todo ,state))))))
  9637. ((and (or ?- ?+) action)
  9638. (let ((tag (completing-read
  9639. (format "Tag to %s: " (if (eq action ?+) "add" "remove"))
  9640. (with-current-buffer (marker-buffer (car entries))
  9641. (delq nil
  9642. (mapcar (lambda (x) (and (stringp (car x)) x))
  9643. org-current-tag-alist))))))
  9644. (setq cmd
  9645. `(lambda ()
  9646. (org-agenda-set-tags ,tag
  9647. ,(if (eq action ?+) ''on ''off))))))
  9648. ((and (or ?s ?d) c)
  9649. (let* ((schedule? (eq c ?s))
  9650. (prompt (if schedule? "(Re)Schedule to" "(Re)Set Deadline to"))
  9651. (time
  9652. (and (not arg)
  9653. (let ((new (org-read-date
  9654. nil nil nil prompt org-overriding-default-time)))
  9655. ;; A "double plus" answer applies to every
  9656. ;; scheduled time. Do not turn it into
  9657. ;; a fixed date yet.
  9658. (if (string-match-p "\\`[ \t]*\\+\\+"
  9659. org-read-date-final-answer)
  9660. org-read-date-final-answer
  9661. new)))))
  9662. ;; Make sure to not prompt for a note when bulk
  9663. ;; rescheduling/resetting deadline as Org cannot cope with
  9664. ;; simultaneous notes. Besides, it could be annoying
  9665. ;; depending on the number of marked items.
  9666. (setq cmd
  9667. (if schedule?
  9668. `(lambda ()
  9669. (let ((org-log-reschedule
  9670. (and org-log-reschedule 'time)))
  9671. (org-agenda-schedule arg ,time)))
  9672. `(lambda ()
  9673. (let ((org-log-redeadline (and org-log-redeadline 'time)))
  9674. (org-agenda-deadline arg ,time)))))))
  9675. (?S
  9676. (unless (org-agenda-check-type nil 'agenda 'todo)
  9677. (user-error "Can't scatter tasks in \"%s\" agenda view" org-agenda-type))
  9678. (let ((days (read-number
  9679. (format "Scatter tasks across how many %sdays: "
  9680. (if arg "week" ""))
  9681. 7)))
  9682. (setq cmd
  9683. `(lambda ()
  9684. (let ((distance (1+ (random ,days))))
  9685. (when arg
  9686. (let ((dist distance)
  9687. (day-of-week
  9688. (calendar-day-of-week
  9689. (calendar-gregorian-from-absolute (org-today)))))
  9690. (dotimes (i (1+ dist))
  9691. (while (member day-of-week org-agenda-weekend-days)
  9692. (cl-incf distance)
  9693. (cl-incf day-of-week)
  9694. (when (= day-of-week 7)
  9695. (setq day-of-week 0)))
  9696. (cl-incf day-of-week)
  9697. (when (= day-of-week 7)
  9698. (setq day-of-week 0)))))
  9699. ;; Silently fail when try to replan a sexp entry.
  9700. (ignore-errors
  9701. (let* ((date (calendar-gregorian-from-absolute
  9702. (+ (org-today) distance)))
  9703. (time (encode-time 0 0 0 (nth 1 date) (nth 0 date)
  9704. (nth 2 date))))
  9705. (org-agenda-schedule nil time))))))))
  9706. (?f
  9707. (setq cmd
  9708. (intern
  9709. (completing-read "Function: " obarray #'fboundp t nil nil))))
  9710. (action
  9711. (pcase (assoc action org-agenda-bulk-custom-functions)
  9712. (`(,_ ,f) (setq cmd f) (setq redo-at-end t))
  9713. (_ (user-error "Invalid bulk action: %c" action)))))
  9714. ;; Sort the markers, to make sure that parents are handled
  9715. ;; before children.
  9716. (setq entries (sort entries
  9717. (lambda (a b)
  9718. (cond
  9719. ((eq (marker-buffer a) (marker-buffer b))
  9720. (< (marker-position a) (marker-position b)))
  9721. (t
  9722. (string< (buffer-name (marker-buffer a))
  9723. (buffer-name (marker-buffer b))))))))
  9724. ;; Now loop over all markers and apply CMD.
  9725. (let ((processed 0)
  9726. (skipped 0))
  9727. (dolist (e entries)
  9728. (let ((pos (text-property-any (point-min) (point-max) 'org-hd-marker e)))
  9729. (if (not pos)
  9730. (progn (message "Skipping removed entry at %s" e)
  9731. (cl-incf skipped))
  9732. (goto-char pos)
  9733. (let (org-loop-over-headlines-in-active-region) (funcall cmd))
  9734. ;; `post-command-hook' is not run yet. We make sure any
  9735. ;; pending log note is processed.
  9736. (when (or (memq 'org-add-log-note (default-value 'post-command-hook))
  9737. (memq 'org-add-log-note post-command-hook))
  9738. (org-add-log-note))
  9739. (cl-incf processed))))
  9740. (when redo-at-end (org-agenda-redo))
  9741. (unless org-agenda-persistent-marks (org-agenda-bulk-unmark-all))
  9742. (message "Acted on %d entries%s%s"
  9743. processed
  9744. (if (= skipped 0)
  9745. ""
  9746. (format ", skipped %d (disappeared before their turn)"
  9747. skipped))
  9748. (if (not org-agenda-persistent-marks) "" " (kept marked)"))))))
  9749. (defun org-agenda-capture (&optional with-time)
  9750. "Call `org-capture' with the date at point.
  9751. With a `C-1' prefix, use the HH:MM value at point (if any) or the
  9752. current HH:MM time."
  9753. (interactive "P")
  9754. (if (not (eq major-mode 'org-agenda-mode))
  9755. (user-error "You cannot do this outside of agenda buffers")
  9756. (let ((org-overriding-default-time
  9757. (org-get-cursor-date (equal with-time 1))))
  9758. (call-interactively 'org-capture))))
  9759. ;;; Dragging agenda lines forward/backward
  9760. (defun org-agenda-reapply-filters ()
  9761. "Re-apply all agenda filters."
  9762. (mapcar
  9763. (lambda(f) (when (car f) (org-agenda-filter-apply (car f) (cadr f) t)))
  9764. `((,org-agenda-tag-filter tag)
  9765. (,org-agenda-category-filter category)
  9766. (,org-agenda-regexp-filter regexp)
  9767. (,org-agenda-effort-filter effort)
  9768. (,(get 'org-agenda-tag-filter :preset-filter) tag)
  9769. (,(get 'org-agenda-category-filter :preset-filter) category)
  9770. (,(get 'org-agenda-effort-filter :preset-filter) effort)
  9771. (,(get 'org-agenda-regexp-filter :preset-filter) regexp))))
  9772. (defun org-agenda-drag-line-forward (arg &optional backward)
  9773. "Drag an agenda line forward by ARG lines.
  9774. When the optional argument `backward' is non-nil, move backward."
  9775. (interactive "p")
  9776. (let ((inhibit-read-only t) lst line)
  9777. (if (or (not (get-text-property (point) 'txt))
  9778. (save-excursion
  9779. (dotimes (n arg)
  9780. (move-beginning-of-line (if backward 0 2))
  9781. (push (not (get-text-property (point) 'txt)) lst))
  9782. (delq nil lst)))
  9783. (message "Cannot move line forward")
  9784. (let ((end (save-excursion (move-beginning-of-line 2) (point))))
  9785. (move-beginning-of-line 1)
  9786. (setq line (buffer-substring (point) end))
  9787. (delete-region (point) end)
  9788. (move-beginning-of-line (funcall (if backward '1- '1+) arg))
  9789. (insert line)
  9790. (org-agenda-reapply-filters)
  9791. (org-agenda-mark-clocking-task)
  9792. (move-beginning-of-line 0)))))
  9793. (defun org-agenda-drag-line-backward (arg)
  9794. "Drag an agenda line backward by ARG lines."
  9795. (interactive "p")
  9796. (org-agenda-drag-line-forward arg t))
  9797. ;;; Flagging notes
  9798. (defun org-agenda-show-the-flagging-note ()
  9799. "Display the flagging note in the other window.
  9800. When called a second time in direct sequence, offer to remove the FLAGGING
  9801. tag and (if present) the flagging note."
  9802. (interactive)
  9803. (let ((hdmarker (org-get-at-bol 'org-hd-marker))
  9804. (win (selected-window))
  9805. note heading newhead)
  9806. (unless hdmarker
  9807. (user-error "No linked entry at point"))
  9808. (if (and (eq this-command last-command)
  9809. (y-or-n-p "Unflag and remove any flagging note? "))
  9810. (progn
  9811. (org-agenda-remove-flag hdmarker)
  9812. (let ((win (get-buffer-window "*Flagging Note*")))
  9813. (and win (delete-window win)))
  9814. (message "Entry unflagged"))
  9815. (setq note (org-entry-get hdmarker "THEFLAGGINGNOTE"))
  9816. (unless note
  9817. (user-error "No flagging note"))
  9818. (org-kill-new note)
  9819. (org-switch-to-buffer-other-window "*Flagging Note*")
  9820. (erase-buffer)
  9821. (insert note)
  9822. (goto-char (point-min))
  9823. (while (re-search-forward "\\\\n" nil t)
  9824. (replace-match "\n" t t))
  9825. (goto-char (point-min))
  9826. (select-window win)
  9827. (message "%s" (substitute-command-keys "Flagging note pushed to \
  9828. kill ring. Press `\\[org-agenda-show-the-flagging-note]' again to remove \
  9829. tag and note")))))
  9830. (defun org-agenda-remove-flag (marker)
  9831. "Remove the FLAGGED tag and any flagging note in the entry."
  9832. (let (newhead)
  9833. (org-with-point-at marker
  9834. (org-toggle-tag "FLAGGED" 'off)
  9835. (org-entry-delete nil "THEFLAGGINGNOTE")
  9836. (setq newhead (org-get-heading)))
  9837. (org-agenda-change-all-lines newhead marker)
  9838. (message "Entry unflagged")))
  9839. (defun org-agenda-get-any-marker (&optional pos)
  9840. (or (get-text-property (or pos (point-at-bol)) 'org-hd-marker)
  9841. (get-text-property (or pos (point-at-bol)) 'org-marker)))
  9842. ;;; Appointment reminders
  9843. (defvar appt-time-msg-list) ; defined in appt.el
  9844. ;;;###autoload
  9845. (defun org-agenda-to-appt (&optional refresh filter &rest args)
  9846. "Activate appointments found in `org-agenda-files'.
  9847. With a `\\[universal-argument]' prefix, refresh the list of \
  9848. appointments.
  9849. If FILTER is t, interactively prompt the user for a regular
  9850. expression, and filter out entries that don't match it.
  9851. If FILTER is a string, use this string as a regular expression
  9852. for filtering entries out.
  9853. If FILTER is a function, filter out entries against which
  9854. calling the function returns nil. This function takes one
  9855. argument: an entry from `org-agenda-get-day-entries'.
  9856. FILTER can also be an alist with the car of each cell being
  9857. either `headline' or `category'. For example:
  9858. \\='((headline \"IMPORTANT\")
  9859. (category \"Work\"))
  9860. will only add headlines containing IMPORTANT or headlines
  9861. belonging to the \"Work\" category.
  9862. ARGS are symbols indicating what kind of entries to consider.
  9863. By default `org-agenda-to-appt' will use :deadline*, :scheduled*
  9864. \(i.e., deadlines and scheduled items with a hh:mm specification)
  9865. and :timestamp entries. See the docstring of `org-diary' for
  9866. details and examples.
  9867. If an entry has a APPT_WARNTIME property, its value will be used
  9868. to override `appt-message-warning-time'."
  9869. (interactive "P")
  9870. (when refresh (setq appt-time-msg-list nil))
  9871. (when (eq filter t)
  9872. (setq filter (read-from-minibuffer "Regexp filter: ")))
  9873. (let* ((cnt 0) ; count added events
  9874. (scope (or args '(:deadline* :scheduled* :timestamp)))
  9875. (org-agenda-new-buffers nil)
  9876. (org-deadline-warning-days 0)
  9877. ;; Do not use `org-today' here because appt only takes
  9878. ;; time and without date as argument, so it may pass wrong
  9879. ;; information otherwise
  9880. (today (org-date-to-gregorian
  9881. (time-to-days nil)))
  9882. (org-agenda-restrict nil)
  9883. (files (org-agenda-files 'unrestricted)) entries file
  9884. (org-agenda-buffer nil))
  9885. ;; Get all entries which may contain an appt
  9886. (org-agenda-prepare-buffers files)
  9887. (while (setq file (pop files))
  9888. (setq entries
  9889. (delq nil
  9890. (append entries
  9891. (apply 'org-agenda-get-day-entries
  9892. file today scope)))))
  9893. ;; Map through entries and find if we should filter them out
  9894. (mapc
  9895. (lambda (x)
  9896. (let* ((evt (org-trim
  9897. (replace-regexp-in-string
  9898. org-link-bracket-re "\\2"
  9899. (or (get-text-property 1 'txt x) ""))))
  9900. (cat (get-text-property (1- (length x)) 'org-category x))
  9901. (tod (get-text-property 1 'time-of-day x))
  9902. (ok (or (null filter)
  9903. (and (stringp filter) (string-match filter evt))
  9904. (and (functionp filter) (funcall filter x))
  9905. (and (listp filter)
  9906. (let ((cat-filter (cadr (assq 'category filter)))
  9907. (evt-filter (cadr (assq 'headline filter))))
  9908. (or (and (stringp cat-filter)
  9909. (string-match cat-filter cat))
  9910. (and (stringp evt-filter)
  9911. (string-match evt-filter evt)))))))
  9912. (wrn (get-text-property 1 'warntime x)))
  9913. ;; FIXME: Shall we remove text-properties for the appt text?
  9914. ;; (setq evt (set-text-properties 0 (length evt) nil evt))
  9915. (when (and ok tod (not (string-match "\\`DONE\\|CANCELLED" evt)))
  9916. (setq tod (concat "00" (number-to-string tod)))
  9917. (setq tod (when (string-match
  9918. "\\([0-9]\\{1,2\\}\\)\\([0-9]\\{2\\}\\)\\'" tod)
  9919. (concat (match-string 1 tod) ":"
  9920. (match-string 2 tod))))
  9921. (when (appt-add tod evt wrn)
  9922. (setq cnt (1+ cnt))))))
  9923. entries)
  9924. (org-release-buffers org-agenda-new-buffers)
  9925. (if (eq cnt 0)
  9926. (message "No event to add")
  9927. (message "Added %d event%s for today" cnt (if (> cnt 1) "s" "")))))
  9928. (defun org-agenda-today-p (date)
  9929. "Non-nil when DATE means today.
  9930. DATE is either a list of the form (month day year) or a number of
  9931. days as returned by `calendar-absolute-from-gregorian' or
  9932. `org-today'. This function considers `org-extend-today-until'
  9933. when defining today."
  9934. (eq (org-today)
  9935. (if (consp date) (calendar-absolute-from-gregorian date) date)))
  9936. (defun org-agenda-todo-yesterday (&optional arg)
  9937. "Like `org-agenda-todo' but the time of change will be 23:59 of yesterday."
  9938. (interactive "P")
  9939. (let* ((org-use-effective-time t)
  9940. (hour (nth 2 (decode-time (org-current-time))))
  9941. (org-extend-today-until (1+ hour)))
  9942. (org-agenda-todo arg)))
  9943. (defun org-agenda-ctrl-c-ctrl-c ()
  9944. "Set tags in agenda buffer."
  9945. (interactive)
  9946. (org-agenda-set-tags))
  9947. (provide 'org-agenda)
  9948. ;;; org-agenda.el ends here