org-agenda.el 444 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343
  1. ;;; org-agenda.el --- Dynamic task and appointment lists for Org -*- lexical-binding: t; -*-
  2. ;; Copyright (C) 2004-2022 Free Software Foundation, Inc.
  3. ;; Author: Carsten Dominik <carsten.dominik@gmail.com>
  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-element-property "org-element" (property element))
  71. (declare-function org-element--cache-active-p "org-element"
  72. (&optional called-from-cache-change-func-p))
  73. (declare-function org-habit-insert-consistency-graphs
  74. "org-habit" (&optional line))
  75. (declare-function org-is-habit-p "org-habit" (&optional pom))
  76. (declare-function org-habit-parse-todo "org-habit" (&optional pom))
  77. (declare-function org-habit-get-priority "org-habit" (habit &optional moment))
  78. (declare-function org-agenda-columns "org-colview" ())
  79. (declare-function org-add-archive-files "org-archive" (files))
  80. (declare-function org-capture "org-capture" (&optional goto keys))
  81. (declare-function org-clock-modify-effort-estimate "org-clock" (&optional value))
  82. (defvar calendar-mode-map)
  83. (defvar org-clock-current-task)
  84. (defvar org-current-tag-alist)
  85. (defvar org-mobile-force-id-on-agenda-items)
  86. (defvar org-habit-show-habits)
  87. (defvar org-habit-show-habits-only-for-today)
  88. (defvar org-habit-show-all-today)
  89. (defvar org-habit-scheduled-past-days)
  90. ;; Defined somewhere in this file, but used before definition.
  91. (defvar org-agenda-buffer-name "*Org Agenda*")
  92. (defvar org-agenda-overriding-header nil)
  93. (defvar org-agenda-title-append nil)
  94. ;; (with-no-warnings (defvar entry)) ;; unprefixed, from calendar.el
  95. ;; (with-no-warnings (defvar date)) ;; unprefixed, from calendar.el
  96. (defvar original-date) ; dynamically scoped, calendar.el does scope this
  97. (defvar org-agenda-undo-list nil
  98. "List of undoable operations in the agenda since last refresh.")
  99. (defvar org-agenda-pending-undo-list nil
  100. "In a series of undo commands, this is the list of remaining undo items.")
  101. (defcustom org-agenda-confirm-kill 1
  102. "When set, remote killing from the agenda buffer needs confirmation.
  103. When t, a confirmation is always needed. When a number N, confirmation is
  104. only needed when the text to be killed contains more than N non-white lines."
  105. :group 'org-agenda
  106. :type '(choice
  107. (const :tag "Never" nil)
  108. (const :tag "Always" t)
  109. (integer :tag "When more than N lines")))
  110. (defcustom org-agenda-compact-blocks nil
  111. "Non-nil means make the block agenda more compact.
  112. This is done globally by leaving out lines like the agenda span
  113. name and week number or the separator lines."
  114. :group 'org-agenda
  115. :type 'boolean)
  116. (defcustom org-agenda-block-separator ?=
  117. "The separator between blocks in the agenda.
  118. If this is a string, it will be used as the separator, with a newline added.
  119. If it is a character, it will be repeated to fill the window width.
  120. If nil the separator is disabled. In `org-agenda-custom-commands' this
  121. addresses the separator between the current and the previous block."
  122. :group 'org-agenda
  123. :type '(choice
  124. (const :tag "Disabled" nil)
  125. (character)
  126. (string)))
  127. (defgroup org-agenda-export nil
  128. "Options concerning exporting agenda views in Org mode."
  129. :tag "Org Agenda Export"
  130. :group 'org-agenda)
  131. (defcustom org-agenda-with-colors t
  132. "Non-nil means use colors in agenda views."
  133. :group 'org-agenda-export
  134. :type 'boolean)
  135. (defcustom org-agenda-exporter-settings nil
  136. ;; FIXME: Do we really want to evaluate those settings and thus force
  137. ;; the user to use `quote' all the time?
  138. "Alist of variable/value pairs that should be active during agenda export.
  139. This is a good place to set options for ps-print and for htmlize.
  140. Note that the way this is implemented, the values will be evaluated
  141. before assigned to the variables. So make sure to quote values you do
  142. *not* want evaluated, for example
  143. (setq org-agenda-exporter-settings
  144. \\='((ps-print-color-p \\='black-white)))"
  145. :group 'org-agenda-export
  146. :type '(repeat
  147. (list
  148. (variable)
  149. (sexp :tag "Value"))))
  150. (defcustom org-agenda-before-write-hook '(org-agenda-add-entry-text)
  151. "Hook run in a temporary buffer before writing the agenda to an export file.
  152. A useful function for this hook is `org-agenda-add-entry-text'."
  153. :group 'org-agenda-export
  154. :type 'hook
  155. :options '(org-agenda-add-entry-text))
  156. (defcustom org-agenda-add-entry-text-maxlines 0
  157. "Maximum number of entry text lines to be added to agenda.
  158. This is only relevant when `org-agenda-add-entry-text' is part of
  159. `org-agenda-before-write-hook', which is the default.
  160. When this is 0, nothing will happen. When it is greater than 0, it
  161. specifies the maximum number of lines that will be added for each entry
  162. that is listed in the agenda view.
  163. Note that this variable is not used during display, only when exporting
  164. the agenda. For agenda display, see the variables `org-agenda-entry-text-mode'
  165. and `org-agenda-entry-text-maxlines'."
  166. :group 'org-agenda
  167. :type 'integer)
  168. (defcustom org-agenda-add-entry-text-descriptive-links t
  169. "Non-nil means export org-links as descriptive links in agenda added text.
  170. This variable applies to the text added to the agenda when
  171. `org-agenda-add-entry-text-maxlines' is larger than 0.
  172. When this variable is nil, the URL will (also) be shown."
  173. :group 'org-agenda
  174. :type 'boolean)
  175. (defcustom org-agenda-export-html-style nil
  176. "The style specification for exported HTML Agenda files.
  177. If this variable contains a string, it will replace the default <style>
  178. section as produced by `htmlize'.
  179. Since there are different ways of setting style information, this variable
  180. needs to contain the full HTML structure to provide a style, including the
  181. surrounding HTML tags. The style specifications should include definitions
  182. the fonts used by the agenda, here is an example:
  183. <style type=\"text/css\">
  184. p { font-weight: normal; color: gray; }
  185. .org-agenda-structure {
  186. font-size: 110%;
  187. color: #003399;
  188. font-weight: 600;
  189. }
  190. .org-todo {
  191. color: #cc6666;
  192. font-weight: bold;
  193. }
  194. .org-agenda-done {
  195. color: #339933;
  196. }
  197. .org-done {
  198. color: #339933;
  199. }
  200. .title { text-align: center; }
  201. .todo, .deadline { color: red; }
  202. .done { color: green; }
  203. </style>
  204. or, if you want to keep the style in a file,
  205. <link rel=\"stylesheet\" type=\"text/css\" href=\"mystyles.css\">
  206. As the value of this option simply gets inserted into the HTML <head> header,
  207. you can \"misuse\" it to also add other text to the header."
  208. :group 'org-agenda-export
  209. :group 'org-export-html
  210. :type '(choice
  211. (const nil)
  212. (string)))
  213. (defcustom org-agenda-persistent-filter nil
  214. "When set, keep filters from one agenda view to the next."
  215. :group 'org-agenda
  216. :type 'boolean)
  217. (defgroup org-agenda-custom-commands nil
  218. "Options concerning agenda views in Org mode."
  219. :tag "Org Agenda Custom Commands"
  220. :group 'org-agenda)
  221. (defconst org-sorting-choice
  222. '(choice
  223. (const time-up) (const time-down)
  224. (const timestamp-up) (const timestamp-down)
  225. (const scheduled-up) (const scheduled-down)
  226. (const deadline-up) (const deadline-down)
  227. (const ts-up) (const ts-down)
  228. (const tsia-up) (const tsia-down)
  229. (const category-keep) (const category-up) (const category-down)
  230. (const tag-down) (const tag-up)
  231. (const priority-up) (const priority-down)
  232. (const todo-state-up) (const todo-state-down)
  233. (const effort-up) (const effort-down)
  234. (const habit-up) (const habit-down)
  235. (const alpha-up) (const alpha-down)
  236. (const user-defined-up) (const user-defined-down))
  237. "Sorting choices.")
  238. ;; Keep custom values for `org-agenda-filter-preset' compatible with
  239. ;; the new variable `org-agenda-tag-filter-preset'.
  240. (defvaralias 'org-agenda-filter-preset 'org-agenda-tag-filter-preset)
  241. (defvaralias 'org-agenda-filter 'org-agenda-tag-filter)
  242. (defvar org-agenda-entry-types '(:deadline :scheduled :timestamp :sexp)
  243. "List of types searched for when creating the daily/weekly agenda.
  244. This variable is a list of symbols that controls the types of
  245. items that appear in the daily/weekly agenda. Allowed symbols in this
  246. list are
  247. :timestamp List items containing a date stamp or date range matching
  248. the selected date. This includes sexp entries in angular
  249. brackets.
  250. :sexp List entries resulting from plain diary-like sexps.
  251. :deadline List deadline due on that date. When the date is today,
  252. also list any deadlines past due, or due within
  253. `org-deadline-warning-days'.
  254. :deadline* Same as above, but only include the deadline if it has an
  255. hour specification as [h]h:mm.
  256. :scheduled List all items which are scheduled for the given date.
  257. The diary for *today* also contains items which were
  258. scheduled earlier and are not yet marked DONE.
  259. :scheduled* Same as above, but only include the scheduled item if it
  260. has an hour specification as [h]h:mm.
  261. By default, all four non-starred types are turned on.
  262. When :scheduled* or :deadline* are included, :schedule or :deadline
  263. will be ignored.
  264. Never set this variable globally using `setq', because then it
  265. will apply to all future agenda commands. Instead, bind it with
  266. `let' to scope it dynamically into the agenda-constructing
  267. command. A good way to set it is through options in
  268. `org-agenda-custom-commands'. For a more flexible (though
  269. somewhat less efficient) way of determining what is included in
  270. the daily/weekly agenda, see `org-agenda-skip-function'.")
  271. (defconst org-agenda-custom-commands-local-options
  272. `(repeat :tag "Local settings for this command. Remember to quote values"
  273. (choice :tag "Setting"
  274. (list :tag "Heading for this block"
  275. (const org-agenda-overriding-header)
  276. (string :tag "Headline"))
  277. (list :tag "Files to be searched"
  278. (const org-agenda-files)
  279. (list
  280. (const :format "" quote)
  281. (repeat (file))))
  282. (list :tag "Sorting strategy"
  283. (const org-agenda-sorting-strategy)
  284. (list
  285. (const :format "" quote)
  286. (repeat
  287. ,org-sorting-choice)))
  288. (list :tag "Prefix format"
  289. (const org-agenda-prefix-format :value " %-12:c%?-12t% s")
  290. (string))
  291. (list :tag "Number of days in agenda"
  292. (const org-agenda-span)
  293. (list
  294. (const :format "" quote)
  295. (choice (const :tag "Day" day)
  296. (const :tag "Week" week)
  297. (const :tag "Fortnight" fortnight)
  298. (const :tag "Month" month)
  299. (const :tag "Year" year)
  300. (integer :tag "Custom"))))
  301. (list :tag "Fixed starting date"
  302. (const org-agenda-start-day)
  303. (string :value "2007-11-01"))
  304. (list :tag "Start on day of week"
  305. (const org-agenda-start-on-weekday)
  306. (choice :value 1
  307. (const :tag "Today" nil)
  308. (integer :tag "Weekday No.")))
  309. (list :tag "Include data from diary"
  310. (const org-agenda-include-diary)
  311. (boolean))
  312. (list :tag "Deadline Warning days"
  313. (const org-deadline-warning-days)
  314. (integer :value 1))
  315. (list :tag "Category filter preset"
  316. (const org-agenda-category-filter-preset)
  317. (list
  318. (const :format "" quote)
  319. (repeat
  320. (string :tag "+category or -category"))))
  321. (list :tag "Tags filter preset"
  322. (const org-agenda-tag-filter-preset)
  323. (list
  324. (const :format "" quote)
  325. (repeat
  326. (string :tag "+tag or -tag"))))
  327. (list :tag "Effort filter preset"
  328. (const org-agenda-effort-filter-preset)
  329. (list
  330. (const :format "" quote)
  331. (repeat
  332. (string :tag "+=10 or -=10 or +<10 or ->10"))))
  333. (list :tag "Regexp filter preset"
  334. (const org-agenda-regexp-filter-preset)
  335. (list
  336. (const :format "" quote)
  337. (repeat
  338. (string :tag "+regexp or -regexp"))))
  339. (list :tag "Set daily/weekly entry types"
  340. (const org-agenda-entry-types)
  341. (list
  342. (const :format "" quote)
  343. (set :greedy t :value ,org-agenda-entry-types
  344. (const :deadline)
  345. (const :scheduled)
  346. (const :deadline*)
  347. (const :scheduled*)
  348. (const :timestamp)
  349. (const :sexp))))
  350. (list :tag "Columns format"
  351. (const org-overriding-columns-format)
  352. (string :tag "Format"))
  353. (list :tag "Standard skipping condition"
  354. :value (org-agenda-skip-function '(org-agenda-skip-entry-if))
  355. (const org-agenda-skip-function)
  356. (list
  357. (const :format "" quote)
  358. (list
  359. (choice
  360. :tag "Skipping range"
  361. (const :tag "Skip entry" org-agenda-skip-entry-if)
  362. (const :tag "Skip subtree" org-agenda-skip-subtree-if))
  363. (repeat :inline t :tag "Conditions for skipping"
  364. (choice
  365. :tag "Condition type"
  366. (list :tag "Regexp matches" :inline t
  367. (const :format "" regexp)
  368. (regexp))
  369. (list :tag "Regexp does not match" :inline t
  370. (const :format "" notregexp)
  371. (regexp))
  372. (list :tag "TODO state is" :inline t
  373. (const todo)
  374. (choice
  375. (const :tag "Any not-done state" todo)
  376. (const :tag "Any done state" done)
  377. (const :tag "Any state" any)
  378. (list :tag "Keyword list"
  379. (const :format "" quote)
  380. (repeat (string :tag "Keyword")))))
  381. (list :tag "TODO state is not" :inline t
  382. (const nottodo)
  383. (choice
  384. (const :tag "Any not-done state" todo)
  385. (const :tag "Any done state" done)
  386. (const :tag "Any state" any)
  387. (list :tag "Keyword list"
  388. (const :format "" quote)
  389. (repeat (string :tag "Keyword")))))
  390. (const :tag "scheduled" scheduled)
  391. (const :tag "not scheduled" notscheduled)
  392. (const :tag "deadline" deadline)
  393. (const :tag "no deadline" notdeadline)
  394. (const :tag "timestamp" timestamp)
  395. (const :tag "no timestamp" nottimestamp))))))
  396. (list :tag "Non-standard skipping condition"
  397. :value (org-agenda-skip-function)
  398. (const org-agenda-skip-function)
  399. (sexp :tag "Function or form (quoted!)"))
  400. (list :tag "Any variable"
  401. (variable :tag "Variable")
  402. (sexp :tag "Value (sexp)"))))
  403. "Selection of examples for agenda command settings.
  404. This will be spliced into the custom type of
  405. `org-agenda-custom-commands'.")
  406. (defcustom org-agenda-custom-commands
  407. '(("n" "Agenda and all TODOs" ((agenda "") (alltodo ""))))
  408. "Custom commands for the agenda.
  409. \\<org-mode-map>
  410. These commands will be offered on the splash screen displayed by the
  411. agenda dispatcher `\\[org-agenda]'. Each entry is a list like this:
  412. (key desc type match settings files)
  413. key The key (one or more characters as a string) to be associated
  414. with the command.
  415. desc A description of the command, when omitted or nil, a default
  416. description is built using MATCH.
  417. type The command type, any of the following symbols:
  418. agenda The daily/weekly agenda.
  419. todo Entries with a specific TODO keyword, in all agenda files.
  420. search Entries containing search words entry or headline.
  421. tags Tags/Property/TODO match in all agenda files.
  422. tags-todo Tags/P/T match in all agenda files, TODO entries only.
  423. todo-tree Sparse tree of specific TODO keyword in *current* file.
  424. tags-tree Sparse tree with all tags matches in *current* file.
  425. occur-tree Occur sparse tree for *current* file.
  426. ... A user-defined function.
  427. match What to search for:
  428. - a single keyword for TODO keyword searches
  429. - a tags/property/todo match expression for searches
  430. - a word search expression for text searches.
  431. - a regular expression for occur searches
  432. For all other commands, this should be the empty string.
  433. settings A list of option settings, similar to that in a let form, so like
  434. this: ((opt1 val1) (opt2 val2) ...). The values will be
  435. evaluated at the moment of execution, so quote them when needed.
  436. files A list of files to write the produced agenda buffer to with
  437. the command `org-store-agenda-views'.
  438. If a file name ends in \".html\", an HTML version of the buffer
  439. is written out. If it ends in \".ps\", a postscript version is
  440. produced. Otherwise, only the plain text is written to the file.
  441. You can also define a set of commands, to create a composite agenda buffer.
  442. In this case, an entry looks like this:
  443. (key desc (cmd1 cmd2 ...) general-settings-for-whole-set files)
  444. where
  445. desc A description string to be displayed in the dispatcher menu.
  446. cmd An agenda command, similar to the above. However, tree commands
  447. are not allowed, but instead you can get agenda and global todo list.
  448. So valid commands for a set are:
  449. (agenda \"\" settings)
  450. (alltodo \"\" settings)
  451. (stuck \"\" settings)
  452. (todo \"match\" settings files)
  453. (search \"match\" settings files)
  454. (tags \"match\" settings files)
  455. (tags-todo \"match\" settings files)
  456. Each command can carry a list of options, and another set of options can be
  457. given for the whole set of commands. Individual command options take
  458. precedence over the general options.
  459. When using several characters as key to a command, the first characters
  460. are prefix commands. For the dispatcher to display useful information, you
  461. should provide a description for the prefix, like
  462. (setq org-agenda-custom-commands
  463. \\='((\"h\" . \"HOME + Name tag searches\") ; describe prefix \"h\"
  464. (\"hl\" tags \"+HOME+Lisa\")
  465. (\"hp\" tags \"+HOME+Peter\")
  466. (\"hk\" tags \"+HOME+Kim\")))"
  467. :group 'org-agenda-custom-commands
  468. :type `(repeat
  469. (choice :value ("x" "Describe command here" tags "" nil)
  470. (list :tag "Single command"
  471. (string :tag "Access Key(s) ")
  472. (option (string :tag "Description"))
  473. (choice
  474. (const :tag "Agenda" agenda)
  475. (const :tag "TODO list" alltodo)
  476. (const :tag "Search words" search)
  477. (const :tag "Stuck projects" stuck)
  478. (const :tag "Tags/Property match (all agenda files)" tags)
  479. (const :tag "Tags/Property match of TODO entries (all agenda files)" tags-todo)
  480. (const :tag "TODO keyword search (all agenda files)" todo)
  481. (const :tag "Tags sparse tree (current buffer)" tags-tree)
  482. (const :tag "TODO keyword tree (current buffer)" todo-tree)
  483. (const :tag "Occur tree (current buffer)" occur-tree)
  484. (sexp :tag "Other, user-defined function"))
  485. (string :tag "Match (only for some commands)")
  486. ,org-agenda-custom-commands-local-options
  487. (option (repeat :tag "Export" (file :tag "Export to"))))
  488. (list :tag "Command series, all agenda files"
  489. (string :tag "Access Key(s)")
  490. (string :tag "Description ")
  491. (repeat :tag "Component"
  492. (choice
  493. (list :tag "Agenda"
  494. (const :format "" agenda)
  495. (const :tag "" :format "" "")
  496. ,org-agenda-custom-commands-local-options)
  497. (list :tag "TODO list (all keywords)"
  498. (const :format "" alltodo)
  499. (const :tag "" :format "" "")
  500. ,org-agenda-custom-commands-local-options)
  501. (list :tag "Search words"
  502. (const :format "" search)
  503. (string :tag "Match")
  504. ,org-agenda-custom-commands-local-options)
  505. (list :tag "Stuck projects"
  506. (const :format "" stuck)
  507. (const :tag "" :format "" "")
  508. ,org-agenda-custom-commands-local-options)
  509. (list :tag "Tags/Property match (all agenda files)"
  510. (const :format "" tags)
  511. (string :tag "Match")
  512. ,org-agenda-custom-commands-local-options)
  513. (list :tag "Tags/Property match of TODO entries (all agenda files)"
  514. (const :format "" tags-todo)
  515. (string :tag "Match")
  516. ,org-agenda-custom-commands-local-options)
  517. (list :tag "TODO keyword search"
  518. (const :format "" todo)
  519. (string :tag "Match")
  520. ,org-agenda-custom-commands-local-options)
  521. (list :tag "Other, user-defined function"
  522. (symbol :tag "function")
  523. (string :tag "Match")
  524. ,org-agenda-custom-commands-local-options)))
  525. (repeat :tag "Settings for entire command set"
  526. (list (variable :tag "Any variable")
  527. (sexp :tag "Value")))
  528. (option (repeat :tag "Export" (file :tag "Export to"))))
  529. (cons :tag "Prefix key documentation"
  530. (string :tag "Access Key(s)")
  531. (string :tag "Description ")))))
  532. (defcustom org-agenda-query-register ?o
  533. "The register holding the current query string.
  534. The purpose of this is that if you construct a query string interactively,
  535. you can then use it to define a custom command."
  536. :group 'org-agenda-custom-commands
  537. :type 'character)
  538. (defcustom org-stuck-projects
  539. '("+LEVEL=2/-DONE" ("TODO" "NEXT" "NEXTACTION") nil "")
  540. "How to identify stuck projects.
  541. This is a list of four items:
  542. 1. A tags/todo/property matcher string that is used to identify a project.
  543. See the manual for a description of tag and property searches.
  544. The entire tree below a headline matched by this is considered one project.
  545. 2. A list of TODO keywords identifying non-stuck projects.
  546. If the project subtree contains any headline with one of these todo
  547. keywords, the project is considered to be not stuck. If you specify
  548. \"*\" as a keyword, any TODO keyword will mark the project unstuck.
  549. 3. A list of tags identifying non-stuck projects.
  550. If the project subtree contains any headline with one of these tags,
  551. the project is considered to be not stuck. If you specify \"*\" as
  552. a tag, any tag will mark the project unstuck. Note that this is about
  553. the explicit presence of a tag somewhere in the subtree, inherited
  554. tags do not count here. If inherited tags make a project not stuck,
  555. use \"-TAG\" in the tags part of the matcher under (1.) above.
  556. 4. An arbitrary regular expression matching non-stuck projects.
  557. If the project turns out to be not stuck, search continues also in the
  558. subtree to see if any of the subtasks have project status.
  559. See also the variable `org-tags-match-list-sublevels' which applies
  560. to projects matched by this search as well.
  561. After defining this variable, you may use `org-agenda-list-stuck-projects'
  562. \(bound to `\\[org-agenda] #') to produce the list."
  563. :group 'org-agenda-custom-commands
  564. :type '(list
  565. (string :tag "Tags/TODO match to identify a project")
  566. (repeat :tag "Projects are *not* stuck if they have an entry with \
  567. TODO keyword any of" (string))
  568. (repeat :tag "Projects are *not* stuck if they have an entry with \
  569. TAG being any of" (string))
  570. (regexp :tag "Projects are *not* stuck if this regexp matches inside \
  571. the subtree")))
  572. (defgroup org-agenda-skip nil
  573. "Options concerning skipping parts of agenda files."
  574. :tag "Org Agenda Skip"
  575. :group 'org-agenda)
  576. (defcustom org-agenda-skip-function-global nil
  577. "Function to be called at each match during agenda construction.
  578. If this function returns nil, the current match should not be skipped.
  579. If the function decided to skip an agenda match, is must return the
  580. buffer position from which the search should be continued.
  581. This may also be a Lisp form, which will be evaluated.
  582. This variable will be applied to every agenda match, including
  583. tags/property searches and TODO lists. So try to make the test function
  584. do its checking as efficiently as possible. To implement a skipping
  585. condition just for specific agenda commands, use the variable
  586. `org-agenda-skip-function' which can be set in the options section
  587. of custom agenda commands."
  588. :group 'org-agenda-skip
  589. :type 'sexp)
  590. (defgroup org-agenda-daily/weekly nil
  591. "Options concerning the daily/weekly agenda."
  592. :tag "Org Agenda Daily/Weekly"
  593. :group 'org-agenda)
  594. (defgroup org-agenda-todo-list nil
  595. "Options concerning the global todo list agenda view."
  596. :tag "Org Agenda Todo List"
  597. :group 'org-agenda)
  598. (defgroup org-agenda-match-view nil
  599. "Options concerning the general tags/property/todo match agenda view."
  600. :tag "Org Agenda Match View"
  601. :group 'org-agenda)
  602. (defgroup org-agenda-search-view nil
  603. "Options concerning the search agenda view."
  604. :tag "Org Agenda Search View"
  605. :group 'org-agenda)
  606. (defvar org-agenda-archives-mode nil
  607. "Non-nil means the agenda will include archived items.
  608. If this is the symbol `trees', trees in the selected agenda scope
  609. that are marked with the ARCHIVE tag will be included anyway. When this is
  610. t, also all archive files associated with the current selection of agenda
  611. files will be included.")
  612. (defcustom org-agenda-restriction-lock-highlight-subtree t
  613. "Non-nil means highlight the whole subtree when restriction is active.
  614. Otherwise only highlight the headline. Highlighting the whole subtree is
  615. useful to ensure no edits happen beyond the restricted region."
  616. :group 'org-agenda
  617. :type 'boolean)
  618. (defcustom org-agenda-skip-comment-trees t
  619. "Non-nil means skip trees that start with the COMMENT keyword.
  620. When nil, these trees are also scanned by agenda commands."
  621. :group 'org-agenda-skip
  622. :type 'boolean)
  623. (defcustom org-agenda-todo-list-sublevels t
  624. "Non-nil means check also the sublevels of a TODO entry for TODO entries.
  625. When nil, the sublevels of a TODO entry are not checked, resulting in
  626. potentially much shorter TODO lists."
  627. :group 'org-agenda-skip
  628. :group 'org-agenda-todo-list
  629. :type 'boolean)
  630. (defcustom org-agenda-todo-ignore-with-date nil
  631. "Non-nil means don't show entries with a date in the global todo list.
  632. You can use this if you prefer to mark mere appointments with a TODO keyword,
  633. but don't want them to show up in the TODO list.
  634. When this is set, it also covers deadlines and scheduled items, the settings
  635. of `org-agenda-todo-ignore-scheduled' and `org-agenda-todo-ignore-deadlines'
  636. will be ignored.
  637. See also the variable `org-agenda-tags-todo-honor-ignore-options'."
  638. :group 'org-agenda-skip
  639. :group 'org-agenda-todo-list
  640. :type 'boolean)
  641. (defcustom org-agenda-todo-ignore-timestamp nil
  642. "Non-nil means don't show entries with a timestamp.
  643. This applies when creating the global todo list.
  644. Valid values are:
  645. past Don't show entries for today or in the past.
  646. future Don't show entries with a timestamp in the future.
  647. The idea behind this is that if it has a future
  648. timestamp, you don't want to think about it until the
  649. date.
  650. all Don't show any entries with a timestamp in the global todo list.
  651. The idea behind this is that by setting a timestamp, you
  652. have already \"taken care\" of this item.
  653. This variable can also have an integer as a value. If positive (N),
  654. todos with a timestamp N or more days in the future will be ignored. If
  655. negative (-N), todos with a timestamp N or more days in the past will be
  656. ignored. If 0, todos with a timestamp either today or in the future will
  657. be ignored. For example, a value of -1 will exclude todos with a
  658. timestamp in the past (yesterday or earlier), while a value of 7 will
  659. exclude todos with a timestamp a week or more in the future.
  660. See also `org-agenda-todo-ignore-with-date'.
  661. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  662. to make his option also apply to the tags-todo list."
  663. :group 'org-agenda-skip
  664. :group 'org-agenda-todo-list
  665. :version "24.1"
  666. :type '(choice
  667. (const :tag "Ignore future timestamp todos" future)
  668. (const :tag "Ignore past or present timestamp todos" past)
  669. (const :tag "Ignore all timestamp todos" all)
  670. (const :tag "Show timestamp todos" nil)
  671. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  672. (defcustom org-agenda-todo-ignore-scheduled nil
  673. "Non-nil means, ignore some scheduled TODO items when making TODO list.
  674. This applies when creating the global todo list.
  675. Valid values are:
  676. past Don't show entries scheduled today or in the past.
  677. future Don't show entries scheduled in the future.
  678. The idea behind this is that by scheduling it, you don't want to
  679. think about it until the scheduled date.
  680. all Don't show any scheduled entries in the global todo list.
  681. The idea behind this is that by scheduling it, you have already
  682. \"taken care\" of this item.
  683. t Same as `all', for backward compatibility.
  684. This variable can also have an integer as a value. See
  685. `org-agenda-todo-ignore-timestamp' for more details.
  686. See also `org-agenda-todo-ignore-with-date'.
  687. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  688. to make his option also apply to the tags-todo list."
  689. :group 'org-agenda-skip
  690. :group 'org-agenda-todo-list
  691. :type '(choice
  692. (const :tag "Ignore future-scheduled todos" future)
  693. (const :tag "Ignore past- or present-scheduled todos" past)
  694. (const :tag "Ignore all scheduled todos" all)
  695. (const :tag "Ignore all scheduled todos (compatibility)" t)
  696. (const :tag "Show scheduled todos" nil)
  697. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  698. (defcustom org-agenda-todo-ignore-deadlines nil
  699. "Non-nil means ignore some deadline TODO items when making TODO list.
  700. There are different motivations for using different values, please think
  701. carefully when configuring this variable.
  702. This applies when creating the global TODO list.
  703. Valid values are:
  704. near Don't show near deadline entries. A deadline is near when it is
  705. closer than `org-deadline-warning-days' days. The idea behind this
  706. is that such items will appear in the agenda anyway.
  707. far Don't show TODO entries where a deadline has been defined, but
  708. is not going to happen anytime soon. This is useful if you want to use
  709. the TODO list to figure out what to do now.
  710. past Don't show entries with a deadline timestamp for today or in the past.
  711. future Don't show entries with a deadline timestamp in the future, not even
  712. when they become `near' ones. Use it with caution.
  713. all Ignore all TODO entries that do have a deadline.
  714. t Same as `near', for backward compatibility.
  715. This variable can also have an integer as a value. See
  716. `org-agenda-todo-ignore-timestamp' for more details.
  717. See also `org-agenda-todo-ignore-with-date'.
  718. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  719. to make his option also apply to the tags-todo list."
  720. :group 'org-agenda-skip
  721. :group 'org-agenda-todo-list
  722. :type '(choice
  723. (const :tag "Ignore near deadlines" near)
  724. (const :tag "Ignore near deadlines (compatibility)" t)
  725. (const :tag "Ignore far deadlines" far)
  726. (const :tag "Ignore all TODOs with a deadlines" all)
  727. (const :tag "Show all TODOs, even if they have a deadline" nil)
  728. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  729. (defcustom org-agenda-todo-ignore-time-comparison-use-seconds nil
  730. "Time unit to use when possibly ignoring an agenda item.
  731. See the docstring of various `org-agenda-todo-ignore-*' options.
  732. The default is to compare time stamps using days. An item is thus
  733. considered to be in the future if it is at least one day after today.
  734. Non-nil means to compare time stamps using seconds. An item is then
  735. considered future if it has a time value later than current time."
  736. :group 'org-agenda-skip
  737. :group 'org-agenda-todo-list
  738. :version "24.4"
  739. :package-version '(Org . "8.0")
  740. :type '(choice
  741. (const :tag "Compare time with days" nil)
  742. (const :tag "Compare time with seconds" t)))
  743. (defcustom org-agenda-tags-todo-honor-ignore-options nil
  744. "Non-nil means honor todo-list ignores options also in tags-todo search.
  745. The variables
  746. `org-agenda-todo-ignore-with-date',
  747. `org-agenda-todo-ignore-timestamp',
  748. `org-agenda-todo-ignore-scheduled',
  749. `org-agenda-todo-ignore-deadlines'
  750. make the global TODO list skip entries that have time stamps of certain
  751. kinds. If this option is set, the same options will also apply for the
  752. tags-todo search, which is the general tags/property matcher
  753. restricted to unfinished TODO entries only."
  754. :group 'org-agenda-skip
  755. :group 'org-agenda-todo-list
  756. :group 'org-agenda-match-view
  757. :type 'boolean)
  758. (defcustom org-agenda-skip-scheduled-if-done nil
  759. "Non-nil means don't show scheduled items in agenda when they are done.
  760. This is relevant for the daily/weekly agenda, not for the TODO list. It
  761. applies only to the actual date of the scheduling. Warnings about an item
  762. with a past scheduling dates are always turned off when the item is DONE."
  763. :group 'org-agenda-skip
  764. :group 'org-agenda-daily/weekly
  765. :type 'boolean)
  766. (defcustom org-agenda-skip-scheduled-if-deadline-is-shown nil
  767. "Non-nil means skip scheduling line if same entry shows because of deadline.
  768. In the agenda of today, an entry can show up multiple times
  769. because it is both scheduled and has a nearby deadline, and maybe
  770. a plain time stamp as well.
  771. When this variable is nil, the entry will be shown several times.
  772. When set to t, then only the deadline is shown and the fact that
  773. the entry is scheduled today or was scheduled previously is not
  774. shown.
  775. When set to the symbol `not-today', skip scheduled previously,
  776. but not scheduled today.
  777. When set to the symbol `repeated-after-deadline', skip scheduled
  778. items if they are repeated beyond the current deadline."
  779. :group 'org-agenda-skip
  780. :group 'org-agenda-daily/weekly
  781. :type '(choice
  782. (const :tag "Never" nil)
  783. (const :tag "Always" t)
  784. (const :tag "Not when scheduled today" not-today)
  785. (const :tag "When repeated past deadline" repeated-after-deadline)))
  786. (defcustom org-agenda-skip-timestamp-if-deadline-is-shown nil
  787. "Non-nil means skip timestamp line if same entry shows because of deadline.
  788. In the agenda of today, an entry can show up multiple times
  789. because it has both a plain timestamp and has a nearby deadline.
  790. When this variable is t, then only the deadline is shown and the
  791. fact that the entry has a timestamp for or including today is not
  792. shown. When this variable is nil, the entry will be shown
  793. several times."
  794. :group 'org-agenda-skip
  795. :group 'org-agenda-daily/weekly
  796. :version "24.1"
  797. :type '(choice
  798. (const :tag "Never" nil)
  799. (const :tag "Always" t)))
  800. (defcustom org-agenda-skip-deadline-if-done nil
  801. "Non-nil means don't show deadlines when the corresponding item is done.
  802. When nil, the deadline is still shown and should give you a happy feeling.
  803. This is relevant for the daily/weekly agenda. It applies only to the
  804. actual date of the deadline. Warnings about approaching and past-due
  805. deadlines are always turned off when the item is DONE."
  806. :group 'org-agenda-skip
  807. :group 'org-agenda-daily/weekly
  808. :type 'boolean)
  809. (defcustom org-agenda-skip-deadline-prewarning-if-scheduled nil
  810. "Non-nil means skip deadline prewarning when entry is also scheduled.
  811. This will apply on all days where a prewarning for the deadline would
  812. be shown, but not at the day when the entry is actually due. On that day,
  813. the deadline will be shown anyway.
  814. This variable may be set to nil, t, the symbol `pre-scheduled',
  815. or a number which will then give the number of days before the actual
  816. deadline when the prewarnings should resume. The symbol `pre-scheduled'
  817. eliminates the deadline prewarning only prior to the scheduled date.
  818. This can be used in a workflow where the first showing of the deadline will
  819. trigger you to schedule it, and then you don't want to be reminded of it
  820. because you will take care of it on the day when scheduled."
  821. :group 'org-agenda-skip
  822. :group 'org-agenda-daily/weekly
  823. :version "24.1"
  824. :type '(choice
  825. (const :tag "Always show prewarning" nil)
  826. (const :tag "Remove prewarning prior to scheduled date" pre-scheduled)
  827. (const :tag "Remove prewarning if entry is scheduled" t)
  828. (integer :tag "Restart prewarning N days before deadline")))
  829. (defcustom org-agenda-skip-scheduled-delay-if-deadline nil
  830. "Non-nil means skip scheduled delay when entry also has a deadline.
  831. This variable may be set to nil, t, the symbol `post-deadline',
  832. or a number which will then give the number of days after the actual
  833. scheduled date when the delay should expire. The symbol `post-deadline'
  834. eliminates the schedule delay when the date is posterior to the deadline."
  835. :group 'org-agenda-skip
  836. :group 'org-agenda-daily/weekly
  837. :version "24.4"
  838. :package-version '(Org . "8.0")
  839. :type '(choice
  840. (const :tag "Always honor delay" nil)
  841. (const :tag "Ignore delay if posterior to the deadline" post-deadline)
  842. (const :tag "Ignore delay if entry has a deadline" t)
  843. (integer :tag "Honor delay up until N days after the scheduled date")))
  844. (defcustom org-agenda-skip-additional-timestamps-same-entry nil
  845. "When nil, multiple same-day timestamps in entry make multiple agenda lines.
  846. When non-nil, after the search for timestamps has matched once in an
  847. entry, the rest of the entry will not be searched."
  848. :group 'org-agenda-skip
  849. :type 'boolean)
  850. (defcustom org-agenda-skip-timestamp-if-done nil
  851. "Non-nil means don't select item by timestamp or -range if it is DONE."
  852. :group 'org-agenda-skip
  853. :group 'org-agenda-daily/weekly
  854. :type 'boolean)
  855. (defcustom org-agenda-dim-blocked-tasks t
  856. "Non-nil means dim blocked tasks in the agenda display.
  857. This causes some overhead during agenda construction, but if you
  858. have turned on `org-enforce-todo-dependencies',
  859. `org-enforce-todo-checkbox-dependencies', or any other blocking
  860. mechanism, this will create useful feedback in the agenda.
  861. Instead of t, this variable can also have the value `invisible'.
  862. Then blocked tasks will be invisible and only become visible when
  863. they become unblocked. An exemption to this behavior is when a task is
  864. blocked because of unchecked checkboxes below it. Since checkboxes do
  865. not show up in the agenda views, making this task invisible you remove any
  866. trace from agenda views that there is something to do. Therefore, a task
  867. that is blocked because of checkboxes will never be made invisible, it
  868. will only be dimmed."
  869. :group 'org-agenda-daily/weekly
  870. :group 'org-agenda-todo-list
  871. :version "24.3"
  872. :type '(choice
  873. (const :tag "Do not dim" nil)
  874. (const :tag "Dim to a gray face" t)
  875. (const :tag "Make invisible" invisible)))
  876. (defgroup org-agenda-startup nil
  877. "Options concerning initial settings in the Agenda in Org Mode."
  878. :tag "Org Agenda Startup"
  879. :group 'org-agenda)
  880. (defcustom org-agenda-menu-show-matcher t
  881. "Non-nil means show the match string in the agenda dispatcher menu.
  882. When nil, the matcher string is not shown, but is put into the help-echo
  883. property so than moving the mouse over the command shows it.
  884. Setting it to nil is good if matcher strings are very long and/or if
  885. you want to use two-columns display (see `org-agenda-menu-two-columns')."
  886. :group 'org-agenda
  887. :version "24.1"
  888. :type 'boolean)
  889. (defcustom org-agenda-menu-two-columns nil
  890. "Non-nil means, use two columns to show custom commands in the dispatcher.
  891. If you use this, you probably want to set `org-agenda-menu-show-matcher'
  892. to nil."
  893. :group 'org-agenda
  894. :version "24.1"
  895. :type 'boolean)
  896. (defcustom org-agenda-finalize-hook nil
  897. "Hook run just before displaying an agenda buffer.
  898. The buffer is still writable when the hook is called.
  899. You can modify some of the buffer substrings but you should be
  900. extra careful not to modify the text properties of the agenda
  901. headlines as the agenda display heavily relies on them."
  902. :group 'org-agenda-startup
  903. :type 'hook)
  904. (defcustom org-agenda-filter-hook nil
  905. "Hook run just after filtering with `org-agenda-filter'."
  906. :group 'org-agenda-startup
  907. :package-version '(Org . "9.4")
  908. :type 'hook)
  909. (defcustom org-agenda-mouse-1-follows-link nil
  910. "Non-nil means mouse-1 on a link will follow the link in the agenda.
  911. A longer mouse click will still set point. Needs to be set
  912. before org.el is loaded."
  913. :group 'org-agenda-startup
  914. :type 'boolean)
  915. (defcustom org-agenda-start-with-follow-mode nil
  916. "The initial value of follow mode in a newly created agenda window."
  917. :group 'org-agenda-startup
  918. :type 'boolean)
  919. (defcustom org-agenda-follow-indirect nil
  920. "Non-nil means `org-agenda-follow-mode' displays only the
  921. current item's tree, in an indirect buffer."
  922. :group 'org-agenda
  923. :version "24.1"
  924. :type 'boolean)
  925. (defcustom org-agenda-show-outline-path t
  926. "Non-nil means show outline path in echo area after line motion."
  927. :group 'org-agenda-startup
  928. :type 'boolean)
  929. (defcustom org-agenda-start-with-entry-text-mode nil
  930. "The initial value of entry-text-mode in a newly created agenda window."
  931. :group 'org-agenda-startup
  932. :type 'boolean)
  933. (defcustom org-agenda-entry-text-maxlines 5
  934. "Number of text lines to be added when `E' is pressed in the agenda.
  935. Note that this variable only used during agenda display. To add entry text
  936. when exporting the agenda, configure the variable
  937. `org-agenda-add-entry-text-maxlines'."
  938. :group 'org-agenda
  939. :type 'integer)
  940. (defcustom org-agenda-entry-text-exclude-regexps nil
  941. "List of regular expressions to clean up entry text.
  942. The complete matches of all regular expressions in this list will be
  943. removed from entry text before it is shown in the agenda."
  944. :group 'org-agenda
  945. :type '(repeat (regexp)))
  946. (defcustom org-agenda-entry-text-leaders " > "
  947. "Text prepended to the entry text in agenda buffers."
  948. :version "24.4"
  949. :package-version '(Org . "8.0")
  950. :group 'org-agenda
  951. :type 'string)
  952. (defvar org-agenda-entry-text-cleanup-hook nil
  953. "Hook that is run after basic cleanup of entry text to be shown in agenda.
  954. This cleanup is done in a temporary buffer, so the function may inspect and
  955. change the entire buffer.
  956. Some default stuff like drawers and scheduling/deadline dates will already
  957. have been removed when this is called, as will any matches for regular
  958. expressions listed in `org-agenda-entry-text-exclude-regexps'.")
  959. (defvar org-agenda-include-inactive-timestamps nil
  960. "Non-nil means include inactive time stamps in agenda.
  961. Dynamically scoped.")
  962. (defgroup org-agenda-windows nil
  963. "Options concerning the windows used by the Agenda in Org Mode."
  964. :tag "Org Agenda Windows"
  965. :group 'org-agenda)
  966. (defcustom org-agenda-window-setup 'reorganize-frame
  967. "How the agenda buffer should be displayed.
  968. Possible values for this option are:
  969. current-window Show agenda in the current window, keeping all other windows.
  970. other-window Use `switch-to-buffer-other-window' to display agenda.
  971. only-window Show agenda, deleting all other windows.
  972. reorganize-frame Show only two windows on the current frame, the current
  973. window and the agenda.
  974. other-frame Use `switch-to-buffer-other-frame' to display agenda.
  975. Also, when exiting the agenda, kill that frame.
  976. other-tab Use `switch-to-buffer-other-tab' to display the
  977. agenda, making use of the `tab-bar-mode' introduced
  978. in Emacs version 27.1. Also, kill that tab when
  979. exiting the agenda view.
  980. See also the variable `org-agenda-restore-windows-after-quit'."
  981. :group 'org-agenda-windows
  982. :type '(choice
  983. (const current-window)
  984. (const other-frame)
  985. (const other-tab)
  986. (const other-window)
  987. (const only-window)
  988. (const reorganize-frame))
  989. :package-version '(Org . "9.4"))
  990. (defcustom org-agenda-window-frame-fractions '(0.5 . 0.75)
  991. "The min and max height of the agenda window as a fraction of frame height.
  992. The value of the variable is a cons cell with two numbers between 0 and 1.
  993. It only matters if `org-agenda-window-setup' is `reorganize-frame'."
  994. :group 'org-agenda-windows
  995. :type '(cons (number :tag "Minimum") (number :tag "Maximum")))
  996. (defcustom org-agenda-restore-windows-after-quit nil
  997. "Non-nil means restore window configuration upon exiting agenda.
  998. Before the window configuration is changed for displaying the
  999. agenda, the current status is recorded. When the agenda is
  1000. exited with `q' or `x' and this option is set, the old state is
  1001. restored. If `org-agenda-window-setup' is `other-frame' or
  1002. `other-tab', the value of this option will be ignored."
  1003. :group 'org-agenda-windows
  1004. :type 'boolean)
  1005. (defcustom org-agenda-span 'week
  1006. "Number of days to include in overview display.
  1007. Can be day, week, month, year, or any number of days.
  1008. Custom commands can set this variable in the options section."
  1009. :group 'org-agenda-daily/weekly
  1010. :type '(choice (const :tag "Day" day)
  1011. (const :tag "Week" week)
  1012. (const :tag "Fortnight" fortnight)
  1013. (const :tag "Month" month)
  1014. (const :tag "Year" year)
  1015. (integer :tag "Custom")))
  1016. (defcustom org-agenda-start-on-weekday 1
  1017. "Non-nil means start the overview always on the specified weekday.
  1018. 0 denotes Sunday, 1 denotes Monday, etc.
  1019. When nil, always start on the current day.
  1020. Custom commands can set this variable in the options section."
  1021. :group 'org-agenda-daily/weekly
  1022. :type '(choice (const :tag "Today" nil)
  1023. (integer :tag "Weekday No.")))
  1024. (defcustom org-agenda-show-all-dates t
  1025. "Non-nil means `org-agenda' shows every day in the selected range.
  1026. When nil, only the days which actually have entries are shown."
  1027. :group 'org-agenda-daily/weekly
  1028. :type 'boolean)
  1029. (defcustom org-agenda-format-date 'org-agenda-format-date-aligned
  1030. "Format string for displaying dates in the agenda.
  1031. Used by the daily/weekly agenda. This should be a format string
  1032. understood by `format-time-string', or a function returning the
  1033. formatted date as a string. The function must take a single
  1034. argument, a calendar-style date list like (month day year)."
  1035. :group 'org-agenda-daily/weekly
  1036. :type '(choice
  1037. (string :tag "Format string")
  1038. (function :tag "Function")))
  1039. (defun org-agenda-end-of-line ()
  1040. "Go to the end of visible line."
  1041. (interactive)
  1042. (goto-char (line-end-position)))
  1043. (defun org-agenda-format-date-aligned (date)
  1044. "Format a DATE string for display in the daily/weekly agenda.
  1045. This function makes sure that dates are aligned for easy reading."
  1046. (require 'cal-iso)
  1047. (let* ((dayname (calendar-day-name date))
  1048. (day (cadr date))
  1049. (day-of-week (calendar-day-of-week date))
  1050. (month (car date))
  1051. (monthname (calendar-month-name month))
  1052. (year (nth 2 date))
  1053. (iso-week (org-days-to-iso-week
  1054. (calendar-absolute-from-gregorian date)))
  1055. ;; (weekyear (cond ((and (= month 1) (>= iso-week 52))
  1056. ;; (1- year))
  1057. ;; ((and (= month 12) (<= iso-week 1))
  1058. ;; (1+ year))
  1059. ;; (t year)))
  1060. (weekstring (if (= day-of-week 1)
  1061. (format " W%02d" iso-week)
  1062. "")))
  1063. (format "%-10s %2d %s %4d%s"
  1064. dayname day monthname year weekstring)))
  1065. (defcustom org-agenda-time-leading-zero nil
  1066. "Non-nil means use leading zero for military times in agenda.
  1067. For example, 9:30am would become 09:30 rather than 9:30."
  1068. :group 'org-agenda-daily/weekly
  1069. :version "24.1"
  1070. :type 'boolean)
  1071. (defcustom org-agenda-timegrid-use-ampm nil
  1072. "When set, show AM/PM style timestamps on the timegrid."
  1073. :group 'org-agenda
  1074. :version "24.1"
  1075. :type 'boolean)
  1076. (defun org-agenda-time-of-day-to-ampm (time)
  1077. "Convert TIME of a string like \"13:45\" to an AM/PM style time string."
  1078. (let* ((hour-number (string-to-number (substring time 0 -3)))
  1079. (minute (substring time -2))
  1080. (ampm "am"))
  1081. (cond
  1082. ((equal hour-number 12)
  1083. (setq ampm "pm"))
  1084. ((> hour-number 12)
  1085. (setq ampm "pm")
  1086. (setq hour-number (- hour-number 12))))
  1087. (concat
  1088. (if org-agenda-time-leading-zero
  1089. (format "%02d" hour-number)
  1090. (format "%02s" (number-to-string hour-number)))
  1091. ":" minute ampm)))
  1092. (defun org-agenda-time-of-day-to-ampm-maybe (time)
  1093. "Conditionally convert TIME to AM/PM format.
  1094. This is based on `org-agenda-timegrid-use-ampm'."
  1095. (if org-agenda-timegrid-use-ampm
  1096. (org-agenda-time-of-day-to-ampm time)
  1097. time))
  1098. (defcustom org-agenda-weekend-days '(6 0)
  1099. "Which days are weekend?
  1100. These days get the special face `org-agenda-date-weekend' in the agenda."
  1101. :group 'org-agenda-daily/weekly
  1102. :type '(set :greedy t
  1103. (const :tag "Monday" 1)
  1104. (const :tag "Tuesday" 2)
  1105. (const :tag "Wednesday" 3)
  1106. (const :tag "Thursday" 4)
  1107. (const :tag "Friday" 5)
  1108. (const :tag "Saturday" 6)
  1109. (const :tag "Sunday" 0)))
  1110. (defcustom org-agenda-move-date-from-past-immediately-to-today t
  1111. "Non-nil means jump to today when moving a past date forward in time.
  1112. When using S-right in the agenda to move a date forward, and the date
  1113. stamp currently points to the past, the first key press will move it
  1114. to today. When nil, just move one day forward even if the date stays
  1115. in the past."
  1116. :group 'org-agenda-daily/weekly
  1117. :version "24.1"
  1118. :type 'boolean)
  1119. (defcustom org-agenda-diary-file 'diary-file
  1120. "File to which to add new entries with the `i' key in agenda and calendar.
  1121. When this is the symbol `diary-file', the functionality in the Emacs
  1122. calendar will be used to add entries to the `diary-file'. But when this
  1123. points to a file, `org-agenda-diary-entry' will be used instead."
  1124. :group 'org-agenda
  1125. :type '(choice
  1126. (const :tag "The standard Emacs diary file" diary-file)
  1127. (file :tag "Special Org file diary entries")))
  1128. (defcustom org-agenda-include-diary nil
  1129. "If non-nil, include in the agenda entries from the Emacs Calendar's diary.
  1130. Custom commands can set this variable in the options section."
  1131. :group 'org-agenda-daily/weekly
  1132. :type 'boolean)
  1133. (defcustom org-agenda-include-deadlines t
  1134. "If non-nil, include entries within their deadline warning period.
  1135. Custom commands can set this variable in the options section."
  1136. :group 'org-agenda-daily/weekly
  1137. :version "24.1"
  1138. :type 'boolean)
  1139. (defcustom org-agenda-show-future-repeats t
  1140. "Non-nil shows repeated entries in the future part of the agenda.
  1141. When set to the symbol `next' only the first future repeat is shown."
  1142. :group 'org-agenda-daily/weekly
  1143. :type '(choice
  1144. (const :tag "Show all repeated entries" t)
  1145. (const :tag "Show next repeated entry" next)
  1146. (const :tag "Do not show repeated entries" nil))
  1147. :version "26.1"
  1148. :package-version '(Org . "9.1")
  1149. :safe #'symbolp)
  1150. (defcustom org-agenda-prefer-last-repeat nil
  1151. "Non-nil sets date for repeated entries to their last repeat.
  1152. When nil, display SCHEDULED and DEADLINE dates at their base
  1153. date, and in today's agenda, as a reminder. Display plain
  1154. time-stamps, on the other hand, at every repeat date in the past
  1155. in addition to the base date.
  1156. When non-nil, show a repeated entry at its latest repeat date,
  1157. possibly being today even if it wasn't marked as done. This
  1158. setting is useful if you do not always mark repeated entries as
  1159. done and, yet, consider that reaching repeat date starts the task
  1160. anew.
  1161. When set to a list of strings, prefer last repeats only for
  1162. entries with these TODO keywords."
  1163. :group 'org-agenda-daily/weekly
  1164. :type '(choice
  1165. (const :tag "Prefer last repeat" t)
  1166. (const :tag "Prefer base date" nil)
  1167. (repeat :tag "Prefer last repeat for entries with these TODO keywords"
  1168. (string :tag "TODO keyword")))
  1169. :version "26.1"
  1170. :package-version '(Org . "9.1")
  1171. :safe (lambda (x) (or (booleanp x) (consp x))))
  1172. (defcustom org-scheduled-past-days 10000
  1173. "Number of days to continue listing scheduled items not marked DONE.
  1174. When an item is scheduled on a date, it shows up in the agenda on
  1175. this day and will be listed until it is marked done or for the
  1176. number of days given here."
  1177. :group 'org-agenda-daily/weekly
  1178. :type 'integer
  1179. :safe 'integerp)
  1180. (defcustom org-deadline-past-days 10000
  1181. "Number of days to warn about missed deadlines.
  1182. When an item has deadline on a date, it shows up in the agenda on
  1183. this day and will appear as a reminder until it is marked DONE or
  1184. for the number of days given here."
  1185. :group 'org-agenda-daily/weekly
  1186. :type 'integer
  1187. :version "26.1"
  1188. :package-version '(Org . "9.1")
  1189. :safe 'integerp)
  1190. (defcustom org-agenda-log-mode-items '(closed clock)
  1191. "List of items that should be shown in agenda log mode.
  1192. \\<org-agenda-mode-map>\
  1193. This list may contain the following symbols:
  1194. closed Show entries that have been closed on that day.
  1195. clock Show entries that have received clocked time on that day.
  1196. state Show all logged state changes.
  1197. Note that instead of changing this variable, you can also press \
  1198. `\\[universal-argument] \\[org-agenda-log-mode]' in
  1199. the agenda to display all available LOG items temporarily."
  1200. :group 'org-agenda-daily/weekly
  1201. :type '(set :greedy t (const closed) (const clock) (const state)))
  1202. (defcustom org-agenda-clock-consistency-checks
  1203. '(:max-duration "10:00" :min-duration 0 :max-gap "0:05"
  1204. :gap-ok-around ("4:00")
  1205. :default-face ((:background "DarkRed") (:foreground "white"))
  1206. :overlap-face nil :gap-face nil :no-end-time-face nil
  1207. :long-face nil :short-face nil)
  1208. "This is a property list, with the following keys:
  1209. :max-duration Mark clocking chunks that are longer than this time.
  1210. This is a time string like \"HH:MM\", or the number
  1211. of minutes as an integer.
  1212. :min-duration Mark clocking chunks that are shorter that this.
  1213. This is a time string like \"HH:MM\", or the number
  1214. of minutes as an integer.
  1215. :max-gap Mark gaps between clocking chunks that are longer than
  1216. this duration. A number of minutes, or a string
  1217. like \"HH:MM\".
  1218. :gap-ok-around List of times during the day which are usually not working
  1219. times. When a gap is detected, but the gap contains any
  1220. of these times, the gap is *not* reported. For example,
  1221. if this is (\"4:00\" \"13:00\") then gaps that contain
  1222. 4:00 in the morning (i.e. the night) and 13:00
  1223. (i.e. a typical lunch time) do not cause a warning.
  1224. You should have at least one time during the night in this
  1225. list, or otherwise the first task each morning will trigger
  1226. a warning because it follows a long gap.
  1227. Furthermore, the following properties can be used to define faces for
  1228. issue display.
  1229. :default-face the default face, if the specific face is undefined
  1230. :overlap-face face for overlapping clocks
  1231. :gap-face face for gaps between clocks
  1232. :no-end-time-face face for incomplete clocks
  1233. :long-face face for clock intervals that are too long
  1234. :short-face face for clock intervals that are too short"
  1235. :group 'org-agenda-daily/weekly
  1236. :group 'org-clock
  1237. :version "24.1"
  1238. :type 'plist)
  1239. (defcustom org-agenda-log-mode-add-notes t
  1240. "Non-nil means add first line of notes to log entries in agenda views.
  1241. If a log item like a state change or a clock entry is associated with
  1242. notes, the first line of these notes will be added to the entry in the
  1243. agenda display."
  1244. :group 'org-agenda-daily/weekly
  1245. :type 'boolean)
  1246. (defcustom org-agenda-start-with-log-mode nil
  1247. "The initial value of log-mode in a newly created agenda window.
  1248. See `org-agenda-log-mode' and `org-agenda-log-mode-items' for further
  1249. explanations on the possible values."
  1250. :group 'org-agenda-startup
  1251. :group 'org-agenda-daily/weekly
  1252. :type '(choice (const :tag "Don't show log items" nil)
  1253. (const :tag "Show only log items" only)
  1254. (const :tag "Show all possible log items" clockcheck)
  1255. (repeat :tag "Choose among possible values for `org-agenda-log-mode-items'"
  1256. (choice (const :tag "Show closed log items" closed)
  1257. (const :tag "Show clocked log items" clock)
  1258. (const :tag "Show all logged state changes" state)))))
  1259. (defcustom org-agenda-start-with-clockreport-mode nil
  1260. "The initial value of clockreport-mode in a newly created agenda window."
  1261. :group 'org-agenda-startup
  1262. :group 'org-agenda-daily/weekly
  1263. :type 'boolean)
  1264. (defcustom org-agenda-clockreport-parameter-plist '(:link t :maxlevel 2)
  1265. "Property list with parameters for the clocktable in clockreport mode.
  1266. This is the display mode that shows a clock table in the daily/weekly
  1267. agenda, the properties for this dynamic block can be set here.
  1268. The usual clocktable parameters are allowed here, but you cannot set
  1269. the properties :name, :tstart, :tend, :block, and :scope - these will
  1270. be overwritten to make sure the content accurately reflects the
  1271. current display in the agenda."
  1272. :group 'org-agenda-daily/weekly
  1273. :type 'plist)
  1274. (defvaralias 'org-agenda-search-view-search-words-only
  1275. 'org-agenda-search-view-always-boolean)
  1276. (defcustom org-agenda-search-view-always-boolean nil
  1277. "Non-nil means the search string is interpreted as individual parts.
  1278. The search string for search view can either be interpreted as a phrase,
  1279. or as a list of snippets that define a boolean search for a number of
  1280. strings.
  1281. When this is non-nil, the string will be split on whitespace, and each
  1282. snippet will be searched individually, and all must match in order to
  1283. select an entry. A snippet is then a single string of non-white
  1284. characters, or a string in double quotes, or a regexp in {} braces.
  1285. If a snippet is preceded by \"-\", the snippet must *not* match.
  1286. \"+\" is syntactic sugar for positive selection. Each snippet may
  1287. be found as a full word or a partial word, but see the variable
  1288. `org-agenda-search-view-force-full-words'.
  1289. When this is nil, search will look for the entire search phrase as one,
  1290. with each space character matching any amount of whitespace, including
  1291. line breaks.
  1292. Even when this is nil, you can still switch to Boolean search dynamically
  1293. by preceding the first snippet with \"+\" or \"-\". If the first snippet
  1294. is a regexp marked with braces like \"{abc}\", this will also switch to
  1295. boolean search."
  1296. :group 'org-agenda-search-view
  1297. :version "24.1"
  1298. :type 'boolean)
  1299. (defcustom org-agenda-search-view-force-full-words nil
  1300. "Non-nil means, search words must be matches as complete words.
  1301. When nil, they may also match part of a word."
  1302. :group 'org-agenda-search-view
  1303. :version "24.1"
  1304. :type 'boolean)
  1305. (defcustom org-agenda-search-view-max-outline-level 0
  1306. "Maximum outline level to display in search view.
  1307. E.g. when this is set to 1, the search view will only
  1308. show headlines of level 1. When set to 0, the default
  1309. value, don't limit agenda view by outline level."
  1310. :group 'org-agenda-search-view
  1311. :version "26.1"
  1312. :package-version '(Org . "8.3")
  1313. :type 'integer)
  1314. (defgroup org-agenda-time-grid nil
  1315. "Options concerning the time grid in the Org Agenda."
  1316. :tag "Org Agenda Time Grid"
  1317. :group 'org-agenda)
  1318. (defcustom org-agenda-search-headline-for-time t
  1319. "Non-nil means search headline for a time-of-day.
  1320. If the headline contains a time-of-day in one format or another, it will
  1321. be used to sort the entry into the time sequence of items for a day.
  1322. Some people have time stamps in the headline that refer to the creation
  1323. time or so, and then this produces an unwanted side effect. If this is
  1324. the case for your, use this variable to turn off searching the headline
  1325. for a time."
  1326. :group 'org-agenda-time-grid
  1327. :type 'boolean)
  1328. (defcustom org-agenda-use-time-grid t
  1329. "Non-nil means show a time grid in the agenda schedule.
  1330. A time grid is a set of lines for specific times (like every two hours between
  1331. 8:00 and 20:00). The items scheduled for a day at specific times are
  1332. sorted in between these lines.
  1333. For details about when the grid will be shown, and what it will look like, see
  1334. the variable `org-agenda-time-grid'."
  1335. :group 'org-agenda-time-grid
  1336. :type 'boolean)
  1337. (defcustom org-agenda-time-grid
  1338. '((daily today require-timed)
  1339. (800 1000 1200 1400 1600 1800 2000)
  1340. "......"
  1341. "----------------")
  1342. "The settings for time grid for agenda display.
  1343. This is a list of four items. The first item is again a list. It contains
  1344. symbols specifying conditions when the grid should be displayed:
  1345. daily if the agenda shows a single day
  1346. weekly if the agenda shows an entire week
  1347. today show grid on current date, independent of daily/weekly display
  1348. require-timed show grid only if at least one item has a time specification
  1349. remove-match skip grid times already present in an entry
  1350. The second item is a list of integers, indicating the times that
  1351. should have a grid line.
  1352. The third item is a string which will be placed right after the
  1353. times that have a grid line.
  1354. The fourth item is a string placed after the grid times. This
  1355. will align with agenda items."
  1356. :group 'org-agenda-time-grid
  1357. :type
  1358. '(list
  1359. (set :greedy t :tag "Grid Display Options"
  1360. (const :tag "Show grid in single day agenda display" daily)
  1361. (const :tag "Show grid in weekly agenda display" weekly)
  1362. (const :tag "Always show grid for today" today)
  1363. (const :tag "Show grid only if any timed entries are present"
  1364. require-timed)
  1365. (const :tag "Skip grid times already present in an entry"
  1366. remove-match))
  1367. (repeat :tag "Grid Times" (integer :tag "Time"))
  1368. (string :tag "Grid String (after agenda times)")
  1369. (string :tag "Grid String (aligns with agenda items)")))
  1370. (defcustom org-agenda-show-current-time-in-grid t
  1371. "Non-nil means show the current time in the time grid."
  1372. :group 'org-agenda-time-grid
  1373. :version "24.1"
  1374. :type 'boolean)
  1375. (defcustom org-agenda-current-time-string
  1376. "now - - - - - - - - - - - - - - - - - - - - - - - - -"
  1377. "The string for the current time marker in the agenda."
  1378. :group 'org-agenda-time-grid
  1379. :version "24.1"
  1380. :type 'string)
  1381. (defgroup org-agenda-sorting nil
  1382. "Options concerning sorting in the Org Agenda."
  1383. :tag "Org Agenda Sorting"
  1384. :group 'org-agenda)
  1385. (defcustom org-agenda-sorting-strategy
  1386. '((agenda habit-down time-up priority-down category-keep)
  1387. (todo priority-down category-keep)
  1388. (tags priority-down category-keep)
  1389. (search category-keep))
  1390. "Sorting structure for the agenda items of a single day.
  1391. This is a list of symbols which will be used in sequence to determine
  1392. if an entry should be listed before another entry. The following
  1393. symbols are recognized:
  1394. time-up Put entries with time-of-day indications first, early first.
  1395. time-down Put entries with time-of-day indications first, late first.
  1396. timestamp-up Sort by any timestamp, early first.
  1397. timestamp-down Sort by any timestamp, late first.
  1398. scheduled-up Sort by scheduled timestamp, early first.
  1399. scheduled-down Sort by scheduled timestamp, late first.
  1400. deadline-up Sort by deadline timestamp, early first.
  1401. deadline-down Sort by deadline timestamp, late first.
  1402. ts-up Sort by active timestamp, early first.
  1403. ts-down Sort by active timestamp, late first.
  1404. tsia-up Sort by inactive timestamp, early first.
  1405. tsia-down Sort by inactive timestamp, late first.
  1406. category-keep Keep the default order of categories, corresponding to the
  1407. sequence in `org-agenda-files'.
  1408. category-up Sort alphabetically by category, A-Z.
  1409. category-down Sort alphabetically by category, Z-A.
  1410. tag-up Sort alphabetically by last tag, A-Z.
  1411. tag-down Sort alphabetically by last tag, Z-A.
  1412. priority-up Sort numerically by priority, high priority last.
  1413. priority-down Sort numerically by priority, high priority first.
  1414. todo-state-up Sort by todo state, tasks that are done last.
  1415. todo-state-down Sort by todo state, tasks that are done first.
  1416. effort-up Sort numerically by estimated effort, high effort last.
  1417. effort-down Sort numerically by estimated effort, high effort first.
  1418. user-defined-up Sort according to `org-agenda-cmp-user-defined', high last.
  1419. user-defined-down Sort according to `org-agenda-cmp-user-defined', high first.
  1420. habit-up Put entries that are habits first.
  1421. habit-down Put entries that are habits last.
  1422. alpha-up Sort headlines alphabetically.
  1423. alpha-down Sort headlines alphabetically, reversed.
  1424. The different possibilities will be tried in sequence, and testing stops
  1425. if one comparison returns a \"not-equal\". For example, the default
  1426. '(time-up category-keep priority-down)
  1427. means: Pull out all entries having a specified time of day and sort them,
  1428. in order to make a time schedule for the current day the first thing in the
  1429. agenda listing for the day. Of the entries without a time indication, keep
  1430. the grouped in categories, don't sort the categories, but keep them in
  1431. the sequence given in `org-agenda-files'. Within each category sort by
  1432. priority.
  1433. Leaving out `category-keep' would mean that items will be sorted across
  1434. categories by priority.
  1435. Instead of a single list, this can also be a set of list for specific
  1436. contents, with a context symbol in the car of the list, any of
  1437. `agenda', `todo', `tags', `search' for the corresponding agenda views.
  1438. Custom commands can bind this variable in the options section."
  1439. :group 'org-agenda-sorting
  1440. :type `(choice
  1441. (repeat :tag "General" ,org-sorting-choice)
  1442. (list :tag "Individually"
  1443. (cons (const :tag "Strategy for Weekly/Daily agenda" agenda)
  1444. (repeat ,org-sorting-choice))
  1445. (cons (const :tag "Strategy for TODO lists" todo)
  1446. (repeat ,org-sorting-choice))
  1447. (cons (const :tag "Strategy for Tags matches" tags)
  1448. (repeat ,org-sorting-choice))
  1449. (cons (const :tag "Strategy for search matches" search)
  1450. (repeat ,org-sorting-choice)))))
  1451. (defcustom org-agenda-cmp-user-defined nil
  1452. "A function to define the comparison `user-defined'.
  1453. This function must receive two arguments, agenda entry a and b.
  1454. If a>b, return +1. If a<b, return -1. If they are equal as seen by
  1455. the user comparison, return nil.
  1456. When this is defined, you can make `user-defined-up' and `user-defined-down'
  1457. part of an agenda sorting strategy."
  1458. :group 'org-agenda-sorting
  1459. :type 'symbol)
  1460. (defcustom org-agenda-sort-notime-is-late t
  1461. "Non-nil means items without time are considered late.
  1462. This is only relevant for sorting. When t, items which have no explicit
  1463. time like 15:30 will be considered as 99:01, i.e. later than any items which
  1464. do have a time. When nil, the default time is before 0:00. You can use this
  1465. option to decide if the schedule for today should come before or after timeless
  1466. agenda entries."
  1467. :group 'org-agenda-sorting
  1468. :type 'boolean)
  1469. (defcustom org-agenda-sort-noeffort-is-high t
  1470. "Non-nil means items without effort estimate are sorted as high effort.
  1471. This also applies when filtering an agenda view with respect to the
  1472. < or > effort operator. Then, tasks with no effort defined will be treated
  1473. as tasks with high effort.
  1474. When nil, such items are sorted as 0 minutes effort."
  1475. :group 'org-agenda-sorting
  1476. :type 'boolean)
  1477. (defgroup org-agenda-line-format nil
  1478. "Options concerning the entry prefix in the Org agenda display."
  1479. :tag "Org Agenda Line Format"
  1480. :group 'org-agenda)
  1481. (defcustom org-agenda-prefix-format
  1482. '((agenda . " %i %-12:c%?-12t% s")
  1483. (todo . " %i %-12:c")
  1484. (tags . " %i %-12:c")
  1485. (search . " %i %-12:c"))
  1486. "Format specifications for the prefix of items in the agenda views.
  1487. An alist with one entry per agenda type. The keys of the
  1488. sublists are `agenda', `todo', `search' and `tags'. The values
  1489. are format strings.
  1490. This format works similar to a printf format, with the following meaning:
  1491. %c the category of the item, \"Diary\" for entries from the diary,
  1492. or as given by the CATEGORY keyword or derived from the file name
  1493. %e the effort required by the item
  1494. %l the level of the item (insert X space(s) if item is of level X)
  1495. %i the icon category of the item, see `org-agenda-category-icon-alist'
  1496. %T the last tag of the item (ignore inherited tags, which come first)
  1497. %t the HH:MM time-of-day specification if one applies to the entry
  1498. %s Scheduling/Deadline information, a short string
  1499. %b show breadcrumbs, i.e., the names of the higher levels
  1500. %(expression) Eval EXPRESSION and replace the control string
  1501. by the result
  1502. All specifiers work basically like the standard `%s' of printf, but may
  1503. contain two additional characters: a question mark just after the `%'
  1504. and a whitespace/punctuation character just before the final letter.
  1505. If the first character after `%' is a question mark, the entire field
  1506. will only be included if the corresponding value applies to the current
  1507. entry. This is useful for fields which should have fixed width when
  1508. present, but zero width when absent. For example, \"%?-12t\" will
  1509. result in a 12 character time field if a time of the day is specified,
  1510. but will completely disappear in entries which do not contain a time.
  1511. If there is punctuation or whitespace character just before the
  1512. final format letter, this character will be appended to the field
  1513. value if the value is not empty. For example, the format
  1514. \"%-12:c\" leads to \"Diary: \" if the category is \"Diary\". If
  1515. the category is empty, no additional colon is inserted.
  1516. The default value for the agenda sublist is \" %-12:c%?-12t% s\",
  1517. which means:
  1518. - Indent the line with two space characters
  1519. - Give the category a 12 chars wide field, padded with whitespace on
  1520. the right (because of `-'). Append a colon if there is a category
  1521. (because of `:').
  1522. - If there is a time-of-day, put it into a 12 chars wide field. If no
  1523. time, don't put in an empty field, just skip it (because of '?').
  1524. - Finally, put the scheduling information.
  1525. See also the variables `org-agenda-remove-times-when-in-prefix' and
  1526. `org-agenda-remove-tags'.
  1527. Custom commands can set this variable in the options section."
  1528. :type '(choice
  1529. (string :tag "General format")
  1530. (list :greedy t :tag "View dependent"
  1531. (cons (const agenda) (string :tag "Format"))
  1532. (cons (const todo) (string :tag "Format"))
  1533. (cons (const tags) (string :tag "Format"))
  1534. (cons (const search) (string :tag "Format"))))
  1535. :group 'org-agenda-line-format
  1536. :version "26.1"
  1537. :package-version '(Org . "9.1"))
  1538. (defcustom org-agenda-breadcrumbs-separator "->"
  1539. "The separator of breadcrumbs in agenda lines."
  1540. :group 'org-agenda-line-format
  1541. :package-version '(Org . "9.3")
  1542. :type 'string
  1543. :safe #'stringp)
  1544. (defvar org-prefix-format-compiled nil
  1545. "The compiled prefix format and associated variables.
  1546. This is a list where first element is a list of variable bindings, and second
  1547. element is the compiled format expression. See the variable
  1548. `org-agenda-prefix-format'.")
  1549. (defcustom org-agenda-todo-keyword-format "%-1s"
  1550. "Format for the TODO keyword in agenda lines.
  1551. Set this to something like \"%-12s\" if you want all TODO keywords
  1552. to occupy a fixed space in the agenda display."
  1553. :group 'org-agenda-line-format
  1554. :type 'string)
  1555. (defcustom org-agenda-diary-sexp-prefix nil
  1556. "A regexp that matches part of a diary sexp entry
  1557. which should be treated as scheduling/deadline information in
  1558. `org-agenda'.
  1559. For example, you can use this to extract the `diary-remind-message' from
  1560. `diary-remind' entries."
  1561. :group 'org-agenda-line-format
  1562. :type '(choice (const :tag "None" nil) (regexp :tag "Regexp")))
  1563. (defcustom org-agenda-timerange-leaders '("" "(%d/%d): ")
  1564. "Text preceding timerange entries in the agenda view.
  1565. This is a list with two strings. The first applies when the range
  1566. is entirely on one day. The second applies if the range spans several days.
  1567. The strings may have two \"%d\" format specifiers which will be filled
  1568. with the sequence number of the days, and the total number of days in the
  1569. range, respectively."
  1570. :group 'org-agenda-line-format
  1571. :type '(list
  1572. (string :tag "Deadline today ")
  1573. (choice :tag "Deadline relative"
  1574. (string :tag "Format string")
  1575. (function))))
  1576. (defcustom org-agenda-scheduled-leaders '("Scheduled: " "Sched.%2dx: ")
  1577. "Text preceding scheduled items in the agenda view.
  1578. This is a list with two strings. The first applies when the item is
  1579. scheduled on the current day. The second applies when it has been scheduled
  1580. previously, it may contain a %d indicating that this is the nth time that
  1581. this item is scheduled, due to automatic rescheduling of unfinished items
  1582. for the following day. So this number is one larger than the number of days
  1583. that passed since this item was scheduled first."
  1584. :group 'org-agenda-line-format
  1585. :version "24.4"
  1586. :package-version '(Org . "8.0")
  1587. :type '(list
  1588. (string :tag "Scheduled today ")
  1589. (string :tag "Scheduled previously")))
  1590. (defcustom org-agenda-inactive-leader "["
  1591. "Text preceding item pulled into the agenda by inactive time stamps.
  1592. These entries are added to the agenda when pressing \"[\"."
  1593. :group 'org-agenda-line-format
  1594. :version "24.1"
  1595. :type 'string)
  1596. (defcustom org-agenda-deadline-leaders '("Deadline: " "In %3d d.: " "%2d d. ago: ")
  1597. "Text preceding deadline items in the agenda view.
  1598. This is a list with three strings. The first applies when the item has its
  1599. deadline on the current day. The second applies when the deadline is in the
  1600. future, the third one when it is in the past. The strings may contain %d
  1601. to capture the number of days."
  1602. :group 'org-agenda-line-format
  1603. :version "24.4"
  1604. :package-version '(Org . "8.0")
  1605. :type '(list
  1606. (string :tag "Deadline today ")
  1607. (string :tag "Deadline in the future ")
  1608. (string :tag "Deadline in the past ")))
  1609. (defcustom org-agenda-remove-times-when-in-prefix t
  1610. "Non-nil means remove duplicate time specifications in agenda items.
  1611. When the format `org-agenda-prefix-format' contains a `%t' specifier, a
  1612. time-of-day specification in a headline or diary entry is extracted and
  1613. placed into the prefix. If this option is non-nil, the original specification
  1614. \(a timestamp or -range, or just a plain time(range) specification like
  1615. 11:30-4pm) will be removed for agenda display. This makes the agenda less
  1616. cluttered.
  1617. The option can be t or nil. It may also be the symbol `beg', indicating
  1618. that the time should only be removed when it is located at the beginning of
  1619. the headline/diary entry."
  1620. :group 'org-agenda-line-format
  1621. :type '(choice
  1622. (const :tag "Always" t)
  1623. (const :tag "Never" nil)
  1624. (const :tag "When at beginning of entry" beg)))
  1625. (defcustom org-agenda-remove-timeranges-from-blocks nil
  1626. "Non-nil means remove time ranges specifications in agenda
  1627. items that span on several days."
  1628. :group 'org-agenda-line-format
  1629. :version "24.1"
  1630. :type 'boolean)
  1631. (defcustom org-agenda-default-appointment-duration nil
  1632. "Default duration for appointments that only have a starting time.
  1633. When nil, no duration is specified in such cases.
  1634. When non-nil, this must be the number of minutes, e.g. 60 for one hour."
  1635. :group 'org-agenda-line-format
  1636. :type '(choice
  1637. (integer :tag "Minutes")
  1638. (const :tag "No default duration")))
  1639. (defcustom org-agenda-show-inherited-tags t
  1640. "Non-nil means show inherited tags in each agenda line.
  1641. When this option is set to `always', it takes precedence over
  1642. `org-agenda-use-tag-inheritance' and inherited tags are shown
  1643. in every agenda.
  1644. When this option is set to t (the default), inherited tags are
  1645. shown when they are available, i.e. when the value of
  1646. `org-agenda-use-tag-inheritance' enables tag inheritance for the
  1647. given agenda type.
  1648. This can be set to a list of agenda types in which the agenda
  1649. must display the inherited tags. Available types are `todo',
  1650. `agenda' and `search'.
  1651. When set to nil, never show inherited tags in agenda lines."
  1652. :group 'org-agenda-line-format
  1653. :group 'org-agenda
  1654. :version "24.3"
  1655. :type '(choice
  1656. (const :tag "Show inherited tags when available" t)
  1657. (const :tag "Always show inherited tags" always)
  1658. (repeat :tag "Show inherited tags only in selected agenda types"
  1659. (symbol :tag "Agenda type"))))
  1660. (defcustom org-agenda-use-tag-inheritance '(todo search agenda)
  1661. "List of agenda view types where to use tag inheritance.
  1662. In tags/tags-todo/tags-tree agenda views, tag inheritance is
  1663. controlled by `org-use-tag-inheritance'. In other agenda types,
  1664. `org-use-tag-inheritance' is not used for the selection of the
  1665. agenda entries. Still, you may want the agenda to be aware of
  1666. the inherited tags anyway, e.g. for later tag filtering.
  1667. Allowed value are `todo', `search' and `agenda'.
  1668. This variable has no effect if `org-agenda-show-inherited-tags'
  1669. is set to `always'. In that case, the agenda is aware of those
  1670. tags.
  1671. The default value sets tags in every agenda type. Setting this
  1672. option to nil will speed up non-tags agenda view a lot."
  1673. :group 'org-agenda
  1674. :version "26.1"
  1675. :package-version '(Org . "9.1")
  1676. :type '(choice
  1677. (const :tag "Use tag inheritance in all agenda types" t)
  1678. (repeat :tag "Use tag inheritance in selected agenda types"
  1679. (symbol :tag "Agenda type"))))
  1680. (defcustom org-agenda-hide-tags-regexp nil
  1681. "Regular expression used to filter away specific tags in agenda views.
  1682. This means that these tags will be present, but not be shown in the agenda
  1683. line. Secondary filtering will still work on the hidden tags.
  1684. Nil means don't hide any tags."
  1685. :group 'org-agenda-line-format
  1686. :type '(choice
  1687. (const :tag "Hide none" nil)
  1688. (regexp :tag "Regexp ")))
  1689. (defvaralias 'org-agenda-remove-tags-when-in-prefix
  1690. 'org-agenda-remove-tags)
  1691. (defcustom org-agenda-remove-tags nil
  1692. "Non-nil means remove the tags from the headline copy in the agenda.
  1693. When this is the symbol `prefix', only remove tags when
  1694. `org-agenda-prefix-format' contains a `%T' specifier."
  1695. :group 'org-agenda-line-format
  1696. :type '(choice
  1697. (const :tag "Always" t)
  1698. (const :tag "Never" nil)
  1699. (const :tag "When prefix format contains %T" prefix)))
  1700. (defvaralias 'org-agenda-align-tags-to-column 'org-agenda-tags-column)
  1701. (defcustom org-agenda-tags-column 'auto
  1702. "Shift tags in agenda items to this column.
  1703. If set to `auto', tags will be automatically aligned to the right
  1704. edge of the window.
  1705. If set to a positive number, tags will be left-aligned to that
  1706. column. If set to a negative number, tags will be right-aligned
  1707. to that column. For example, -80 works well for a normal 80
  1708. character screen."
  1709. :group 'org-agenda-line-format
  1710. :type '(choice
  1711. (const :tag "Automatically align to right edge of window" auto)
  1712. (integer :tag "Specific column" -80))
  1713. :package-version '(Org . "9.1")
  1714. :version "26.1")
  1715. (defcustom org-agenda-fontify-priorities 'cookies
  1716. "Non-nil means highlight low and high priorities in agenda.
  1717. When t, the highest priority entries are bold, lowest priority italic.
  1718. However, settings in `org-priority-faces' will overrule these faces.
  1719. When this variable is the symbol `cookies', only fontify the
  1720. cookies, not the entire task.
  1721. This may also be an association list of priority faces, whose
  1722. keys are the character values of `org-priority-highest',
  1723. `org-priority-default', and `org-priority-lowest' (the default values
  1724. are ?A, ?B, and ?C, respectively). The face may be a named face, a
  1725. color as a string, or a list like `(:background \"Red\")'.
  1726. If it is a color, the variable `org-faces-easy-properties'
  1727. determines if it is a foreground or a background color."
  1728. :group 'org-agenda-line-format
  1729. :type '(choice
  1730. (const :tag "Never" nil)
  1731. (const :tag "Defaults" t)
  1732. (const :tag "Cookies only" cookies)
  1733. (repeat :tag "Specify"
  1734. (list (character :tag "Priority" :value ?A)
  1735. (choice :tag "Face "
  1736. (string :tag "Color")
  1737. (sexp :tag "Face"))))))
  1738. (defcustom org-agenda-day-face-function nil
  1739. "Function called to determine what face should be used to display a day.
  1740. The only argument passed to that function is the day. It should
  1741. returns a face, or nil if does not want to specify a face and let
  1742. the normal rules apply."
  1743. :group 'org-agenda-line-format
  1744. :version "24.1"
  1745. :type '(choice (const nil) (function)))
  1746. (defcustom org-agenda-category-icon-alist nil
  1747. "Alist of category icon to be displayed in agenda views.
  1748. Each entry should have the following format:
  1749. (CATEGORY-REGEXP FILE-OR-DATA TYPE DATA-P PROPS)
  1750. Where CATEGORY-REGEXP is a regexp matching the categories where
  1751. the icon should be displayed.
  1752. FILE-OR-DATA either a file path or a string containing image data.
  1753. The other fields can be omitted safely if not needed:
  1754. TYPE indicates the image type.
  1755. DATA-P is a boolean indicating whether the FILE-OR-DATA string is
  1756. image data.
  1757. PROPS are additional image attributes to assign to the image,
  1758. like, e.g. `:ascent center'.
  1759. (\"Org\" \"/path/to/icon.png\" nil nil :ascent center)
  1760. If you want to set the display properties yourself, just put a
  1761. list as second element:
  1762. (CATEGORY-REGEXP (MY PROPERTY LIST))
  1763. For example, to display a 16px horizontal space for Emacs
  1764. category, you can use:
  1765. (\"Emacs\" \\='(space . (:width (16))))"
  1766. :group 'org-agenda-line-format
  1767. :version "24.1"
  1768. :type '(alist :key-type (regexp :tag "Regexp matching category")
  1769. :value-type (choice (list :tag "Icon"
  1770. (string :tag "File or data")
  1771. (symbol :tag "Type")
  1772. (boolean :tag "Data?")
  1773. (repeat :tag "Extra image properties" :inline t sexp))
  1774. (list :tag "Display properties" sexp))))
  1775. (defgroup org-agenda-column-view nil
  1776. "Options concerning column view in the agenda."
  1777. :tag "Org Agenda Column View"
  1778. :group 'org-agenda)
  1779. (defcustom org-agenda-view-columns-initially nil
  1780. "When non-nil, switch to columns view right after creating the agenda."
  1781. :group 'org-agenda-column-view
  1782. :type 'boolean
  1783. :version "26.1"
  1784. :package-version '(Org . "9.0")
  1785. :safe #'booleanp)
  1786. (defcustom org-agenda-columns-show-summaries t
  1787. "Non-nil means show summaries for columns displayed in the agenda view."
  1788. :group 'org-agenda-column-view
  1789. :type 'boolean)
  1790. (defcustom org-agenda-columns-compute-summary-properties t
  1791. "Non-nil means recompute all summary properties before column view.
  1792. When column view in the agenda is listing properties that have a summary
  1793. operator, it can go to all relevant buffers and recompute the summaries
  1794. there. This can mean overhead for the agenda column view, but is necessary
  1795. to have thing up to date.
  1796. As a special case, a CLOCKSUM property also makes sure that the clock
  1797. computations are current."
  1798. :group 'org-agenda-column-view
  1799. :type 'boolean)
  1800. (defcustom org-agenda-columns-add-appointments-to-effort-sum nil
  1801. "Non-nil means the duration of an appointment will add to day effort.
  1802. The property to which appointment durations will be added is the one given
  1803. in the option `org-effort-property'. If an appointment does not have
  1804. an end time, `org-agenda-default-appointment-duration' will be used. If that
  1805. is not set, an appointment without end time will not contribute to the time
  1806. estimate."
  1807. :group 'org-agenda-column-view
  1808. :type 'boolean)
  1809. (defcustom org-agenda-auto-exclude-function nil
  1810. "A function called with a tag to decide if it is filtered on \
  1811. \\<org-agenda-mode-map>`\\[org-agenda-filter-by-tag] RET'.
  1812. The sole argument to the function, which is called once for each
  1813. possible tag, is a string giving the name of the tag. The
  1814. function should return either nil if the tag should be included
  1815. as normal, \"-<TAG>\" to exclude the tag, or \"+<TAG>\" to exclude
  1816. lines not carrying this tag.
  1817. Note that for the purpose of tag filtering, only the lower-case version of
  1818. all tags will be considered, so that this function will only ever see
  1819. the lower-case version of all tags."
  1820. :group 'org-agenda
  1821. :type '(choice (const nil) (function)))
  1822. (defcustom org-agenda-bulk-custom-functions nil
  1823. "Alist of characters and custom functions for bulk actions.
  1824. For example, this value makes those two functions available:
  1825. \\='((?R set-category)
  1826. (?C bulk-cut))
  1827. With selected entries in an agenda buffer, `B R' will call
  1828. the custom function `set-category' on the selected entries.
  1829. Note that functions in this alist don't need to be quoted.
  1830. You can also specify a function which collects arguments to be
  1831. used for each call to your bulk custom function. The argument
  1832. collecting function will be run once and should return a list of
  1833. arguments to pass to the bulk function. For example:
  1834. \\='((?R set-category get-category))
  1835. Now, `B R' will call the custom `get-category' which would prompt
  1836. the user once for a category. That category is then passed as an
  1837. argument to `set-category' for each entry it's called against."
  1838. :type
  1839. '(alist :key-type character
  1840. :value-type
  1841. (group (function :tag "Bulk Custom Function")
  1842. (choice (function :tag "Bulk Custom Argument Function")
  1843. (const :tag "No Bulk Custom Argument Function" nil))))
  1844. :package-version '(Org . "9.5")
  1845. :group 'org-agenda)
  1846. (defmacro org-agenda-with-point-at-orig-entry (string &rest body)
  1847. "Execute BODY with point at location given by `org-hd-marker' property.
  1848. If STRING is non-nil, the text property will be fetched from position 0
  1849. in that string. If STRING is nil, it will be fetched from the beginning
  1850. of the current line."
  1851. (declare (debug t))
  1852. (org-with-gensyms (marker)
  1853. `(let ((,marker (get-text-property (if ,string 0 (point-at-bol))
  1854. 'org-hd-marker ,string)))
  1855. (with-current-buffer (marker-buffer ,marker)
  1856. (save-excursion
  1857. (goto-char ,marker)
  1858. ,@body)))))
  1859. (defun org-add-agenda-custom-command (entry)
  1860. "Replace or add a command in `org-agenda-custom-commands'.
  1861. This is mostly for hacking and trying a new command - once the command
  1862. works you probably want to add it to `org-agenda-custom-commands' for good."
  1863. (let ((ass (assoc (car entry) org-agenda-custom-commands)))
  1864. (if ass
  1865. (setcdr ass (cdr entry))
  1866. (push entry org-agenda-custom-commands))))
  1867. (defmacro org-agenda--insert-overriding-header (default)
  1868. "Insert header into agenda view.
  1869. The inserted header depends on `org-agenda-overriding-header'.
  1870. If the empty string, don't insert a header. If any other string,
  1871. insert it as a header. If nil, insert DEFAULT, which should
  1872. evaluate to a string. If a function, call it and insert the
  1873. string that it returns."
  1874. (declare (debug (form)) (indent defun))
  1875. `(cond
  1876. ((not org-agenda-overriding-header) (insert ,default))
  1877. ((equal org-agenda-overriding-header "") nil)
  1878. ((stringp org-agenda-overriding-header)
  1879. (insert (propertize org-agenda-overriding-header
  1880. 'face 'org-agenda-structure)
  1881. "\n"))
  1882. ((functionp org-agenda-overriding-header)
  1883. (insert (funcall org-agenda-overriding-header)))
  1884. (t (user-error "Invalid value for `org-agenda-overriding-header': %S"
  1885. org-agenda-overriding-header))))
  1886. ;;; Define the org-agenda-mode
  1887. (defvaralias 'org-agenda-keymap 'org-agenda-mode-map)
  1888. (defvar org-agenda-mode-map (make-sparse-keymap)
  1889. "Keymap for `org-agenda-mode'.")
  1890. (org-remap org-agenda-mode-map 'move-end-of-line 'org-agenda-end-of-line)
  1891. (defvar org-agenda-menu) ; defined later in this file.
  1892. (defvar org-agenda-restrict nil) ; defined later in this file.
  1893. (defvar org-agenda-follow-mode nil)
  1894. (defvar org-agenda-entry-text-mode nil)
  1895. (defvar org-agenda-clockreport-mode nil)
  1896. (defvar org-agenda-show-log nil
  1897. "When non-nil, show the log in the agenda.
  1898. Do not set this directly; instead use
  1899. `org-agenda-start-with-log-mode', which see.")
  1900. (defvar org-agenda-redo-command nil)
  1901. (defvar org-agenda-query-string nil)
  1902. (defvar org-agenda-mode-hook nil
  1903. "Hook run after `org-agenda-mode' is turned on.
  1904. The buffer is still writable when this hook is called.")
  1905. (defvar org-agenda-type nil)
  1906. (defvar org-agenda-force-single-file nil)
  1907. (defvar org-agenda-bulk-marked-entries nil
  1908. "List of markers that refer to marked entries in the agenda.")
  1909. (defvar org-agenda-current-date nil
  1910. "Active date when building the agenda.")
  1911. ;;; Multiple agenda buffers support
  1912. (defcustom org-agenda-sticky nil
  1913. "Non-nil means agenda q key will bury agenda buffers.
  1914. Agenda commands will then show existing buffer instead of generating new ones.
  1915. When nil, `q' will kill the single agenda buffer."
  1916. :group 'org-agenda
  1917. :version "24.3"
  1918. :type 'boolean)
  1919. ;;;###autoload
  1920. (defun org-toggle-sticky-agenda (&optional arg)
  1921. "Toggle `org-agenda-sticky'."
  1922. (interactive "P")
  1923. (let ((new-value (if arg
  1924. (> (prefix-numeric-value arg) 0)
  1925. (not org-agenda-sticky))))
  1926. (if (equal new-value org-agenda-sticky)
  1927. (and (called-interactively-p 'interactive)
  1928. (message "Sticky agenda was already %s"
  1929. (if org-agenda-sticky "enabled" "disabled")))
  1930. (setq org-agenda-sticky new-value)
  1931. (org-agenda-kill-all-agenda-buffers)
  1932. (and (called-interactively-p 'interactive)
  1933. (message "Sticky agenda %s"
  1934. (if org-agenda-sticky "enabled" "disabled"))))))
  1935. (defvar org-agenda-buffer nil
  1936. "Agenda buffer currently being generated.")
  1937. (defvar org-agenda-last-prefix-arg nil)
  1938. (defvar org-agenda-this-buffer-name nil)
  1939. (defvar org-agenda-doing-sticky-redo nil)
  1940. (defvar org-agenda-this-buffer-is-sticky nil)
  1941. (defvar org-agenda-last-indirect-buffer nil
  1942. "Last buffer loaded by `org-agenda-tree-to-indirect-buffer'.")
  1943. (defconst org-agenda-local-vars
  1944. '(org-agenda-this-buffer-name
  1945. org-agenda-undo-list
  1946. org-agenda-pending-undo-list
  1947. org-agenda-follow-mode
  1948. org-agenda-entry-text-mode
  1949. org-agenda-clockreport-mode
  1950. org-agenda-show-log
  1951. org-agenda-redo-command
  1952. org-agenda-query-string
  1953. org-agenda-type
  1954. org-agenda-bulk-marked-entries
  1955. org-agenda-undo-has-started-in
  1956. org-agenda-info
  1957. org-agenda-pre-window-conf
  1958. org-agenda-columns-active
  1959. org-agenda-tag-filter
  1960. org-agenda-category-filter
  1961. org-agenda-top-headline-filter
  1962. org-agenda-regexp-filter
  1963. org-agenda-effort-filter
  1964. org-agenda-markers
  1965. org-agenda-last-search-view-search-was-boolean
  1966. org-agenda-last-indirect-buffer
  1967. org-agenda-filtered-by-category
  1968. org-agenda-filter-form
  1969. org-agenda-cycle-counter
  1970. org-agenda-last-prefix-arg)
  1971. "Variables that must be local in agenda buffers to allow multiple buffers.")
  1972. (defun org-agenda-mode ()
  1973. "Mode for time-sorted view on action items in Org files.
  1974. The following commands are available:
  1975. \\{org-agenda-mode-map}"
  1976. (interactive)
  1977. (ignore-errors (require 'face-remap))
  1978. (let ((agenda-local-vars-to-keep
  1979. '(text-scale-mode-amount
  1980. text-scale-mode
  1981. text-scale-mode-lighter
  1982. face-remapping-alist))
  1983. (save (buffer-local-variables)))
  1984. (kill-all-local-variables)
  1985. (cl-flet ((reset-saved (var-set)
  1986. "Reset variables in VAR-SET to possibly stored value in SAVE."
  1987. (dolist (elem save)
  1988. (pcase elem
  1989. (`(,var . ,val) ;ignore unbound variables
  1990. (when (and val (memq var var-set))
  1991. (set var val)))))))
  1992. (cond (org-agenda-doing-sticky-redo
  1993. ;; Refreshing sticky agenda-buffer
  1994. ;;
  1995. ;; Preserve the value of `org-agenda-local-vars' variables.
  1996. (mapc #'make-local-variable org-agenda-local-vars)
  1997. (reset-saved org-agenda-local-vars)
  1998. (setq-local org-agenda-this-buffer-is-sticky t))
  1999. (org-agenda-sticky
  2000. ;; Creating a sticky Agenda buffer for the first time
  2001. (mapc #'make-local-variable org-agenda-local-vars)
  2002. (setq-local org-agenda-this-buffer-is-sticky t))
  2003. (t
  2004. ;; Creating a non-sticky agenda buffer
  2005. (setq-local org-agenda-this-buffer-is-sticky nil)))
  2006. (mapc #'make-local-variable agenda-local-vars-to-keep)
  2007. (reset-saved agenda-local-vars-to-keep)))
  2008. (setq org-agenda-undo-list nil
  2009. org-agenda-pending-undo-list nil
  2010. org-agenda-bulk-marked-entries nil)
  2011. (setq major-mode 'org-agenda-mode)
  2012. ;; Keep global-font-lock-mode from turning on font-lock-mode
  2013. (setq-local font-lock-global-modes (list 'not major-mode))
  2014. (setq mode-name "Org-Agenda")
  2015. (setq indent-tabs-mode nil)
  2016. (use-local-map org-agenda-mode-map)
  2017. (when org-startup-truncated (setq truncate-lines t))
  2018. (setq-local line-move-visual nil)
  2019. (add-hook 'post-command-hook #'org-agenda-update-agenda-type nil 'local)
  2020. (add-hook 'pre-command-hook #'org-unhighlight nil 'local)
  2021. ;; Make sure properties are removed when copying text
  2022. (if (boundp 'filter-buffer-substring-functions)
  2023. (add-hook 'filter-buffer-substring-functions
  2024. (lambda (fun start end delete)
  2025. (substring-no-properties (funcall fun start end delete)))
  2026. nil t)
  2027. ;; Emacs >= 24.4.
  2028. (add-function :filter-return (local 'filter-buffer-substring-function)
  2029. #'substring-no-properties))
  2030. (unless org-agenda-keep-modes
  2031. (setq org-agenda-follow-mode org-agenda-start-with-follow-mode
  2032. org-agenda-entry-text-mode org-agenda-start-with-entry-text-mode
  2033. org-agenda-show-log org-agenda-start-with-log-mode
  2034. org-agenda-clockreport-mode org-agenda-start-with-clockreport-mode))
  2035. (add-to-invisibility-spec '(org-filtered))
  2036. (add-to-invisibility-spec '(org-link))
  2037. (easy-menu-change
  2038. '("Agenda") "Agenda Files"
  2039. (append
  2040. (list
  2041. (vector
  2042. (if (get 'org-agenda-files 'org-restrict)
  2043. "Restricted to single file"
  2044. "Edit File List")
  2045. '(org-edit-agenda-file-list)
  2046. (not (get 'org-agenda-files 'org-restrict)))
  2047. "--")
  2048. (mapcar #'org-file-menu-entry (org-agenda-files))))
  2049. (org-agenda-set-mode-name)
  2050. (run-mode-hooks 'org-agenda-mode-hook))
  2051. (substitute-key-definition #'undo #'org-agenda-undo
  2052. org-agenda-mode-map global-map)
  2053. (org-defkey org-agenda-mode-map "\C-i" #'org-agenda-goto)
  2054. (org-defkey org-agenda-mode-map [(tab)] #'org-agenda-goto)
  2055. (org-defkey org-agenda-mode-map "\C-m" #'org-agenda-switch-to)
  2056. (org-defkey org-agenda-mode-map "\C-k" #'org-agenda-kill)
  2057. (org-defkey org-agenda-mode-map "\C-c\C-w" #'org-agenda-refile)
  2058. (org-defkey org-agenda-mode-map [(meta down)] #'org-agenda-drag-line-forward)
  2059. (org-defkey org-agenda-mode-map [(meta up)] #'org-agenda-drag-line-backward)
  2060. (org-defkey org-agenda-mode-map "m" #'org-agenda-bulk-mark)
  2061. (org-defkey org-agenda-mode-map "\M-m" #'org-agenda-bulk-toggle)
  2062. (org-defkey org-agenda-mode-map "*" #'org-agenda-bulk-mark-all)
  2063. (org-defkey org-agenda-mode-map "\M-*" #'org-agenda-bulk-toggle-all)
  2064. (org-defkey org-agenda-mode-map "#" #'org-agenda-dim-blocked-tasks)
  2065. (org-defkey org-agenda-mode-map "%" #'org-agenda-bulk-mark-regexp)
  2066. (org-defkey org-agenda-mode-map "u" #'org-agenda-bulk-unmark)
  2067. (org-defkey org-agenda-mode-map "U" #'org-agenda-bulk-unmark-all)
  2068. (org-defkey org-agenda-mode-map "B" #'org-agenda-bulk-action)
  2069. (org-defkey org-agenda-mode-map "k" #'org-agenda-capture)
  2070. (org-defkey org-agenda-mode-map "A" #'org-agenda-append-agenda)
  2071. (org-defkey org-agenda-mode-map "\C-c\C-x!" #'org-reload)
  2072. (org-defkey org-agenda-mode-map "\C-c\C-x\C-a" #'org-agenda-archive-default)
  2073. (org-defkey org-agenda-mode-map "\C-c\C-xa" #'org-agenda-toggle-archive-tag)
  2074. (org-defkey org-agenda-mode-map "\C-c\C-xA" #'org-agenda-archive-to-archive-sibling)
  2075. (org-defkey org-agenda-mode-map "\C-c\C-x\C-s" #'org-agenda-archive)
  2076. (org-defkey org-agenda-mode-map "\C-c$" #'org-agenda-archive)
  2077. (org-defkey org-agenda-mode-map "$" #'org-agenda-archive)
  2078. (org-defkey org-agenda-mode-map "\C-c\C-o" #'org-agenda-open-link)
  2079. (org-defkey org-agenda-mode-map " " #'org-agenda-show-and-scroll-up)
  2080. (org-defkey org-agenda-mode-map [backspace] #'org-agenda-show-scroll-down)
  2081. (org-defkey org-agenda-mode-map "\d" #'org-agenda-show-scroll-down)
  2082. (org-defkey org-agenda-mode-map [(control shift right)] #'org-agenda-todo-nextset)
  2083. (org-defkey org-agenda-mode-map [(control shift left)] #'org-agenda-todo-previousset)
  2084. (org-defkey org-agenda-mode-map "\C-c\C-xb" #'org-agenda-tree-to-indirect-buffer)
  2085. (org-defkey org-agenda-mode-map "o" #'delete-other-windows)
  2086. (org-defkey org-agenda-mode-map "L" #'org-agenda-recenter)
  2087. (org-defkey org-agenda-mode-map "\C-c\C-t" #'org-agenda-todo)
  2088. (org-defkey org-agenda-mode-map "t" #'org-agenda-todo)
  2089. (org-defkey org-agenda-mode-map "a" #'org-agenda-archive-default-with-confirmation)
  2090. (org-defkey org-agenda-mode-map ":" #'org-agenda-set-tags)
  2091. (org-defkey org-agenda-mode-map "\C-c\C-q" #'org-agenda-set-tags)
  2092. (org-defkey org-agenda-mode-map "." #'org-agenda-goto-today)
  2093. (org-defkey org-agenda-mode-map "j" #'org-agenda-goto-date)
  2094. (org-defkey org-agenda-mode-map "d" #'org-agenda-day-view)
  2095. (org-defkey org-agenda-mode-map "w" #'org-agenda-week-view)
  2096. (org-defkey org-agenda-mode-map "y" #'org-agenda-year-view)
  2097. (org-defkey org-agenda-mode-map "\C-c\C-z" #'org-agenda-add-note)
  2098. (org-defkey org-agenda-mode-map "z" #'org-agenda-add-note)
  2099. (org-defkey org-agenda-mode-map [(shift right)] #'org-agenda-do-date-later)
  2100. (org-defkey org-agenda-mode-map [(shift left)] #'org-agenda-do-date-earlier)
  2101. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (right)] #'org-agenda-do-date-later)
  2102. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (left)] #'org-agenda-do-date-earlier)
  2103. (org-defkey org-agenda-mode-map ">" #'org-agenda-date-prompt)
  2104. (org-defkey org-agenda-mode-map "\C-c\C-s" #'org-agenda-schedule)
  2105. (org-defkey org-agenda-mode-map "\C-c\C-d" #'org-agenda-deadline)
  2106. (let ((l '(1 2 3 4 5 6 7 8 9 0)))
  2107. (while l (org-defkey org-agenda-mode-map
  2108. (number-to-string (pop l)) #'digit-argument)))
  2109. (org-defkey org-agenda-mode-map "F" #'org-agenda-follow-mode)
  2110. (org-defkey org-agenda-mode-map "R" #'org-agenda-clockreport-mode)
  2111. (org-defkey org-agenda-mode-map "E" #'org-agenda-entry-text-mode)
  2112. (org-defkey org-agenda-mode-map "l" #'org-agenda-log-mode)
  2113. (org-defkey org-agenda-mode-map "v" #'org-agenda-view-mode-dispatch)
  2114. (org-defkey org-agenda-mode-map "D" #'org-agenda-toggle-diary)
  2115. (org-defkey org-agenda-mode-map "!" #'org-agenda-toggle-deadlines)
  2116. (org-defkey org-agenda-mode-map "G" #'org-agenda-toggle-time-grid)
  2117. (org-defkey org-agenda-mode-map "r" #'org-agenda-redo)
  2118. (org-defkey org-agenda-mode-map "g" #'org-agenda-redo-all)
  2119. (org-defkey org-agenda-mode-map "e" #'org-agenda-set-effort)
  2120. (org-defkey org-agenda-mode-map "\C-c\C-xe" #'org-agenda-set-effort)
  2121. (org-defkey org-agenda-mode-map "\C-c\C-x\C-e"
  2122. #'org-clock-modify-effort-estimate)
  2123. (org-defkey org-agenda-mode-map "\C-c\C-xp" #'org-agenda-set-property)
  2124. (org-defkey org-agenda-mode-map "q" #'org-agenda-quit)
  2125. (org-defkey org-agenda-mode-map "Q" #'org-agenda-Quit)
  2126. (org-defkey org-agenda-mode-map "x" #'org-agenda-exit)
  2127. (org-defkey org-agenda-mode-map "\C-x\C-w" #'org-agenda-write)
  2128. (org-defkey org-agenda-mode-map "\C-x\C-s" #'org-save-all-org-buffers)
  2129. (org-defkey org-agenda-mode-map "s" #'org-save-all-org-buffers)
  2130. (org-defkey org-agenda-mode-map "T" #'org-agenda-show-tags)
  2131. (org-defkey org-agenda-mode-map "n" #'org-agenda-next-line)
  2132. (org-defkey org-agenda-mode-map "p" #'org-agenda-previous-line)
  2133. (org-defkey org-agenda-mode-map "N" #'org-agenda-next-item)
  2134. (org-defkey org-agenda-mode-map "P" #'org-agenda-previous-item)
  2135. (substitute-key-definition #'next-line #'org-agenda-next-line
  2136. org-agenda-mode-map global-map)
  2137. (substitute-key-definition #'previous-line #'org-agenda-previous-line
  2138. org-agenda-mode-map global-map)
  2139. (org-defkey org-agenda-mode-map "\C-c\C-a" #'org-attach)
  2140. (org-defkey org-agenda-mode-map "\C-c\C-n" #'org-agenda-next-date-line)
  2141. (org-defkey org-agenda-mode-map "\C-c\C-p" #'org-agenda-previous-date-line)
  2142. (org-defkey org-agenda-mode-map "\C-c," #'org-agenda-priority)
  2143. (org-defkey org-agenda-mode-map "," #'org-agenda-priority)
  2144. (org-defkey org-agenda-mode-map "i" #'org-agenda-diary-entry)
  2145. (org-defkey org-agenda-mode-map "c" #'org-agenda-goto-calendar)
  2146. (org-defkey org-agenda-mode-map "C" #'org-agenda-convert-date)
  2147. (org-defkey org-agenda-mode-map "M" #'org-agenda-phases-of-moon)
  2148. (org-defkey org-agenda-mode-map "S" #'org-agenda-sunrise-sunset)
  2149. (org-defkey org-agenda-mode-map "h" #'org-agenda-holidays)
  2150. (org-defkey org-agenda-mode-map "H" #'org-agenda-holidays)
  2151. (org-defkey org-agenda-mode-map "\C-c\C-x\C-i" #'org-agenda-clock-in)
  2152. (org-defkey org-agenda-mode-map "I" #'org-agenda-clock-in)
  2153. (org-defkey org-agenda-mode-map "\C-c\C-x\C-o" #'org-agenda-clock-out)
  2154. (org-defkey org-agenda-mode-map "O" #'org-agenda-clock-out)
  2155. (org-defkey org-agenda-mode-map "\C-c\C-x\C-x" #'org-agenda-clock-cancel)
  2156. (org-defkey org-agenda-mode-map "X" #'org-agenda-clock-cancel)
  2157. (org-defkey org-agenda-mode-map "\C-c\C-x\C-j" #'org-clock-goto)
  2158. (org-defkey org-agenda-mode-map "J" #'org-agenda-clock-goto)
  2159. (org-defkey org-agenda-mode-map "+" #'org-agenda-priority-up)
  2160. (org-defkey org-agenda-mode-map "-" #'org-agenda-priority-down)
  2161. (org-defkey org-agenda-mode-map [(shift up)] #'org-agenda-priority-up)
  2162. (org-defkey org-agenda-mode-map [(shift down)] #'org-agenda-priority-down)
  2163. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (up)] #'org-agenda-priority-up)
  2164. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (down)] #'org-agenda-priority-down)
  2165. (org-defkey org-agenda-mode-map "f" #'org-agenda-later)
  2166. (org-defkey org-agenda-mode-map "b" #'org-agenda-earlier)
  2167. (org-defkey org-agenda-mode-map "\C-c\C-x\C-c" #'org-agenda-columns)
  2168. (org-defkey org-agenda-mode-map "\C-c\C-x>" #'org-agenda-remove-restriction-lock)
  2169. (org-defkey org-agenda-mode-map "\C-c\C-x<" #'org-agenda-set-restriction-lock-from-agenda)
  2170. (org-defkey org-agenda-mode-map "[" #'org-agenda-manipulate-query-add)
  2171. (org-defkey org-agenda-mode-map "]" #'org-agenda-manipulate-query-subtract)
  2172. (org-defkey org-agenda-mode-map "{" #'org-agenda-manipulate-query-add-re)
  2173. (org-defkey org-agenda-mode-map "}" #'org-agenda-manipulate-query-subtract-re)
  2174. (org-defkey org-agenda-mode-map "\\" #'org-agenda-filter-by-tag)
  2175. (org-defkey org-agenda-mode-map "_" #'org-agenda-filter-by-effort)
  2176. (org-defkey org-agenda-mode-map "=" #'org-agenda-filter-by-regexp)
  2177. (org-defkey org-agenda-mode-map "/" #'org-agenda-filter)
  2178. (org-defkey org-agenda-mode-map "|" #'org-agenda-filter-remove-all)
  2179. (org-defkey org-agenda-mode-map "~" #'org-agenda-limit-interactively)
  2180. (org-defkey org-agenda-mode-map "<" #'org-agenda-filter-by-category)
  2181. (org-defkey org-agenda-mode-map "^" #'org-agenda-filter-by-top-headline)
  2182. (org-defkey org-agenda-mode-map ";" #'org-timer-set-timer)
  2183. (org-defkey org-agenda-mode-map "\C-c\C-x_" #'org-timer-stop)
  2184. (org-defkey org-agenda-mode-map "?" #'org-agenda-show-the-flagging-note)
  2185. (org-defkey org-agenda-mode-map "\C-c\C-x\C-mg" #'org-mobile-pull)
  2186. (org-defkey org-agenda-mode-map "\C-c\C-x\C-mp" #'org-mobile-push)
  2187. (org-defkey org-agenda-mode-map "\C-c\C-xI" #'org-info-find-node)
  2188. (org-defkey org-agenda-mode-map [mouse-2] #'org-agenda-goto-mouse)
  2189. (org-defkey org-agenda-mode-map [mouse-3] #'org-agenda-show-mouse)
  2190. (org-defkey org-agenda-mode-map [remap forward-paragraph] #'org-agenda-forward-block)
  2191. (org-defkey org-agenda-mode-map [remap backward-paragraph] #'org-agenda-backward-block)
  2192. (org-defkey org-agenda-mode-map "\C-c\C-c" #'org-agenda-ctrl-c-ctrl-c)
  2193. (when org-agenda-mouse-1-follows-link
  2194. (org-defkey org-agenda-mode-map [follow-link] 'mouse-face))
  2195. (easy-menu-define org-agenda-menu org-agenda-mode-map "Agenda menu."
  2196. '("Agenda"
  2197. ("Agenda Files")
  2198. "--"
  2199. ("Agenda Dates"
  2200. ["Goto Today" org-agenda-goto-today (org-agenda-check-type nil 'agenda)]
  2201. ["Next Dates" org-agenda-later (org-agenda-check-type nil 'agenda)]
  2202. ["Previous Dates" org-agenda-earlier (org-agenda-check-type nil 'agenda)]
  2203. ["Jump to date" org-agenda-goto-date (org-agenda-check-type nil 'agenda)])
  2204. "--"
  2205. ("View"
  2206. ["Day View" org-agenda-day-view
  2207. :active (org-agenda-check-type nil 'agenda)
  2208. :style radio :selected (eq org-agenda-current-span 'day)
  2209. :keys "v d (or just d)"]
  2210. ["Week View" org-agenda-week-view
  2211. :active (org-agenda-check-type nil 'agenda)
  2212. :style radio :selected (eq org-agenda-current-span 'week)
  2213. :keys "v w"]
  2214. ["Fortnight View" org-agenda-fortnight-view
  2215. :active (org-agenda-check-type nil 'agenda)
  2216. :style radio :selected (eq org-agenda-current-span 'fortnight)
  2217. :keys "v t"]
  2218. ["Month View" org-agenda-month-view
  2219. :active (org-agenda-check-type nil 'agenda)
  2220. :style radio :selected (eq org-agenda-current-span 'month)
  2221. :keys "v m"]
  2222. ["Year View" org-agenda-year-view
  2223. :active (org-agenda-check-type nil 'agenda)
  2224. :style radio :selected (eq org-agenda-current-span 'year)
  2225. :keys "v y"]
  2226. "--"
  2227. ["Include Diary" org-agenda-toggle-diary
  2228. :style toggle :selected org-agenda-include-diary
  2229. :active (org-agenda-check-type nil 'agenda)]
  2230. ["Include Deadlines" org-agenda-toggle-deadlines
  2231. :style toggle :selected org-agenda-include-deadlines
  2232. :active (org-agenda-check-type nil 'agenda)]
  2233. ["Use Time Grid" org-agenda-toggle-time-grid
  2234. :style toggle :selected org-agenda-use-time-grid
  2235. :active (org-agenda-check-type nil 'agenda)]
  2236. "--"
  2237. ["Show clock report" org-agenda-clockreport-mode
  2238. :style toggle :selected org-agenda-clockreport-mode
  2239. :active (org-agenda-check-type nil 'agenda)]
  2240. ["Show some entry text" org-agenda-entry-text-mode
  2241. :style toggle :selected org-agenda-entry-text-mode
  2242. :active t]
  2243. "--"
  2244. ["Show Logbook entries" org-agenda-log-mode
  2245. :style toggle :selected org-agenda-show-log
  2246. :active (org-agenda-check-type nil 'agenda)
  2247. :keys "v l (or just l)"]
  2248. ["Include archived trees" org-agenda-archives-mode
  2249. :style toggle :selected org-agenda-archives-mode :active t
  2250. :keys "v a"]
  2251. ["Include archive files" (org-agenda-archives-mode t)
  2252. :style toggle :selected (eq org-agenda-archives-mode t) :active t
  2253. :keys "v A"]
  2254. "--"
  2255. ["Remove Restriction" org-agenda-remove-restriction-lock org-agenda-restrict])
  2256. ("Filter current view"
  2257. ["with generic interface" org-agenda-filter t]
  2258. "--"
  2259. ["by category at cursor" org-agenda-filter-by-category t]
  2260. ["by tag" org-agenda-filter-by-tag t]
  2261. ["by effort" org-agenda-filter-by-effort t]
  2262. ["by regexp" org-agenda-filter-by-regexp t]
  2263. ["by top-level headline" org-agenda-filter-by-top-headline t]
  2264. "--"
  2265. ["Remove all filtering" org-agenda-filter-remove-all t]
  2266. "--"
  2267. ["limit" org-agenda-limit-interactively t])
  2268. ["Rebuild buffer" org-agenda-redo t]
  2269. ["Write view to file" org-agenda-write t]
  2270. ["Save all Org buffers" org-save-all-org-buffers t]
  2271. "--"
  2272. ["Show original entry" org-agenda-show t]
  2273. ["Go To (other window)" org-agenda-goto t]
  2274. ["Go To (this window)" org-agenda-switch-to t]
  2275. ["Capture with cursor date" org-agenda-capture t]
  2276. ["Follow Mode" org-agenda-follow-mode
  2277. :style toggle :selected org-agenda-follow-mode :active t]
  2278. ;; ["Tree to indirect frame" org-agenda-tree-to-indirect-buffer t]
  2279. "--"
  2280. ("TODO"
  2281. ["Cycle TODO" org-agenda-todo t]
  2282. ["Next TODO set" org-agenda-todo-nextset t]
  2283. ["Previous TODO set" org-agenda-todo-previousset t]
  2284. ["Add note" org-agenda-add-note t])
  2285. ("Archive/Refile/Delete"
  2286. ["Archive default" org-agenda-archive-default t]
  2287. ["Archive default" org-agenda-archive-default-with-confirmation t]
  2288. ["Toggle ARCHIVE tag" org-agenda-toggle-archive-tag t]
  2289. ["Move to archive sibling" org-agenda-archive-to-archive-sibling t]
  2290. ["Archive subtree" org-agenda-archive t]
  2291. "--"
  2292. ["Refile" org-agenda-refile t]
  2293. "--"
  2294. ["Delete subtree" org-agenda-kill t])
  2295. ("Bulk action"
  2296. ["Mark entry" org-agenda-bulk-mark t]
  2297. ["Mark all" org-agenda-bulk-mark-all t]
  2298. ["Unmark entry" org-agenda-bulk-unmark t]
  2299. ["Unmark all" org-agenda-bulk-unmark-all :active t :keys "U"]
  2300. ["Toggle mark" org-agenda-bulk-toggle t]
  2301. ["Toggle all" org-agenda-bulk-toggle-all t]
  2302. ["Mark regexp" org-agenda-bulk-mark-regexp t])
  2303. ["Act on all marked" org-agenda-bulk-action t]
  2304. "--"
  2305. ("Tags and Properties"
  2306. ["Show all Tags" org-agenda-show-tags t]
  2307. ["Set Tags current line" org-agenda-set-tags (not (org-region-active-p))]
  2308. ["Change tag in region" org-agenda-set-tags (org-region-active-p)]
  2309. "--"
  2310. ["Column View" org-columns t])
  2311. ("Deadline/Schedule"
  2312. ["Schedule" org-agenda-schedule t]
  2313. ["Set Deadline" org-agenda-deadline t]
  2314. "--"
  2315. ["Change Date +1 day" org-agenda-date-later (org-agenda-check-type nil 'agenda)]
  2316. ["Change Date -1 day" org-agenda-date-earlier (org-agenda-check-type nil 'agenda)]
  2317. ["Change Time +1 hour" org-agenda-do-date-later :active (org-agenda-check-type nil 'agenda) :keys "C-u S-right"]
  2318. ["Change Time -1 hour" org-agenda-do-date-earlier :active (org-agenda-check-type nil 'agenda) :keys "C-u S-left"]
  2319. ["Change Time + min" org-agenda-date-later :active (org-agenda-check-type nil 'agenda) :keys "C-u C-u S-right"]
  2320. ["Change Time - min" org-agenda-date-earlier :active (org-agenda-check-type nil 'agenda) :keys "C-u C-u S-left"]
  2321. ["Change Date to ..." org-agenda-date-prompt (org-agenda-check-type nil 'agenda)])
  2322. ("Clock and Effort"
  2323. ["Clock in" org-agenda-clock-in t]
  2324. ["Clock out" org-agenda-clock-out t]
  2325. ["Clock cancel" org-agenda-clock-cancel t]
  2326. ["Goto running clock" org-clock-goto t]
  2327. "--"
  2328. ["Set Effort" org-agenda-set-effort t]
  2329. ["Change clocked effort" org-clock-modify-effort-estimate
  2330. (org-clock-is-active)])
  2331. ("Priority"
  2332. ["Set Priority" org-agenda-priority t]
  2333. ["Increase Priority" org-agenda-priority-up t]
  2334. ["Decrease Priority" org-agenda-priority-down t]
  2335. ["Show Priority" org-priority-show t])
  2336. ("Calendar/Diary"
  2337. ["New Diary Entry" org-agenda-diary-entry (org-agenda-check-type nil 'agenda)]
  2338. ["Goto Calendar" org-agenda-goto-calendar (org-agenda-check-type nil 'agenda)]
  2339. ["Phases of the Moon" org-agenda-phases-of-moon (org-agenda-check-type nil 'agenda)]
  2340. ["Sunrise/Sunset" org-agenda-sunrise-sunset (org-agenda-check-type nil 'agenda)]
  2341. ["Holidays" org-agenda-holidays (org-agenda-check-type nil 'agenda)]
  2342. ["Convert" org-agenda-convert-date (org-agenda-check-type nil 'agenda)]
  2343. "--"
  2344. ["Create iCalendar File" org-icalendar-combine-agenda-files t])
  2345. "--"
  2346. ["Undo Remote Editing" org-agenda-undo org-agenda-undo-list]
  2347. "--"
  2348. ("MobileOrg"
  2349. ["Push Files and Views" org-mobile-push t]
  2350. ["Get Captured and Flagged" org-mobile-pull t]
  2351. ["Find FLAGGED Tasks" (org-agenda nil "?") :active t :keys "\\[org-agenda] ?"]
  2352. ["Show note / unflag" org-agenda-show-the-flagging-note t]
  2353. "--"
  2354. ["Setup" (progn (require 'org-mobile) (customize-group 'org-mobile)) t])
  2355. "--"
  2356. ["Quit" org-agenda-quit t]
  2357. ["Exit and Release Buffers" org-agenda-exit t]
  2358. ))
  2359. ;;; Agenda undo
  2360. (defvar org-agenda-allow-remote-undo t
  2361. "Non-nil means allow remote undo from the agenda buffer.")
  2362. (defvar org-agenda-undo-has-started-in nil
  2363. "Buffers that have already seen `undo-start' in the current undo sequence.")
  2364. (defun org-agenda-undo ()
  2365. "Undo a remote editing step in the agenda.
  2366. This undoes changes both in the agenda buffer and in the remote buffer
  2367. that have been changed along."
  2368. (interactive)
  2369. (or org-agenda-allow-remote-undo
  2370. (user-error "Check the variable `org-agenda-allow-remote-undo' to activate remote undo"))
  2371. (when (not (eq this-command last-command))
  2372. (setq org-agenda-undo-has-started-in nil
  2373. org-agenda-pending-undo-list org-agenda-undo-list))
  2374. (when (not org-agenda-pending-undo-list)
  2375. (user-error "No further undo information"))
  2376. (let* ((entry (pop org-agenda-pending-undo-list))
  2377. buf line cmd rembuf)
  2378. (setq cmd (pop entry) line (pop entry))
  2379. (setq rembuf (nth 2 entry))
  2380. (org-with-remote-undo rembuf
  2381. (while (bufferp (setq buf (pop entry)))
  2382. (when (pop entry)
  2383. (with-current-buffer buf
  2384. (let (;; (last-undo-buffer buf)
  2385. (inhibit-read-only t))
  2386. (unless (memq buf org-agenda-undo-has-started-in)
  2387. (push buf org-agenda-undo-has-started-in)
  2388. (make-local-variable 'pending-undo-list)
  2389. (undo-start))
  2390. (while (and pending-undo-list
  2391. (listp pending-undo-list)
  2392. (not (car pending-undo-list)))
  2393. (pop pending-undo-list))
  2394. (undo-more 1))))))
  2395. (org-goto-line line)
  2396. (message "`%s' undone (buffer %s)" cmd (buffer-name rembuf))))
  2397. (defun org-verify-change-for-undo (l1 l2)
  2398. "Verify that a real change occurred between the undo lists L1 and L2."
  2399. (while (and l1 (listp l1) (null (car l1))) (pop l1))
  2400. (while (and l2 (listp l2) (null (car l2))) (pop l2))
  2401. (not (eq l1 l2)))
  2402. ;;; Agenda dispatch
  2403. (defvar org-agenda-restrict-begin (make-marker))
  2404. (defvar org-agenda-restrict-end (make-marker))
  2405. (defvar org-agenda-last-dispatch-buffer nil)
  2406. (defvar org-agenda-overriding-restriction nil)
  2407. (defcustom org-agenda-custom-commands-contexts nil
  2408. "Alist of custom agenda keys and contextual rules.
  2409. For example, if you have a custom agenda command \"p\" and you
  2410. want this command to be accessible only from plain text files,
  2411. use this:
  2412. \\='((\"p\" ((in-file . \"\\\\.txt\\\\'\"))))
  2413. Here are the available contexts definitions:
  2414. in-file: command displayed only in matching files
  2415. in-mode: command displayed only in matching modes
  2416. not-in-file: command not displayed in matching files
  2417. not-in-mode: command not displayed in matching modes
  2418. in-buffer: command displayed only in matching buffers
  2419. not-in-buffer: command not displayed in matching buffers
  2420. [function]: a custom function taking no argument
  2421. If you define several checks, the agenda command will be
  2422. accessible if there is at least one valid check.
  2423. You can also bind a key to another agenda custom command
  2424. depending on contextual rules.
  2425. \\='((\"p\" \"q\" ((in-file . \"\\\\.txt\\\\'\"))))
  2426. Here it means: in .txt files, use \"p\" as the key for the
  2427. agenda command otherwise associated with \"q\". (The command
  2428. originally associated with \"q\" is not displayed to avoid
  2429. duplicates.)"
  2430. :version "24.3"
  2431. :group 'org-agenda-custom-commands
  2432. :type '(repeat (list :tag "Rule"
  2433. (string :tag " Agenda key")
  2434. (string :tag "Replace by command")
  2435. (repeat :tag "Available when"
  2436. (choice
  2437. (cons :tag "Condition"
  2438. (choice
  2439. (const :tag "In file" in-file)
  2440. (const :tag "Not in file" not-in-file)
  2441. (const :tag "In buffer" in-buffer)
  2442. (const :tag "Not in buffer" not-in-buffer)
  2443. (const :tag "In mode" in-mode)
  2444. (const :tag "Not in mode" not-in-mode))
  2445. (regexp))
  2446. (function :tag "Custom function"))))))
  2447. (defcustom org-agenda-max-entries nil
  2448. "Maximum number of entries to display in an agenda.
  2449. This can be nil (no limit) or an integer or an alist of agenda
  2450. types with an associated number of entries to display in this
  2451. type."
  2452. :version "24.4"
  2453. :package-version '(Org . "8.0")
  2454. :group 'org-agenda-custom-commands
  2455. :type '(choice (symbol :tag "No limit" nil)
  2456. (integer :tag "Max number of entries")
  2457. (repeat
  2458. (cons (choice :tag "Agenda type"
  2459. (const agenda)
  2460. (const todo)
  2461. (const tags)
  2462. (const search))
  2463. (integer :tag "Max number of entries")))))
  2464. (defcustom org-agenda-max-todos nil
  2465. "Maximum number of TODOs to display in an agenda.
  2466. This can be nil (no limit) or an integer or an alist of agenda
  2467. types with an associated number of entries to display in this
  2468. type."
  2469. :version "24.4"
  2470. :package-version '(Org . "8.0")
  2471. :group 'org-agenda-custom-commands
  2472. :type '(choice (symbol :tag "No limit" nil)
  2473. (integer :tag "Max number of TODOs")
  2474. (repeat
  2475. (cons (choice :tag "Agenda type"
  2476. (const agenda)
  2477. (const todo)
  2478. (const tags)
  2479. (const search))
  2480. (integer :tag "Max number of TODOs")))))
  2481. (defcustom org-agenda-max-tags nil
  2482. "Maximum number of tagged entries to display in an agenda.
  2483. This can be nil (no limit) or an integer or an alist of agenda
  2484. types with an associated number of entries to display in this
  2485. type."
  2486. :version "24.4"
  2487. :package-version '(Org . "8.0")
  2488. :group 'org-agenda-custom-commands
  2489. :type '(choice (symbol :tag "No limit" nil)
  2490. (integer :tag "Max number of tagged entries")
  2491. (repeat
  2492. (cons (choice :tag "Agenda type"
  2493. (const agenda)
  2494. (const todo)
  2495. (const tags)
  2496. (const search))
  2497. (integer :tag "Max number of tagged entries")))))
  2498. (defcustom org-agenda-max-effort nil
  2499. "Maximum cumulated effort duration for the agenda.
  2500. This can be nil (no limit) or a number of minutes (as an integer)
  2501. or an alist of agenda types with an associated number of minutes
  2502. to limit entries to in this type."
  2503. :version "24.4"
  2504. :package-version '(Org . "8.0")
  2505. :group 'org-agenda-custom-commands
  2506. :type '(choice (symbol :tag "No limit" nil)
  2507. (integer :tag "Max number of minutes")
  2508. (repeat
  2509. (cons (choice :tag "Agenda type"
  2510. (const agenda)
  2511. (const todo)
  2512. (const tags)
  2513. (const search))
  2514. (integer :tag "Max number of minutes")))))
  2515. (defvar org-agenda-keep-restricted-file-list nil)
  2516. (defvar org-keys nil)
  2517. (defvar org-match nil)
  2518. ;;;###autoload
  2519. (defun org-agenda (&optional arg keys restriction)
  2520. "Dispatch agenda commands to collect entries to the agenda buffer.
  2521. Prompts for a command to execute. Any prefix arg will be passed
  2522. on to the selected command. The default selections are:
  2523. a Call `org-agenda-list' to display the agenda for current day or week.
  2524. t Call `org-todo-list' to display the global todo list.
  2525. T Call `org-todo-list' to display the global todo list, select only
  2526. entries with a specific TODO keyword (the user gets a prompt).
  2527. m Call `org-tags-view' to display headlines with tags matching
  2528. a condition (the user is prompted for the condition).
  2529. M Like `m', but select only TODO entries, no ordinary headlines.
  2530. e Export views to associated files.
  2531. s Search entries for keywords.
  2532. S Search entries for keywords, only with TODO keywords.
  2533. / Multi occur across all agenda files and also files listed
  2534. in `org-agenda-text-search-extra-files'.
  2535. < Restrict agenda commands to buffer, subtree, or region.
  2536. Press several times to get the desired effect.
  2537. > Remove a previous restriction.
  2538. # List \"stuck\" projects.
  2539. ! Configure what \"stuck\" means.
  2540. C Configure custom agenda commands.
  2541. More commands can be added by configuring the variable
  2542. `org-agenda-custom-commands'. In particular, specific tags and TODO keyword
  2543. searches can be pre-defined in this way.
  2544. If the current buffer is in Org mode and visiting a file, you can also
  2545. first press `<' once to indicate that the agenda should be temporarily
  2546. \(until the next use of `\\[org-agenda]') restricted to the current file.
  2547. Pressing `<' twice means to restrict to the current subtree or region
  2548. \(if active)."
  2549. (interactive "P")
  2550. (catch 'exit
  2551. (let* ((org-keys keys)
  2552. (prefix-descriptions nil)
  2553. (org-agenda-buffer-name org-agenda-buffer-name)
  2554. (org-agenda-window-setup (if (equal (buffer-name)
  2555. org-agenda-buffer-name)
  2556. 'current-window
  2557. org-agenda-window-setup))
  2558. (org-agenda-custom-commands-orig org-agenda-custom-commands)
  2559. (org-agenda-custom-commands
  2560. ;; normalize different versions
  2561. (delq nil
  2562. (mapcar
  2563. (lambda (x)
  2564. (cond ((stringp (cdr x))
  2565. (push x prefix-descriptions)
  2566. nil)
  2567. ((stringp (nth 1 x)) x)
  2568. ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
  2569. (t (cons (car x) (cons "" (cdr x))))))
  2570. org-agenda-custom-commands)))
  2571. (org-agenda-custom-commands
  2572. (org-contextualize-keys
  2573. org-agenda-custom-commands org-agenda-custom-commands-contexts))
  2574. ;; (buf (current-buffer))
  2575. (bfn (buffer-file-name (buffer-base-buffer)))
  2576. entry type org-match lprops ans) ;; key
  2577. ;; Turn off restriction unless there is an overriding one,
  2578. (unless org-agenda-overriding-restriction
  2579. (unless org-agenda-keep-restricted-file-list
  2580. ;; There is a request to keep the file list in place
  2581. (put 'org-agenda-files 'org-restrict nil))
  2582. (setq org-agenda-restrict nil)
  2583. (move-marker org-agenda-restrict-begin nil)
  2584. (move-marker org-agenda-restrict-end nil))
  2585. ;; Delete old local properties
  2586. (put 'org-agenda-redo-command 'org-lprops nil)
  2587. ;; Delete previously set last-arguments
  2588. (put 'org-agenda-redo-command 'last-args nil)
  2589. ;; Remember where this call originated
  2590. (setq org-agenda-last-dispatch-buffer (current-buffer))
  2591. (unless org-keys
  2592. (setq ans (org-agenda-get-restriction-and-command prefix-descriptions)
  2593. org-keys (car ans)
  2594. restriction (cdr ans)))
  2595. ;; If we have sticky agenda buffers, set a name for the buffer,
  2596. ;; depending on the invoking keys. The user may still set this
  2597. ;; as a command option, which will overwrite what we do here.
  2598. (when org-agenda-sticky
  2599. (setq org-agenda-buffer-name
  2600. (format "*Org Agenda(%s)*" org-keys)))
  2601. ;; Establish the restriction, if any
  2602. (when (and (not org-agenda-overriding-restriction) restriction)
  2603. (put 'org-agenda-files 'org-restrict (list bfn))
  2604. (cond
  2605. ((eq restriction 'region)
  2606. (setq org-agenda-restrict (current-buffer))
  2607. (move-marker org-agenda-restrict-begin (region-beginning))
  2608. (move-marker org-agenda-restrict-end (region-end)))
  2609. ((eq restriction 'subtree)
  2610. (save-excursion
  2611. (setq org-agenda-restrict (current-buffer))
  2612. (org-back-to-heading t)
  2613. (move-marker org-agenda-restrict-begin (point))
  2614. (move-marker org-agenda-restrict-end
  2615. (progn (org-end-of-subtree t)))))
  2616. ((and (eq restriction 'buffer)
  2617. (or (< 1 (point-min))
  2618. (< (point-max) (1+ (buffer-size)))))
  2619. (setq org-agenda-restrict (current-buffer))
  2620. (move-marker org-agenda-restrict-begin (point-min))
  2621. (move-marker org-agenda-restrict-end (point-max)))))
  2622. ;; For example the todo list should not need it (but does...)
  2623. (cond
  2624. ((setq entry (assoc org-keys org-agenda-custom-commands))
  2625. (if (or (symbolp (nth 2 entry)) (functionp (nth 2 entry)))
  2626. (progn
  2627. ;; FIXME: Is (nth 3 entry) supposed to have access (via dynvars)
  2628. ;; to some of the local variables? There's no doc about
  2629. ;; that for `org-agenda-custom-commands'.
  2630. (setq type (nth 2 entry) org-match (eval (nth 3 entry) t)
  2631. lprops (nth 4 entry))
  2632. (when org-agenda-sticky
  2633. (setq org-agenda-buffer-name
  2634. (or (and (stringp org-match) (format "*Org Agenda(%s:%s)*" org-keys org-match))
  2635. (format "*Org Agenda(%s)*" org-keys))))
  2636. (put 'org-agenda-redo-command 'org-lprops lprops)
  2637. (cl-progv
  2638. (mapcar #'car lprops)
  2639. (mapcar (lambda (binding) (eval (cadr binding) t)) lprops)
  2640. (pcase type
  2641. (`agenda
  2642. (org-agenda-list current-prefix-arg))
  2643. (`agenda*
  2644. (org-agenda-list current-prefix-arg nil nil t))
  2645. (`alltodo
  2646. (org-todo-list current-prefix-arg))
  2647. (`search
  2648. (org-search-view current-prefix-arg org-match nil))
  2649. (`stuck
  2650. (org-agenda-list-stuck-projects current-prefix-arg))
  2651. (`tags
  2652. (org-tags-view current-prefix-arg org-match))
  2653. (`tags-todo
  2654. (org-tags-view '(4) org-match))
  2655. (`todo
  2656. (org-todo-list org-match))
  2657. (`tags-tree
  2658. (org-check-for-org-mode)
  2659. (org-match-sparse-tree current-prefix-arg org-match))
  2660. (`todo-tree
  2661. (org-check-for-org-mode)
  2662. (org-occur (concat "^" org-outline-regexp "[ \t]*"
  2663. (regexp-quote org-match) "\\>")))
  2664. (`occur-tree
  2665. (org-check-for-org-mode)
  2666. (org-occur org-match))
  2667. ((pred functionp)
  2668. (funcall type org-match))
  2669. ;; FIXME: Will signal an error since it's not `functionp'!
  2670. ((pred fboundp) (funcall type org-match))
  2671. (_ (user-error "Invalid custom agenda command type %s" type)))))
  2672. (org-agenda-run-series (nth 1 entry) (cddr entry))))
  2673. ((equal org-keys "C")
  2674. (setq org-agenda-custom-commands org-agenda-custom-commands-orig)
  2675. (customize-variable 'org-agenda-custom-commands))
  2676. ((equal org-keys "a") (call-interactively 'org-agenda-list))
  2677. ((equal org-keys "s") (call-interactively 'org-search-view))
  2678. ((equal org-keys "S") (org-call-with-arg 'org-search-view (or arg '(4))))
  2679. ((equal org-keys "t") (call-interactively 'org-todo-list))
  2680. ((equal org-keys "T") (org-call-with-arg 'org-todo-list (or arg '(4))))
  2681. ((equal org-keys "m") (call-interactively 'org-tags-view))
  2682. ((equal org-keys "M") (org-call-with-arg 'org-tags-view (or arg '(4))))
  2683. ((equal org-keys "e") (call-interactively 'org-store-agenda-views))
  2684. ((equal org-keys "?") (org-tags-view nil "+FLAGGED")
  2685. (add-hook
  2686. 'post-command-hook
  2687. (lambda ()
  2688. (unless (current-message)
  2689. (let* ((m (org-agenda-get-any-marker))
  2690. (note (and m (org-entry-get m "THEFLAGGINGNOTE"))))
  2691. (when note
  2692. (message "FLAGGING-NOTE ([?] for more info): %s"
  2693. (org-add-props
  2694. (replace-regexp-in-string
  2695. "\\\\n" "//"
  2696. (copy-sequence note))
  2697. nil 'face 'org-warning))))))
  2698. t t))
  2699. ((equal org-keys "#") (call-interactively 'org-agenda-list-stuck-projects))
  2700. ((equal org-keys "/") (call-interactively 'org-occur-in-agenda-files))
  2701. ((equal org-keys "!") (customize-variable 'org-stuck-projects))
  2702. (t (user-error "Invalid agenda key"))))))
  2703. (defvar org-agenda-multi)
  2704. (defun org-agenda-append-agenda ()
  2705. "Append another agenda view to the current one.
  2706. This function allows interactive building of block agendas.
  2707. Agenda views are separated by `org-agenda-block-separator'."
  2708. (interactive)
  2709. (unless (derived-mode-p 'org-agenda-mode)
  2710. (user-error "Can only append from within agenda buffer"))
  2711. (let ((org-agenda-multi t))
  2712. (org-agenda)
  2713. (widen)
  2714. (org-agenda-finalize)
  2715. (setq buffer-read-only t)
  2716. (org-agenda-fit-window-to-buffer)))
  2717. (defun org-agenda-normalize-custom-commands (cmds)
  2718. "Normalize custom commands CMDS."
  2719. (delq nil
  2720. (mapcar
  2721. (lambda (x)
  2722. (cond ((stringp (cdr x)) nil)
  2723. ((stringp (nth 1 x)) x)
  2724. ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
  2725. (t (cons (car x) (cons "" (cdr x))))))
  2726. cmds)))
  2727. (defun org-agenda-get-restriction-and-command (prefix-descriptions)
  2728. "The user interface for selecting an agenda command."
  2729. (catch 'exit
  2730. (let* ((bfn (buffer-file-name (buffer-base-buffer)))
  2731. (restrict-ok (and bfn (derived-mode-p 'org-mode)))
  2732. (region-p (org-region-active-p))
  2733. (custom org-agenda-custom-commands)
  2734. (selstring "")
  2735. restriction second-time
  2736. c entry key type match prefixes rmheader header-end custom1 desc
  2737. line lines left right n n1)
  2738. (save-window-excursion
  2739. (delete-other-windows)
  2740. (org-switch-to-buffer-other-window " *Agenda Commands*")
  2741. (erase-buffer)
  2742. (insert (eval-when-compile
  2743. (let ((header
  2744. (copy-sequence
  2745. "Press key for an agenda command:
  2746. -------------------------------- < Buffer, subtree/region restriction
  2747. a Agenda for current week or day > Remove restriction
  2748. t List of all TODO entries e Export agenda views
  2749. m Match a TAGS/PROP/TODO query T Entries with special TODO kwd
  2750. s Search for keywords M Like m, but only TODO entries
  2751. / Multi-occur S Like s, but only TODO entries
  2752. ? Find :FLAGGED: entries C Configure custom agenda commands
  2753. * Toggle sticky agenda views # List stuck projects (!=configure)
  2754. "))
  2755. (start 0))
  2756. (while (string-match
  2757. "\\(^\\| \\|(\\)\\(\\S-\\)\\( \\|=\\)"
  2758. header start)
  2759. (setq start (match-end 0))
  2760. (add-text-properties (match-beginning 2) (match-end 2)
  2761. '(face bold) header))
  2762. header)))
  2763. (setq header-end (point-marker))
  2764. (while t
  2765. (setq custom1 custom)
  2766. (when (eq rmheader t)
  2767. (org-goto-line 1)
  2768. (re-search-forward ":" nil t)
  2769. (delete-region (match-end 0) (point-at-eol))
  2770. (forward-char 1)
  2771. (looking-at "-+")
  2772. (delete-region (match-end 0) (point-at-eol))
  2773. (move-marker header-end (match-end 0)))
  2774. (goto-char header-end)
  2775. (delete-region (point) (point-max))
  2776. ;; Produce all the lines that describe custom commands and prefixes
  2777. (setq lines nil)
  2778. (while (setq entry (pop custom1))
  2779. (setq key (car entry) desc (nth 1 entry)
  2780. type (nth 2 entry)
  2781. match (nth 3 entry))
  2782. (if (> (length key) 1)
  2783. (cl-pushnew (string-to-char key) prefixes :test #'equal)
  2784. (setq line
  2785. (format
  2786. "%-4s%-14s"
  2787. (org-add-props (copy-sequence key)
  2788. '(face bold))
  2789. (cond
  2790. ((string-match "\\S-" desc) desc)
  2791. ((eq type 'agenda) "Agenda for current week or day")
  2792. ((eq type 'agenda*) "Appointments for current week or day")
  2793. ((eq type 'alltodo) "List of all TODO entries")
  2794. ((eq type 'search) "Word search")
  2795. ((eq type 'stuck) "List of stuck projects")
  2796. ((eq type 'todo) "TODO keyword")
  2797. ((eq type 'tags) "Tags query")
  2798. ((eq type 'tags-todo) "Tags (TODO)")
  2799. ((eq type 'tags-tree) "Tags tree")
  2800. ((eq type 'todo-tree) "TODO kwd tree")
  2801. ((eq type 'occur-tree) "Occur tree")
  2802. ((functionp type) (if (symbolp type)
  2803. (symbol-name type)
  2804. "Lambda expression"))
  2805. (t "???"))))
  2806. (cond
  2807. ((not (org-string-nw-p match)) nil)
  2808. (org-agenda-menu-show-matcher
  2809. (setq line
  2810. (concat line ": "
  2811. (cond
  2812. ((stringp match)
  2813. (propertize match 'face 'org-warning))
  2814. ((listp type)
  2815. (format "set of %d commands" (length type)))))))
  2816. (t
  2817. (org-add-props line nil 'help-echo (concat "Matcher: " match))))
  2818. (push line lines)))
  2819. (setq lines (nreverse lines))
  2820. (when prefixes
  2821. (mapc (lambda (x)
  2822. (push
  2823. (format "%s %s"
  2824. (org-add-props (char-to-string x)
  2825. nil 'face 'bold)
  2826. (or (cdr (assoc (concat selstring
  2827. (char-to-string x))
  2828. prefix-descriptions))
  2829. "Prefix key"))
  2830. lines))
  2831. prefixes))
  2832. ;; Check if we should display in two columns
  2833. (if org-agenda-menu-two-columns
  2834. (progn
  2835. (setq n (length lines)
  2836. n1 (+ (/ n 2) (mod n 2))
  2837. right (nthcdr n1 lines)
  2838. left (copy-sequence lines))
  2839. (setcdr (nthcdr (1- n1) left) nil))
  2840. (setq left lines right nil))
  2841. (while left
  2842. (insert "\n" (pop left))
  2843. (when right
  2844. (if (< (current-column) 40)
  2845. (move-to-column 40 t)
  2846. (insert " "))
  2847. (insert (pop right))))
  2848. ;; Make the window the right size
  2849. (goto-char (point-min))
  2850. (if second-time
  2851. (when (not (pos-visible-in-window-p (point-max)))
  2852. (org-fit-window-to-buffer))
  2853. (setq second-time t)
  2854. (org-fit-window-to-buffer))
  2855. ;; Hint to navigation if window too small for all information
  2856. (setq header-line-format
  2857. (when (not (pos-visible-in-window-p (point-max)))
  2858. "Use C-v, M-v, C-n or C-p to navigate."))
  2859. ;; Ask for selection
  2860. (cl-loop
  2861. do (progn
  2862. (message "Press key for agenda command%s:"
  2863. (if (or restrict-ok org-agenda-overriding-restriction)
  2864. (if org-agenda-overriding-restriction
  2865. " (restriction lock active)"
  2866. (if restriction
  2867. (format " (restricted to %s)" restriction)
  2868. " (unrestricted)"))
  2869. ""))
  2870. (setq c (read-char-exclusive)))
  2871. until (not (memq c '(14 16 22 134217846)))
  2872. do (org-scroll c))
  2873. (message "")
  2874. (cond
  2875. ((assoc (char-to-string c) custom)
  2876. (setq selstring (concat selstring (char-to-string c)))
  2877. (throw 'exit (cons selstring restriction)))
  2878. ((memq c prefixes)
  2879. (setq selstring (concat selstring (char-to-string c))
  2880. prefixes nil
  2881. rmheader (or rmheader t)
  2882. custom (delq nil (mapcar
  2883. (lambda (x)
  2884. (if (or (= (length (car x)) 1)
  2885. (/= (string-to-char (car x)) c))
  2886. nil
  2887. (cons (substring (car x) 1) (cdr x))))
  2888. custom))))
  2889. ((eq c ?*)
  2890. (call-interactively 'org-toggle-sticky-agenda)
  2891. (sit-for 2))
  2892. ((and (not restrict-ok) (memq c '(?1 ?0 ?<)))
  2893. (message "Restriction is only possible in Org buffers")
  2894. (ding) (sit-for 1))
  2895. ((eq c ?1)
  2896. (org-agenda-remove-restriction-lock 'noupdate)
  2897. (setq restriction 'buffer))
  2898. ((eq c ?0)
  2899. (org-agenda-remove-restriction-lock 'noupdate)
  2900. (setq restriction (if region-p 'region 'subtree)))
  2901. ((eq c ?<)
  2902. (org-agenda-remove-restriction-lock 'noupdate)
  2903. (setq restriction
  2904. (cond
  2905. ((eq restriction 'buffer)
  2906. (if region-p 'region 'subtree))
  2907. ((memq restriction '(subtree region))
  2908. nil)
  2909. (t 'buffer))))
  2910. ((eq c ?>)
  2911. (org-agenda-remove-restriction-lock 'noupdate)
  2912. (setq restriction nil))
  2913. ((and (equal selstring "") (memq c '(?s ?S ?a ?t ?m ?L ?C ?e ?T ?M ?# ?! ?/ ??)))
  2914. (throw 'exit (cons (setq selstring (char-to-string c)) restriction)))
  2915. ((and (> (length selstring) 0) (eq c ?\d))
  2916. (delete-window)
  2917. (org-agenda-get-restriction-and-command prefix-descriptions))
  2918. ((equal c ?q) (user-error "Abort"))
  2919. (t (user-error "Invalid key %c" c))))))))
  2920. (defun org-agenda-fit-window-to-buffer ()
  2921. "Fit the window to the buffer size."
  2922. (and (memq org-agenda-window-setup '(reorganize-frame))
  2923. (fboundp 'fit-window-to-buffer)
  2924. (if (and (= (cdr org-agenda-window-frame-fractions) 1.0)
  2925. (= (car org-agenda-window-frame-fractions) 1.0))
  2926. (delete-other-windows)
  2927. (org-fit-window-to-buffer
  2928. nil
  2929. (floor (* (frame-height) (cdr org-agenda-window-frame-fractions)))
  2930. (floor (* (frame-height) (car org-agenda-window-frame-fractions)))))))
  2931. (defvar org-cmd nil)
  2932. (defvar org-agenda-overriding-cmd nil)
  2933. (defvar org-agenda-overriding-arguments nil)
  2934. (defvar org-agenda-overriding-cmd-arguments nil)
  2935. (defun org-let (list &rest body) ;FIXME: So many kittens are suffering here.
  2936. (declare (indent 1) (obsolete cl-progv "2021"))
  2937. (eval (cons 'let (cons list body))))
  2938. (defun org-let2 (list1 list2 &rest body) ;FIXME: Where did our karma go?
  2939. (declare (indent 2) (obsolete cl-progv "2021"))
  2940. (eval (cons 'let (cons list1 (list (cons 'let (cons list2 body)))))))
  2941. (defun org-agenda-run-series (name series)
  2942. "Run agenda NAME as a SERIES of agenda commands."
  2943. (let* ((gprops (nth 1 series))
  2944. (gvars (mapcar #'car gprops))
  2945. (gvals (mapcar (lambda (binding) (eval (cadr binding) t)) gprops)))
  2946. (cl-progv gvars gvals (org-agenda-prepare name))
  2947. ;; We need to reset agenda markers here, because when constructing a
  2948. ;; block agenda, the individual blocks do not do that.
  2949. (org-agenda-reset-markers)
  2950. (with-no-warnings
  2951. (defvar match)) ;Used via the `eval' below.
  2952. (let* ((org-agenda-multi t)
  2953. ;; FIXME: Redo should contain lists of (FUNS . ARGS) rather
  2954. ;; than expressions, so you don't need to `quote' the args
  2955. ;; and you just need to `apply' instead of `eval' when using it.
  2956. (redo (list 'org-agenda-run-series name (list 'quote series)))
  2957. (cmds (car series))
  2958. match
  2959. org-cmd type lprops)
  2960. (while (setq org-cmd (pop cmds))
  2961. (setq type (car org-cmd))
  2962. (setq match (eval (nth 1 org-cmd) t))
  2963. (setq lprops (nth 2 org-cmd))
  2964. (let ((org-agenda-overriding-arguments
  2965. (if (eq org-agenda-overriding-cmd org-cmd)
  2966. (or org-agenda-overriding-arguments
  2967. org-agenda-overriding-cmd-arguments)))
  2968. (lvars (mapcar #'car lprops))
  2969. (lvals (mapcar (lambda (binding) (eval (cadr binding) t)) lprops)))
  2970. (cl-progv (append gvars lvars) (append gvals lvals)
  2971. (pcase type
  2972. (`agenda
  2973. (call-interactively 'org-agenda-list))
  2974. (`agenda*
  2975. (funcall 'org-agenda-list nil nil t))
  2976. (`alltodo
  2977. (call-interactively 'org-todo-list))
  2978. (`search
  2979. (org-search-view current-prefix-arg match nil))
  2980. (`stuck
  2981. (call-interactively 'org-agenda-list-stuck-projects))
  2982. (`tags
  2983. (org-tags-view current-prefix-arg match))
  2984. (`tags-todo
  2985. (org-tags-view '(4) match))
  2986. (`todo
  2987. (org-todo-list match))
  2988. ((pred fboundp)
  2989. (funcall type match))
  2990. (_ (error "Invalid type in command series"))))))
  2991. (widen)
  2992. (let ((inhibit-read-only t))
  2993. (add-text-properties (point-min) (point-max)
  2994. `(org-series t org-series-redo-cmd ,redo)))
  2995. (setq org-agenda-redo-command redo)
  2996. (goto-char (point-min)))
  2997. (org-agenda-fit-window-to-buffer)
  2998. (cl-progv gvars gvals (org-agenda-finalize))))
  2999. (defun org-agenda--split-plist (plist)
  3000. ;; We could/should arguably use `map-keys' and `map-values'.
  3001. (let (keys vals)
  3002. (while plist
  3003. (push (pop plist) keys)
  3004. (push (pop plist) vals))
  3005. (cons (nreverse keys) (nreverse vals))))
  3006. ;;;###autoload
  3007. (defmacro org-batch-agenda (cmd-key &rest parameters)
  3008. "Run an agenda command in batch mode and send the result to STDOUT.
  3009. If CMD-KEY is a string of length 1, it is used as a key in
  3010. `org-agenda-custom-commands' and triggers this command. If it is a
  3011. longer string it is used as a tags/todo match string.
  3012. Parameters are alternating variable names and values that will be bound
  3013. before running the agenda command."
  3014. (pcase-let ((`(,vars . ,exps) (org-agenda--split-plist parameters)))
  3015. `(org--batch-agenda ,cmd-key ',vars (list ,@exps))))
  3016. (defun org--batch-agenda (cmd-key vars vals)
  3017. ;; `org-batch-agenda' is a macro because every other "parameter" is
  3018. ;; a variable name rather than an expression to evaluate. Yuck!
  3019. (cl-progv vars vals
  3020. (let (org-agenda-sticky)
  3021. (if (> (length cmd-key) 1)
  3022. (org-tags-view nil cmd-key)
  3023. (org-agenda nil cmd-key))))
  3024. (set-buffer org-agenda-buffer-name)
  3025. (princ (buffer-string)))
  3026. (defvar org-agenda-info nil)
  3027. ;;;###autoload
  3028. (defmacro org-batch-agenda-csv (cmd-key &rest parameters)
  3029. "Run an agenda command in batch mode and send the result to STDOUT.
  3030. If CMD-KEY is a string of length 1, it is used as a key in
  3031. `org-agenda-custom-commands' and triggers this command. If it is a
  3032. longer string it is used as a tags/todo match string.
  3033. Parameters are alternating variable names and values that will be bound
  3034. before running the agenda command.
  3035. The output gives a line for each selected agenda item. Each
  3036. item is a list of comma-separated values, like this:
  3037. category,head,type,todo,tags,date,time,extra,priority-l,priority-n
  3038. category The category of the item
  3039. head The headline, without TODO kwd, TAGS and PRIORITY
  3040. type The type of the agenda entry, can be
  3041. todo selected in TODO match
  3042. tagsmatch selected in tags match
  3043. diary imported from diary
  3044. deadline a deadline on given date
  3045. scheduled scheduled on given date
  3046. timestamp entry has timestamp on given date
  3047. closed entry was closed on given date
  3048. upcoming-deadline warning about deadline
  3049. past-scheduled forwarded scheduled item
  3050. block entry has date block including g. date
  3051. todo The todo keyword, if any
  3052. tags All tags including inherited ones, separated by colons
  3053. date The relevant date, like 2007-2-14
  3054. time The time, like 15:00-16:50
  3055. extra String with extra planning info
  3056. priority-l The priority letter if any was given
  3057. priority-n The computed numerical priority
  3058. agenda-day The day in the agenda where this is listed"
  3059. (pcase-let ((`(,vars . ,exps) (org-agenda--split-plist parameters)))
  3060. `(org--batch-agenda-csv ,cmd-key ',vars (list ,@exps))))
  3061. (defun org--batch-agenda-csv (cmd-key vars vals)
  3062. ;; `org-batch-agenda-csv' is a macro because every other "parameter" is
  3063. ;; a variable name rather than an expression to evaluate. Yuck!
  3064. (let ((org-agenda-remove-tags t))
  3065. (cl-progv vars vals
  3066. ;; FIXME: Shouldn't this be 1 (see commit 10173ad6d610b)?
  3067. (if (> (length cmd-key) 2)
  3068. (org-tags-view nil cmd-key)
  3069. (org-agenda nil cmd-key))))
  3070. (set-buffer org-agenda-buffer-name)
  3071. (let ((lines (org-split-string (buffer-string) "\n")))
  3072. (dolist (line lines)
  3073. (when (get-text-property 0 'org-category line)
  3074. (setq org-agenda-info
  3075. (org-fix-agenda-info (text-properties-at 0 line)))
  3076. (princ
  3077. (mapconcat #'org-agenda-export-csv-mapper
  3078. '(org-category txt type todo tags date time extra
  3079. priority-letter priority agenda-day)
  3080. ","))
  3081. (princ "\n")))))
  3082. (defun org-fix-agenda-info (props)
  3083. "Make sure all properties on an agenda item have a canonical form.
  3084. This ensures the export commands can easily use it."
  3085. (let (tmp re)
  3086. (when (setq tmp (plist-get props 'tags))
  3087. (setq props (plist-put props 'tags (mapconcat #'identity tmp ":"))))
  3088. (when (setq tmp (plist-get props 'date))
  3089. (when (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
  3090. (let ((calendar-date-display-form '(year "-" month "-" day)))
  3091. '((format "%4d, %9s %2s, %4s" dayname monthname day year))
  3092. (setq tmp (calendar-date-string tmp)))
  3093. (setq props (plist-put props 'date tmp)))
  3094. (when (setq tmp (plist-get props 'day))
  3095. (when (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
  3096. (let ((calendar-date-display-form '(year "-" month "-" day)))
  3097. (setq tmp (calendar-date-string tmp)))
  3098. (setq props (plist-put props 'day tmp))
  3099. (setq props (plist-put props 'agenda-day tmp)))
  3100. (when (setq tmp (plist-get props 'txt))
  3101. (when (string-match "\\[#\\([A-Z0-9]\\)\\] ?" tmp)
  3102. (plist-put props 'priority-letter (match-string 1 tmp))
  3103. (setq tmp (replace-match "" t t tmp)))
  3104. (when (and (setq re (plist-get props 'org-todo-regexp))
  3105. (setq re (concat "\\`\\.*" re " ?"))
  3106. (let ((case-fold-search nil)) (string-match re tmp)))
  3107. (plist-put props 'todo (match-string 1 tmp))
  3108. (setq tmp (replace-match "" t t tmp)))
  3109. (plist-put props 'txt tmp)))
  3110. props)
  3111. (defun org-agenda-export-csv-mapper (prop)
  3112. (let ((res (plist-get org-agenda-info prop)))
  3113. (setq res
  3114. (cond
  3115. ((not res) "")
  3116. ((stringp res) res)
  3117. (t (prin1-to-string res))))
  3118. (org-trim (replace-regexp-in-string "," ";" res nil t))))
  3119. ;;;###autoload
  3120. (defun org-store-agenda-views (&rest _parameters)
  3121. "Store agenda views."
  3122. (interactive)
  3123. (org--batch-store-agenda-views nil nil))
  3124. ;;;###autoload
  3125. (defmacro org-batch-store-agenda-views (&rest parameters)
  3126. "Run all custom agenda commands that have a file argument."
  3127. (pcase-let ((`(,vars . ,exps) (org-agenda--split-plist parameters)))
  3128. `(org--batch-store-agenda-views ',vars (list ,@exps))))
  3129. (defun org--batch-store-agenda-views (vars vals)
  3130. (let ((cmds (org-agenda-normalize-custom-commands org-agenda-custom-commands))
  3131. (pop-up-frames nil)
  3132. (dir default-directory)
  3133. cmd thiscmdkey thiscmdcmd match files opts cmd-or-set bufname)
  3134. (save-window-excursion
  3135. (while cmds
  3136. (setq cmd (pop cmds)
  3137. thiscmdkey (car cmd)
  3138. thiscmdcmd (cdr cmd)
  3139. match (nth 2 thiscmdcmd)
  3140. bufname (if org-agenda-sticky
  3141. (or (and (stringp match)
  3142. (format "*Org Agenda(%s:%s)*" thiscmdkey match))
  3143. (format "*Org Agenda(%s)*" thiscmdkey))
  3144. org-agenda-buffer-name)
  3145. cmd-or-set (nth 2 cmd)
  3146. opts (nth (if (listp cmd-or-set) 3 4) cmd)
  3147. files (nth (if (listp cmd-or-set) 4 5) cmd))
  3148. (if (stringp files) (setq files (list files)))
  3149. (when files
  3150. (let* ((opts (append org-agenda-exporter-settings opts))
  3151. (vars (append (mapcar #'car opts) vars))
  3152. (vals (append (mapcar (lambda (binding) (eval (cadr binding) t))
  3153. opts)
  3154. vals)))
  3155. (cl-progv vars vals
  3156. (org-agenda nil thiscmdkey))
  3157. (set-buffer bufname)
  3158. (while files
  3159. (cl-progv vars vals
  3160. (org-agenda-write (expand-file-name (pop files) dir)
  3161. nil t bufname))))
  3162. (and (get-buffer bufname)
  3163. (kill-buffer bufname)))))))
  3164. (defvar org-agenda-current-span nil
  3165. "The current span used in the agenda view.") ; local variable in the agenda buffer
  3166. (defun org-agenda-mark-header-line (pos)
  3167. "Mark the line at POS as an agenda structure header."
  3168. (save-excursion
  3169. (goto-char pos)
  3170. (put-text-property (point-at-bol) (point-at-eol)
  3171. 'org-agenda-structural-header t)
  3172. (when org-agenda-title-append
  3173. (put-text-property (point-at-bol) (point-at-eol)
  3174. 'org-agenda-title-append org-agenda-title-append))))
  3175. (defvar org-mobile-creating-agendas) ; defined in org-mobile.el
  3176. (defvar org-agenda-write-buffer-name "Agenda View")
  3177. (defun org-agenda-write (file &optional open nosettings agenda-bufname)
  3178. "Write the current buffer (an agenda view) as a file.
  3179. Depending on the extension of the file name, plain text (.txt),
  3180. HTML (.html or .htm), PDF (.pdf) or Postscript (.ps) is produced.
  3181. If the extension is .ics, translate visible agenda into iCalendar
  3182. format. If the extension is .org, collect all subtrees
  3183. corresponding to the agenda entries and add them in an .org file.
  3184. With prefix argument OPEN, open the new file immediately. If
  3185. NOSETTINGS is given, do not scope the settings of
  3186. `org-agenda-exporter-settings' into the export commands. This is
  3187. used when the settings have already been scoped and we do not
  3188. wish to overrule other, higher priority settings. If
  3189. AGENDA-BUFFER-NAME is provided, use this as the buffer name for
  3190. the agenda to write."
  3191. (interactive "FWrite agenda to file: \nP")
  3192. (if (or (not (file-writable-p file))
  3193. (and (file-exists-p file)
  3194. (if (called-interactively-p 'any)
  3195. (not (y-or-n-p (format "Overwrite existing file %s? " file))))))
  3196. (user-error "Cannot write agenda to file %s" file))
  3197. (cl-progv
  3198. (if nosettings nil (mapcar #'car org-agenda-exporter-settings))
  3199. (if nosettings nil (mapcar (lambda (binding) (eval (cadr binding) t))
  3200. org-agenda-exporter-settings))
  3201. (save-excursion
  3202. (save-window-excursion
  3203. (let ((bs (copy-sequence (buffer-string)))
  3204. (extension (file-name-extension file))
  3205. (default-directory (file-name-directory file))
  3206. ) ;; beg content
  3207. (with-temp-buffer
  3208. (rename-buffer org-agenda-write-buffer-name t)
  3209. (set-buffer-modified-p nil)
  3210. (insert bs)
  3211. (org-agenda-remove-marked-text 'invisible 'org-filtered)
  3212. (run-hooks 'org-agenda-before-write-hook)
  3213. (cond
  3214. ((bound-and-true-p org-mobile-creating-agendas)
  3215. (org-mobile-write-agenda-for-mobile file))
  3216. ((string= "org" extension)
  3217. (let (content p m message-log-max)
  3218. (goto-char (point-min))
  3219. (while (setq p (next-single-property-change (point) 'org-hd-marker nil))
  3220. (goto-char p)
  3221. (setq m (get-text-property (point) 'org-hd-marker))
  3222. (when m
  3223. (push (with-current-buffer (marker-buffer m)
  3224. (goto-char m)
  3225. (org-copy-subtree 1 nil t t)
  3226. org-subtree-clip)
  3227. content)))
  3228. (find-file file)
  3229. (erase-buffer)
  3230. (dolist (s content) (org-paste-subtree 1 s))
  3231. (write-file file)
  3232. (kill-buffer (current-buffer))
  3233. (message "Org file written to %s" file)))
  3234. ((member extension '("html" "htm"))
  3235. (or (require 'htmlize nil t)
  3236. (error "Please install htmlize from https://github.com/hniksic/emacs-htmlize"))
  3237. (declare-function htmlize-buffer "htmlize" (&optional buffer))
  3238. (set-buffer (htmlize-buffer (current-buffer)))
  3239. (when org-agenda-export-html-style
  3240. ;; replace <style> section with org-agenda-export-html-style
  3241. (goto-char (point-min))
  3242. (kill-region (- (search-forward "<style") 6)
  3243. (search-forward "</style>"))
  3244. (insert org-agenda-export-html-style))
  3245. (write-file file)
  3246. (kill-buffer (current-buffer))
  3247. (message "HTML written to %s" file))
  3248. ((string= "ps" extension)
  3249. (require 'ps-print)
  3250. (ps-print-buffer-with-faces file)
  3251. (message "Postscript written to %s" file))
  3252. ((string= "pdf" extension)
  3253. (require 'ps-print)
  3254. (ps-print-buffer-with-faces
  3255. (concat (file-name-sans-extension file) ".ps"))
  3256. (call-process "ps2pdf" nil nil nil
  3257. (expand-file-name
  3258. (concat (file-name-sans-extension file) ".ps"))
  3259. (expand-file-name file))
  3260. (delete-file (concat (file-name-sans-extension file) ".ps"))
  3261. (message "PDF written to %s" file))
  3262. ((string= "ics" extension)
  3263. (require 'ox-icalendar)
  3264. (declare-function org-icalendar-export-current-agenda
  3265. "ox-icalendar" (file))
  3266. (org-icalendar-export-current-agenda (expand-file-name file)))
  3267. (t
  3268. (let ((bs (buffer-string)))
  3269. (find-file file)
  3270. (erase-buffer)
  3271. (insert bs)
  3272. (save-buffer 0)
  3273. (kill-buffer (current-buffer))
  3274. (message "Plain text written to %s" file))))))))
  3275. (set-buffer (or agenda-bufname
  3276. ;; FIXME: I'm pretty sure called-interactively-p
  3277. ;; doesn't do what we want here!
  3278. (and (called-interactively-p 'any) (buffer-name))
  3279. org-agenda-buffer-name)))
  3280. (when open (org-open-file file)))
  3281. (defun org-agenda-remove-marked-text (property &optional value)
  3282. "Delete all text marked with VALUE of PROPERTY.
  3283. VALUE defaults to t."
  3284. (let (beg)
  3285. (setq value (or value t))
  3286. (while (setq beg (text-property-any (point-min) (point-max)
  3287. property value))
  3288. (delete-region
  3289. beg (or (next-single-property-change beg property)
  3290. (point-max))))))
  3291. (defun org-agenda-add-entry-text ()
  3292. "Add entry text to agenda lines.
  3293. This will add a maximum of `org-agenda-add-entry-text-maxlines' lines of the
  3294. entry text following headings shown in the agenda.
  3295. Drawers will be excluded, also the line with scheduling/deadline info."
  3296. (when (and (> org-agenda-add-entry-text-maxlines 0)
  3297. (not (bound-and-true-p org-mobile-creating-agendas)))
  3298. (let (m txt)
  3299. (goto-char (point-min))
  3300. (while (not (eobp))
  3301. (if (not (setq m (org-get-at-bol 'org-hd-marker)))
  3302. (beginning-of-line 2)
  3303. (setq txt (org-agenda-get-some-entry-text
  3304. m org-agenda-add-entry-text-maxlines " > "))
  3305. (end-of-line 1)
  3306. (if (string-match "\\S-" txt)
  3307. (insert "\n" txt)
  3308. (or (eobp) (forward-char 1))))))))
  3309. (defun org-agenda-get-some-entry-text (marker n-lines &optional indent
  3310. &rest keep)
  3311. "Extract entry text from MARKER, at most N-LINES lines.
  3312. This will ignore drawers etc, just get the text.
  3313. If INDENT is given, prefix every line with this string. If KEEP is
  3314. given, it is a list of symbols, defining stuff that should not be
  3315. removed from the entry content. Currently only `planning' is allowed here."
  3316. (let (txt drawer-re kwd-time-re ind)
  3317. (save-excursion
  3318. (with-current-buffer (marker-buffer marker)
  3319. (if (not (derived-mode-p 'org-mode))
  3320. (setq txt "")
  3321. (org-with-wide-buffer
  3322. (goto-char marker)
  3323. (end-of-line 1)
  3324. (setq txt (buffer-substring
  3325. (min (1+ (point)) (point-max))
  3326. (progn (outline-next-heading) (point)))
  3327. drawer-re org-drawer-regexp
  3328. kwd-time-re (concat "^[ \t]*" org-keyword-time-regexp
  3329. ".*\n?"))
  3330. (with-temp-buffer
  3331. (insert txt)
  3332. (when org-agenda-add-entry-text-descriptive-links
  3333. (goto-char (point-min))
  3334. (while (org-activate-links (point-max))
  3335. (goto-char (match-end 0))))
  3336. (goto-char (point-min))
  3337. (while (re-search-forward org-link-bracket-re (point-max) t)
  3338. (set-text-properties (match-beginning 0) (match-end 0)
  3339. nil))
  3340. (goto-char (point-min))
  3341. (while (re-search-forward drawer-re nil t)
  3342. (delete-region
  3343. (match-beginning 0)
  3344. (progn (re-search-forward
  3345. "^[ \t]*:END:.*\n?" nil 'move)
  3346. (point))))
  3347. (unless (member 'planning keep)
  3348. (goto-char (point-min))
  3349. (while (re-search-forward kwd-time-re nil t)
  3350. (replace-match "")))
  3351. (goto-char (point-min))
  3352. (when org-agenda-entry-text-exclude-regexps
  3353. (let ((re-list org-agenda-entry-text-exclude-regexps) re)
  3354. (while (setq re (pop re-list))
  3355. (goto-char (point-min))
  3356. (while (re-search-forward re nil t)
  3357. (replace-match "")))))
  3358. (goto-char (point-max))
  3359. (skip-chars-backward " \t\n")
  3360. (when (looking-at "[ \t\n]+\\'") (replace-match ""))
  3361. ;; find and remove min common indentation
  3362. (goto-char (point-min))
  3363. (untabify (point-min) (point-max))
  3364. (setq ind (current-indentation))
  3365. (while (not (eobp))
  3366. (unless (looking-at "[ \t]*$")
  3367. (setq ind (min ind (current-indentation))))
  3368. (beginning-of-line 2))
  3369. (goto-char (point-min))
  3370. (while (not (eobp))
  3371. (unless (looking-at "[ \t]*$")
  3372. (move-to-column ind)
  3373. (delete-region (point-at-bol) (point)))
  3374. (beginning-of-line 2))
  3375. (run-hooks 'org-agenda-entry-text-cleanup-hook)
  3376. (goto-char (point-min))
  3377. (when indent
  3378. (while (and (not (eobp)) (re-search-forward "^" nil t))
  3379. (replace-match indent t t)))
  3380. (goto-char (point-min))
  3381. (while (looking-at "[ \t]*\n") (replace-match ""))
  3382. (goto-char (point-max))
  3383. (when (> (org-current-line)
  3384. n-lines)
  3385. (org-goto-line (1+ n-lines))
  3386. (backward-char 1))
  3387. (setq txt (buffer-substring (point-min) (point))))))))
  3388. txt))
  3389. (defun org-check-for-org-mode ()
  3390. "Make sure current buffer is in Org mode. Error if not."
  3391. (or (derived-mode-p 'org-mode)
  3392. (error "Cannot execute Org agenda command on buffer in %s"
  3393. major-mode)))
  3394. ;;; Agenda prepare and finalize
  3395. (defvar org-agenda-multi nil) ; dynamically scoped
  3396. (defvar org-agenda-pre-window-conf nil)
  3397. (defvar org-agenda-columns-active nil)
  3398. (defvar org-agenda-name nil)
  3399. (defvar org-agenda-tag-filter nil)
  3400. (defvar org-agenda-category-filter nil)
  3401. (defvar org-agenda-regexp-filter nil)
  3402. (defvar org-agenda-effort-filter nil)
  3403. (defvar org-agenda-top-headline-filter nil)
  3404. (defvar org-agenda-represented-categories nil
  3405. "Cache for the list of all categories in the agenda.")
  3406. (defvar org-agenda-represented-tags nil
  3407. "Cache for the list of all categories in the agenda.")
  3408. (defvar org-agenda-tag-filter-preset nil
  3409. "A preset of the tags filter used for secondary agenda filtering.
  3410. This must be a list of strings, each string must be a single tag preceded
  3411. by \"+\" or \"-\".
  3412. This variable should not be set directly, but agenda custom commands can
  3413. bind it in the options section. The preset filter is a global property of
  3414. the entire agenda view. In a block agenda, it will not work reliably to
  3415. define a filter for one of the individual blocks. You need to set it in
  3416. the global options and expect it to be applied to the entire view.")
  3417. (defconst org-agenda-filter-variables
  3418. '((category . org-agenda-category-filter)
  3419. (tag . org-agenda-tag-filter)
  3420. (effort . org-agenda-effort-filter)
  3421. (regexp . org-agenda-regexp-filter))
  3422. "Alist of filter types and associated variables.")
  3423. (defun org-agenda-filter-any ()
  3424. "Is any filter active?"
  3425. (cl-some (lambda (x)
  3426. (or (symbol-value (cdr x))
  3427. (get :preset-filter x)))
  3428. org-agenda-filter-variables))
  3429. (defvar org-agenda-category-filter-preset nil
  3430. "A preset of the category filter used for secondary agenda filtering.
  3431. This must be a list of strings, each string must be a single category
  3432. preceded by \"+\" or \"-\".
  3433. This variable should not be set directly, but agenda custom commands can
  3434. bind it in the options section. The preset filter is a global property of
  3435. the entire agenda view. In a block agenda, it will not work reliably to
  3436. define a filter for one of the individual blocks. You need to set it in
  3437. the global options and expect it to be applied to the entire view.")
  3438. (defvar org-agenda-regexp-filter-preset nil
  3439. "A preset of the regexp filter used for secondary agenda filtering.
  3440. This must be a list of strings, each string must be a single regexp
  3441. preceded by \"+\" or \"-\".
  3442. This variable should not be set directly, but agenda custom commands can
  3443. bind it in the options section. The preset filter is a global property of
  3444. the entire agenda view. In a block agenda, it will not work reliably to
  3445. define a filter for one of the individual blocks. You need to set it in
  3446. the global options and expect it to be applied to the entire view.")
  3447. (defvar org-agenda-effort-filter-preset nil
  3448. "A preset of the effort condition used for secondary agenda filtering.
  3449. This must be a list of strings, each string must be a single regexp
  3450. preceded by \"+\" or \"-\".
  3451. This variable should not be set directly, but agenda custom commands can
  3452. bind it in the options section. The preset filter is a global property of
  3453. the entire agenda view. In a block agenda, it will not work reliably to
  3454. define a filter for one of the individual blocks. You need to set it in
  3455. the global options and expect it to be applied to the entire view.")
  3456. (defun org-agenda-use-sticky-p ()
  3457. "Return non-nil if an agenda buffer named
  3458. `org-agenda-buffer-name' exists and should be shown instead of
  3459. generating a new one."
  3460. (and
  3461. ;; turned off by user
  3462. org-agenda-sticky
  3463. ;; For multi-agenda buffer already exists
  3464. (not org-agenda-multi)
  3465. ;; buffer found
  3466. (get-buffer org-agenda-buffer-name)
  3467. ;; C-u parameter is same as last call
  3468. (with-current-buffer (get-buffer org-agenda-buffer-name)
  3469. (and
  3470. (equal current-prefix-arg
  3471. org-agenda-last-prefix-arg)
  3472. ;; In case user turned stickiness on, while having existing
  3473. ;; Agenda buffer active, don't reuse that buffer, because it
  3474. ;; does not have org variables local
  3475. org-agenda-this-buffer-is-sticky))))
  3476. (defvar org-agenda-buffer-tmp-name nil)
  3477. (defun org-agenda--get-buffer-name (sticky-name)
  3478. (or org-agenda-buffer-tmp-name
  3479. (and org-agenda-doing-sticky-redo org-agenda-buffer-name)
  3480. sticky-name
  3481. "*Org Agenda*"))
  3482. (defun org-agenda-prepare-window (abuf filter-alist)
  3483. "Setup agenda buffer in the window.
  3484. ABUF is the buffer for the agenda window.
  3485. FILTER-ALIST is an alist of filters we need to apply when
  3486. `org-agenda-persistent-filter' is non-nil."
  3487. (let* ((awin (get-buffer-window abuf)) wconf)
  3488. (cond
  3489. ((equal (current-buffer) abuf) nil)
  3490. (awin (select-window awin))
  3491. ((not (setq wconf (current-window-configuration))))
  3492. ((eq org-agenda-window-setup 'current-window)
  3493. (pop-to-buffer-same-window abuf))
  3494. ((eq org-agenda-window-setup 'other-window)
  3495. (org-switch-to-buffer-other-window abuf))
  3496. ((eq org-agenda-window-setup 'other-frame)
  3497. (switch-to-buffer-other-frame abuf))
  3498. ((eq org-agenda-window-setup 'other-tab)
  3499. (if (fboundp 'switch-to-buffer-other-tab)
  3500. (switch-to-buffer-other-tab abuf)
  3501. (user-error "Your version of Emacs does not have tab bar support")))
  3502. ((eq org-agenda-window-setup 'only-window)
  3503. (delete-other-windows)
  3504. (pop-to-buffer-same-window abuf))
  3505. ((eq org-agenda-window-setup 'reorganize-frame)
  3506. (delete-other-windows)
  3507. (org-switch-to-buffer-other-window abuf)))
  3508. (setq org-agenda-tag-filter (cdr (assq 'tag filter-alist)))
  3509. (setq org-agenda-category-filter (cdr (assq 'cat filter-alist)))
  3510. (setq org-agenda-effort-filter (cdr (assq 'effort filter-alist)))
  3511. (setq org-agenda-regexp-filter (cdr (assq 're filter-alist)))
  3512. ;; Additional test in case agenda is invoked from within agenda
  3513. ;; buffer via elisp link.
  3514. (unless (equal (current-buffer) abuf)
  3515. (pop-to-buffer-same-window abuf))
  3516. (setq org-agenda-pre-window-conf
  3517. (or wconf org-agenda-pre-window-conf))))
  3518. (defun org-agenda-prepare (&optional name)
  3519. (let ((filter-alist (when org-agenda-persistent-filter
  3520. (with-current-buffer
  3521. (get-buffer-create org-agenda-buffer-name)
  3522. `((tag . ,org-agenda-tag-filter)
  3523. (re . ,org-agenda-regexp-filter)
  3524. (effort . ,org-agenda-effort-filter)
  3525. (cat . ,org-agenda-category-filter))))))
  3526. (if (org-agenda-use-sticky-p)
  3527. (progn
  3528. (put 'org-agenda-tag-filter :preset-filter nil)
  3529. (put 'org-agenda-category-filter :preset-filter nil)
  3530. (put 'org-agenda-regexp-filter :preset-filter nil)
  3531. (put 'org-agenda-effort-filter :preset-filter nil)
  3532. ;; Popup existing buffer
  3533. (org-agenda-prepare-window (get-buffer org-agenda-buffer-name)
  3534. filter-alist)
  3535. (message "Sticky Agenda buffer, use `r' to refresh")
  3536. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  3537. (throw 'exit "Sticky Agenda buffer, use `r' to refresh"))
  3538. (setq org-todo-keywords-for-agenda nil)
  3539. (put 'org-agenda-tag-filter :preset-filter
  3540. org-agenda-tag-filter-preset)
  3541. (put 'org-agenda-category-filter :preset-filter
  3542. org-agenda-category-filter-preset)
  3543. (put 'org-agenda-regexp-filter :preset-filter
  3544. org-agenda-regexp-filter-preset)
  3545. (put 'org-agenda-effort-filter :preset-filter
  3546. org-agenda-effort-filter-preset)
  3547. (if org-agenda-multi
  3548. (progn
  3549. (setq buffer-read-only nil)
  3550. (goto-char (point-max))
  3551. (unless (or (bobp) org-agenda-compact-blocks
  3552. (not org-agenda-block-separator))
  3553. (insert "\n"
  3554. (if (stringp org-agenda-block-separator)
  3555. org-agenda-block-separator
  3556. (make-string (window-width) org-agenda-block-separator))
  3557. "\n"))
  3558. (narrow-to-region (point) (point-max)))
  3559. (setq org-done-keywords-for-agenda nil)
  3560. ;; Setting any org variables that are in org-agenda-local-vars
  3561. ;; list need to be done after the prepare call
  3562. (org-agenda-prepare-window
  3563. (get-buffer-create org-agenda-buffer-name) filter-alist)
  3564. (setq buffer-read-only nil)
  3565. (org-agenda-reset-markers)
  3566. (let ((inhibit-read-only t)) (erase-buffer))
  3567. (org-agenda-mode)
  3568. (setq org-agenda-buffer (current-buffer))
  3569. (setq org-agenda-contributing-files nil)
  3570. (setq org-agenda-columns-active nil)
  3571. (org-agenda-prepare-buffers (org-agenda-files nil 'ifmode))
  3572. (setq org-todo-keywords-for-agenda
  3573. (org-uniquify org-todo-keywords-for-agenda))
  3574. (setq org-done-keywords-for-agenda
  3575. (org-uniquify org-done-keywords-for-agenda))
  3576. (setq org-agenda-last-prefix-arg current-prefix-arg)
  3577. (setq org-agenda-this-buffer-name org-agenda-buffer-name)
  3578. (and name (not org-agenda-name)
  3579. (setq-local org-agenda-name name)))
  3580. (setq buffer-read-only nil))))
  3581. (defvar org-overriding-columns-format)
  3582. (defvar org-local-columns-format)
  3583. (defun org-agenda-finalize ()
  3584. "Finishing touch for the agenda buffer.
  3585. This function is called just before displaying the agenda. If
  3586. you want to add your own functions to the finalization of the
  3587. agenda display, configure `org-agenda-finalize-hook'."
  3588. (unless org-agenda-multi
  3589. (let ((inhibit-read-only t))
  3590. (save-excursion
  3591. (goto-char (point-min))
  3592. (save-excursion
  3593. (while (org-activate-links (point-max))
  3594. (goto-char (match-end 0))))
  3595. (unless (eq org-agenda-remove-tags t)
  3596. (org-agenda-align-tags))
  3597. (unless org-agenda-with-colors
  3598. (remove-text-properties (point-min) (point-max) '(face nil)))
  3599. (when (bound-and-true-p org-overriding-columns-format)
  3600. (setq-local org-local-columns-format
  3601. org-overriding-columns-format))
  3602. (when org-agenda-view-columns-initially
  3603. (org-agenda-columns))
  3604. (when org-agenda-fontify-priorities
  3605. (org-agenda-fontify-priorities))
  3606. (when (and org-agenda-dim-blocked-tasks org-blocker-hook)
  3607. (org-agenda-dim-blocked-tasks))
  3608. (org-agenda-mark-clocking-task)
  3609. (when org-agenda-entry-text-mode
  3610. (org-agenda-entry-text-hide)
  3611. (org-agenda-entry-text-show))
  3612. (when (and (featurep 'org-habit)
  3613. (save-excursion (next-single-property-change (point-min) 'org-habit-p)))
  3614. (org-habit-insert-consistency-graphs))
  3615. (setq org-agenda-type (org-get-at-bol 'org-agenda-type))
  3616. (unless (or (eq org-agenda-show-inherited-tags 'always)
  3617. (and (listp org-agenda-show-inherited-tags)
  3618. (memq org-agenda-type org-agenda-show-inherited-tags))
  3619. (and (eq org-agenda-show-inherited-tags t)
  3620. (or (eq org-agenda-use-tag-inheritance t)
  3621. (and (listp org-agenda-use-tag-inheritance)
  3622. (not (memq org-agenda-type
  3623. org-agenda-use-tag-inheritance))))))
  3624. (let (mrk)
  3625. (save-excursion
  3626. (goto-char (point-min))
  3627. (while (equal (forward-line) 0)
  3628. (when (setq mrk (get-text-property (point) 'org-hd-marker))
  3629. (put-text-property (point-at-bol) (point-at-eol)
  3630. 'tags
  3631. (org-with-point-at mrk
  3632. (org-get-tags))))))))
  3633. (setq org-agenda-represented-tags nil
  3634. org-agenda-represented-categories nil)
  3635. (when org-agenda-top-headline-filter
  3636. (org-agenda-filter-top-headline-apply
  3637. org-agenda-top-headline-filter))
  3638. (when org-agenda-tag-filter
  3639. (org-agenda-filter-apply org-agenda-tag-filter 'tag t))
  3640. (when (get 'org-agenda-tag-filter :preset-filter)
  3641. (org-agenda-filter-apply
  3642. (get 'org-agenda-tag-filter :preset-filter) 'tag t))
  3643. (when org-agenda-category-filter
  3644. (org-agenda-filter-apply org-agenda-category-filter 'category))
  3645. (when (get 'org-agenda-category-filter :preset-filter)
  3646. (org-agenda-filter-apply
  3647. (get 'org-agenda-category-filter :preset-filter) 'category))
  3648. (when org-agenda-regexp-filter
  3649. (org-agenda-filter-apply org-agenda-regexp-filter 'regexp))
  3650. (when (get 'org-agenda-regexp-filter :preset-filter)
  3651. (org-agenda-filter-apply
  3652. (get 'org-agenda-regexp-filter :preset-filter) 'regexp))
  3653. (when org-agenda-effort-filter
  3654. (org-agenda-filter-apply org-agenda-effort-filter 'effort))
  3655. (when (get 'org-agenda-effort-filter :preset-filter)
  3656. (org-agenda-filter-apply
  3657. (get 'org-agenda-effort-filter :preset-filter) 'effort))
  3658. (add-hook 'kill-buffer-hook #'org-agenda-reset-markers 'append 'local))
  3659. (run-hooks 'org-agenda-finalize-hook))))
  3660. (defun org-agenda-mark-clocking-task ()
  3661. "Mark the current clock entry in the agenda if it is present."
  3662. ;; We need to widen when `org-agenda-finalize' is called from
  3663. ;; `org-agenda-change-all-lines' (e.g. in `org-agenda-clock-in').
  3664. (when (bound-and-true-p org-clock-current-task)
  3665. (save-restriction
  3666. (widen)
  3667. (org-agenda-unmark-clocking-task)
  3668. (when (marker-buffer org-clock-hd-marker)
  3669. (save-excursion
  3670. (goto-char (point-min))
  3671. (let (s ov)
  3672. (while (setq s (next-single-property-change (point) 'org-hd-marker))
  3673. (goto-char s)
  3674. (when (equal (org-get-at-bol 'org-hd-marker)
  3675. org-clock-hd-marker)
  3676. (setq ov (make-overlay (point-at-bol) (1+ (point-at-eol))))
  3677. (overlay-put ov 'type 'org-agenda-clocking)
  3678. (overlay-put ov 'face 'org-agenda-clocking)
  3679. (overlay-put ov 'help-echo
  3680. "The clock is running in this item")))))))))
  3681. (defun org-agenda-unmark-clocking-task ()
  3682. "Unmark the current clocking task."
  3683. (mapc (lambda (o)
  3684. (when (eq (overlay-get o 'type) 'org-agenda-clocking)
  3685. (delete-overlay o)))
  3686. (overlays-in (point-min) (point-max))))
  3687. (defun org-agenda-fontify-priorities ()
  3688. "Make highest priority lines bold, and lowest italic."
  3689. (interactive)
  3690. (mapc (lambda (o) (when (eq (overlay-get o 'org-type) 'org-priority)
  3691. (delete-overlay o)))
  3692. (overlays-in (point-min) (point-max)))
  3693. (save-excursion
  3694. (let (b e p ov h l)
  3695. (goto-char (point-min))
  3696. (while (re-search-forward org-priority-regexp nil t)
  3697. (setq h (or (get-char-property (point) 'org-priority-highest)
  3698. org-priority-highest)
  3699. l (or (get-char-property (point) 'org-priority-lowest)
  3700. org-priority-lowest)
  3701. p (string-to-char (match-string 2))
  3702. b (match-beginning 1)
  3703. e (if (eq org-agenda-fontify-priorities 'cookies)
  3704. (1+ (match-end 2))
  3705. (point-at-eol))
  3706. ov (make-overlay b e))
  3707. (overlay-put
  3708. ov 'face
  3709. (let ((special-face
  3710. (cond ((org-face-from-face-or-color
  3711. 'priority 'org-priority
  3712. (cdr (assoc p org-priority-faces))))
  3713. ((and (listp org-agenda-fontify-priorities)
  3714. (org-face-from-face-or-color
  3715. 'priority 'org-priority
  3716. (cdr (assoc p org-agenda-fontify-priorities)))))
  3717. ((equal p l) 'italic)
  3718. ((equal p h) 'bold))))
  3719. (if special-face (list special-face 'org-priority) 'org-priority)))
  3720. (overlay-put ov 'org-type 'org-priority)))))
  3721. (defvar org-depend-tag-blocked)
  3722. (defun org-agenda-dim-blocked-tasks (&optional _invisible)
  3723. "Dim currently blocked TODOs in the agenda display.
  3724. When INVISIBLE is non-nil, hide currently blocked TODO instead of
  3725. dimming them." ;FIXME: The arg isn't used, actually!
  3726. (interactive "P")
  3727. (when (called-interactively-p 'interactive)
  3728. (message "Dim or hide blocked tasks..."))
  3729. (dolist (o (overlays-in (point-min) (point-max)))
  3730. (when (eq (overlay-get o 'face) 'org-agenda-dimmed-todo-face)
  3731. (delete-overlay o)))
  3732. (save-excursion
  3733. (let ((inhibit-read-only t))
  3734. (goto-char (point-min))
  3735. (while (let ((pos (text-property-not-all
  3736. (point) (point-max) 'org-todo-blocked nil)))
  3737. (when pos (goto-char pos)))
  3738. (let* ((invisible
  3739. (eq (org-get-at-bol 'org-todo-blocked) 'invisible))
  3740. (todo-blocked
  3741. (eq (org-get-at-bol 'org-filter-type) 'todo-blocked))
  3742. (ov (make-overlay (if invisible
  3743. (line-end-position 0)
  3744. (line-beginning-position))
  3745. (line-end-position))))
  3746. (when todo-blocked
  3747. (overlay-put ov 'face 'org-agenda-dimmed-todo-face))
  3748. (when invisible
  3749. (org-agenda-filter-hide-line 'todo-blocked)))
  3750. (if (= (point-max) (line-end-position))
  3751. (goto-char (point-max))
  3752. (move-beginning-of-line 2)))))
  3753. (when (called-interactively-p 'interactive)
  3754. (message "Dim or hide blocked tasks...done")))
  3755. (defun org-agenda--mark-blocked-entry (entry)
  3756. "If ENTRY is blocked, mark it for fontification or invisibility.
  3757. If the header at `org-hd-marker' is blocked according to
  3758. `org-entry-blocked-p', then if `org-agenda-dim-blocked-tasks' is
  3759. 'invisible and the header is not blocked by checkboxes, set the
  3760. text property `org-todo-blocked' to `invisible', otherwise set it
  3761. to t."
  3762. (when (get-text-property 0 'todo-state entry)
  3763. (let ((entry-marker (get-text-property 0 'org-hd-marker entry))
  3764. (org-blocked-by-checkboxes nil)
  3765. ;; Necessary so that `org-entry-blocked-p' does not change
  3766. ;; the buffer.
  3767. (org-depend-tag-blocked nil))
  3768. (when entry-marker
  3769. (let ((blocked
  3770. (with-current-buffer (marker-buffer entry-marker)
  3771. (save-excursion
  3772. (goto-char entry-marker)
  3773. (org-entry-blocked-p)))))
  3774. (when blocked
  3775. (let ((really-invisible
  3776. (and (not org-blocked-by-checkboxes)
  3777. (eq org-agenda-dim-blocked-tasks 'invisible))))
  3778. (put-text-property
  3779. 0 (length entry) 'org-todo-blocked
  3780. (if really-invisible 'invisible t)
  3781. entry)
  3782. (put-text-property
  3783. 0 (length entry) 'org-filter-type 'todo-blocked entry)))))))
  3784. entry)
  3785. (defvar org-agenda-skip-function nil
  3786. "Function to be called at each match during agenda construction.
  3787. If this function returns nil, the current match should not be skipped.
  3788. Otherwise, the function must return a position from where the search
  3789. should be continued.
  3790. This may also be a Lisp form, it will be evaluated.
  3791. Never set this variable using `setq' or so, because then it will apply
  3792. to all future agenda commands. If you do want a global skipping condition,
  3793. use the option `org-agenda-skip-function-global' instead.
  3794. The correct usage for `org-agenda-skip-function' is to bind it with
  3795. `let' to scope it dynamically into the agenda-constructing command.
  3796. A good way to set it is through options in `org-agenda-custom-commands'.")
  3797. (defun org-agenda-skip (&optional element)
  3798. "Throw to `:skip' in places that should be skipped.
  3799. Also moves point to the end of the skipped region, so that search can
  3800. continue from there.
  3801. Optional argument ELEMENT contains element at point."
  3802. (let ((p (point-at-bol)) to)
  3803. (when (or
  3804. (save-excursion (goto-char p) (looking-at comment-start-skip))
  3805. (and org-agenda-skip-archived-trees (not org-agenda-archives-mode)
  3806. (or (and (save-match-data (org-in-archived-heading-p nil element))
  3807. (org-end-of-subtree t element))
  3808. (and (member org-archive-tag org-file-tags)
  3809. (goto-char (point-max)))))
  3810. (and org-agenda-skip-comment-trees
  3811. (org-in-commented-heading-p nil element)
  3812. (org-end-of-subtree t element))
  3813. (and (setq to (or (org-agenda-skip-eval org-agenda-skip-function-global)
  3814. (org-agenda-skip-eval org-agenda-skip-function)))
  3815. (goto-char to))
  3816. (org-in-src-block-p t))
  3817. (throw :skip t))))
  3818. (defun org-agenda-skip-eval (form)
  3819. "If FORM is a function or a list, call (or eval) it and return the result.
  3820. `save-excursion' and `save-match-data' are wrapped around the call, so point
  3821. and match data are returned to the previous state no matter what these
  3822. functions do."
  3823. (let (fp)
  3824. (and form
  3825. (or (setq fp (functionp form))
  3826. (consp form))
  3827. (save-excursion
  3828. (save-match-data
  3829. (if fp
  3830. (funcall form)
  3831. (eval form t)))))))
  3832. (defvar org-agenda-markers nil
  3833. "List of all currently active markers created by `org-agenda'.")
  3834. (defvar org-agenda-last-marker-time (float-time)
  3835. "Creation time of the last agenda marker.")
  3836. (defun org-agenda-new-marker (&optional pos)
  3837. "Return a new agenda marker.
  3838. Marker is at point, or at POS if non-nil. Org mode keeps a list
  3839. of these markers and resets them when they are no longer in use."
  3840. (let ((m (copy-marker (or pos (point)) t)))
  3841. (setq org-agenda-last-marker-time (float-time))
  3842. (if org-agenda-buffer
  3843. (with-current-buffer org-agenda-buffer
  3844. (push m org-agenda-markers))
  3845. (push m org-agenda-markers))
  3846. m))
  3847. (defun org-agenda-reset-markers ()
  3848. "Reset markers created by `org-agenda'."
  3849. (while org-agenda-markers
  3850. (move-marker (pop org-agenda-markers) nil)))
  3851. (defun org-agenda-save-markers-for-cut-and-paste (beg end)
  3852. "Save relative positions of markers in region.
  3853. This check for agenda markers in all agenda buffers currently active."
  3854. (dolist (buf (buffer-list))
  3855. (with-current-buffer buf
  3856. (when (eq major-mode 'org-agenda-mode)
  3857. (mapc (lambda (m) (org-check-and-save-marker m beg end))
  3858. org-agenda-markers)))))
  3859. ;;; Entry text mode
  3860. (defun org-agenda-entry-text-show-here ()
  3861. "Add some text from the entry as context to the current line."
  3862. (let (m txt o)
  3863. (setq m (org-get-at-bol 'org-hd-marker))
  3864. (unless (marker-buffer m)
  3865. (error "No marker points to an entry here"))
  3866. (setq txt (concat "\n" (org-no-properties
  3867. (org-agenda-get-some-entry-text
  3868. m org-agenda-entry-text-maxlines
  3869. org-agenda-entry-text-leaders))))
  3870. (when (string-match "\\S-" txt)
  3871. (setq o (make-overlay (point-at-bol) (point-at-eol)))
  3872. (overlay-put o 'evaporate t)
  3873. (overlay-put o 'org-overlay-type 'agenda-entry-content)
  3874. (overlay-put o 'after-string txt))))
  3875. (defun org-agenda-entry-text-show ()
  3876. "Add entry context for all agenda lines."
  3877. (interactive)
  3878. (save-excursion
  3879. (goto-char (point-max))
  3880. (beginning-of-line 1)
  3881. (while (not (bobp))
  3882. (when (org-get-at-bol 'org-hd-marker)
  3883. (org-agenda-entry-text-show-here))
  3884. (beginning-of-line 0))))
  3885. (defun org-agenda-entry-text-hide ()
  3886. "Remove any shown entry context."
  3887. (mapc (lambda (o)
  3888. (when (eq (overlay-get o 'org-overlay-type)
  3889. 'agenda-entry-content)
  3890. (delete-overlay o)))
  3891. (overlays-in (point-min) (point-max))))
  3892. (defun org-agenda-get-day-face (date)
  3893. "Return the face DATE should be displayed with."
  3894. (cond ((and (functionp org-agenda-day-face-function)
  3895. (funcall org-agenda-day-face-function date)))
  3896. ((and (org-agenda-today-p date)
  3897. (memq (calendar-day-of-week date) org-agenda-weekend-days))
  3898. 'org-agenda-date-weekend-today)
  3899. ((org-agenda-today-p date) 'org-agenda-date-today)
  3900. ((memq (calendar-day-of-week date) org-agenda-weekend-days)
  3901. 'org-agenda-date-weekend)
  3902. (t 'org-agenda-date)))
  3903. (defvar org-agenda-show-log-scoped)
  3904. ;;; Agenda Daily/Weekly
  3905. (defvar org-agenda-start-day nil ; dynamically scoped parameter
  3906. "Start day for the agenda view.
  3907. Custom commands can set this variable in the options section.
  3908. This is usually a string like \"2007-11-01\", \"+2d\" or any other
  3909. input allowed when reading a date through the Org calendar.
  3910. See the docstring of `org-read-date' for details.")
  3911. (defvar org-starting-day nil) ; local variable in the agenda buffer
  3912. (defvar org-arg-loc nil) ; local variable
  3913. ;;;###autoload
  3914. (defun org-agenda-list (&optional arg start-day span with-hour)
  3915. "Produce a daily/weekly view from all files in variable `org-agenda-files'.
  3916. The view will be for the current day or week, but from the overview buffer
  3917. you will be able to go to other days/weeks.
  3918. With a numeric prefix argument in an interactive call, the agenda will
  3919. span ARG days. Lisp programs should instead specify SPAN to change
  3920. the number of days. SPAN defaults to `org-agenda-span'.
  3921. START-DAY defaults to TODAY, or to the most recent match for the weekday
  3922. given in `org-agenda-start-on-weekday'.
  3923. When WITH-HOUR is non-nil, only include scheduled and deadline
  3924. items if they have an hour specification like [h]h:mm."
  3925. (interactive "P")
  3926. (when org-agenda-overriding-arguments
  3927. (setq arg (car org-agenda-overriding-arguments)
  3928. start-day (nth 1 org-agenda-overriding-arguments)
  3929. span (nth 2 org-agenda-overriding-arguments)))
  3930. (when (and (integerp arg) (> arg 0))
  3931. (setq span arg arg nil))
  3932. (when (numberp span)
  3933. (unless (< 0 span)
  3934. (user-error "Agenda creation impossible for this span(=%d days)" span)))
  3935. (catch 'exit
  3936. (setq org-agenda-buffer-name
  3937. (org-agenda--get-buffer-name
  3938. (and org-agenda-sticky
  3939. (cond ((and org-keys (stringp org-match))
  3940. (format "*Org Agenda(%s:%s)*" org-keys org-match))
  3941. (org-keys
  3942. (format "*Org Agenda(%s)*" org-keys))
  3943. (t "*Org Agenda(a)*")))))
  3944. (org-agenda-prepare "Day/Week")
  3945. (setq start-day (or start-day org-agenda-start-day))
  3946. (when (stringp start-day)
  3947. ;; Convert to an absolute day number
  3948. (setq start-day (time-to-days (org-read-date nil t start-day))))
  3949. (org-compile-prefix-format 'agenda)
  3950. (org-set-sorting-strategy 'agenda)
  3951. (let* ((span (org-agenda-ndays-to-span (or span org-agenda-span)))
  3952. (today (org-today))
  3953. (sd (or start-day today))
  3954. (ndays (org-agenda-span-to-ndays span sd))
  3955. (org-agenda-start-on-weekday
  3956. (and (or (eq ndays 7) (eq ndays 14))
  3957. org-agenda-start-on-weekday))
  3958. (thefiles (org-agenda-files nil 'ifmode))
  3959. (files thefiles)
  3960. (start (if (or (null org-agenda-start-on-weekday)
  3961. (< ndays 7))
  3962. sd
  3963. (let* ((nt (calendar-day-of-week
  3964. (calendar-gregorian-from-absolute sd)))
  3965. (n1 org-agenda-start-on-weekday)
  3966. (d (- nt n1)))
  3967. (- sd (+ (if (< d 0) 7 0) d)))))
  3968. (day-numbers (list start))
  3969. (day-cnt 0)
  3970. (inhibit-redisplay (not debug-on-error))
  3971. (org-agenda-show-log-scoped org-agenda-show-log)
  3972. s rtn rtnall file date d start-pos end-pos todayp ;; e
  3973. clocktable-start clocktable-end) ;; filter
  3974. (setq org-agenda-redo-command
  3975. (list 'org-agenda-list (list 'quote arg) start-day (list 'quote span) with-hour))
  3976. (dotimes (_ (1- ndays))
  3977. (push (1+ (car day-numbers)) day-numbers))
  3978. (setq day-numbers (nreverse day-numbers))
  3979. (setq clocktable-start (car day-numbers)
  3980. clocktable-end (1+ (or (org-last day-numbers) 0)))
  3981. (setq-local org-starting-day (car day-numbers))
  3982. (setq-local org-arg-loc arg)
  3983. (setq-local org-agenda-current-span (org-agenda-ndays-to-span span))
  3984. (unless org-agenda-compact-blocks
  3985. (let* ((d1 (car day-numbers))
  3986. (d2 (org-last day-numbers))
  3987. (w1 (org-days-to-iso-week d1))
  3988. (w2 (org-days-to-iso-week d2)))
  3989. (setq s (point))
  3990. (org-agenda--insert-overriding-header
  3991. (concat (org-agenda-span-name span)
  3992. "-agenda"
  3993. (cond ((<= 350 (- d2 d1)) "")
  3994. ((= w1 w2) (format " (W%02d)" w1))
  3995. (t (format " (W%02d-W%02d)" w1 w2)))
  3996. ":\n")))
  3997. ;; Add properties if we actually inserted a header.
  3998. (when (> (point) s)
  3999. (add-text-properties s (1- (point))
  4000. (list 'face 'org-agenda-structure
  4001. 'org-date-line t))
  4002. (org-agenda-mark-header-line s)))
  4003. (while (setq d (pop day-numbers))
  4004. (setq date (calendar-gregorian-from-absolute d)
  4005. s (point))
  4006. (if (or (setq todayp (= d today))
  4007. (and (not start-pos) (= d sd)))
  4008. (setq start-pos (point))
  4009. (when (and start-pos (not end-pos))
  4010. (setq end-pos (point))))
  4011. (setq files thefiles
  4012. rtnall nil)
  4013. (while (setq file (pop files))
  4014. (catch 'nextfile
  4015. (org-check-agenda-file file)
  4016. (let ((org-agenda-entry-types org-agenda-entry-types))
  4017. ;; Starred types override non-starred equivalents
  4018. (when (member :deadline* org-agenda-entry-types)
  4019. (setq org-agenda-entry-types
  4020. (delq :deadline org-agenda-entry-types)))
  4021. (when (member :scheduled* org-agenda-entry-types)
  4022. (setq org-agenda-entry-types
  4023. (delq :scheduled org-agenda-entry-types)))
  4024. ;; Honor with-hour
  4025. (when with-hour
  4026. (when (member :deadline org-agenda-entry-types)
  4027. (setq org-agenda-entry-types
  4028. (delq :deadline org-agenda-entry-types))
  4029. (push :deadline* org-agenda-entry-types))
  4030. (when (member :scheduled org-agenda-entry-types)
  4031. (setq org-agenda-entry-types
  4032. (delq :scheduled org-agenda-entry-types))
  4033. (push :scheduled* org-agenda-entry-types)))
  4034. (unless org-agenda-include-deadlines
  4035. (setq org-agenda-entry-types
  4036. (delq :deadline* (delq :deadline org-agenda-entry-types))))
  4037. (cond
  4038. ((memq org-agenda-show-log-scoped '(only clockcheck))
  4039. (setq rtn (org-agenda-get-day-entries
  4040. file date :closed)))
  4041. (org-agenda-show-log-scoped
  4042. (setq rtn (apply #'org-agenda-get-day-entries
  4043. file date
  4044. (append '(:closed) org-agenda-entry-types))))
  4045. (t
  4046. (setq rtn (apply #'org-agenda-get-day-entries
  4047. file date
  4048. org-agenda-entry-types)))))
  4049. (setq rtnall (append rtnall rtn)))) ;; all entries
  4050. (when org-agenda-include-diary
  4051. (let ((org-agenda-search-headline-for-time t))
  4052. (require 'diary-lib)
  4053. (setq rtn (org-get-entries-from-diary date))
  4054. (setq rtnall (append rtnall rtn))))
  4055. (when (or rtnall org-agenda-show-all-dates)
  4056. (setq day-cnt (1+ day-cnt))
  4057. (insert
  4058. (if (stringp org-agenda-format-date)
  4059. (format-time-string org-agenda-format-date
  4060. (org-time-from-absolute date))
  4061. (funcall org-agenda-format-date date))
  4062. "\n")
  4063. (put-text-property s (1- (point)) 'face
  4064. (org-agenda-get-day-face date))
  4065. (put-text-property s (1- (point)) 'org-date-line t)
  4066. (put-text-property s (1- (point)) 'org-agenda-date-header t)
  4067. (put-text-property s (1- (point)) 'org-day-cnt day-cnt)
  4068. (when todayp
  4069. (put-text-property s (1- (point)) 'org-today t))
  4070. (setq rtnall
  4071. (org-agenda-add-time-grid-maybe rtnall ndays todayp))
  4072. (when rtnall (insert ;; all entries
  4073. (org-agenda-finalize-entries rtnall 'agenda)
  4074. "\n"))
  4075. (put-text-property s (1- (point)) 'day d)
  4076. (put-text-property s (1- (point)) 'org-day-cnt day-cnt)))
  4077. (when (and org-agenda-clockreport-mode clocktable-start)
  4078. (let ((org-agenda-files (org-agenda-files nil 'ifmode))
  4079. ;; the above line is to ensure the restricted range!
  4080. (p (copy-sequence org-agenda-clockreport-parameter-plist))
  4081. tbl)
  4082. (setq p (org-plist-delete p :block))
  4083. (setq p (plist-put p :tstart clocktable-start))
  4084. (setq p (plist-put p :tend clocktable-end))
  4085. (setq p (plist-put p :scope 'agenda))
  4086. (setq tbl (apply #'org-clock-get-clocktable p))
  4087. (insert tbl)))
  4088. (goto-char (point-min))
  4089. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4090. (unless (or (not (get-buffer-window org-agenda-buffer-name))
  4091. (and (pos-visible-in-window-p (point-min))
  4092. (pos-visible-in-window-p (point-max))))
  4093. (goto-char (1- (point-max)))
  4094. (recenter -1)
  4095. (when (not (pos-visible-in-window-p (or start-pos 1)))
  4096. (goto-char (or start-pos 1))
  4097. (recenter 1)))
  4098. (goto-char (or start-pos 1))
  4099. (add-text-properties (point-min) (point-max)
  4100. `(org-agenda-type agenda
  4101. org-last-args (,arg ,start-day ,span)
  4102. org-redo-cmd ,org-agenda-redo-command
  4103. org-series-cmd ,org-cmd))
  4104. (when (eq org-agenda-show-log-scoped 'clockcheck)
  4105. (org-agenda-show-clocking-issues))
  4106. (org-agenda-finalize)
  4107. (setq buffer-read-only t)
  4108. (message ""))))
  4109. (defun org-agenda-ndays-to-span (n)
  4110. "Return a span symbol for a span of N days, or N if none matches."
  4111. (cond ((symbolp n) n)
  4112. ((= n 1) 'day)
  4113. ((= n 7) 'week)
  4114. ((= n 14) 'fortnight)
  4115. (t n)))
  4116. (defun org-agenda-span-to-ndays (span &optional start-day)
  4117. "Return ndays from SPAN, possibly starting at START-DAY.
  4118. START-DAY is an absolute time value."
  4119. (cond ((numberp span) span)
  4120. ((eq span 'day) 1)
  4121. ((eq span 'week) 7)
  4122. ((eq span 'fortnight) 14)
  4123. ((eq span 'month)
  4124. (let ((date (calendar-gregorian-from-absolute start-day)))
  4125. (calendar-last-day-of-month (car date) (cl-caddr date))))
  4126. ((eq span 'year)
  4127. (let ((date (calendar-gregorian-from-absolute start-day)))
  4128. (if (calendar-leap-year-p (cl-caddr date)) 366 365)))))
  4129. (defun org-agenda-span-name (span)
  4130. "Return a SPAN name."
  4131. (if (null span)
  4132. ""
  4133. (if (symbolp span)
  4134. (capitalize (symbol-name span))
  4135. (format "%d days" span))))
  4136. ;;; Agenda word search
  4137. (defvar org-agenda-search-history nil)
  4138. (defvar org-search-syntax-table nil
  4139. "Special syntax table for Org search.
  4140. In this table, we have single quotes not as word constituents, to
  4141. that when \"+Ameli\" is searched as a work, it will also match \"Ameli's\"")
  4142. (defvar org-mode-syntax-table) ; From org.el
  4143. (defun org-search-syntax-table ()
  4144. (unless org-search-syntax-table
  4145. (setq org-search-syntax-table (copy-syntax-table org-mode-syntax-table))
  4146. (modify-syntax-entry ?' "." org-search-syntax-table)
  4147. (modify-syntax-entry ?` "." org-search-syntax-table))
  4148. org-search-syntax-table)
  4149. (defvar org-agenda-last-search-view-search-was-boolean nil)
  4150. ;;;###autoload
  4151. (defun org-search-view (&optional todo-only string edit-at)
  4152. "Show all entries that contain a phrase or words or regular expressions.
  4153. With optional prefix argument TODO-ONLY, only consider entries that are
  4154. TODO entries. The argument STRING can be used to pass a default search
  4155. string into this function. If EDIT-AT is non-nil, it means that the
  4156. user should get a chance to edit this string, with cursor at position
  4157. EDIT-AT.
  4158. The search string can be viewed either as a phrase that should be found as
  4159. is, or it can be broken into a number of snippets, each of which must match
  4160. in a Boolean way to select an entry. The default depends on the variable
  4161. `org-agenda-search-view-always-boolean'.
  4162. Even if this is turned off (the default) you can always switch to
  4163. Boolean search dynamically by preceding the first word with \"+\" or \"-\".
  4164. The default is a direct search of the whole phrase, where each space in
  4165. the search string can expand to an arbitrary amount of whitespace,
  4166. including newlines.
  4167. If using a Boolean search, the search string is split on whitespace and
  4168. each snippet is searched separately, with logical AND to select an entry.
  4169. Words prefixed with a minus must *not* occur in the entry. Words without
  4170. a prefix or prefixed with a plus must occur in the entry. Matching is
  4171. case-insensitive. Words are enclosed by word delimiters (i.e. they must
  4172. match whole words, not parts of a word) if
  4173. `org-agenda-search-view-force-full-words' is set (default is nil).
  4174. Boolean search snippets enclosed by curly braces are interpreted as
  4175. regular expressions that must or (when preceded with \"-\") must not
  4176. match in the entry. Snippets enclosed into double quotes will be taken
  4177. as a whole, to include whitespace.
  4178. - If the search string starts with an asterisk, search only in headlines.
  4179. - If (possibly after the leading star) the search string starts with an
  4180. exclamation mark, this also means to look at TODO entries only, an effect
  4181. that can also be achieved with a prefix argument.
  4182. - If (possibly after star and exclamation mark) the search string starts
  4183. with a colon, this will mean that the (non-regexp) snippets of the
  4184. Boolean search must match as full words.
  4185. This command searches the agenda files, and in addition the files
  4186. listed in `org-agenda-text-search-extra-files' unless a restriction lock
  4187. is active."
  4188. (interactive "P")
  4189. (when org-agenda-overriding-arguments
  4190. (setq todo-only (car org-agenda-overriding-arguments)
  4191. string (nth 1 org-agenda-overriding-arguments)
  4192. edit-at (nth 2 org-agenda-overriding-arguments)))
  4193. (let* ((props (list 'face nil
  4194. 'done-face 'org-agenda-done
  4195. 'org-not-done-regexp org-not-done-regexp
  4196. 'org-todo-regexp org-todo-regexp
  4197. 'org-complex-heading-regexp org-complex-heading-regexp
  4198. 'mouse-face 'highlight
  4199. 'help-echo "mouse-2 or RET jump to location"))
  4200. (full-words org-agenda-search-view-force-full-words)
  4201. (org-agenda-text-search-extra-files org-agenda-text-search-extra-files)
  4202. regexp rtn rtnall files file pos inherited-tags
  4203. marker category level tags c neg re boolean
  4204. ee txt beg end words regexps+ regexps- hdl-only buffer beg1 str)
  4205. (unless (and (not edit-at)
  4206. (stringp string)
  4207. (string-match "\\S-" string))
  4208. (setq string (read-string
  4209. (if org-agenda-search-view-always-boolean
  4210. "[+-]Word/{Regexp} ...: "
  4211. "Phrase or [+-]Word/{Regexp} ...: ")
  4212. (cond
  4213. ((integerp edit-at) (cons string edit-at))
  4214. (edit-at string))
  4215. 'org-agenda-search-history)))
  4216. (catch 'exit
  4217. (setq org-agenda-buffer-name
  4218. (org-agenda--get-buffer-name
  4219. (and org-agenda-sticky
  4220. (if (stringp string)
  4221. (format "*Org Agenda(%s:%s)*"
  4222. (or org-keys (or (and todo-only "S") "s"))
  4223. string)
  4224. (format "*Org Agenda(%s)*"
  4225. (or (and todo-only "S") "s"))))))
  4226. (org-agenda-prepare "SEARCH")
  4227. (org-compile-prefix-format 'search)
  4228. (org-set-sorting-strategy 'search)
  4229. (setq org-agenda-redo-command
  4230. (list 'org-search-view (if todo-only t nil)
  4231. (list 'if 'current-prefix-arg nil string)))
  4232. (setq org-agenda-query-string string)
  4233. (if (equal (string-to-char string) ?*)
  4234. (setq hdl-only t
  4235. words (substring string 1))
  4236. (setq words string))
  4237. (when (equal (string-to-char words) ?!)
  4238. (setq todo-only t
  4239. words (substring words 1)))
  4240. (when (equal (string-to-char words) ?:)
  4241. (setq full-words t
  4242. words (substring words 1)))
  4243. (when (or org-agenda-search-view-always-boolean
  4244. (member (string-to-char words) '(?- ?+ ?\{)))
  4245. (setq boolean t))
  4246. (setq words (split-string words))
  4247. (let (www w)
  4248. (while (setq w (pop words))
  4249. (while (and (string-match "\\\\\\'" w) words)
  4250. (setq w (concat (substring w 0 -1) " " (pop words))))
  4251. (push w www))
  4252. (setq words (nreverse www) www nil)
  4253. (while (setq w (pop words))
  4254. (when (and (string-match "\\`[-+]?{" w)
  4255. (not (string-match "}\\'" w)))
  4256. (while (and words (not (string-match "}\\'" (car words))))
  4257. (setq w (concat w " " (pop words))))
  4258. (setq w (concat w " " (pop words))))
  4259. (push w www))
  4260. (setq words (nreverse www)))
  4261. (setq org-agenda-last-search-view-search-was-boolean boolean)
  4262. (when boolean
  4263. (let (wds w)
  4264. (while (setq w (pop words))
  4265. (when (or (equal (substring w 0 1) "\"")
  4266. (and (> (length w) 1)
  4267. (member (substring w 0 1) '("+" "-"))
  4268. (equal (substring w 1 2) "\"")))
  4269. (while (and words (not (equal (substring w -1) "\"")))
  4270. (setq w (concat w " " (pop words)))))
  4271. (and (string-match "\\`\\([-+]?\\)\"" w)
  4272. (setq w (replace-match "\\1" nil nil w)))
  4273. (and (equal (substring w -1) "\"") (setq w (substring w 0 -1)))
  4274. (push w wds))
  4275. (setq words (nreverse wds))))
  4276. (if boolean
  4277. (mapc (lambda (w)
  4278. (setq c (string-to-char w))
  4279. (if (equal c ?-)
  4280. (setq neg t w (substring w 1))
  4281. (if (equal c ?+)
  4282. (setq neg nil w (substring w 1))
  4283. (setq neg nil)))
  4284. (if (string-match "\\`{.*}\\'" w)
  4285. (setq re (substring w 1 -1))
  4286. (if full-words
  4287. (setq re (concat "\\<" (regexp-quote (downcase w)) "\\>"))
  4288. (setq re (regexp-quote (downcase w)))))
  4289. (if neg (push re regexps-) (push re regexps+)))
  4290. words)
  4291. (push (mapconcat #'regexp-quote words "\\s-+")
  4292. regexps+))
  4293. (setq regexps+ (sort regexps+ (lambda (a b) (> (length a) (length b)))))
  4294. (if (not regexps+)
  4295. (setq regexp org-outline-regexp-bol)
  4296. (setq regexp (pop regexps+))
  4297. (when hdl-only (setq regexp (concat org-outline-regexp-bol ".*?"
  4298. regexp))))
  4299. (setq files (org-agenda-files nil 'ifmode))
  4300. ;; Add `org-agenda-text-search-extra-files' unless there is some
  4301. ;; restriction.
  4302. (when (eq (car org-agenda-text-search-extra-files) 'agenda-archives)
  4303. (pop org-agenda-text-search-extra-files)
  4304. (unless (get 'org-agenda-files 'org-restrict)
  4305. (setq files (org-add-archive-files files))))
  4306. ;; Uniquify files. However, let `org-check-agenda-file' handle
  4307. ;; non-existent ones.
  4308. (setq files (cl-remove-duplicates
  4309. (append files org-agenda-text-search-extra-files)
  4310. :test (lambda (a b)
  4311. (and (file-exists-p a)
  4312. (file-exists-p b)
  4313. (file-equal-p a b))))
  4314. rtnall nil)
  4315. (while (setq file (pop files))
  4316. (setq ee nil)
  4317. (catch 'nextfile
  4318. (org-check-agenda-file file)
  4319. (setq buffer (if (file-exists-p file)
  4320. (org-get-agenda-file-buffer file)
  4321. (error "No such file %s" file)))
  4322. (unless buffer
  4323. ;; If file does not exist, make sure an error message is sent
  4324. (setq rtn (list (format "ORG-AGENDA-ERROR: No such org-file %s"
  4325. file))))
  4326. (with-current-buffer buffer
  4327. (with-syntax-table (org-search-syntax-table)
  4328. (unless (derived-mode-p 'org-mode)
  4329. (error "Agenda file %s is not in Org mode" file))
  4330. (let ((case-fold-search t))
  4331. (save-excursion
  4332. (save-restriction
  4333. (if (eq buffer org-agenda-restrict)
  4334. (narrow-to-region org-agenda-restrict-begin
  4335. org-agenda-restrict-end)
  4336. (widen))
  4337. (goto-char (point-min))
  4338. (unless (or (org-at-heading-p)
  4339. (outline-next-heading))
  4340. (throw 'nextfile t))
  4341. (goto-char (max (point-min) (1- (point))))
  4342. (while (re-search-forward regexp nil t)
  4343. (org-back-to-heading t)
  4344. (while (and (not (zerop org-agenda-search-view-max-outline-level))
  4345. (> (org-reduced-level (org-outline-level))
  4346. org-agenda-search-view-max-outline-level)
  4347. (forward-line -1)
  4348. (org-back-to-heading t)))
  4349. (skip-chars-forward "* ")
  4350. (setq beg (point-at-bol)
  4351. beg1 (point)
  4352. end (progn
  4353. (outline-next-heading)
  4354. (while (and (not (zerop org-agenda-search-view-max-outline-level))
  4355. (> (org-reduced-level (org-outline-level))
  4356. org-agenda-search-view-max-outline-level)
  4357. (forward-line 1)
  4358. (outline-next-heading)))
  4359. (point)))
  4360. (catch :skip
  4361. (goto-char beg)
  4362. (org-agenda-skip)
  4363. (setq str (buffer-substring-no-properties
  4364. (point-at-bol)
  4365. (if hdl-only (point-at-eol) end)))
  4366. (mapc (lambda (wr) (when (string-match wr str)
  4367. (goto-char (1- end))
  4368. (throw :skip t)))
  4369. regexps-)
  4370. (mapc (lambda (wr) (unless (string-match wr str)
  4371. (goto-char (1- end))
  4372. (throw :skip t)))
  4373. (if todo-only
  4374. (cons (concat "^\\*+[ \t]+"
  4375. org-not-done-regexp)
  4376. regexps+)
  4377. regexps+))
  4378. (goto-char beg)
  4379. (setq marker (org-agenda-new-marker (point))
  4380. category (org-get-category)
  4381. level (make-string (org-reduced-level (org-outline-level)) ? )
  4382. inherited-tags
  4383. (or (eq org-agenda-show-inherited-tags 'always)
  4384. (and (listp org-agenda-show-inherited-tags)
  4385. (memq 'todo org-agenda-show-inherited-tags))
  4386. (and (eq org-agenda-show-inherited-tags t)
  4387. (or (eq org-agenda-use-tag-inheritance t)
  4388. (memq 'todo org-agenda-use-tag-inheritance))))
  4389. tags (org-get-tags nil (not inherited-tags))
  4390. txt (org-agenda-format-item
  4391. ""
  4392. (buffer-substring-no-properties
  4393. beg1 (point-at-eol))
  4394. level category tags t))
  4395. (org-add-props txt props
  4396. 'org-marker marker 'org-hd-marker marker
  4397. 'org-todo-regexp org-todo-regexp
  4398. 'level level
  4399. 'org-complex-heading-regexp org-complex-heading-regexp
  4400. 'priority 1000
  4401. 'type "search")
  4402. (push txt ee)
  4403. (goto-char (1- end))))))))))
  4404. (setq rtn (nreverse ee))
  4405. (setq rtnall (append rtnall rtn)))
  4406. (org-agenda--insert-overriding-header
  4407. (with-temp-buffer
  4408. (insert "Search words: ")
  4409. (add-text-properties (point-min) (1- (point))
  4410. (list 'face 'org-agenda-structure))
  4411. (setq pos (point))
  4412. (insert string "\n")
  4413. (add-text-properties pos (1- (point)) (list 'face 'org-agenda-structure-filter))
  4414. (setq pos (point))
  4415. (unless org-agenda-multi
  4416. (insert (substitute-command-keys "\\<org-agenda-mode-map>\
  4417. Press `\\[org-agenda-manipulate-query-add]', \
  4418. `\\[org-agenda-manipulate-query-subtract]' to add/sub word, \
  4419. `\\[org-agenda-manipulate-query-add-re]', \
  4420. `\\[org-agenda-manipulate-query-subtract-re]' to add/sub regexp, \
  4421. `\\[universal-argument] \\[org-agenda-redo]' for a fresh search\n"))
  4422. (add-text-properties pos (1- (point))
  4423. (list 'face 'org-agenda-structure-secondary)))
  4424. (buffer-string)))
  4425. (org-agenda-mark-header-line (point-min))
  4426. (when rtnall
  4427. (insert (org-agenda-finalize-entries rtnall 'search) "\n"))
  4428. (goto-char (point-min))
  4429. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4430. (add-text-properties (point-min) (point-max)
  4431. `(org-agenda-type search
  4432. org-last-args (,todo-only ,string ,edit-at)
  4433. org-redo-cmd ,org-agenda-redo-command
  4434. org-series-cmd ,org-cmd))
  4435. (org-agenda-finalize)
  4436. (setq buffer-read-only t))))
  4437. ;;; Agenda TODO list
  4438. (defun org-agenda-propertize-selected-todo-keywords (keywords)
  4439. "Use `org-todo-keyword-faces' for the selected todo KEYWORDS."
  4440. (concat
  4441. (if (or (equal keywords "ALL") (not keywords))
  4442. (propertize "ALL" 'face 'org-agenda-structure-filter)
  4443. (mapconcat
  4444. (lambda (kw)
  4445. (propertize kw 'face (list (org-get-todo-face kw) 'org-agenda-structure)))
  4446. (org-split-string keywords "|")
  4447. "|"))
  4448. "\n"))
  4449. (defvar org-select-this-todo-keyword nil)
  4450. (defvar org-last-arg nil)
  4451. (defvar crm-separator)
  4452. ;;;###autoload
  4453. (defun org-todo-list (&optional arg)
  4454. "Show all (not done) TODO entries from all agenda file in a single list.
  4455. The prefix arg can be used to select a specific TODO keyword and limit
  4456. the list to these. When using `\\[universal-argument]', you will be prompted
  4457. for a keyword. A numeric prefix directly selects the Nth keyword in
  4458. `org-todo-keywords-1'."
  4459. (interactive "P")
  4460. (when org-agenda-overriding-arguments
  4461. (setq arg org-agenda-overriding-arguments))
  4462. (when (and (stringp arg) (not (string-match "\\S-" arg))) (setq arg nil))
  4463. (let* ((today (org-today))
  4464. (date (calendar-gregorian-from-absolute today))
  4465. (completion-ignore-case t)
  4466. kwds org-select-this-todo-keyword rtn rtnall files file pos)
  4467. (catch 'exit
  4468. (setq org-agenda-buffer-name
  4469. (org-agenda--get-buffer-name
  4470. (and org-agenda-sticky
  4471. (if (stringp org-select-this-todo-keyword)
  4472. (format "*Org Agenda(%s:%s)*" (or org-keys "t")
  4473. org-select-this-todo-keyword)
  4474. (format "*Org Agenda(%s)*" (or org-keys "t"))))))
  4475. (org-agenda-prepare "TODO")
  4476. (setq kwds org-todo-keywords-for-agenda
  4477. org-select-this-todo-keyword (if (stringp arg) arg
  4478. (and (integerp arg)
  4479. (> arg 0)
  4480. (nth (1- arg) kwds))))
  4481. (when (equal arg '(4))
  4482. (setq org-select-this-todo-keyword
  4483. (mapconcat #'identity
  4484. (let ((crm-separator "|"))
  4485. (completing-read-multiple
  4486. "Keyword (or KWD1|KWD2|...): "
  4487. (mapcar #'list kwds) nil nil))
  4488. "|")))
  4489. (and (equal 0 arg) (setq org-select-this-todo-keyword nil))
  4490. (org-compile-prefix-format 'todo)
  4491. (org-set-sorting-strategy 'todo)
  4492. (setq org-agenda-redo-command
  4493. `(org-todo-list (or (and (numberp current-prefix-arg)
  4494. current-prefix-arg)
  4495. ,org-select-this-todo-keyword
  4496. current-prefix-arg ,arg)))
  4497. (setq files (org-agenda-files nil 'ifmode)
  4498. rtnall nil)
  4499. (while (setq file (pop files))
  4500. (catch 'nextfile
  4501. (org-check-agenda-file file)
  4502. (setq rtn (org-agenda-get-day-entries file date :todo))
  4503. (setq rtnall (append rtnall rtn))))
  4504. (org-agenda--insert-overriding-header
  4505. (with-temp-buffer
  4506. (insert "Global list of TODO items of type: ")
  4507. (add-text-properties (point-min) (1- (point))
  4508. (list 'face 'org-agenda-structure
  4509. 'short-heading
  4510. (concat "ToDo: "
  4511. (or org-select-this-todo-keyword "ALL"))))
  4512. (org-agenda-mark-header-line (point-min))
  4513. (insert (org-agenda-propertize-selected-todo-keywords
  4514. org-select-this-todo-keyword))
  4515. (setq pos (point))
  4516. (unless org-agenda-multi
  4517. (insert (substitute-command-keys "Press \
  4518. \\<org-agenda-mode-map>`N \\[org-agenda-redo]' (e.g. `0 \\[org-agenda-redo]') \
  4519. to search again: (0)[ALL]"))
  4520. (let ((n 0))
  4521. (dolist (k kwds)
  4522. (let ((s (format "(%d)%s" (cl-incf n) k)))
  4523. (when (> (+ (current-column) (string-width s) 1) (window-width))
  4524. (insert "\n "))
  4525. (insert " " s))))
  4526. (insert "\n"))
  4527. (add-text-properties pos (1- (point)) (list 'face 'org-agenda-structure-secondary))
  4528. (buffer-string)))
  4529. (org-agenda-mark-header-line (point-min))
  4530. (when rtnall
  4531. (insert (org-agenda-finalize-entries rtnall 'todo) "\n"))
  4532. (goto-char (point-min))
  4533. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4534. (add-text-properties (point-min) (point-max)
  4535. `(org-agenda-type todo
  4536. org-last-args ,arg
  4537. org-redo-cmd ,org-agenda-redo-command
  4538. org-series-cmd ,org-cmd))
  4539. (org-agenda-finalize)
  4540. (setq buffer-read-only t))))
  4541. ;;; Agenda tags match
  4542. ;;;###autoload
  4543. (defun org-tags-view (&optional todo-only match)
  4544. "Show all headlines for all `org-agenda-files' matching a TAGS criterion.
  4545. The prefix arg TODO-ONLY limits the search to TODO entries."
  4546. (interactive "P")
  4547. (when org-agenda-overriding-arguments
  4548. (setq todo-only (car org-agenda-overriding-arguments)
  4549. match (nth 1 org-agenda-overriding-arguments)))
  4550. (let* ((org-tags-match-list-sublevels
  4551. org-tags-match-list-sublevels)
  4552. (completion-ignore-case t)
  4553. (org--matcher-tags-todo-only todo-only)
  4554. rtn rtnall files file pos matcher
  4555. buffer)
  4556. (when (and (stringp match) (not (string-match "\\S-" match)))
  4557. (setq match nil))
  4558. (catch 'exit
  4559. (setq org-agenda-buffer-name
  4560. (org-agenda--get-buffer-name
  4561. (and org-agenda-sticky
  4562. (if (stringp match)
  4563. (format "*Org Agenda(%s:%s)*"
  4564. (or org-keys (or (and todo-only "M") "m"))
  4565. match)
  4566. (format "*Org Agenda(%s)*"
  4567. (or (and todo-only "M") "m"))))))
  4568. (setq matcher (org-make-tags-matcher match))
  4569. ;; Prepare agendas (and `org-tag-alist-for-agenda') before
  4570. ;; expanding tags within `org-make-tags-matcher'
  4571. (org-agenda-prepare (concat "TAGS " match))
  4572. (setq match (car matcher)
  4573. matcher (cdr matcher))
  4574. (org-compile-prefix-format 'tags)
  4575. (org-set-sorting-strategy 'tags)
  4576. (setq org-agenda-query-string match)
  4577. (setq org-agenda-redo-command
  4578. (list 'org-tags-view
  4579. `(quote ,org--matcher-tags-todo-only)
  4580. `(if current-prefix-arg nil ,org-agenda-query-string)))
  4581. (setq files (org-agenda-files nil 'ifmode)
  4582. rtnall nil)
  4583. (while (setq file (pop files))
  4584. (catch 'nextfile
  4585. (org-check-agenda-file file)
  4586. (setq buffer (if (file-exists-p file)
  4587. (org-get-agenda-file-buffer file)
  4588. (error "No such file %s" file)))
  4589. (if (not buffer)
  4590. ;; If file does not exist, error message to agenda
  4591. (setq rtn (list
  4592. (format "ORG-AGENDA-ERROR: No such org-file %s" file))
  4593. rtnall (append rtnall rtn))
  4594. (with-current-buffer buffer
  4595. (unless (derived-mode-p 'org-mode)
  4596. (error "Agenda file %s is not in Org mode" file))
  4597. (save-excursion
  4598. (save-restriction
  4599. (if (eq buffer org-agenda-restrict)
  4600. (narrow-to-region org-agenda-restrict-begin
  4601. org-agenda-restrict-end)
  4602. (widen))
  4603. (setq rtn (org-scan-tags 'agenda
  4604. matcher
  4605. org--matcher-tags-todo-only))
  4606. (setq rtnall (append rtnall rtn))))))))
  4607. (org-agenda--insert-overriding-header
  4608. (with-temp-buffer
  4609. (insert "Headlines with TAGS match: ")
  4610. (add-text-properties (point-min) (1- (point))
  4611. (list 'face 'org-agenda-structure
  4612. 'short-heading
  4613. (concat "Match: " match)))
  4614. (setq pos (point))
  4615. (insert match "\n")
  4616. (add-text-properties pos (1- (point)) (list 'face 'org-agenda-structure-filter))
  4617. (setq pos (point))
  4618. (unless org-agenda-multi
  4619. (insert (substitute-command-keys
  4620. "Press \
  4621. \\<org-agenda-mode-map>`\\[universal-argument] \\[org-agenda-redo]' \
  4622. to search again\n")))
  4623. (add-text-properties pos (1- (point))
  4624. (list 'face 'org-agenda-structure-secondary))
  4625. (buffer-string)))
  4626. (org-agenda-mark-header-line (point-min))
  4627. (when rtnall
  4628. (insert (org-agenda-finalize-entries rtnall 'tags) "\n"))
  4629. (goto-char (point-min))
  4630. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4631. (add-text-properties
  4632. (point-min) (point-max)
  4633. `(org-agenda-type tags
  4634. org-last-args (,org--matcher-tags-todo-only ,match)
  4635. org-redo-cmd ,org-agenda-redo-command
  4636. org-series-cmd ,org-cmd))
  4637. (org-agenda-finalize)
  4638. (setq buffer-read-only t))))
  4639. ;;; Agenda Finding stuck projects
  4640. (defvar org-agenda-skip-regexp nil
  4641. "Regular expression used in skipping subtrees for the agenda.
  4642. This is basically a temporary global variable that can be set and then
  4643. used by user-defined selections using `org-agenda-skip-function'.")
  4644. (defvar org-agenda-overriding-header nil
  4645. "When set during agenda, todo and tags searches it replaces the header.
  4646. If an empty string, no header will be inserted. If any other
  4647. string, it will be inserted as a header. If a function, insert
  4648. the string returned by the function as a header. If nil, a
  4649. header will be generated automatically according to the command.
  4650. This variable should not be set directly, but custom commands can
  4651. bind it in the options section.")
  4652. (defun org-agenda-skip-entry-if (&rest conditions)
  4653. "Skip entry if any of CONDITIONS is true.
  4654. See `org-agenda-skip-if' for details."
  4655. (org-agenda-skip-if nil conditions))
  4656. (defun org-agenda-skip-subtree-if (&rest conditions)
  4657. "Skip subtree if any of CONDITIONS is true.
  4658. See `org-agenda-skip-if' for details."
  4659. (org-agenda-skip-if t conditions))
  4660. (defun org-agenda-skip-if (subtree conditions)
  4661. "Check current entity for CONDITIONS.
  4662. If SUBTREE is non-nil, the entire subtree is checked. Otherwise, only
  4663. the entry (i.e. the text before the next heading) is checked.
  4664. CONDITIONS is a list of symbols, boolean OR is used to combine the results
  4665. from different tests. Valid conditions are:
  4666. scheduled Check if there is a scheduled cookie
  4667. notscheduled Check if there is no scheduled cookie
  4668. deadline Check if there is a deadline
  4669. notdeadline Check if there is no deadline
  4670. timestamp Check if there is a timestamp (also deadline or scheduled)
  4671. nottimestamp Check if there is no timestamp (also deadline or scheduled)
  4672. regexp Check if regexp matches
  4673. notregexp Check if regexp does not match.
  4674. todo Check if TODO keyword matches
  4675. nottodo Check if TODO keyword does not match
  4676. The regexp is taken from the conditions list, it must come right after
  4677. the `regexp' or `notregexp' element.
  4678. `todo' and `nottodo' accept as an argument a list of todo
  4679. keywords, which may include \"*\" to match any todo keyword.
  4680. (org-agenda-skip-entry-if \\='todo \\='(\"TODO\" \"WAITING\"))
  4681. would skip all entries with \"TODO\" or \"WAITING\" keywords.
  4682. Instead of a list, a keyword class may be given. For example:
  4683. (org-agenda-skip-entry-if \\='nottodo \\='done)
  4684. would skip entries that haven't been marked with any of \"DONE\"
  4685. keywords. Possible classes are: `todo', `done', `any'.
  4686. If any of these conditions is met, this function returns the end point of
  4687. the entity, causing the search to continue from there. This is a function
  4688. that can be put into `org-agenda-skip-function' for the duration of a command."
  4689. (org-back-to-heading t)
  4690. (let* (;; (beg (point))
  4691. (end (if subtree (save-excursion (org-end-of-subtree t) (point))
  4692. (org-entry-end-position)))
  4693. (planning-end (if subtree end (line-end-position 2)))
  4694. m)
  4695. (and
  4696. (or (and (memq 'scheduled conditions)
  4697. (re-search-forward org-scheduled-time-regexp planning-end t))
  4698. (and (memq 'notscheduled conditions)
  4699. (not
  4700. (save-excursion
  4701. (re-search-forward org-scheduled-time-regexp planning-end t))))
  4702. (and (memq 'deadline conditions)
  4703. (re-search-forward org-deadline-time-regexp planning-end t))
  4704. (and (memq 'notdeadline conditions)
  4705. (not
  4706. (save-excursion
  4707. (re-search-forward org-deadline-time-regexp planning-end t))))
  4708. (and (memq 'timestamp conditions)
  4709. (re-search-forward org-ts-regexp end t))
  4710. (and (memq 'nottimestamp conditions)
  4711. (not (save-excursion (re-search-forward org-ts-regexp end t))))
  4712. (and (setq m (memq 'regexp conditions))
  4713. (stringp (nth 1 m))
  4714. (re-search-forward (nth 1 m) end t))
  4715. (and (setq m (memq 'notregexp conditions))
  4716. (stringp (nth 1 m))
  4717. (not (save-excursion (re-search-forward (nth 1 m) end t))))
  4718. (and (or
  4719. (setq m (memq 'nottodo conditions))
  4720. (setq m (memq 'todo-unblocked conditions))
  4721. (setq m (memq 'nottodo-unblocked conditions))
  4722. (setq m (memq 'todo conditions)))
  4723. (org-agenda-skip-if-todo m end)))
  4724. end)))
  4725. (defun org-agenda-skip-if-todo (args end)
  4726. "Helper function for `org-agenda-skip-if', do not use it directly.
  4727. ARGS is a list with first element either `todo', `nottodo',
  4728. `todo-unblocked' or `nottodo-unblocked'. The remainder is either
  4729. a list of TODO keywords, or a state symbol `todo' or `done' or
  4730. `any'."
  4731. (let ((todo-re
  4732. (concat "^\\*+[ \t]+"
  4733. (regexp-opt
  4734. (pcase args
  4735. (`(,_ todo)
  4736. (org-delete-all org-done-keywords
  4737. (copy-sequence org-todo-keywords-1)))
  4738. (`(,_ done) org-done-keywords)
  4739. (`(,_ any) org-todo-keywords-1)
  4740. (`(,_ ,(pred atom))
  4741. (error "Invalid TODO class or type: %S" args))
  4742. (`(,_ ,(pred (member "*"))) org-todo-keywords-1)
  4743. (`(,_ ,todo-list) todo-list))
  4744. 'words))))
  4745. (pcase args
  4746. (`(todo . ,_)
  4747. (let (case-fold-search) (re-search-forward todo-re end t)))
  4748. (`(nottodo . ,_)
  4749. (not (let (case-fold-search) (re-search-forward todo-re end t))))
  4750. (`(todo-unblocked . ,_)
  4751. (catch :unblocked
  4752. (while (let (case-fold-search) (re-search-forward todo-re end t))
  4753. (when (org-entry-blocked-p) (throw :unblocked t)))
  4754. nil))
  4755. (`(nottodo-unblocked . ,_)
  4756. (catch :unblocked
  4757. (while (let (case-fold-search) (re-search-forward todo-re end t))
  4758. (when (org-entry-blocked-p) (throw :unblocked nil)))
  4759. t))
  4760. (`(,type . ,_) (error "Unknown TODO skip type: %S" type)))))
  4761. ;;;###autoload
  4762. (defun org-agenda-list-stuck-projects (&rest _ignore)
  4763. "Create agenda view for projects that are stuck.
  4764. Stuck projects are project that have no next actions. For the definitions
  4765. of what a project is and how to check if it stuck, customize the variable
  4766. `org-stuck-projects'."
  4767. (interactive)
  4768. (let* ((org-agenda-overriding-header
  4769. (or org-agenda-overriding-header "List of stuck projects: "))
  4770. (matcher (nth 0 org-stuck-projects))
  4771. (todo (nth 1 org-stuck-projects))
  4772. (tags (nth 2 org-stuck-projects))
  4773. (gen-re (org-string-nw-p (nth 3 org-stuck-projects)))
  4774. (todo-wds
  4775. (if (not (member "*" todo)) todo
  4776. (org-agenda-prepare-buffers (org-agenda-files nil 'ifmode))
  4777. (org-delete-all org-done-keywords-for-agenda
  4778. (copy-sequence org-todo-keywords-for-agenda))))
  4779. (todo-re (and todo
  4780. (format "^\\*+[ \t]+\\(%s\\)\\>"
  4781. (mapconcat #'identity todo-wds "\\|"))))
  4782. (tags-re (cond ((null tags) nil)
  4783. ((member "*" tags) org-tag-line-re)
  4784. (tags
  4785. (let ((other-tags (format "\\(?:%s:\\)*" org-tag-re)))
  4786. (concat org-outline-regexp-bol
  4787. ".*?[ \t]:"
  4788. other-tags
  4789. (regexp-opt tags t)
  4790. ":" other-tags "[ \t]*$")))
  4791. (t nil)))
  4792. (re-list (delq nil (list todo-re tags-re gen-re)))
  4793. (skip-re
  4794. (if (null re-list)
  4795. (error "Missing information to identify unstuck projects")
  4796. (mapconcat #'identity re-list "\\|")))
  4797. (org-agenda-skip-function
  4798. ;; Skip entry if `org-agenda-skip-regexp' matches anywhere
  4799. ;; in the subtree.
  4800. (lambda ()
  4801. (and (save-excursion
  4802. (let ((case-fold-search nil))
  4803. (re-search-forward
  4804. skip-re (save-excursion (org-end-of-subtree t)) t)))
  4805. (progn (outline-next-heading) (point))))))
  4806. (org-tags-view nil matcher)
  4807. (setq org-agenda-buffer-name (buffer-name))
  4808. (with-current-buffer org-agenda-buffer-name
  4809. (setq org-agenda-redo-command
  4810. `(org-agenda-list-stuck-projects ,current-prefix-arg))
  4811. (let ((inhibit-read-only t))
  4812. (add-text-properties
  4813. (point-min) (point-max)
  4814. `(org-redo-cmd ,org-agenda-redo-command))))))
  4815. ;;; Diary integration
  4816. (defvar org-disable-agenda-to-diary nil) ;Dynamically-scoped param.
  4817. (defvar diary-list-entries-hook)
  4818. (defvar diary-time-regexp)
  4819. (defvar diary-modify-entry-list-string-function)
  4820. (defvar diary-file-name-prefix)
  4821. (defvar diary-display-function)
  4822. (defun org-get-entries-from-diary (date)
  4823. "Get the (Emacs Calendar) diary entries for DATE."
  4824. (require 'diary-lib)
  4825. (declare-function diary-fancy-display "diary-lib" ())
  4826. (let* ((diary-fancy-buffer "*temporary-fancy-diary-buffer*")
  4827. (diary-display-function #'diary-fancy-display)
  4828. (pop-up-frames nil)
  4829. (diary-list-entries-hook
  4830. (cons 'org-diary-default-entry diary-list-entries-hook))
  4831. (diary-file-name-prefix nil) ; turn this feature off
  4832. (diary-modify-entry-list-string-function
  4833. #'org-modify-diary-entry-string)
  4834. (diary-time-regexp (concat "^" diary-time-regexp))
  4835. entries
  4836. (org-disable-agenda-to-diary t))
  4837. (save-excursion
  4838. (save-window-excursion
  4839. (diary-list-entries date 1)))
  4840. (if (not (get-buffer diary-fancy-buffer))
  4841. (setq entries nil)
  4842. (with-current-buffer diary-fancy-buffer
  4843. (setq buffer-read-only nil)
  4844. (if (zerop (buffer-size))
  4845. ;; No entries
  4846. (setq entries nil)
  4847. ;; Omit the date and other unnecessary stuff
  4848. (org-agenda-cleanup-fancy-diary)
  4849. ;; Add prefix to each line and extend the text properties
  4850. (if (zerop (buffer-size))
  4851. (setq entries nil)
  4852. (setq entries (buffer-substring (point-min) (- (point-max) 1)))
  4853. (setq entries
  4854. (with-temp-buffer
  4855. (insert entries) (goto-char (point-min))
  4856. (while (re-search-forward "\n[ \t]+\\(.+\\)$" nil t)
  4857. (unless (save-match-data (string-match diary-time-regexp (match-string 1)))
  4858. (replace-match (concat "; " (match-string 1)))))
  4859. (buffer-string)))))
  4860. (set-buffer-modified-p nil)
  4861. (kill-buffer diary-fancy-buffer)))
  4862. (when entries
  4863. (setq entries (org-split-string entries "\n"))
  4864. (setq entries
  4865. (mapcar
  4866. (lambda (x)
  4867. (setq x (org-agenda-format-item "" x nil "Diary" nil 'time))
  4868. ;; Extend the text properties to the beginning of the line
  4869. (org-add-props x (text-properties-at (1- (length x)) x)
  4870. 'type "diary" 'date date 'face 'org-agenda-diary))
  4871. entries)))))
  4872. (defvar org-agenda-cleanup-fancy-diary-hook nil
  4873. "Hook run when the fancy diary buffer is cleaned up.")
  4874. (defun org-agenda-cleanup-fancy-diary ()
  4875. "Remove unwanted stuff in buffer created by `fancy-diary-display'.
  4876. This gets rid of the date, the underline under the date, and the
  4877. dummy entry installed by Org mode to ensure non-empty diary for
  4878. each date. It also removes lines that contain only whitespace."
  4879. (goto-char (point-min))
  4880. (if (looking-at ".*?:[ \t]*")
  4881. (progn
  4882. (replace-match "")
  4883. (re-search-forward "\n=+$" nil t)
  4884. (replace-match "")
  4885. (while (re-search-backward "^ +\n?" nil t) (replace-match "")))
  4886. (re-search-forward "\n=+$" nil t)
  4887. (delete-region (point-min) (min (point-max) (1+ (match-end 0)))))
  4888. (goto-char (point-min))
  4889. (while (re-search-forward "^ +\n" nil t)
  4890. (replace-match ""))
  4891. (goto-char (point-min))
  4892. (when (re-search-forward "^Org mode dummy\n?" nil t)
  4893. (replace-match ""))
  4894. (run-hooks 'org-agenda-cleanup-fancy-diary-hook))
  4895. (defun org-modify-diary-entry-string (string)
  4896. "Add text properties to string, allowing Org to act on it."
  4897. (org-add-props string nil
  4898. 'mouse-face 'highlight
  4899. 'help-echo (if buffer-file-name
  4900. (format "mouse-2 or RET jump to diary file %s"
  4901. (abbreviate-file-name buffer-file-name))
  4902. "")
  4903. 'org-agenda-diary-link t
  4904. 'org-marker (org-agenda-new-marker (point-at-bol))))
  4905. (defun org-diary-default-entry ()
  4906. "Add a dummy entry to the diary.
  4907. Needed to avoid empty dates which mess up holiday display."
  4908. ;; Catch the error if dealing with the new add-to-diary-alist
  4909. (when org-disable-agenda-to-diary
  4910. (diary-add-to-list original-date "Org mode dummy" "")))
  4911. (defvar org-diary-last-run-time nil)
  4912. ;;;###autoload
  4913. (defun org-diary (&rest args)
  4914. "Return diary information from org files.
  4915. This function can be used in a \"sexp\" diary entry in the Emacs calendar.
  4916. It accesses org files and extracts information from those files to be
  4917. listed in the diary. The function accepts arguments specifying what
  4918. items should be listed. For a list of arguments allowed here, see the
  4919. variable `org-agenda-entry-types'.
  4920. The call in the diary file should look like this:
  4921. &%%(org-diary) ~/path/to/some/orgfile.org
  4922. Use a separate line for each org file to check. Or, if you omit the file name,
  4923. all files listed in `org-agenda-files' will be checked automatically:
  4924. &%%(org-diary)
  4925. If you don't give any arguments (as in the example above), the default value
  4926. of `org-agenda-entry-types' is used: (:deadline :scheduled :timestamp :sexp).
  4927. So the example above may also be written as
  4928. &%%(org-diary :deadline :timestamp :sexp :scheduled)
  4929. The function expects the lisp variables `entry' and `date' to be provided
  4930. by the caller, because this is how the calendar works. Don't use this
  4931. function from a program - use `org-agenda-get-day-entries' instead."
  4932. (with-no-warnings (defvar date) (defvar entry))
  4933. (when (> (- (float-time)
  4934. org-agenda-last-marker-time)
  4935. 5)
  4936. ;; I am not sure if this works with sticky agendas, because the marker
  4937. ;; list is then no longer a global variable.
  4938. (org-agenda-reset-markers))
  4939. (org-compile-prefix-format 'agenda)
  4940. (org-set-sorting-strategy 'agenda)
  4941. (setq args (or args org-agenda-entry-types))
  4942. (let* ((files (if (and entry (stringp entry) (string-match "\\S-" entry))
  4943. (list entry)
  4944. (org-agenda-files t)))
  4945. (time (float-time))
  4946. file rtn results)
  4947. (when (or (not org-diary-last-run-time)
  4948. (> (- time
  4949. org-diary-last-run-time)
  4950. 3))
  4951. (org-agenda-prepare-buffers files))
  4952. (setq org-diary-last-run-time time)
  4953. ;; If this is called during org-agenda, don't return any entries to
  4954. ;; the calendar. Org Agenda will list these entries itself.
  4955. (when org-disable-agenda-to-diary (setq files nil))
  4956. (while (setq file (pop files))
  4957. (setq rtn (apply #'org-agenda-get-day-entries file date args))
  4958. (setq results (append results rtn)))
  4959. (when results
  4960. (setq results
  4961. (mapcar (lambda (i) (replace-regexp-in-string
  4962. org-link-bracket-re "\\2" i))
  4963. results))
  4964. (concat (org-agenda-finalize-entries results) "\n"))))
  4965. ;;; Agenda entry finders
  4966. (defun org-agenda--timestamp-to-absolute (&rest args)
  4967. "Call `org-time-string-to-absolute' with ARGS.
  4968. However, throw `:skip' whenever an error is raised."
  4969. (condition-case e
  4970. (apply #'org-time-string-to-absolute args)
  4971. (org-diary-sexp-no-match (throw :skip nil))
  4972. (error
  4973. (message "%s; Skipping entry" (error-message-string e))
  4974. (throw :skip nil))))
  4975. (defun org-agenda-get-day-entries (file date &rest args)
  4976. "Does the work for `org-diary' and `org-agenda'.
  4977. FILE is the path to a file to be checked for entries. DATE is date like
  4978. the one returned by `calendar-current-date'. ARGS are symbols indicating
  4979. which kind of entries should be extracted. For details about these, see
  4980. the documentation of `org-diary'."
  4981. (let* ((org-startup-folded nil)
  4982. (org-startup-align-all-tables nil)
  4983. (buffer (if (file-exists-p file) (org-get-agenda-file-buffer file)
  4984. (error "No such file %s" file))))
  4985. (if (not buffer)
  4986. ;; If file does not exist, signal it in diary nonetheless.
  4987. (list (format "ORG-AGENDA-ERROR: No such org-file %s" file))
  4988. (with-current-buffer buffer
  4989. (unless (derived-mode-p 'org-mode)
  4990. (error "Agenda file %s is not in Org mode" file))
  4991. (setq org-agenda-buffer (or org-agenda-buffer buffer))
  4992. (setf org-agenda-current-date date)
  4993. (save-excursion
  4994. (save-restriction
  4995. (if (eq buffer org-agenda-restrict)
  4996. (narrow-to-region org-agenda-restrict-begin
  4997. org-agenda-restrict-end)
  4998. (widen))
  4999. ;; Rationalize ARGS. Also make sure `:deadline' comes
  5000. ;; first in order to populate DEADLINES before passing it.
  5001. ;;
  5002. ;; We use `delq' since `org-uniquify' duplicates ARGS,
  5003. ;; guarding us from modifying `org-agenda-entry-types'.
  5004. (setf args (org-uniquify (or args org-agenda-entry-types)))
  5005. (when (and (memq :scheduled args) (memq :scheduled* args))
  5006. (setf args (delq :scheduled* args)))
  5007. (cond
  5008. ((memq :deadline args)
  5009. (setf args (cons :deadline
  5010. (delq :deadline (delq :deadline* args)))))
  5011. ((memq :deadline* args)
  5012. (setf args (cons :deadline* (delq :deadline* args)))))
  5013. ;; Collect list of headlines. Return them flattened.
  5014. (let ((case-fold-search nil) results deadlines)
  5015. (org-dlet
  5016. ((date date))
  5017. (dolist (arg args (apply #'nconc (nreverse results)))
  5018. (pcase arg
  5019. ((and :todo (guard (org-agenda-today-p date)))
  5020. (push (org-agenda-get-todos) results))
  5021. (:timestamp
  5022. (push (org-agenda-get-blocks) results)
  5023. (push (org-agenda-get-timestamps deadlines) results))
  5024. (:sexp
  5025. (push (org-agenda-get-sexps) results))
  5026. (:scheduled
  5027. (push (org-agenda-get-scheduled deadlines) results))
  5028. (:scheduled*
  5029. (push (org-agenda-get-scheduled deadlines t) results))
  5030. (:closed
  5031. (push (org-agenda-get-progress) results))
  5032. (:deadline
  5033. (setf deadlines (org-agenda-get-deadlines))
  5034. (push deadlines results))
  5035. (:deadline*
  5036. (setf deadlines (org-agenda-get-deadlines t))
  5037. (push deadlines results))))))))))))
  5038. (defsubst org-em (x y list)
  5039. "Is X or Y a member of LIST?"
  5040. (or (memq x list) (memq y list)))
  5041. (defvar org-heading-keyword-regexp-format) ; defined in org.el
  5042. (defvar org-agenda-sorting-strategy-selected nil)
  5043. (defun org-agenda-entry-get-agenda-timestamp (pom)
  5044. "Retrieve timestamp information for sorting agenda views.
  5045. Given a point or marker POM, returns a cons cell of the timestamp
  5046. and the timestamp type relevant for the sorting strategy in
  5047. `org-agenda-sorting-strategy-selected'."
  5048. (let (ts ts-date-type)
  5049. (save-match-data
  5050. (cond ((org-em 'scheduled-up 'scheduled-down
  5051. org-agenda-sorting-strategy-selected)
  5052. (setq ts (org-entry-get pom "SCHEDULED")
  5053. ts-date-type " scheduled"))
  5054. ((org-em 'deadline-up 'deadline-down
  5055. org-agenda-sorting-strategy-selected)
  5056. (setq ts (org-entry-get pom "DEADLINE")
  5057. ts-date-type " deadline"))
  5058. ((org-em 'ts-up 'ts-down
  5059. org-agenda-sorting-strategy-selected)
  5060. (setq ts (org-entry-get pom "TIMESTAMP")
  5061. ts-date-type " timestamp"))
  5062. ((org-em 'tsia-up 'tsia-down
  5063. org-agenda-sorting-strategy-selected)
  5064. (setq ts (org-entry-get pom "TIMESTAMP_IA")
  5065. ts-date-type " timestamp_ia"))
  5066. ((org-em 'timestamp-up 'timestamp-down
  5067. org-agenda-sorting-strategy-selected)
  5068. (setq ts (or (org-entry-get pom "SCHEDULED")
  5069. (org-entry-get pom "DEADLINE")
  5070. (org-entry-get pom "TIMESTAMP")
  5071. (org-entry-get pom "TIMESTAMP_IA"))
  5072. ts-date-type ""))
  5073. (t (setq ts-date-type "")))
  5074. (cons (when ts (ignore-errors (org-time-string-to-absolute ts)))
  5075. ts-date-type))))
  5076. (defun org-agenda-get-todos ()
  5077. "Return the TODO information for agenda display."
  5078. (let* ((props (list 'face nil
  5079. 'done-face 'org-agenda-done
  5080. 'org-not-done-regexp org-not-done-regexp
  5081. 'org-todo-regexp org-todo-regexp
  5082. 'org-complex-heading-regexp org-complex-heading-regexp
  5083. 'mouse-face 'highlight
  5084. 'help-echo
  5085. (format "mouse-2 or RET jump to org file %s"
  5086. (abbreviate-file-name buffer-file-name))))
  5087. (case-fold-search nil)
  5088. (regexp (format org-heading-keyword-regexp-format
  5089. (cond
  5090. ((and org-select-this-todo-keyword
  5091. (equal org-select-this-todo-keyword "*"))
  5092. org-todo-regexp)
  5093. (org-select-this-todo-keyword
  5094. (concat "\\("
  5095. (mapconcat #'identity
  5096. (org-split-string
  5097. org-select-this-todo-keyword
  5098. "|")
  5099. "\\|")
  5100. "\\)"))
  5101. (t org-not-done-regexp))))
  5102. marker priority category level tags todo-state
  5103. ts-date ts-date-type ts-date-pair
  5104. ee txt beg end inherited-tags todo-state-end-pos
  5105. effort effort-minutes)
  5106. (goto-char (point-min))
  5107. (while (re-search-forward regexp nil t)
  5108. (catch :skip
  5109. (save-match-data
  5110. (beginning-of-line)
  5111. (org-agenda-skip)
  5112. (setq beg (point) end (save-excursion (outline-next-heading) (point)))
  5113. (unless (and (setq todo-state (org-get-todo-state))
  5114. (setq todo-state-end-pos (match-end 2)))
  5115. (goto-char end)
  5116. (throw :skip nil))
  5117. (when (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item end)
  5118. (goto-char (1+ beg))
  5119. (or org-agenda-todo-list-sublevels (org-end-of-subtree 'invisible))
  5120. (throw :skip nil)))
  5121. (goto-char (match-beginning 2))
  5122. (setq marker (org-agenda-new-marker (match-beginning 0))
  5123. category (org-get-category)
  5124. effort (save-match-data (or (get-text-property (point) 'effort)
  5125. (org-entry-get (point) org-effort-property)))
  5126. effort-minutes (when effort (save-match-data (org-duration-to-minutes effort)))
  5127. ts-date-pair (org-agenda-entry-get-agenda-timestamp (point))
  5128. ts-date (car ts-date-pair)
  5129. ts-date-type (cdr ts-date-pair)
  5130. txt (org-trim (buffer-substring (match-beginning 2) (match-end 0)))
  5131. inherited-tags
  5132. (or (eq org-agenda-show-inherited-tags 'always)
  5133. (and (listp org-agenda-show-inherited-tags)
  5134. (memq 'todo org-agenda-show-inherited-tags))
  5135. (and (eq org-agenda-show-inherited-tags t)
  5136. (or (eq org-agenda-use-tag-inheritance t)
  5137. (memq 'todo org-agenda-use-tag-inheritance))))
  5138. tags (org-get-tags nil (not inherited-tags))
  5139. level (make-string (org-reduced-level (org-outline-level)) ? )
  5140. txt (org-agenda-format-item ""
  5141. (org-add-props txt nil
  5142. 'effort effort
  5143. 'effort-minutes effort-minutes)
  5144. level category tags t)
  5145. priority (1+ (org-get-priority txt)))
  5146. (org-add-props txt props
  5147. 'org-marker marker 'org-hd-marker marker
  5148. 'priority priority
  5149. 'effort effort 'effort-minutes effort-minutes
  5150. 'level level
  5151. 'ts-date ts-date
  5152. 'type (concat "todo" ts-date-type) 'todo-state todo-state)
  5153. (push txt ee)
  5154. (if org-agenda-todo-list-sublevels
  5155. (goto-char todo-state-end-pos)
  5156. (org-end-of-subtree 'invisible))))
  5157. (nreverse ee)))
  5158. (defun org-agenda-todo-custom-ignore-p (time n)
  5159. "Check whether timestamp is farther away than n number of days.
  5160. This function is invoked if `org-agenda-todo-ignore-deadlines',
  5161. `org-agenda-todo-ignore-scheduled' or
  5162. `org-agenda-todo-ignore-timestamp' is set to an integer."
  5163. (let ((days (org-time-stamp-to-now
  5164. time org-agenda-todo-ignore-time-comparison-use-seconds)))
  5165. (if (>= n 0)
  5166. (>= days n)
  5167. (<= days n))))
  5168. ;;;###autoload
  5169. (defun org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item
  5170. (&optional end)
  5171. "Do we have a reason to ignore this TODO entry because it has a time stamp?"
  5172. (when (or org-agenda-todo-ignore-with-date
  5173. org-agenda-todo-ignore-scheduled
  5174. org-agenda-todo-ignore-deadlines
  5175. org-agenda-todo-ignore-timestamp)
  5176. (setq end (or end (save-excursion (outline-next-heading) (point))))
  5177. (save-excursion
  5178. (or (and org-agenda-todo-ignore-with-date
  5179. (re-search-forward org-ts-regexp end t))
  5180. (and org-agenda-todo-ignore-scheduled
  5181. (re-search-forward org-scheduled-time-regexp end t)
  5182. (cond
  5183. ((eq org-agenda-todo-ignore-scheduled 'future)
  5184. (> (org-time-stamp-to-now
  5185. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds)
  5186. 0))
  5187. ((eq org-agenda-todo-ignore-scheduled 'past)
  5188. (<= (org-time-stamp-to-now
  5189. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds)
  5190. 0))
  5191. ((numberp org-agenda-todo-ignore-scheduled)
  5192. (org-agenda-todo-custom-ignore-p
  5193. (match-string 1) org-agenda-todo-ignore-scheduled))
  5194. (t)))
  5195. (and org-agenda-todo-ignore-deadlines
  5196. (re-search-forward org-deadline-time-regexp end t)
  5197. (cond
  5198. ((eq org-agenda-todo-ignore-deadlines 'all) t)
  5199. ((eq org-agenda-todo-ignore-deadlines 'far)
  5200. (not (org-deadline-close-p (match-string 1))))
  5201. ((eq org-agenda-todo-ignore-deadlines 'future)
  5202. (> (org-time-stamp-to-now
  5203. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds)
  5204. 0))
  5205. ((eq org-agenda-todo-ignore-deadlines 'past)
  5206. (<= (org-time-stamp-to-now
  5207. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds)
  5208. 0))
  5209. ((numberp org-agenda-todo-ignore-deadlines)
  5210. (org-agenda-todo-custom-ignore-p
  5211. (match-string 1) org-agenda-todo-ignore-deadlines))
  5212. (t (org-deadline-close-p (match-string 1)))))
  5213. (and org-agenda-todo-ignore-timestamp
  5214. (let ((buffer (current-buffer))
  5215. (regexp
  5216. (concat
  5217. org-scheduled-time-regexp "\\|" org-deadline-time-regexp))
  5218. (start (point)))
  5219. ;; Copy current buffer into a temporary one
  5220. (with-temp-buffer
  5221. (insert-buffer-substring buffer start end)
  5222. (goto-char (point-min))
  5223. ;; Delete SCHEDULED and DEADLINE items
  5224. (while (re-search-forward regexp end t)
  5225. (delete-region (match-beginning 0) (match-end 0)))
  5226. (goto-char (point-min))
  5227. ;; No search for timestamp left
  5228. (when (re-search-forward org-ts-regexp nil t)
  5229. (cond
  5230. ((eq org-agenda-todo-ignore-timestamp 'future)
  5231. (> (org-time-stamp-to-now
  5232. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds)
  5233. 0))
  5234. ((eq org-agenda-todo-ignore-timestamp 'past)
  5235. (<= (org-time-stamp-to-now
  5236. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds)
  5237. 0))
  5238. ((numberp org-agenda-todo-ignore-timestamp)
  5239. (org-agenda-todo-custom-ignore-p
  5240. (match-string 1) org-agenda-todo-ignore-timestamp))
  5241. (t))))))))))
  5242. (defun org-agenda-get-timestamps (&optional deadlines)
  5243. "Return the date stamp information for agenda display.
  5244. Optional argument DEADLINES is a list of deadline items to be
  5245. displayed in agenda view."
  5246. (with-no-warnings (defvar date))
  5247. (let* ((props (list 'face 'org-agenda-calendar-event
  5248. 'org-not-done-regexp org-not-done-regexp
  5249. 'org-todo-regexp org-todo-regexp
  5250. 'org-complex-heading-regexp org-complex-heading-regexp
  5251. 'mouse-face 'highlight
  5252. 'help-echo
  5253. (format "mouse-2 or RET jump to Org file %s"
  5254. (abbreviate-file-name buffer-file-name))))
  5255. (current (calendar-absolute-from-gregorian date))
  5256. (today (org-today))
  5257. (deadline-position-alist
  5258. (mapcar (lambda (d)
  5259. (let ((m (get-text-property 0 'org-hd-marker d)))
  5260. (and m (marker-position m))))
  5261. deadlines))
  5262. ;; Match time-stamps set to current date, time-stamps with
  5263. ;; a repeater, and S-exp time-stamps.
  5264. (regexp
  5265. (concat
  5266. (if org-agenda-include-inactive-timestamps "[[<]" "<")
  5267. (regexp-quote
  5268. (substring
  5269. (format-time-string
  5270. (car org-time-stamp-formats)
  5271. (encode-time ; DATE bound by calendar
  5272. 0 0 0 (nth 1 date) (car date) (nth 2 date)))
  5273. 1 11))
  5274. "\\|\\(<[0-9]+-[0-9]+-[0-9]+[^>\n]+?\\+[0-9]+[hdwmy]>\\)"
  5275. "\\|\\(<%%\\(([^>\n]+)\\)>\\)"))
  5276. timestamp-items)
  5277. (goto-char (point-min))
  5278. (while (re-search-forward regexp nil t)
  5279. ;; Skip date ranges, scheduled and deadlines, which are handled
  5280. ;; specially. Also skip time-stamps before first headline as
  5281. ;; there would be no entry to add to the agenda. Eventually,
  5282. ;; ignore clock entries.
  5283. (catch :skip
  5284. (save-match-data
  5285. (when (or (org-at-date-range-p)
  5286. (org-at-planning-p)
  5287. (org-before-first-heading-p)
  5288. (and org-agenda-include-inactive-timestamps
  5289. (org-at-clock-log-p)))
  5290. (throw :skip nil))
  5291. (org-agenda-skip))
  5292. (let* ((pos (match-beginning 0))
  5293. (repeat (match-string 1))
  5294. (sexp-entry (match-string 3))
  5295. (time-stamp (if (or repeat sexp-entry) (match-string 0)
  5296. (save-excursion
  5297. (goto-char pos)
  5298. (looking-at org-ts-regexp-both)
  5299. (match-string 0))))
  5300. (todo-state (org-get-todo-state))
  5301. (warntime (get-text-property (point) 'org-appt-warntime))
  5302. (done? (member todo-state org-done-keywords)))
  5303. ;; Possibly skip done tasks.
  5304. (when (and done? org-agenda-skip-timestamp-if-done)
  5305. (throw :skip t))
  5306. ;; S-exp entry doesn't match current day: skip it.
  5307. (when (and sexp-entry (not (org-diary-sexp-entry sexp-entry "" date)))
  5308. (throw :skip nil))
  5309. (when repeat
  5310. (let* ((past
  5311. ;; A repeating time stamp is shown at its base
  5312. ;; date and every repeated date up to TODAY. If
  5313. ;; `org-agenda-prefer-last-repeat' is non-nil,
  5314. ;; however, only the last repeat before today
  5315. ;; (inclusive) is shown.
  5316. (org-agenda--timestamp-to-absolute
  5317. repeat
  5318. (if (or (> current today)
  5319. (eq org-agenda-prefer-last-repeat t)
  5320. (member todo-state org-agenda-prefer-last-repeat))
  5321. today
  5322. current)
  5323. 'past (current-buffer) pos))
  5324. (future
  5325. ;; Display every repeated date past TODAY
  5326. ;; (exclusive) unless
  5327. ;; `org-agenda-show-future-repeats' is nil. If
  5328. ;; this variable is set to `next', only display
  5329. ;; the first repeated date after TODAY
  5330. ;; (exclusive).
  5331. (cond
  5332. ((<= current today) past)
  5333. ((not org-agenda-show-future-repeats) past)
  5334. (t
  5335. (let ((base (if (eq org-agenda-show-future-repeats 'next)
  5336. (1+ today)
  5337. current)))
  5338. (org-agenda--timestamp-to-absolute
  5339. repeat base 'future (current-buffer) pos))))))
  5340. (when (and (/= current past) (/= current future))
  5341. (throw :skip nil))))
  5342. (save-excursion
  5343. (re-search-backward org-outline-regexp-bol nil t)
  5344. ;; Possibly skip time-stamp when a deadline is set.
  5345. (when (and org-agenda-skip-timestamp-if-deadline-is-shown
  5346. (assq (point) deadline-position-alist))
  5347. (throw :skip nil))
  5348. (let* ((category (org-get-category pos))
  5349. (effort (org-entry-get pos org-effort-property))
  5350. (effort-minutes (when effort (save-match-data (org-duration-to-minutes effort))))
  5351. (inherited-tags
  5352. (or (eq org-agenda-show-inherited-tags 'always)
  5353. (and (consp org-agenda-show-inherited-tags)
  5354. (memq 'agenda org-agenda-show-inherited-tags))
  5355. (and (eq org-agenda-show-inherited-tags t)
  5356. (or (eq org-agenda-use-tag-inheritance t)
  5357. (memq 'agenda
  5358. org-agenda-use-tag-inheritance)))))
  5359. (tags (org-get-tags nil (not inherited-tags)))
  5360. (level (make-string (org-reduced-level (org-outline-level))
  5361. ?\s))
  5362. (head (and (looking-at "\\*+[ \t]+\\(.*\\)")
  5363. (match-string 1)))
  5364. (inactive? (= (char-after pos) ?\[))
  5365. (habit? (and (fboundp 'org-is-habit-p) (org-is-habit-p)))
  5366. (item
  5367. (org-agenda-format-item
  5368. (and inactive? org-agenda-inactive-leader)
  5369. (org-add-props head nil
  5370. 'effort effort
  5371. 'effort-minutes effort-minutes)
  5372. level category tags time-stamp org-ts-regexp habit?)))
  5373. (org-add-props item props
  5374. 'priority (if habit?
  5375. (org-habit-get-priority (org-habit-parse-todo))
  5376. (org-get-priority item))
  5377. 'org-marker (org-agenda-new-marker pos)
  5378. 'org-hd-marker (org-agenda-new-marker)
  5379. 'date date
  5380. 'level level
  5381. 'effort effort 'effort-minutes effort-minutes
  5382. 'ts-date (if repeat (org-agenda--timestamp-to-absolute repeat)
  5383. current)
  5384. 'todo-state todo-state
  5385. 'warntime warntime
  5386. 'type "timestamp")
  5387. (push item timestamp-items))))
  5388. (when org-agenda-skip-additional-timestamps-same-entry
  5389. (outline-next-heading))))
  5390. (nreverse timestamp-items)))
  5391. (defun org-agenda-get-sexps ()
  5392. "Return the sexp information for agenda display."
  5393. (require 'diary-lib)
  5394. (with-no-warnings (defvar date) (defvar entry))
  5395. (let* ((props (list 'face 'org-agenda-calendar-sexp
  5396. 'mouse-face 'highlight
  5397. 'help-echo
  5398. (format "mouse-2 or RET jump to org file %s"
  5399. (abbreviate-file-name buffer-file-name))))
  5400. (regexp "^&?%%(")
  5401. ;; FIXME: Is this `entry' binding intended to be dynamic,
  5402. ;; so as to "hide" any current binding for it?
  5403. marker category extra level ee txt tags entry
  5404. result beg b sexp sexp-entry todo-state warntime inherited-tags
  5405. effort effort-minutes)
  5406. (goto-char (point-min))
  5407. (while (re-search-forward regexp nil t)
  5408. (catch :skip
  5409. (org-agenda-skip)
  5410. (setq beg (match-beginning 0))
  5411. (goto-char (1- (match-end 0)))
  5412. (setq b (point))
  5413. (forward-sexp 1)
  5414. (setq sexp (buffer-substring b (point)))
  5415. (setq sexp-entry (if (looking-at "[ \t]*\\(\\S-.*\\)")
  5416. (org-trim (match-string 1))
  5417. ""))
  5418. (setq result (org-diary-sexp-entry sexp sexp-entry date))
  5419. (when result
  5420. (setq marker (org-agenda-new-marker beg)
  5421. level (make-string (org-reduced-level (org-outline-level)) ? )
  5422. category (org-get-category beg)
  5423. effort (save-match-data (or (get-text-property (point) 'effort)
  5424. (org-entry-get (point) org-effort-property)))
  5425. inherited-tags
  5426. (or (eq org-agenda-show-inherited-tags 'always)
  5427. (and (listp org-agenda-show-inherited-tags)
  5428. (memq 'agenda org-agenda-show-inherited-tags))
  5429. (and (eq org-agenda-show-inherited-tags t)
  5430. (or (eq org-agenda-use-tag-inheritance t)
  5431. (memq 'agenda org-agenda-use-tag-inheritance))))
  5432. tags (org-get-tags nil (not inherited-tags))
  5433. todo-state (org-get-todo-state)
  5434. warntime (get-text-property (point) 'org-appt-warntime)
  5435. extra nil)
  5436. (setq effort-minutes (when effort (save-match-data (org-duration-to-minutes effort))))
  5437. (dolist (r (if (stringp result)
  5438. (list result)
  5439. result)) ;; we expect a list here
  5440. (when (and org-agenda-diary-sexp-prefix
  5441. (string-match org-agenda-diary-sexp-prefix r))
  5442. (setq extra (match-string 0 r)
  5443. r (replace-match "" nil nil r)))
  5444. (if (string-match "\\S-" r)
  5445. (setq txt r)
  5446. (setq txt "SEXP entry returned empty string"))
  5447. (setq txt (org-agenda-format-item extra
  5448. (org-add-props txt nil
  5449. 'effort effort
  5450. 'effort-minutes effort-minutes)
  5451. level category tags 'time))
  5452. (org-add-props txt props 'org-marker marker
  5453. 'date date 'todo-state todo-state
  5454. 'effort effort 'effort-minutes effort-minutes
  5455. 'level level 'type "sexp" 'warntime warntime)
  5456. (push txt ee)))))
  5457. (nreverse ee)))
  5458. ;; Calendar sanity: define some functions that are independent of
  5459. ;; `calendar-date-style'.
  5460. (defun org-anniversary (year month day &optional mark)
  5461. "Like `diary-anniversary', but with fixed (ISO) order of arguments."
  5462. (with-no-warnings
  5463. (let ((calendar-date-style 'iso))
  5464. (diary-anniversary year month day mark))))
  5465. (defun org-cyclic (N year month day &optional mark)
  5466. "Like `diary-cyclic', but with fixed (ISO) order of arguments."
  5467. (with-no-warnings
  5468. (let ((calendar-date-style 'iso))
  5469. (diary-cyclic N year month day mark))))
  5470. (defun org-block (Y1 M1 D1 Y2 M2 D2 &optional mark)
  5471. "Like `diary-block', but with fixed (ISO) order of arguments."
  5472. (with-no-warnings
  5473. (let ((calendar-date-style 'iso))
  5474. (diary-block Y1 M1 D1 Y2 M2 D2 mark))))
  5475. (defun org-date (year month day &optional mark)
  5476. "Like `diary-date', but with fixed (ISO) order of arguments."
  5477. (with-no-warnings
  5478. (let ((calendar-date-style 'iso))
  5479. (diary-date year month day mark))))
  5480. ;; Define the `org-class' function
  5481. (defun org-class (y1 m1 d1 y2 m2 d2 dayname &rest skip-weeks)
  5482. "Entry applies if date is between dates on DAYNAME, but skips SKIP-WEEKS.
  5483. DAYNAME is a number between 0 (Sunday) and 6 (Saturday).
  5484. SKIP-WEEKS is any number of ISO weeks in the block period for which the
  5485. item should be skipped. If any of the SKIP-WEEKS arguments is the symbol
  5486. `holidays', then any date that is known by the Emacs calendar to be a
  5487. holiday will also be skipped. If SKIP-WEEKS arguments are holiday strings,
  5488. then those holidays will be skipped."
  5489. (with-no-warnings (defvar date) (defvar entry))
  5490. (let* ((date1 (calendar-absolute-from-gregorian (list m1 d1 y1)))
  5491. (date2 (calendar-absolute-from-gregorian (list m2 d2 y2)))
  5492. (d (calendar-absolute-from-gregorian date))
  5493. (h (when skip-weeks (calendar-check-holidays date))))
  5494. (and
  5495. (<= date1 d)
  5496. (<= d date2)
  5497. (= (calendar-day-of-week date) dayname)
  5498. (or (not skip-weeks)
  5499. (progn
  5500. (require 'cal-iso)
  5501. (not (member (car (calendar-iso-from-absolute d)) skip-weeks))))
  5502. (not (or (and h (memq 'holidays skip-weeks))
  5503. (delq nil (mapcar (lambda(g) (member g skip-weeks)) h))))
  5504. entry)))
  5505. (defalias 'org-get-closed #'org-agenda-get-progress)
  5506. (defun org-agenda-get-progress ()
  5507. "Return the logged TODO entries for agenda display."
  5508. (with-no-warnings (defvar date))
  5509. (let* ((props (list 'mouse-face 'highlight
  5510. 'org-not-done-regexp org-not-done-regexp
  5511. 'org-todo-regexp org-todo-regexp
  5512. 'org-complex-heading-regexp org-complex-heading-regexp
  5513. 'help-echo
  5514. (format "mouse-2 or RET jump to org file %s"
  5515. (abbreviate-file-name buffer-file-name))))
  5516. (items (if (consp org-agenda-show-log-scoped)
  5517. org-agenda-show-log-scoped
  5518. (if (eq org-agenda-show-log-scoped 'clockcheck)
  5519. '(clock)
  5520. org-agenda-log-mode-items)))
  5521. (parts
  5522. (delq nil
  5523. (list
  5524. (when (memq 'closed items) (concat "\\<" org-closed-string))
  5525. (when (memq 'clock items) (concat "\\<" org-clock-string))
  5526. (when (memq 'state items)
  5527. (format "- +State \"%s\".*?" org-todo-regexp)))))
  5528. (parts-re (if parts (mapconcat #'identity parts "\\|")
  5529. (error "`org-agenda-log-mode-items' is empty")))
  5530. (regexp (concat
  5531. "\\(" parts-re "\\)"
  5532. " *\\["
  5533. (regexp-quote
  5534. (substring
  5535. (format-time-string
  5536. (car org-time-stamp-formats)
  5537. (encode-time ; DATE bound by calendar
  5538. 0 0 0 (nth 1 date) (car date) (nth 2 date)))
  5539. 1 11))))
  5540. (org-agenda-search-headline-for-time nil)
  5541. marker hdmarker priority category level tags closedp type
  5542. statep clockp state ee txt extra timestr rest clocked inherited-tags
  5543. effort effort-minutes)
  5544. (goto-char (point-min))
  5545. (while (re-search-forward regexp nil t)
  5546. (catch :skip
  5547. (org-agenda-skip)
  5548. (setq marker (org-agenda-new-marker (match-beginning 0))
  5549. closedp (equal (match-string 1) org-closed-string)
  5550. statep (equal (string-to-char (match-string 1)) ?-)
  5551. clockp (not (or closedp statep))
  5552. state (and statep (match-string 2))
  5553. category (org-get-category (match-beginning 0))
  5554. timestr (buffer-substring (match-beginning 0) (point-at-eol))
  5555. effort (save-match-data (or (get-text-property (point) 'effort)
  5556. (org-entry-get (point) org-effort-property))))
  5557. (setq effort-minutes (when effort (save-match-data (org-duration-to-minutes effort))))
  5558. (when (string-match "\\]" timestr)
  5559. ;; substring should only run to end of time stamp
  5560. (setq rest (substring timestr (match-end 0))
  5561. timestr (substring timestr 0 (match-end 0)))
  5562. (if (and (not closedp) (not statep)
  5563. (string-match "\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)\\].*?\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)"
  5564. rest))
  5565. (progn (setq timestr (concat (substring timestr 0 -1)
  5566. "-" (match-string 1 rest) "]"))
  5567. (setq clocked (match-string 2 rest)))
  5568. (setq clocked "-")))
  5569. (save-excursion
  5570. (setq extra
  5571. (cond
  5572. ((not org-agenda-log-mode-add-notes) nil)
  5573. (statep
  5574. (and (looking-at ".*\\\\\n[ \t]*\\([^-\n \t].*?\\)[ \t]*$")
  5575. (match-string 1)))
  5576. (clockp
  5577. (and (looking-at ".*\n[ \t]*-[ \t]+\\([^-\n \t].*?\\)[ \t]*$")
  5578. (match-string 1)))))
  5579. (if (not (re-search-backward org-outline-regexp-bol nil t))
  5580. (throw :skip nil)
  5581. (goto-char (match-beginning 0))
  5582. (setq hdmarker (org-agenda-new-marker)
  5583. inherited-tags
  5584. (or (eq org-agenda-show-inherited-tags 'always)
  5585. (and (listp org-agenda-show-inherited-tags)
  5586. (memq 'todo org-agenda-show-inherited-tags))
  5587. (and (eq org-agenda-show-inherited-tags t)
  5588. (or (eq org-agenda-use-tag-inheritance t)
  5589. (memq 'todo org-agenda-use-tag-inheritance))))
  5590. tags (org-get-tags nil (not inherited-tags))
  5591. level (make-string (org-reduced-level (org-outline-level)) ? ))
  5592. (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
  5593. (setq txt (match-string 1))
  5594. (when extra
  5595. (if (string-match "\\([ \t]+\\)\\(:[^ \n\t]*?:\\)[ \t]*$" txt)
  5596. (setq txt (concat (substring txt 0 (match-beginning 1))
  5597. " - " extra " " (match-string 2 txt)))
  5598. (setq txt (concat txt " - " extra))))
  5599. (setq txt (org-agenda-format-item
  5600. (cond
  5601. (closedp "Closed: ")
  5602. (statep (concat "State: (" state ")"))
  5603. (t (concat "Clocked: (" clocked ")")))
  5604. (org-add-props txt nil
  5605. 'effort effort
  5606. 'effort-minutes effort-minutes)
  5607. level category tags timestr)))
  5608. (setq type (cond (closedp "closed")
  5609. (statep "state")
  5610. (t "clock")))
  5611. (setq priority 100000)
  5612. (org-add-props txt props
  5613. 'org-marker marker 'org-hd-marker hdmarker 'face 'org-agenda-done
  5614. 'priority priority 'level level
  5615. 'effort effort 'effort-minutes effort-minutes
  5616. 'type type 'date date
  5617. 'undone-face 'org-warning 'done-face 'org-agenda-done)
  5618. (push txt ee))
  5619. (goto-char (point-at-eol))))
  5620. (nreverse ee)))
  5621. (defun org-agenda-show-clocking-issues ()
  5622. "Add overlays, showing issues with clocking.
  5623. See also the user option `org-agenda-clock-consistency-checks'."
  5624. (interactive)
  5625. (let* ((pl org-agenda-clock-consistency-checks)
  5626. (re (concat "^[ \t]*"
  5627. org-clock-string
  5628. "[ \t]+"
  5629. "\\(\\[.*?\\]\\)" ; group 1 is first stamp
  5630. "\\(-\\{1,3\\}\\(\\[.*?\\]\\)\\)?")) ; group 3 is second
  5631. (tlstart 0.)
  5632. (tlend 0.)
  5633. (maxtime (org-duration-to-minutes
  5634. (or (plist-get pl :max-duration) "24:00")))
  5635. (mintime (org-duration-to-minutes
  5636. (or (plist-get pl :min-duration) 0)))
  5637. (maxgap (org-duration-to-minutes
  5638. ;; default 30:00 means never complain
  5639. (or (plist-get pl :max-gap) "30:00")))
  5640. (gapok (mapcar #'org-duration-to-minutes
  5641. (plist-get pl :gap-ok-around)))
  5642. (def-face (or (plist-get pl :default-face)
  5643. '((:background "DarkRed") (:foreground "white"))))
  5644. issue face m te ts dt ov)
  5645. (goto-char (point-min))
  5646. (while (re-search-forward " Clocked: +(\\(?:-\\|\\([0-9]+:[0-9]+\\)\\))" nil t)
  5647. (setq issue nil face def-face)
  5648. (catch 'next
  5649. (setq m (org-get-at-bol 'org-marker)
  5650. te nil ts nil)
  5651. (unless (and m (markerp m))
  5652. (setq issue "No valid clock line") (throw 'next t))
  5653. (org-with-point-at m
  5654. (save-excursion
  5655. (goto-char (point-at-bol))
  5656. (unless (looking-at re)
  5657. (error "No valid Clock line")
  5658. (throw 'next t))
  5659. (unless (match-end 3)
  5660. (setq issue
  5661. (format
  5662. "No end time: (%s)"
  5663. (org-duration-from-minutes
  5664. (floor
  5665. (- (float-time (org-current-time))
  5666. (float-time (org-time-string-to-time (match-string 1))))
  5667. 60)))
  5668. face (or (plist-get pl :no-end-time-face) face))
  5669. (throw 'next t))
  5670. (setq ts (match-string 1)
  5671. te (match-string 3)
  5672. ts (float-time (org-time-string-to-time ts))
  5673. te (float-time (org-time-string-to-time te))
  5674. dt (- te ts))))
  5675. (cond
  5676. ((> dt (* 60 maxtime))
  5677. ;; a very long clocking chunk
  5678. (setq issue (format "Clocking interval is very long: %s"
  5679. (org-duration-from-minutes (floor dt 60)))
  5680. face (or (plist-get pl :long-face) face)))
  5681. ((< dt (* 60 mintime))
  5682. ;; a very short clocking chunk
  5683. (setq issue (format "Clocking interval is very short: %s"
  5684. (org-duration-from-minutes (floor dt 60)))
  5685. face (or (plist-get pl :short-face) face)))
  5686. ((and (> tlend 0) (< ts tlend))
  5687. ;; Two clock entries are overlapping
  5688. (setq issue (format "Clocking overlap: %d minutes"
  5689. (/ (- tlend ts) 60))
  5690. face (or (plist-get pl :overlap-face) face)))
  5691. ((and (> tlend 0) (> ts (+ tlend (* 60 maxgap))))
  5692. ;; There is a gap, lets see if we need to report it
  5693. (unless (org-agenda-check-clock-gap tlend ts gapok)
  5694. (setq issue (format "Clocking gap: %d minutes"
  5695. (/ (- ts tlend) 60))
  5696. face (or (plist-get pl :gap-face) face))))
  5697. (t nil)))
  5698. (setq tlend (or te tlend) tlstart (or ts tlstart))
  5699. (when issue
  5700. ;; OK, there was some issue, add an overlay to show the issue
  5701. (setq ov (make-overlay (point-at-bol) (point-at-eol)))
  5702. (overlay-put ov 'before-string
  5703. (concat
  5704. (org-add-props
  5705. (format "%-43s" (concat " " issue))
  5706. nil
  5707. 'face face)
  5708. "\n"))
  5709. (overlay-put ov 'evaporate t)))))
  5710. (defun org-agenda-check-clock-gap (t1 t2 ok-list)
  5711. "Check if gap T1 -> T2 contains one of the OK-LIST time-of-day values."
  5712. (catch 'exit
  5713. (unless ok-list
  5714. ;; there are no OK times for gaps...
  5715. (throw 'exit nil))
  5716. (when (> (- (/ t2 36000) (/ t1 36000)) 24)
  5717. ;; This is more than 24 hours, so it is OK.
  5718. ;; because we have at least one OK time, that must be in the
  5719. ;; 24 hour interval.
  5720. (throw 'exit t))
  5721. ;; We have a shorter gap.
  5722. ;; Now we have to get the minute of the day when these times are
  5723. (let* ((t1dec (decode-time t1))
  5724. (t2dec (decode-time t2))
  5725. ;; compute the minute on the day
  5726. (min1 (+ (nth 1 t1dec) (* 60 (nth 2 t1dec))))
  5727. (min2 (+ (nth 1 t2dec) (* 60 (nth 2 t2dec)))))
  5728. (when (< min2 min1)
  5729. ;; if min2 is smaller than min1, this means it is on the next day.
  5730. ;; Wrap it to after midnight.
  5731. (setq min2 (+ min2 1440)))
  5732. ;; Now check if any of the OK times is in the gap
  5733. (mapc (lambda (x)
  5734. ;; Wrap the time to after midnight if necessary
  5735. (when (< x min1) (setq x (+ x 1440)))
  5736. ;; Check if in interval
  5737. (and (<= min1 x) (>= min2 x) (throw 'exit t)))
  5738. ok-list)
  5739. ;; Nope, this gap is not OK
  5740. nil)))
  5741. (defun org-agenda-get-deadlines (&optional with-hour)
  5742. "Return the deadline information for agenda display.
  5743. When WITH-HOUR is non-nil, only return deadlines with an hour
  5744. specification like [h]h:mm."
  5745. (with-no-warnings (defvar date))
  5746. (let* ((props (list 'mouse-face 'highlight
  5747. '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. 'help-echo
  5751. (format "mouse-2 or RET jump to org file %s"
  5752. (abbreviate-file-name buffer-file-name))))
  5753. (regexp (if with-hour
  5754. org-deadline-time-hour-regexp
  5755. org-deadline-time-regexp))
  5756. (today (org-today))
  5757. (today? (org-agenda-today-p date)) ; DATE bound by calendar.
  5758. (current (calendar-absolute-from-gregorian date))
  5759. deadline-items)
  5760. (goto-char (point-min))
  5761. (if (org-element--cache-active-p)
  5762. (org-element-cache-map
  5763. (lambda (el)
  5764. (when (and (org-element-property :deadline el)
  5765. (or (not with-hour)
  5766. (org-element-property
  5767. :hour-start
  5768. (org-element-property :deadline el))
  5769. (org-element-property
  5770. :hour-end
  5771. (org-element-property :deadline el))))
  5772. (goto-char (org-element-property :contents-begin el))
  5773. (catch :skip
  5774. (org-agenda-skip el)
  5775. (let* ((s (substring (org-element-property
  5776. :raw-value
  5777. (org-element-property :deadline el))
  5778. 1 -1))
  5779. (pos (save-excursion
  5780. (goto-char (org-element-property :contents-begin el))
  5781. ;; We intentionally leave NOERROR
  5782. ;; argument in `re-search-forward' nil. If
  5783. ;; the search fails here, something went
  5784. ;; wrong and we are looking at
  5785. ;; non-matching headline.
  5786. (re-search-forward regexp (line-end-position))
  5787. (1- (match-beginning 1))))
  5788. (todo-state (org-element-property :todo-keyword el))
  5789. (done? (eq 'done (org-element-property :todo-type el)))
  5790. (sexp? (eq 'diary
  5791. (org-element-property
  5792. :type (org-element-property :deadline el))))
  5793. ;; DEADLINE is the deadline date for the entry. It is
  5794. ;; either the base date or the last repeat, according
  5795. ;; to `org-agenda-prefer-last-repeat'.
  5796. (deadline
  5797. (cond
  5798. (sexp? (org-agenda--timestamp-to-absolute s current))
  5799. ((or (eq org-agenda-prefer-last-repeat t)
  5800. (member todo-state org-agenda-prefer-last-repeat))
  5801. (org-agenda--timestamp-to-absolute
  5802. s today 'past (current-buffer) pos))
  5803. (t (org-agenda--timestamp-to-absolute s))))
  5804. ;; REPEAT is the future repeat closest from CURRENT,
  5805. ;; according to `org-agenda-show-future-repeats'. If
  5806. ;; the latter is nil, or if the time stamp has no
  5807. ;; repeat part, default to DEADLINE.
  5808. (repeat
  5809. (cond
  5810. (sexp? deadline)
  5811. ((<= current today) deadline)
  5812. ((not org-agenda-show-future-repeats) deadline)
  5813. (t
  5814. (let ((base (if (eq org-agenda-show-future-repeats 'next)
  5815. (1+ today)
  5816. current)))
  5817. (org-agenda--timestamp-to-absolute
  5818. s base 'future (current-buffer) pos)))))
  5819. (diff (- deadline current))
  5820. (suppress-prewarning
  5821. (let ((scheduled
  5822. (and org-agenda-skip-deadline-prewarning-if-scheduled
  5823. (org-element-property
  5824. :raw-value
  5825. (org-element-property :scheduled el)))))
  5826. (cond
  5827. ((not scheduled) nil)
  5828. ;; The current item has a scheduled date, so
  5829. ;; evaluate its prewarning lead time.
  5830. ((integerp org-agenda-skip-deadline-prewarning-if-scheduled)
  5831. ;; Use global prewarning-restart lead time.
  5832. org-agenda-skip-deadline-prewarning-if-scheduled)
  5833. ((eq org-agenda-skip-deadline-prewarning-if-scheduled
  5834. 'pre-scheduled)
  5835. ;; Set pre-warning to no earlier than SCHEDULED.
  5836. (min (- deadline
  5837. (org-agenda--timestamp-to-absolute scheduled))
  5838. org-deadline-warning-days))
  5839. ;; Set pre-warning to deadline.
  5840. (t 0))))
  5841. (wdays (or suppress-prewarning (org-get-wdays s))))
  5842. (cond
  5843. ;; Only display deadlines at their base date, at future
  5844. ;; repeat occurrences or in today agenda.
  5845. ((= current deadline) nil)
  5846. ((= current repeat) nil)
  5847. ((not today?) (throw :skip nil))
  5848. ;; Upcoming deadline: display within warning period WDAYS.
  5849. ((> deadline current) (when (> diff wdays) (throw :skip nil)))
  5850. ;; Overdue deadline: warn about it for
  5851. ;; `org-deadline-past-days' duration.
  5852. (t (when (< org-deadline-past-days (- diff)) (throw :skip nil))))
  5853. ;; Possibly skip done tasks.
  5854. (when (and done?
  5855. (or org-agenda-skip-deadline-if-done
  5856. (/= deadline current)))
  5857. (throw :skip nil))
  5858. (save-excursion
  5859. (goto-char (org-element-property :begin el))
  5860. (let* ((category (org-get-category))
  5861. (effort (save-match-data (or (get-text-property (point) 'effort)
  5862. (org-element-property (intern (concat ":" (upcase org-effort-property))) el))))
  5863. (effort-minutes (when effort (save-match-data (org-duration-to-minutes effort))))
  5864. (level (make-string (org-element-property :level el)
  5865. ?\s))
  5866. (head (save-excursion
  5867. (goto-char (org-element-property :begin el))
  5868. (re-search-forward org-outline-regexp-bol)
  5869. (buffer-substring-no-properties (point) (line-end-position))))
  5870. (inherited-tags
  5871. (or (eq org-agenda-show-inherited-tags 'always)
  5872. (and (listp org-agenda-show-inherited-tags)
  5873. (memq 'agenda org-agenda-show-inherited-tags))
  5874. (and (eq org-agenda-show-inherited-tags t)
  5875. (or (eq org-agenda-use-tag-inheritance t)
  5876. (memq 'agenda
  5877. org-agenda-use-tag-inheritance)))))
  5878. (tags (org-get-tags el (not inherited-tags)))
  5879. (time
  5880. (cond
  5881. ;; No time of day designation if it is only
  5882. ;; a reminder.
  5883. ((and (/= current deadline) (/= current repeat)) nil)
  5884. ((string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
  5885. (concat (substring s (match-beginning 1)) " "))
  5886. (t 'time)))
  5887. (item
  5888. (org-agenda-format-item
  5889. ;; Insert appropriate suffixes before deadlines.
  5890. ;; Those only apply to today agenda.
  5891. (pcase-let ((`(,now ,future ,past)
  5892. org-agenda-deadline-leaders))
  5893. (cond
  5894. ((and today? (< deadline today)) (format past (- diff)))
  5895. ((and today? (> deadline today)) (format future diff))
  5896. (t now)))
  5897. (org-add-props head nil
  5898. 'effort effort
  5899. 'effort-minutes effort-minutes)
  5900. level category tags time))
  5901. (face (org-agenda-deadline-face
  5902. (- 1 (/ (float diff) (max wdays 1)))))
  5903. (upcoming? (and today? (> deadline today)))
  5904. (warntime (get-text-property (point) 'org-appt-warntime)))
  5905. (org-add-props item props
  5906. 'org-marker (org-agenda-new-marker pos)
  5907. 'org-hd-marker (org-agenda-new-marker (line-beginning-position))
  5908. 'warntime warntime
  5909. 'level level
  5910. 'effort effort 'effort-minutes effort-minutes
  5911. 'ts-date deadline
  5912. 'priority
  5913. ;; Adjust priority to today reminders about deadlines.
  5914. ;; Overdue deadlines get the highest priority
  5915. ;; increase, then imminent deadlines and eventually
  5916. ;; more distant deadlines.
  5917. (let ((adjust (if today? (- diff) 0)))
  5918. (+ adjust (org-get-priority item)))
  5919. 'todo-state todo-state
  5920. 'type (if upcoming? "upcoming-deadline" "deadline")
  5921. 'date (if upcoming? date deadline)
  5922. 'face (if done? 'org-agenda-done face)
  5923. 'undone-face face
  5924. 'done-face 'org-agenda-done)
  5925. (push item deadline-items)))))))
  5926. :next-re regexp
  5927. :fail-re regexp
  5928. :narrow t)
  5929. (while (re-search-forward regexp nil t)
  5930. (catch :skip
  5931. (unless (save-match-data (org-at-planning-p)) (throw :skip nil))
  5932. (org-agenda-skip)
  5933. (let* ((s (match-string 1))
  5934. (pos (1- (match-beginning 1)))
  5935. (todo-state (save-match-data (org-get-todo-state)))
  5936. (done? (member todo-state org-done-keywords))
  5937. (sexp? (string-prefix-p "%%" s))
  5938. ;; DEADLINE is the deadline date for the entry. It is
  5939. ;; either the base date or the last repeat, according
  5940. ;; to `org-agenda-prefer-last-repeat'.
  5941. (deadline
  5942. (cond
  5943. (sexp? (org-agenda--timestamp-to-absolute s current))
  5944. ((or (eq org-agenda-prefer-last-repeat t)
  5945. (member todo-state org-agenda-prefer-last-repeat))
  5946. (org-agenda--timestamp-to-absolute
  5947. s today 'past (current-buffer) pos))
  5948. (t (org-agenda--timestamp-to-absolute s))))
  5949. ;; REPEAT is the future repeat closest from CURRENT,
  5950. ;; according to `org-agenda-show-future-repeats'. If
  5951. ;; the latter is nil, or if the time stamp has no
  5952. ;; repeat part, default to DEADLINE.
  5953. (repeat
  5954. (cond
  5955. (sexp? deadline)
  5956. ((<= current today) deadline)
  5957. ((not org-agenda-show-future-repeats) deadline)
  5958. (t
  5959. (let ((base (if (eq org-agenda-show-future-repeats 'next)
  5960. (1+ today)
  5961. current)))
  5962. (org-agenda--timestamp-to-absolute
  5963. s base 'future (current-buffer) pos)))))
  5964. (diff (- deadline current))
  5965. (suppress-prewarning
  5966. (let ((scheduled
  5967. (and org-agenda-skip-deadline-prewarning-if-scheduled
  5968. (org-entry-get nil "SCHEDULED"))))
  5969. (cond
  5970. ((not scheduled) nil)
  5971. ;; The current item has a scheduled date, so
  5972. ;; evaluate its prewarning lead time.
  5973. ((integerp org-agenda-skip-deadline-prewarning-if-scheduled)
  5974. ;; Use global prewarning-restart lead time.
  5975. org-agenda-skip-deadline-prewarning-if-scheduled)
  5976. ((eq org-agenda-skip-deadline-prewarning-if-scheduled
  5977. 'pre-scheduled)
  5978. ;; Set pre-warning to no earlier than SCHEDULED.
  5979. (min (- deadline
  5980. (org-agenda--timestamp-to-absolute scheduled))
  5981. org-deadline-warning-days))
  5982. ;; Set pre-warning to deadline.
  5983. (t 0))))
  5984. (wdays (or suppress-prewarning (org-get-wdays s))))
  5985. (cond
  5986. ;; Only display deadlines at their base date, at future
  5987. ;; repeat occurrences or in today agenda.
  5988. ((= current deadline) nil)
  5989. ((= current repeat) nil)
  5990. ((not today?) (throw :skip nil))
  5991. ;; Upcoming deadline: display within warning period WDAYS.
  5992. ((> deadline current) (when (> diff wdays) (throw :skip nil)))
  5993. ;; Overdue deadline: warn about it for
  5994. ;; `org-deadline-past-days' duration.
  5995. (t (when (< org-deadline-past-days (- diff)) (throw :skip nil))))
  5996. ;; Possibly skip done tasks.
  5997. (when (and done?
  5998. (or org-agenda-skip-deadline-if-done
  5999. (/= deadline current)))
  6000. (throw :skip nil))
  6001. (save-excursion
  6002. (re-search-backward "^\\*+[ \t]+" nil t)
  6003. (goto-char (match-end 0))
  6004. (let* ((category (org-get-category))
  6005. (effort (save-match-data (or (get-text-property (point) 'effort)
  6006. (org-entry-get (point) org-effort-property))))
  6007. (effort-minutes (when effort (save-match-data (org-duration-to-minutes effort))))
  6008. (level (make-string (org-reduced-level (org-outline-level))
  6009. ?\s))
  6010. (head (buffer-substring-no-properties
  6011. (point) (line-end-position)))
  6012. (inherited-tags
  6013. (or (eq org-agenda-show-inherited-tags 'always)
  6014. (and (listp org-agenda-show-inherited-tags)
  6015. (memq 'agenda org-agenda-show-inherited-tags))
  6016. (and (eq org-agenda-show-inherited-tags t)
  6017. (or (eq org-agenda-use-tag-inheritance t)
  6018. (memq 'agenda
  6019. org-agenda-use-tag-inheritance)))))
  6020. (tags (org-get-tags nil (not inherited-tags)))
  6021. (time
  6022. (cond
  6023. ;; No time of day designation if it is only
  6024. ;; a reminder.
  6025. ((and (/= current deadline) (/= current repeat)) nil)
  6026. ((string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
  6027. (concat (substring s (match-beginning 1)) " "))
  6028. (t 'time)))
  6029. (item
  6030. (org-agenda-format-item
  6031. ;; Insert appropriate suffixes before deadlines.
  6032. ;; Those only apply to today agenda.
  6033. (pcase-let ((`(,now ,future ,past)
  6034. org-agenda-deadline-leaders))
  6035. (cond
  6036. ((and today? (< deadline today)) (format past (- diff)))
  6037. ((and today? (> deadline today)) (format future diff))
  6038. (t now)))
  6039. (org-add-props head nil
  6040. 'effort effort
  6041. 'effort-minutes effort-minutes)
  6042. level category tags time))
  6043. (face (org-agenda-deadline-face
  6044. (- 1 (/ (float diff) (max wdays 1)))))
  6045. (upcoming? (and today? (> deadline today)))
  6046. (warntime (get-text-property (point) 'org-appt-warntime)))
  6047. (org-add-props item props
  6048. 'org-marker (org-agenda-new-marker pos)
  6049. 'org-hd-marker (org-agenda-new-marker (line-beginning-position))
  6050. 'warntime warntime
  6051. 'level level
  6052. 'effort effort 'effort-minutes effort-minutes
  6053. 'ts-date deadline
  6054. 'priority
  6055. ;; Adjust priority to today reminders about deadlines.
  6056. ;; Overdue deadlines get the highest priority
  6057. ;; increase, then imminent deadlines and eventually
  6058. ;; more distant deadlines.
  6059. (let ((adjust (if today? (- diff) 0)))
  6060. (+ adjust (org-get-priority item)))
  6061. 'todo-state todo-state
  6062. 'type (if upcoming? "upcoming-deadline" "deadline")
  6063. 'date (if upcoming? date deadline)
  6064. 'face (if done? 'org-agenda-done face)
  6065. 'undone-face face
  6066. 'done-face 'org-agenda-done)
  6067. (push item deadline-items)))))))
  6068. (nreverse deadline-items)))
  6069. (defun org-agenda-deadline-face (fraction)
  6070. "Return the face to displaying a deadline item.
  6071. FRACTION is what fraction of the head-warning time has passed."
  6072. (assoc-default fraction org-agenda-deadline-faces #'<=))
  6073. (defun org-agenda-get-scheduled (&optional deadlines with-hour)
  6074. "Return the scheduled information for agenda display.
  6075. Optional argument DEADLINES is a list of deadline items to be
  6076. displayed in agenda view. When WITH-HOUR is non-nil, only return
  6077. scheduled items with an hour specification like [h]h:mm."
  6078. (with-no-warnings (defvar date))
  6079. (let* ((props (list 'org-not-done-regexp org-not-done-regexp
  6080. 'org-todo-regexp org-todo-regexp
  6081. 'org-complex-heading-regexp org-complex-heading-regexp
  6082. 'done-face 'org-agenda-done
  6083. 'mouse-face 'highlight
  6084. 'help-echo
  6085. (format "mouse-2 or RET jump to Org file %s"
  6086. (abbreviate-file-name buffer-file-name))))
  6087. (regexp (if with-hour
  6088. org-scheduled-time-hour-regexp
  6089. org-scheduled-time-regexp))
  6090. (today (org-today))
  6091. (todayp (org-agenda-today-p date)) ; DATE bound by calendar.
  6092. (current (calendar-absolute-from-gregorian date))
  6093. (deadline-pos
  6094. (mapcar (lambda (d)
  6095. (let ((m (get-text-property 0 'org-hd-marker d)))
  6096. (and m (marker-position m))))
  6097. deadlines))
  6098. scheduled-items)
  6099. (goto-char (point-min))
  6100. (if (org-element--cache-active-p)
  6101. (org-element-cache-map
  6102. (lambda (el)
  6103. (when (and (org-element-property :scheduled el)
  6104. (or (not with-hour)
  6105. (org-element-property
  6106. :hour-start
  6107. (org-element-property :scheduled el))
  6108. (org-element-property
  6109. :hour-end
  6110. (org-element-property :scheduled el))))
  6111. (goto-char (org-element-property :contents-begin el))
  6112. (catch :skip
  6113. (org-agenda-skip el)
  6114. (let* ((s (substring (org-element-property
  6115. :raw-value
  6116. (org-element-property :scheduled el))
  6117. 1 -1))
  6118. (pos (save-excursion
  6119. (goto-char (org-element-property :contents-begin el))
  6120. ;; We intentionally leave NOERROR
  6121. ;; argument in `re-search-forward' nil. If
  6122. ;; the search fails here, something went
  6123. ;; wrong and we are looking at
  6124. ;; non-matching headline.
  6125. (re-search-forward regexp (line-end-position))
  6126. (1- (match-beginning 1))))
  6127. (todo-state (org-element-property :todo-keyword el))
  6128. (donep (eq 'done (org-element-property :todo-type el)))
  6129. (sexp? (eq 'diary
  6130. (org-element-property
  6131. :type (org-element-property :scheduled el))))
  6132. ;; SCHEDULE is the scheduled date for the entry. It is
  6133. ;; either the bare date or the last repeat, according
  6134. ;; to `org-agenda-prefer-last-repeat'.
  6135. (schedule
  6136. (cond
  6137. (sexp? (org-agenda--timestamp-to-absolute s current))
  6138. ((or (eq org-agenda-prefer-last-repeat t)
  6139. (member todo-state org-agenda-prefer-last-repeat))
  6140. (org-agenda--timestamp-to-absolute
  6141. s today 'past (current-buffer) pos))
  6142. (t (org-agenda--timestamp-to-absolute s))))
  6143. ;; REPEAT is the future repeat closest from CURRENT,
  6144. ;; according to `org-agenda-show-future-repeats'. If
  6145. ;; the latter is nil, or if the time stamp has no
  6146. ;; repeat part, default to SCHEDULE.
  6147. (repeat
  6148. (cond
  6149. (sexp? schedule)
  6150. ((<= current today) schedule)
  6151. ((not org-agenda-show-future-repeats) schedule)
  6152. (t
  6153. (let ((base (if (eq org-agenda-show-future-repeats 'next)
  6154. (1+ today)
  6155. current)))
  6156. (org-agenda--timestamp-to-absolute
  6157. s base 'future (current-buffer) pos)))))
  6158. (diff (- current schedule))
  6159. (warntime (get-text-property (point) 'org-appt-warntime))
  6160. (pastschedp (< schedule today))
  6161. (futureschedp (> schedule today))
  6162. (habitp (and (fboundp 'org-is-habit-p)
  6163. (string= "habit" (org-element-property :STYLE el))))
  6164. (suppress-delay
  6165. (let ((deadline (and org-agenda-skip-scheduled-delay-if-deadline
  6166. (org-element-property
  6167. :raw-value
  6168. (org-element-property :deadline el)))))
  6169. (cond
  6170. ((not deadline) nil)
  6171. ;; The current item has a deadline date, so
  6172. ;; evaluate its delay time.
  6173. ((integerp org-agenda-skip-scheduled-delay-if-deadline)
  6174. ;; Use global delay time.
  6175. (- org-agenda-skip-scheduled-delay-if-deadline))
  6176. ((eq org-agenda-skip-scheduled-delay-if-deadline
  6177. 'post-deadline)
  6178. ;; Set delay to no later than DEADLINE.
  6179. (min (- schedule
  6180. (org-agenda--timestamp-to-absolute deadline))
  6181. org-scheduled-delay-days))
  6182. (t 0))))
  6183. (ddays
  6184. (cond
  6185. ;; Nullify delay when a repeater triggered already
  6186. ;; and the delay is of the form --Xd.
  6187. ((and (string-match-p "--[0-9]+[hdwmy]" s)
  6188. (> schedule (org-agenda--timestamp-to-absolute s)))
  6189. 0)
  6190. (suppress-delay
  6191. (let ((org-scheduled-delay-days suppress-delay))
  6192. (org-get-wdays s t t)))
  6193. (t (org-get-wdays s t)))))
  6194. ;; Display scheduled items at base date (SCHEDULE), today if
  6195. ;; scheduled before the current date, and at any repeat past
  6196. ;; today. However, skip delayed items and items that have
  6197. ;; been displayed for more than `org-scheduled-past-days'.
  6198. (unless (and todayp
  6199. habitp
  6200. (bound-and-true-p org-habit-show-all-today))
  6201. (when (or (and (> ddays 0) (< diff ddays))
  6202. (> diff (or (and habitp org-habit-scheduled-past-days)
  6203. org-scheduled-past-days))
  6204. (> schedule current)
  6205. (and (/= current schedule)
  6206. (/= current today)
  6207. (/= current repeat)))
  6208. (throw :skip nil)))
  6209. ;; Possibly skip done tasks.
  6210. (when (and donep
  6211. (or org-agenda-skip-scheduled-if-done
  6212. (/= schedule current)))
  6213. (throw :skip nil))
  6214. ;; Skip entry if it already appears as a deadline, per
  6215. ;; `org-agenda-skip-scheduled-if-deadline-is-shown'. This
  6216. ;; doesn't apply to habits.
  6217. (when (pcase org-agenda-skip-scheduled-if-deadline-is-shown
  6218. ((guard
  6219. (or (not (memq (line-beginning-position 0) deadline-pos))
  6220. habitp))
  6221. nil)
  6222. (`repeated-after-deadline
  6223. (let ((deadline (time-to-days
  6224. (when (org-element-property :deadline el)
  6225. (org-time-string-to-time
  6226. (org-element-property :deadline el))))))
  6227. (and (<= schedule deadline) (> current deadline))))
  6228. (`not-today pastschedp)
  6229. (`t t)
  6230. (_ nil))
  6231. (throw :skip nil))
  6232. ;; Skip habits if `org-habit-show-habits' is nil, or if we
  6233. ;; only show them for today. Also skip done habits.
  6234. (when (and habitp
  6235. (or donep
  6236. (not (bound-and-true-p org-habit-show-habits))
  6237. (and (not todayp)
  6238. (bound-and-true-p
  6239. org-habit-show-habits-only-for-today))))
  6240. (throw :skip nil))
  6241. (save-excursion
  6242. (goto-char (org-element-property :begin el))
  6243. (let* ((category (org-get-category))
  6244. (effort (save-match-data
  6245. (or (get-text-property (point) 'effort)
  6246. (org-element-property (intern (concat ":" (upcase org-effort-property))) el))))
  6247. (effort-minutes (when effort (save-match-data (org-duration-to-minutes effort))))
  6248. (inherited-tags
  6249. (or (eq org-agenda-show-inherited-tags 'always)
  6250. (and (listp org-agenda-show-inherited-tags)
  6251. (memq 'agenda org-agenda-show-inherited-tags))
  6252. (and (eq org-agenda-show-inherited-tags t)
  6253. (or (eq org-agenda-use-tag-inheritance t)
  6254. (memq 'agenda
  6255. org-agenda-use-tag-inheritance)))))
  6256. (tags (org-get-tags el (not inherited-tags)))
  6257. (level (make-string (org-element-property :level el)
  6258. ?\s))
  6259. (head (save-excursion
  6260. (goto-char (org-element-property :begin el))
  6261. (re-search-forward org-outline-regexp-bol)
  6262. (buffer-substring (point) (line-end-position))))
  6263. (time
  6264. (cond
  6265. ;; No time of day designation if it is only a
  6266. ;; reminder, except for habits, which always show
  6267. ;; the time of day. Habits are an exception
  6268. ;; because if there is a time of day, that is
  6269. ;; interpreted to mean they should usually happen
  6270. ;; then, even if doing the habit was missed.
  6271. ((and
  6272. (not habitp)
  6273. (/= current schedule)
  6274. (/= current repeat))
  6275. nil)
  6276. ((string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
  6277. (concat (substring s (match-beginning 1)) " "))
  6278. (t 'time)))
  6279. (item
  6280. (org-agenda-format-item
  6281. (pcase-let ((`(,first ,past) org-agenda-scheduled-leaders))
  6282. ;; Show a reminder of a past scheduled today.
  6283. (if (and todayp pastschedp)
  6284. (format past diff)
  6285. first))
  6286. (org-add-props head nil
  6287. 'effort effort
  6288. 'effort-minutes effort-minutes)
  6289. level category tags time nil habitp))
  6290. (face (cond ((and (not habitp) pastschedp)
  6291. 'org-scheduled-previously)
  6292. ((and habitp futureschedp)
  6293. 'org-agenda-done)
  6294. (todayp 'org-scheduled-today)
  6295. (t 'org-scheduled)))
  6296. (habitp (and habitp (org-habit-parse-todo (org-element-property :begin el)))))
  6297. (org-add-props item props
  6298. 'undone-face face
  6299. 'face (if donep 'org-agenda-done face)
  6300. 'org-marker (org-agenda-new-marker pos)
  6301. 'org-hd-marker (org-agenda-new-marker (line-beginning-position))
  6302. 'type (if pastschedp "past-scheduled" "scheduled")
  6303. 'date (if pastschedp schedule date)
  6304. 'ts-date schedule
  6305. 'warntime warntime
  6306. 'level level
  6307. 'effort effort 'effort-minutes effort-minutes
  6308. 'priority (if habitp (org-habit-get-priority habitp)
  6309. (+ 99 diff (org-get-priority item)))
  6310. 'org-habit-p habitp
  6311. 'todo-state todo-state)
  6312. (push item scheduled-items)))))))
  6313. :next-re regexp
  6314. :fail-re regexp
  6315. :narrow t)
  6316. (while (re-search-forward regexp nil t)
  6317. (catch :skip
  6318. (unless (save-match-data (org-at-planning-p)) (throw :skip nil))
  6319. (org-agenda-skip)
  6320. (let* ((s (match-string 1))
  6321. (pos (1- (match-beginning 1)))
  6322. (todo-state (save-match-data (org-get-todo-state)))
  6323. (donep (member todo-state org-done-keywords))
  6324. (sexp? (string-prefix-p "%%" s))
  6325. ;; SCHEDULE is the scheduled date for the entry. It is
  6326. ;; either the bare date or the last repeat, according
  6327. ;; to `org-agenda-prefer-last-repeat'.
  6328. (schedule
  6329. (cond
  6330. (sexp? (org-agenda--timestamp-to-absolute s current))
  6331. ((or (eq org-agenda-prefer-last-repeat t)
  6332. (member todo-state org-agenda-prefer-last-repeat))
  6333. (org-agenda--timestamp-to-absolute
  6334. s today 'past (current-buffer) pos))
  6335. (t (org-agenda--timestamp-to-absolute s))))
  6336. ;; REPEAT is the future repeat closest from CURRENT,
  6337. ;; according to `org-agenda-show-future-repeats'. If
  6338. ;; the latter is nil, or if the time stamp has no
  6339. ;; repeat part, default to SCHEDULE.
  6340. (repeat
  6341. (cond
  6342. (sexp? schedule)
  6343. ((<= current today) schedule)
  6344. ((not org-agenda-show-future-repeats) schedule)
  6345. (t
  6346. (let ((base (if (eq org-agenda-show-future-repeats 'next)
  6347. (1+ today)
  6348. current)))
  6349. (org-agenda--timestamp-to-absolute
  6350. s base 'future (current-buffer) pos)))))
  6351. (diff (- current schedule))
  6352. (warntime (get-text-property (point) 'org-appt-warntime))
  6353. (pastschedp (< schedule today))
  6354. (futureschedp (> schedule today))
  6355. (habitp (and (fboundp 'org-is-habit-p) (org-is-habit-p)))
  6356. (suppress-delay
  6357. (let ((deadline (and org-agenda-skip-scheduled-delay-if-deadline
  6358. (org-entry-get nil "DEADLINE"))))
  6359. (cond
  6360. ((not deadline) nil)
  6361. ;; The current item has a deadline date, so
  6362. ;; evaluate its delay time.
  6363. ((integerp org-agenda-skip-scheduled-delay-if-deadline)
  6364. ;; Use global delay time.
  6365. (- org-agenda-skip-scheduled-delay-if-deadline))
  6366. ((eq org-agenda-skip-scheduled-delay-if-deadline
  6367. 'post-deadline)
  6368. ;; Set delay to no later than DEADLINE.
  6369. (min (- schedule
  6370. (org-agenda--timestamp-to-absolute deadline))
  6371. org-scheduled-delay-days))
  6372. (t 0))))
  6373. (ddays
  6374. (cond
  6375. ;; Nullify delay when a repeater triggered already
  6376. ;; and the delay is of the form --Xd.
  6377. ((and (string-match-p "--[0-9]+[hdwmy]" s)
  6378. (> schedule (org-agenda--timestamp-to-absolute s)))
  6379. 0)
  6380. (suppress-delay
  6381. (let ((org-scheduled-delay-days suppress-delay))
  6382. (org-get-wdays s t t)))
  6383. (t (org-get-wdays s t)))))
  6384. ;; Display scheduled items at base date (SCHEDULE), today if
  6385. ;; scheduled before the current date, and at any repeat past
  6386. ;; today. However, skip delayed items and items that have
  6387. ;; been displayed for more than `org-scheduled-past-days'.
  6388. (unless (and todayp
  6389. habitp
  6390. (bound-and-true-p org-habit-show-all-today))
  6391. (when (or (and (> ddays 0) (< diff ddays))
  6392. (> diff (or (and habitp org-habit-scheduled-past-days)
  6393. org-scheduled-past-days))
  6394. (> schedule current)
  6395. (and (/= current schedule)
  6396. (/= current today)
  6397. (/= current repeat)))
  6398. (throw :skip nil)))
  6399. ;; Possibly skip done tasks.
  6400. (when (and donep
  6401. (or org-agenda-skip-scheduled-if-done
  6402. (/= schedule current)))
  6403. (throw :skip nil))
  6404. ;; Skip entry if it already appears as a deadline, per
  6405. ;; `org-agenda-skip-scheduled-if-deadline-is-shown'. This
  6406. ;; doesn't apply to habits.
  6407. (when (pcase org-agenda-skip-scheduled-if-deadline-is-shown
  6408. ((guard
  6409. (or (not (memq (line-beginning-position 0) deadline-pos))
  6410. habitp))
  6411. nil)
  6412. (`repeated-after-deadline
  6413. (let ((deadline (time-to-days
  6414. (org-get-deadline-time (point)))))
  6415. (and (<= schedule deadline) (> current deadline))))
  6416. (`not-today pastschedp)
  6417. (`t t)
  6418. (_ nil))
  6419. (throw :skip nil))
  6420. ;; Skip habits if `org-habit-show-habits' is nil, or if we
  6421. ;; only show them for today. Also skip done habits.
  6422. (when (and habitp
  6423. (or donep
  6424. (not (bound-and-true-p org-habit-show-habits))
  6425. (and (not todayp)
  6426. (bound-and-true-p
  6427. org-habit-show-habits-only-for-today))))
  6428. (throw :skip nil))
  6429. (save-excursion
  6430. (re-search-backward "^\\*+[ \t]+" nil t)
  6431. (goto-char (match-end 0))
  6432. (let* ((category (org-get-category))
  6433. (effort (save-match-data (or (get-text-property (point) 'effort)
  6434. (org-entry-get (point) org-effort-property))))
  6435. (effort-minutes (when effort (save-match-data (org-duration-to-minutes effort))))
  6436. (inherited-tags
  6437. (or (eq org-agenda-show-inherited-tags 'always)
  6438. (and (listp org-agenda-show-inherited-tags)
  6439. (memq 'agenda org-agenda-show-inherited-tags))
  6440. (and (eq org-agenda-show-inherited-tags t)
  6441. (or (eq org-agenda-use-tag-inheritance t)
  6442. (memq 'agenda
  6443. org-agenda-use-tag-inheritance)))))
  6444. (tags (org-get-tags nil (not inherited-tags)))
  6445. (level (make-string (org-reduced-level (org-outline-level))
  6446. ?\s))
  6447. (head (buffer-substring (point) (line-end-position)))
  6448. (time
  6449. (cond
  6450. ;; No time of day designation if it is only a
  6451. ;; reminder, except for habits, which always show
  6452. ;; the time of day. Habits are an exception
  6453. ;; because if there is a time of day, that is
  6454. ;; interpreted to mean they should usually happen
  6455. ;; then, even if doing the habit was missed.
  6456. ((and
  6457. (not habitp)
  6458. (/= current schedule)
  6459. (/= current repeat))
  6460. nil)
  6461. ((string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
  6462. (concat (substring s (match-beginning 1)) " "))
  6463. (t 'time)))
  6464. (item
  6465. (org-agenda-format-item
  6466. (pcase-let ((`(,first ,past) org-agenda-scheduled-leaders))
  6467. ;; Show a reminder of a past scheduled today.
  6468. (if (and todayp pastschedp)
  6469. (format past diff)
  6470. first))
  6471. (org-add-props head nil
  6472. 'effort effort
  6473. 'effort-minutes effort-minutes)
  6474. level category tags time nil habitp))
  6475. (face (cond ((and (not habitp) pastschedp)
  6476. 'org-scheduled-previously)
  6477. ((and habitp futureschedp)
  6478. 'org-agenda-done)
  6479. (todayp 'org-scheduled-today)
  6480. (t 'org-scheduled)))
  6481. (habitp (and habitp (org-habit-parse-todo))))
  6482. (org-add-props item props
  6483. 'undone-face face
  6484. 'face (if donep 'org-agenda-done face)
  6485. 'org-marker (org-agenda-new-marker pos)
  6486. 'org-hd-marker (org-agenda-new-marker (line-beginning-position))
  6487. 'type (if pastschedp "past-scheduled" "scheduled")
  6488. 'date (if pastschedp schedule date)
  6489. 'ts-date schedule
  6490. 'warntime warntime
  6491. 'level level
  6492. 'effort effort 'effort-minutes effort-minutes
  6493. 'priority (if habitp (org-habit-get-priority habitp)
  6494. (+ 99 diff (org-get-priority item)))
  6495. 'org-habit-p habitp
  6496. 'todo-state todo-state)
  6497. (push item scheduled-items)))))))
  6498. (nreverse scheduled-items)))
  6499. (defun org-agenda-get-blocks ()
  6500. "Return the date-range information for agenda display."
  6501. (with-no-warnings (defvar date))
  6502. (let* ((props (list 'face nil
  6503. 'org-not-done-regexp org-not-done-regexp
  6504. 'org-todo-regexp org-todo-regexp
  6505. 'org-complex-heading-regexp org-complex-heading-regexp
  6506. 'mouse-face 'highlight
  6507. 'help-echo
  6508. (format "mouse-2 or RET jump to org file %s"
  6509. (abbreviate-file-name buffer-file-name))))
  6510. (regexp org-tr-regexp)
  6511. (d0 (calendar-absolute-from-gregorian date))
  6512. marker hdmarker ee txt d1 d2 s1 s2 category
  6513. level todo-state tags pos head donep inherited-tags
  6514. effort effort-minutes)
  6515. (goto-char (point-min))
  6516. (while (re-search-forward regexp nil t)
  6517. (catch :skip
  6518. (org-agenda-skip)
  6519. (setq pos (point))
  6520. (let ((start-time (match-string 1))
  6521. (end-time (match-string 2)))
  6522. (setq s1 (match-string 1)
  6523. s2 (match-string 2)
  6524. d1 (time-to-days
  6525. (condition-case err
  6526. (org-time-string-to-time s1)
  6527. (error
  6528. (error
  6529. "Bad timestamp %S at %d in buffer %S\nError was: %s"
  6530. s1
  6531. pos
  6532. (current-buffer)
  6533. (error-message-string err)))))
  6534. d2 (time-to-days
  6535. (condition-case err
  6536. (org-time-string-to-time s2)
  6537. (error
  6538. (error
  6539. "Bad timestamp %S at %d in buffer %S\nError was: %s"
  6540. s2
  6541. pos
  6542. (current-buffer)
  6543. (error-message-string err))))))
  6544. (when (and (> (- d0 d1) -1) (> (- d2 d0) -1))
  6545. ;; Only allow days between the limits, because the normal
  6546. ;; date stamps will catch the limits.
  6547. (save-excursion
  6548. (setq todo-state (org-get-todo-state))
  6549. (setq donep (member todo-state org-done-keywords))
  6550. (when (and donep org-agenda-skip-timestamp-if-done)
  6551. (throw :skip t))
  6552. (setq marker (org-agenda-new-marker (point))
  6553. category (org-get-category))
  6554. (setq effort (save-match-data (or (get-text-property (point) 'effort)
  6555. (org-entry-get (point) org-effort-property))))
  6556. (setq effort-minutes (when effort (save-match-data (org-duration-to-minutes effort))))
  6557. (if (not (re-search-backward org-outline-regexp-bol nil t))
  6558. (throw :skip nil)
  6559. (goto-char (match-beginning 0))
  6560. (setq hdmarker (org-agenda-new-marker (point))
  6561. inherited-tags
  6562. (or (eq org-agenda-show-inherited-tags 'always)
  6563. (and (listp org-agenda-show-inherited-tags)
  6564. (memq 'agenda org-agenda-show-inherited-tags))
  6565. (and (eq org-agenda-show-inherited-tags t)
  6566. (or (eq org-agenda-use-tag-inheritance t)
  6567. (memq 'agenda org-agenda-use-tag-inheritance))))
  6568. tags (org-get-tags nil (not inherited-tags)))
  6569. (setq level (make-string (org-reduced-level (org-outline-level)) ? ))
  6570. (looking-at "\\*+[ \t]+\\(.*\\)")
  6571. (setq head (match-string 1))
  6572. (let ((remove-re
  6573. (if org-agenda-remove-timeranges-from-blocks
  6574. (concat
  6575. "<" (regexp-quote s1) ".*?>"
  6576. "--"
  6577. "<" (regexp-quote s2) ".*?>")
  6578. nil)))
  6579. (setq txt (org-agenda-format-item
  6580. (format
  6581. (nth (if (= d1 d2) 0 1)
  6582. org-agenda-timerange-leaders)
  6583. (1+ (- d0 d1)) (1+ (- d2 d1)))
  6584. (org-add-props head nil
  6585. 'effort effort
  6586. 'effort-minutes effort-minutes)
  6587. level category tags
  6588. (save-match-data
  6589. (let ((hhmm1 (and (string-match org-ts-regexp1 s1)
  6590. (match-string 6 s1)))
  6591. (hhmm2 (and (string-match org-ts-regexp1 s2)
  6592. (match-string 6 s2))))
  6593. (cond ((string= hhmm1 hhmm2)
  6594. (concat "<" start-time ">--<" end-time ">"))
  6595. ((and (= d1 d0) (= d2 d0))
  6596. (concat "<" start-time ">--<" end-time ">"))
  6597. ((= d1 d0)
  6598. (concat "<" start-time ">"))
  6599. ((= d2 d0)
  6600. (concat "<" end-time ">")))))
  6601. remove-re))))
  6602. (org-add-props txt props
  6603. 'org-marker marker 'org-hd-marker hdmarker
  6604. 'type "block" 'date date
  6605. 'level level
  6606. 'effort effort 'effort-minutes effort-minutes
  6607. 'todo-state todo-state
  6608. 'priority (org-get-priority txt))
  6609. (push txt ee))))
  6610. (goto-char pos)))
  6611. ;; Sort the entries by expiration date.
  6612. (nreverse ee)))
  6613. ;;; Agenda presentation and sorting
  6614. (defvar org-prefix-has-time nil
  6615. "A flag, set by `org-compile-prefix-format'.
  6616. The flag is set if the currently compiled format contains a `%t'.")
  6617. (defvar org-prefix-has-tag nil
  6618. "A flag, set by `org-compile-prefix-format'.
  6619. The flag is set if the currently compiled format contains a `%T'.")
  6620. (defvar org-prefix-has-effort nil
  6621. "A flag, set by `org-compile-prefix-format'.
  6622. The flag is set if the currently compiled format contains a `%e'.")
  6623. (defvar org-prefix-has-breadcrumbs nil
  6624. "A flag, set by `org-compile-prefix-format'.
  6625. The flag is set if the currently compiled format contains a `%b'.")
  6626. (defvar org-prefix-category-length nil
  6627. "Used by `org-compile-prefix-format' to remember the category field width.")
  6628. (defvar org-prefix-category-max-length nil
  6629. "Used by `org-compile-prefix-format' to remember the category field width.")
  6630. (defun org-agenda-get-category-icon (category)
  6631. "Return an image for CATEGORY according to `org-agenda-category-icon-alist'."
  6632. (cl-dolist (entry org-agenda-category-icon-alist)
  6633. (when (string-match-p (car entry) category)
  6634. (if (listp (cadr entry))
  6635. (cl-return (cadr entry))
  6636. (cl-return (apply #'create-image (cdr entry)))))))
  6637. (defun org-agenda-format-item (extra txt &optional with-level with-category tags dotime
  6638. remove-re habitp)
  6639. "Format TXT to be inserted into the agenda buffer.
  6640. In particular, add the prefix and corresponding text properties.
  6641. EXTRA must be a string to replace the `%s' specifier in the prefix format.
  6642. WITH-LEVEL may be a string to replace the `%l' specifier.
  6643. WITH-CATEGORY (a string, a symbol or nil) may be used to overrule the default
  6644. category taken from local variable or file name. It will replace the `%c'
  6645. specifier in the format.
  6646. DOTIME, when non-nil, indicates that a time-of-day should be extracted from
  6647. TXT for sorting of this entry, and for the `%t' specifier in the format.
  6648. When DOTIME is a string, this string is searched for a time before TXT is.
  6649. TAGS can be the tags of the headline.
  6650. Any match of REMOVE-RE will be removed from TXT."
  6651. ;; We keep the org-prefix-* variable values along with a compiled
  6652. ;; formatter, so that multiple agendas existing at the same time do
  6653. ;; not step on each other toes.
  6654. ;;
  6655. ;; It was inconvenient to make these variables buffer local in
  6656. ;; Agenda buffers, because this function expects to be called with
  6657. ;; the buffer where item comes from being current, and not agenda
  6658. ;; buffer
  6659. (let* ((bindings (car org-prefix-format-compiled))
  6660. (formatter (cadr org-prefix-format-compiled)))
  6661. (cl-loop for (var value) in bindings
  6662. do (set var value))
  6663. (save-match-data
  6664. ;; Diary entries sometimes have extra whitespace at the beginning
  6665. (setq txt (org-trim txt))
  6666. ;; Fix the tags part in txt
  6667. (setq txt (org-agenda-fix-displayed-tags
  6668. txt tags
  6669. org-agenda-show-inherited-tags
  6670. org-agenda-hide-tags-regexp))
  6671. (with-no-warnings
  6672. ;; `time', `tag', `effort' are needed for the eval of the prefix format.
  6673. ;; Based on what I see in `org-compile-prefix-format', I added
  6674. ;; a few more.
  6675. (defvar breadcrumbs) (defvar category) (defvar category-icon)
  6676. (defvar effort) (defvar extra)
  6677. (defvar level) (defvar tag) (defvar time))
  6678. (let* ((category (or with-category
  6679. (if buffer-file-name
  6680. (file-name-sans-extension
  6681. (file-name-nondirectory buffer-file-name))
  6682. "")))
  6683. (category-icon (org-agenda-get-category-icon category))
  6684. (category-icon (if category-icon
  6685. (propertize " " 'display category-icon)
  6686. ""))
  6687. (effort (and (not (string= txt ""))
  6688. (get-text-property 1 'effort txt)))
  6689. (tag (if tags (nth (1- (length tags)) tags) ""))
  6690. (time-grid-trailing-characters (nth 2 org-agenda-time-grid))
  6691. (extra (or (and (not habitp) extra) ""))
  6692. time
  6693. (ts (when dotime (concat
  6694. (if (stringp dotime) dotime "")
  6695. (and org-agenda-search-headline-for-time txt))))
  6696. (time-of-day (and dotime (org-get-time-of-day ts)))
  6697. stamp plain s0 s1 s2 rtn srp l
  6698. duration breadcrumbs)
  6699. (and (derived-mode-p 'org-mode) buffer-file-name
  6700. (add-to-list 'org-agenda-contributing-files buffer-file-name))
  6701. (when (and dotime time-of-day)
  6702. ;; Extract starting and ending time and move them to prefix
  6703. (when (or (setq stamp (string-match org-stamp-time-of-day-regexp ts))
  6704. (setq plain (string-match org-plain-time-of-day-regexp ts)))
  6705. (setq s0 (match-string 0 ts)
  6706. srp (and stamp (match-end 3))
  6707. s1 (match-string (if plain 1 2) ts)
  6708. s2 (match-string (if plain 8 (if srp 4 6)) ts))
  6709. ;; If the times are in TXT (not in DOTIMES), and the prefix will list
  6710. ;; them, we might want to remove them there to avoid duplication.
  6711. ;; The user can turn this off with a variable.
  6712. (when (and org-prefix-has-time
  6713. org-agenda-remove-times-when-in-prefix (or stamp plain)
  6714. (string-match (concat (regexp-quote s0) " *") txt)
  6715. (not (equal ?\] (string-to-char (substring txt (match-end 0)))))
  6716. (if (eq org-agenda-remove-times-when-in-prefix 'beg)
  6717. (= (match-beginning 0) 0)
  6718. t))
  6719. (setq txt (replace-match "" nil nil txt))))
  6720. ;; Normalize the time(s) to 24 hour.
  6721. (when s1 (setq s1 (org-get-time-of-day s1 t)))
  6722. (when s2 (setq s2 (org-get-time-of-day s2 t)))
  6723. ;; Try to set s2 if s1 and
  6724. ;; `org-agenda-default-appointment-duration' are set
  6725. (when (and s1 (not s2) org-agenda-default-appointment-duration)
  6726. (setq s2
  6727. (org-duration-from-minutes
  6728. (+ (org-duration-to-minutes s1 t)
  6729. org-agenda-default-appointment-duration)
  6730. nil t)))
  6731. ;; Compute the duration
  6732. (when s2
  6733. (setq duration (- (org-duration-to-minutes s2)
  6734. (org-duration-to-minutes s1))))
  6735. ;; Format S1 and S2 for display.
  6736. (when s1 (setq s1 (format "%5s" (org-get-time-of-day s1 'overtime))))
  6737. (when s2 (setq s2 (org-get-time-of-day s2 'overtime))))
  6738. (when (string-match org-tag-group-re txt)
  6739. ;; Tags are in the string
  6740. (if (or (eq org-agenda-remove-tags t)
  6741. (and org-agenda-remove-tags
  6742. org-prefix-has-tag))
  6743. (setq txt (replace-match "" t t txt))
  6744. (setq txt (replace-match
  6745. (concat (make-string (max (- 50 (length txt)) 1) ?\ )
  6746. (match-string 1 txt))
  6747. t t txt))))
  6748. (when remove-re
  6749. (while (string-match remove-re txt)
  6750. (setq txt (replace-match "" t t txt))))
  6751. ;; Set org-heading property on `txt' to mark the start of the
  6752. ;; heading.
  6753. (add-text-properties 0 (length txt) '(org-heading t) txt)
  6754. ;; Prepare the variables needed in the eval of the compiled format
  6755. (when org-prefix-has-breadcrumbs
  6756. (setq breadcrumbs (org-with-point-at (org-get-at-bol 'org-marker)
  6757. (let ((s (org-format-outline-path (org-get-outline-path)
  6758. (1- (frame-width))
  6759. nil org-agenda-breadcrumbs-separator)))
  6760. (if (eq "" s) "" (concat s org-agenda-breadcrumbs-separator))))))
  6761. (setq time (cond (s2 (concat
  6762. (org-agenda-time-of-day-to-ampm-maybe s1)
  6763. "-" (org-agenda-time-of-day-to-ampm-maybe s2)
  6764. (when org-agenda-timegrid-use-ampm " ")))
  6765. (s1 (concat
  6766. (org-agenda-time-of-day-to-ampm-maybe s1)
  6767. (if org-agenda-timegrid-use-ampm
  6768. (concat time-grid-trailing-characters " ")
  6769. time-grid-trailing-characters)))
  6770. (t ""))
  6771. category (if (symbolp category) (symbol-name category) category)
  6772. level (or with-level ""))
  6773. (if (string-match org-link-bracket-re category)
  6774. (progn
  6775. (setq l (string-width (or (match-string 2) (match-string 1))))
  6776. (when (< l (or org-prefix-category-length 0))
  6777. (setq category (copy-sequence category))
  6778. (org-add-props category nil
  6779. 'extra-space (make-string
  6780. (- org-prefix-category-length l 1) ?\ ))))
  6781. (when (and org-prefix-category-max-length
  6782. (>= (length category) org-prefix-category-max-length))
  6783. (setq category (substring category 0 (1- org-prefix-category-max-length)))))
  6784. ;; Evaluate the compiled format
  6785. (setq rtn (concat (eval formatter t) txt))
  6786. ;; And finally add the text properties
  6787. (remove-text-properties 0 (length rtn) '(line-prefix t wrap-prefix t) rtn)
  6788. (org-add-props rtn nil
  6789. 'org-category category
  6790. 'tags tags
  6791. 'org-priority-highest org-priority-highest
  6792. 'org-priority-lowest org-priority-lowest
  6793. 'time-of-day time-of-day
  6794. 'duration duration
  6795. 'breadcrumbs breadcrumbs
  6796. 'txt txt
  6797. 'level level
  6798. 'time time
  6799. 'extra extra
  6800. 'format org-prefix-format-compiled
  6801. 'dotime dotime)))))
  6802. (defun org-agenda-fix-displayed-tags (txt tags add-inherited hide-re)
  6803. "Remove tags string from TXT, and add a modified list of tags.
  6804. The modified list may contain inherited tags, and tags matched by
  6805. `org-agenda-hide-tags-regexp' will be removed."
  6806. (when (or add-inherited hide-re)
  6807. (when (string-match org-tag-group-re txt)
  6808. (setq txt (substring txt 0 (match-beginning 0))))
  6809. (setq tags
  6810. (delq nil
  6811. (mapcar (lambda (tg)
  6812. (if (or (and hide-re (string-match hide-re tg))
  6813. (and (not add-inherited)
  6814. (get-text-property 0 'inherited tg)))
  6815. nil
  6816. tg))
  6817. tags)))
  6818. (when tags
  6819. (let ((have-i (get-text-property 0 'inherited (car tags)))
  6820. i)
  6821. (setq txt (concat txt " :"
  6822. (mapconcat
  6823. (lambda (x)
  6824. (setq i (get-text-property 0 'inherited x))
  6825. (if (and have-i (not i))
  6826. (progn
  6827. (setq have-i nil)
  6828. (concat ":" x))
  6829. x))
  6830. tags ":")
  6831. (if have-i "::" ":"))))))
  6832. txt)
  6833. (defvar org-agenda-sorting-strategy) ;; because the def is in a let form
  6834. (defun org-agenda-add-time-grid-maybe (list ndays todayp)
  6835. "Add a time-grid for agenda items which need it.
  6836. LIST is the list of agenda items formatted by `org-agenda-list'.
  6837. NDAYS is the span of the current agenda view.
  6838. TODAYP is t when the current agenda view is on today."
  6839. (catch 'exit
  6840. (cond ((not org-agenda-use-time-grid) (throw 'exit list))
  6841. ((and todayp (member 'today (car org-agenda-time-grid))))
  6842. ((and (= ndays 1) (member 'daily (car org-agenda-time-grid))))
  6843. ((member 'weekly (car org-agenda-time-grid)))
  6844. (t (throw 'exit list)))
  6845. (let* ((have (delq nil (mapcar
  6846. (lambda (x) (get-text-property 1 'time-of-day x))
  6847. list)))
  6848. (string (nth 3 org-agenda-time-grid))
  6849. (gridtimes (nth 1 org-agenda-time-grid))
  6850. (req (car org-agenda-time-grid))
  6851. (remove (member 'remove-match req))
  6852. new time)
  6853. (when (and (member 'require-timed req) (not have))
  6854. ;; don't show empty grid
  6855. (throw 'exit list))
  6856. (while (setq time (pop gridtimes))
  6857. (unless (and remove (member time have))
  6858. (setq time (replace-regexp-in-string " " "0" (format "%04s" time)))
  6859. (push (org-agenda-format-item
  6860. nil string nil "" nil
  6861. (concat (substring time 0 -2) ":" (substring time -2)))
  6862. new)
  6863. (put-text-property
  6864. 2 (length (car new)) 'face 'org-time-grid (car new))))
  6865. (when (and todayp org-agenda-show-current-time-in-grid)
  6866. (push (org-agenda-format-item
  6867. nil org-agenda-current-time-string nil "" nil
  6868. (format-time-string "%H:%M "))
  6869. new)
  6870. (put-text-property
  6871. 2 (length (car new)) 'face 'org-agenda-current-time (car new)))
  6872. (if (member 'time-up org-agenda-sorting-strategy-selected)
  6873. (append new list)
  6874. (append list new)))))
  6875. (defun org-compile-prefix-format (key)
  6876. "Compile the prefix format into a Lisp form that can be evaluated.
  6877. The resulting form and associated variable bindings is returned
  6878. and stored in the variable `org-prefix-format-compiled'."
  6879. (setq org-prefix-has-time nil
  6880. org-prefix-has-tag nil
  6881. org-prefix-category-length nil
  6882. org-prefix-has-effort nil
  6883. org-prefix-has-breadcrumbs nil)
  6884. (let ((s (cond
  6885. ((stringp org-agenda-prefix-format)
  6886. org-agenda-prefix-format)
  6887. ((assq key org-agenda-prefix-format)
  6888. (cdr (assq key org-agenda-prefix-format)))
  6889. (t " %-12:c%?-12t% s")))
  6890. (start 0)
  6891. varform vars var c f opt) ;; e
  6892. (while (string-match "%\\(\\?\\)?\\([-+]?[0-9.]*\\)\\([ .;,:!?=|/<>]?\\)\\([cltseib]\\|(.+?)\\)"
  6893. s start)
  6894. (setq var (or (cdr (assoc (match-string 4 s)
  6895. '(("c" . category) ("t" . time) ("l" . level) ("s" . extra)
  6896. ("i" . category-icon) ("T" . tag) ("e" . effort) ("b" . breadcrumbs))))
  6897. 'eval)
  6898. c (or (match-string 3 s) "")
  6899. opt (match-beginning 1)
  6900. start (1+ (match-beginning 0)))
  6901. (cl-case var
  6902. (time (setq org-prefix-has-time t))
  6903. (tag (setq org-prefix-has-tag t))
  6904. (effort (setq org-prefix-has-effort t))
  6905. (breadcrumbs (setq org-prefix-has-breadcrumbs t)))
  6906. (setq f (concat "%" (match-string 2 s) "s"))
  6907. (when (eq var 'category)
  6908. (setq org-prefix-category-length
  6909. (floor (abs (string-to-number (match-string 2 s)))))
  6910. (setq org-prefix-category-max-length
  6911. (let ((x (match-string 2 s)))
  6912. (save-match-data
  6913. (and (string-match "\\.[0-9]+" x)
  6914. (string-to-number (substring (match-string 0 x) 1)))))))
  6915. (if (eq var 'eval)
  6916. (setq varform `(format ,f (org-eval ,(read (substring s (match-beginning 4))))))
  6917. (if opt
  6918. (setq varform
  6919. `(if (member ,var '("" nil))
  6920. ""
  6921. (format ,f (concat ,var ,c))))
  6922. (setq varform
  6923. `(format ,f (if (member ,var '("" nil)) ""
  6924. (concat ,var ,c (get-text-property 0 'extra-space ,var)))))))
  6925. (if (eq var 'eval)
  6926. (setf (substring s (match-beginning 0)
  6927. (+ (match-beginning 4)
  6928. (length (format "%S" (read (substring s (match-beginning 4)))))))
  6929. "%s")
  6930. (setq s (replace-match "%s" t nil s)))
  6931. (push varform vars))
  6932. (setq vars (nreverse vars))
  6933. (with-current-buffer (or org-agenda-buffer (current-buffer))
  6934. (setq org-prefix-format-compiled
  6935. (list
  6936. `((org-prefix-has-time ,org-prefix-has-time)
  6937. (org-prefix-has-tag ,org-prefix-has-tag)
  6938. (org-prefix-category-length ,org-prefix-category-length)
  6939. (org-prefix-has-effort ,org-prefix-has-effort)
  6940. (org-prefix-has-breadcrumbs ,org-prefix-has-breadcrumbs))
  6941. `(format ,s ,@vars))))))
  6942. (defun org-set-sorting-strategy (key)
  6943. (setq org-agenda-sorting-strategy-selected
  6944. (if (symbolp (car org-agenda-sorting-strategy))
  6945. ;; the old format
  6946. org-agenda-sorting-strategy
  6947. (or (cdr (assq key org-agenda-sorting-strategy))
  6948. (cdr (assq 'agenda org-agenda-sorting-strategy))
  6949. '(time-up category-keep priority-down)))))
  6950. (defun org-get-time-of-day (s &optional string)
  6951. "Check string S for a time of day.
  6952. If found, return it as a military time number between 0 and 2400.
  6953. If not found, return nil.
  6954. The optional STRING argument forces conversion into a 5 character wide string
  6955. HH:MM. When it is `overtime', any time above 24:00 is turned into \"+H:MM\"
  6956. where H:MM is the duration above midnight."
  6957. (let ((case-fold-search t)
  6958. (time-regexp
  6959. (rx word-start
  6960. (group (opt (any "012")) digit) ;group 1: hours
  6961. (or (and ":" (group (any "012345") digit) ;group 2: minutes
  6962. (opt (group (or "am" "pm")))) ;group 3: am/pm
  6963. ;; Special "HHam/pm" case.
  6964. (group-n 3 (or "am" "pm")))
  6965. word-end)))
  6966. (save-match-data
  6967. (when (and (string-match time-regexp s)
  6968. (not (eq 'org-link (get-text-property 1 'face s))))
  6969. (let ((hours
  6970. (let* ((ampm (and (match-end 3) (downcase (match-string 3 s))))
  6971. (am-p (equal ampm "am")))
  6972. (pcase (string-to-number (match-string 1 s))
  6973. ((and (guard (not ampm)) h) h)
  6974. (12 (if am-p 0 12))
  6975. (h (+ h (if am-p 0 12))))))
  6976. (minutes
  6977. (if (match-end 2)
  6978. (string-to-number (match-string 2 s))
  6979. 0)))
  6980. (pcase string
  6981. (`nil (+ minutes (* hours 100)))
  6982. ((and `overtime
  6983. (guard (or (> hours 24)
  6984. (and (= hours 24)
  6985. (> minutes 0)))))
  6986. (format "+%d:%02d" (- hours 24) minutes))
  6987. ((guard org-agenda-time-leading-zero)
  6988. (format "%02d:%02d" hours minutes))
  6989. (_
  6990. (format "%d:%02d" hours minutes))))))))
  6991. (defvar org-agenda-before-sorting-filter-function nil
  6992. "Function to be applied to agenda items prior to sorting.
  6993. Prior to sorting also means just before they are inserted into the agenda.
  6994. To aid sorting, you may revisit the original entries and add more text
  6995. properties which will later be used by the sorting functions.
  6996. The function should take a string argument, an agenda line.
  6997. It has access to the text properties in that line, which contain among
  6998. other things, the property `org-hd-marker' that points to the entry
  6999. where the line comes from. Note that not all lines going into the agenda
  7000. have this property, only most.
  7001. The function should return the modified string. It is probably best
  7002. to ONLY change text properties.
  7003. You can also use this function as a filter, by returning nil for lines
  7004. you don't want to have in the agenda at all. For this application, you
  7005. could bind the variable in the options section of a custom command.")
  7006. (defun org-agenda-finalize-entries (list &optional type)
  7007. "Sort, limit and concatenate the LIST of agenda items.
  7008. The optional argument TYPE tells the agenda type."
  7009. (let ((max-effort (cond ((listp org-agenda-max-effort)
  7010. (cdr (assoc type org-agenda-max-effort)))
  7011. (t org-agenda-max-effort)))
  7012. (max-todo (cond ((listp org-agenda-max-todos)
  7013. (cdr (assoc type org-agenda-max-todos)))
  7014. (t org-agenda-max-todos)))
  7015. (max-tags (cond ((listp org-agenda-max-tags)
  7016. (cdr (assoc type org-agenda-max-tags)))
  7017. (t org-agenda-max-tags)))
  7018. (max-entries (cond ((listp org-agenda-max-entries)
  7019. (cdr (assoc type org-agenda-max-entries)))
  7020. (t org-agenda-max-entries))))
  7021. (when org-agenda-before-sorting-filter-function
  7022. (setq list
  7023. (delq nil
  7024. (mapcar
  7025. org-agenda-before-sorting-filter-function list))))
  7026. (setq list (mapcar #'org-agenda-highlight-todo list)
  7027. list (mapcar #'identity (sort list #'org-entries-lessp)))
  7028. (when max-effort
  7029. (setq list (org-agenda-limit-entries
  7030. list 'effort-minutes max-effort
  7031. (lambda (e) (or e (if org-agenda-sort-noeffort-is-high
  7032. 32767 -1))))))
  7033. (when max-todo
  7034. (setq list (org-agenda-limit-entries list 'todo-state max-todo)))
  7035. (when max-tags
  7036. (setq list (org-agenda-limit-entries list 'tags max-tags)))
  7037. (when max-entries
  7038. (setq list (org-agenda-limit-entries list 'org-hd-marker max-entries)))
  7039. (when (and org-agenda-dim-blocked-tasks org-blocker-hook)
  7040. (setq list (mapcar #'org-agenda--mark-blocked-entry list)))
  7041. (mapconcat #'identity list "\n")))
  7042. (defun org-agenda-limit-entries (list prop limit &optional fn)
  7043. "Limit the number of agenda entries."
  7044. (let ((include (and limit (< limit 0))))
  7045. (if limit
  7046. (let ((fun (or fn (lambda (p) (when p 1))))
  7047. (lim 0))
  7048. (delq nil
  7049. (mapcar
  7050. (lambda (e)
  7051. (let ((pval (funcall
  7052. fun (get-text-property (1- (length e))
  7053. prop e))))
  7054. (when pval (setq lim (+ lim pval)))
  7055. (cond ((and pval (<= lim (abs limit))) e)
  7056. ((and include (not pval)) e))))
  7057. list)))
  7058. list)))
  7059. (defun org-agenda-limit-interactively (remove)
  7060. "In agenda, interactively limit entries to various maximums."
  7061. (interactive "P")
  7062. (if remove
  7063. (progn (setq org-agenda-max-entries nil
  7064. org-agenda-max-todos nil
  7065. org-agenda-max-tags nil
  7066. org-agenda-max-effort nil)
  7067. (org-agenda-redo))
  7068. (let* ((max (read-char "Number of [e]ntries [t]odos [T]ags [E]ffort? "))
  7069. (msg (cond ((= max ?E) "How many minutes? ")
  7070. ((= max ?e) "How many entries? ")
  7071. ((= max ?t) "How many TODO entries? ")
  7072. ((= max ?T) "How many tagged entries? ")
  7073. (t (user-error "Wrong input"))))
  7074. (num (string-to-number (read-from-minibuffer msg))))
  7075. (cond ((equal max ?e)
  7076. (let ((org-agenda-max-entries num)) (org-agenda-redo)))
  7077. ((equal max ?t)
  7078. (let ((org-agenda-max-todos num)) (org-agenda-redo)))
  7079. ((equal max ?T)
  7080. (let ((org-agenda-max-tags num)) (org-agenda-redo)))
  7081. ((equal max ?E)
  7082. (let ((org-agenda-max-effort num)) (org-agenda-redo))))))
  7083. (org-agenda-fit-window-to-buffer))
  7084. (defun org-agenda-highlight-todo (x)
  7085. (let ((org-done-keywords org-done-keywords-for-agenda)
  7086. (case-fold-search nil)
  7087. re)
  7088. (if (eq x 'line)
  7089. (save-excursion
  7090. (beginning-of-line 1)
  7091. (setq re (org-get-at-bol 'org-todo-regexp))
  7092. (goto-char (or (text-property-any (point-at-bol) (point-at-eol) 'org-heading t) (point)))
  7093. (when (looking-at (concat "[ \t]*\\.*\\(" re "\\) +"))
  7094. (add-text-properties (match-beginning 0) (match-end 1)
  7095. (list 'face (org-get-todo-face 1)))
  7096. (let ((s (buffer-substring (match-beginning 1) (match-end 1))))
  7097. (delete-region (match-beginning 1) (1- (match-end 0)))
  7098. (goto-char (match-beginning 1))
  7099. (insert (format org-agenda-todo-keyword-format s)))))
  7100. (let ((pl (text-property-any 0 (length x) 'org-heading t x)))
  7101. (setq re (get-text-property 0 'org-todo-regexp x))
  7102. (when (and re
  7103. ;; Test `pl' because if there's no heading content,
  7104. ;; there's no point matching to highlight. Note
  7105. ;; that if we didn't test `pl' first, and there
  7106. ;; happened to be no keyword from `org-todo-regexp'
  7107. ;; on this heading line, then the `equal' comparison
  7108. ;; afterwards would spuriously succeed in the case
  7109. ;; where `pl' is nil -- causing an args-out-of-range
  7110. ;; error when we try to add text properties to text
  7111. ;; that isn't there.
  7112. pl
  7113. (equal (string-match (concat "\\(\\.*\\)" re "\\( +\\)")
  7114. x pl)
  7115. pl))
  7116. (add-text-properties
  7117. (or (match-end 1) (match-end 0)) (match-end 0)
  7118. (list 'face (org-get-todo-face (match-string 2 x)))
  7119. x)
  7120. (when (match-end 1)
  7121. (setq x
  7122. (concat
  7123. (substring x 0 (match-end 1))
  7124. (unless (string= org-agenda-todo-keyword-format "")
  7125. (format org-agenda-todo-keyword-format
  7126. (match-string 2 x)))
  7127. ;; Remove `display' property as the icon could leak
  7128. ;; on the white space.
  7129. (org-add-props " " (org-plist-delete (text-properties-at 0 x)
  7130. 'display))
  7131. (substring x (match-end 3)))))))
  7132. x)))
  7133. (defsubst org-cmp-values (a b property)
  7134. "Compare the numeric value of text PROPERTY for string A and B."
  7135. (let ((pa (or (get-text-property (1- (length a)) property a) 0))
  7136. (pb (or (get-text-property (1- (length b)) property b) 0)))
  7137. (cond ((> pa pb) +1)
  7138. ((< pa pb) -1))))
  7139. (defsubst org-cmp-effort (a b)
  7140. "Compare the effort values of string A and B."
  7141. (let* ((def (if org-agenda-sort-noeffort-is-high 32767 -1))
  7142. ;; `effort-minutes' property is not directly accessible from
  7143. ;; the strings, but is stored as a property in `txt'.
  7144. (ea (or (get-text-property
  7145. 0 'effort-minutes (get-text-property 0 'txt a))
  7146. def))
  7147. (eb (or (get-text-property
  7148. 0 'effort-minutes (get-text-property 0 'txt b))
  7149. def)))
  7150. (cond ((> ea eb) +1)
  7151. ((< ea eb) -1))))
  7152. (defsubst org-cmp-category (a b)
  7153. "Compare the string values of categories of strings A and B."
  7154. (let ((ca (or (get-text-property (1- (length a)) 'org-category a) ""))
  7155. (cb (or (get-text-property (1- (length b)) 'org-category b) "")))
  7156. (cond ((string-lessp ca cb) -1)
  7157. ((string-lessp cb ca) +1))))
  7158. (defsubst org-cmp-todo-state (a b)
  7159. "Compare the todo states of strings A and B."
  7160. (let* ((ma (or (get-text-property 1 'org-marker a)
  7161. (get-text-property 1 'org-hd-marker a)))
  7162. (mb (or (get-text-property 1 'org-marker b)
  7163. (get-text-property 1 'org-hd-marker b)))
  7164. (fa (and ma (marker-buffer ma)))
  7165. (fb (and mb (marker-buffer mb)))
  7166. (todo-kwds
  7167. (or (and fa (with-current-buffer fa org-todo-keywords-1))
  7168. (and fb (with-current-buffer fb org-todo-keywords-1))))
  7169. (ta (or (get-text-property 1 'todo-state a) ""))
  7170. (tb (or (get-text-property 1 'todo-state b) ""))
  7171. (la (- (length (member ta todo-kwds))))
  7172. (lb (- (length (member tb todo-kwds))))
  7173. (donepa (member ta org-done-keywords-for-agenda))
  7174. (donepb (member tb org-done-keywords-for-agenda)))
  7175. (cond ((and donepa (not donepb)) -1)
  7176. ((and (not donepa) donepb) +1)
  7177. ((< la lb) -1)
  7178. ((< lb la) +1))))
  7179. (defsubst org-cmp-alpha (a b)
  7180. "Compare the headlines, alphabetically."
  7181. (let* ((pla (text-property-any 0 (length a) 'org-heading t a))
  7182. (plb (text-property-any 0 (length b) 'org-heading t b))
  7183. (ta (and pla (substring a pla)))
  7184. (tb (and plb (substring b plb)))
  7185. (case-fold-search nil))
  7186. (when pla
  7187. (when (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp a) "")
  7188. "\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *")
  7189. ta)
  7190. (setq ta (substring ta (match-end 0))))
  7191. (setq ta (downcase ta)))
  7192. (when plb
  7193. (when (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp b) "")
  7194. "\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *")
  7195. tb)
  7196. (setq tb (substring tb (match-end 0))))
  7197. (setq tb (downcase tb)))
  7198. (cond ((not (or ta tb)) nil)
  7199. ((not ta) +1)
  7200. ((not tb) -1)
  7201. ((string-lessp ta tb) -1)
  7202. ((string-lessp tb ta) +1))))
  7203. (defsubst org-cmp-tag (a b)
  7204. "Compare the string values of the first tags of A and B."
  7205. (let ((ta (car (last (get-text-property 1 'tags a))))
  7206. (tb (car (last (get-text-property 1 'tags b)))))
  7207. (cond ((not (or ta tb)) nil)
  7208. ((not ta) +1)
  7209. ((not tb) -1)
  7210. ((string-lessp ta tb) -1)
  7211. ((string-lessp tb ta) +1))))
  7212. (defsubst org-cmp-time (a b)
  7213. "Compare the time-of-day values of strings A and B."
  7214. (let* ((def (if org-agenda-sort-notime-is-late 9901 -1))
  7215. (ta (or (get-text-property 1 'time-of-day a) def))
  7216. (tb (or (get-text-property 1 'time-of-day b) def)))
  7217. (cond ((< ta tb) -1)
  7218. ((< tb ta) +1))))
  7219. (defsubst org-cmp-ts (a b type)
  7220. "Compare the timestamps values of entries A and B.
  7221. When TYPE is \"scheduled\", \"deadline\", \"timestamp\" or
  7222. \"timestamp_ia\", compare within each of these type. When TYPE
  7223. is the empty string, compare all timestamps without respect of
  7224. their type."
  7225. (let* ((def (and (not org-agenda-sort-notime-is-late) -1))
  7226. (ta (or (and (string-match type (or (get-text-property 1 'type a) ""))
  7227. (get-text-property 1 'ts-date a))
  7228. def))
  7229. (tb (or (and (string-match type (or (get-text-property 1 'type b) ""))
  7230. (get-text-property 1 'ts-date b))
  7231. def)))
  7232. (cond ((if ta (and tb (< ta tb)) tb) -1)
  7233. ((if tb (and ta (< tb ta)) ta) +1))))
  7234. (defsubst org-cmp-habit-p (a b)
  7235. "Compare the todo states of strings A and B."
  7236. (let ((ha (get-text-property 1 'org-habit-p a))
  7237. (hb (get-text-property 1 'org-habit-p b)))
  7238. (cond ((and ha (not hb)) -1)
  7239. ((and (not ha) hb) +1))))
  7240. (defun org-entries-lessp (a b)
  7241. "Predicate for sorting agenda entries."
  7242. ;; The following variables will be used when the form is evaluated.
  7243. ;; So even though the compiler complains, keep them.
  7244. (let ((ss org-agenda-sorting-strategy-selected))
  7245. (org-dlet
  7246. ((timestamp-up (and (org-em 'timestamp-up 'timestamp-down ss)
  7247. (org-cmp-ts a b "")))
  7248. (timestamp-down (if timestamp-up (- timestamp-up) nil))
  7249. (scheduled-up (and (org-em 'scheduled-up 'scheduled-down ss)
  7250. (org-cmp-ts a b "scheduled")))
  7251. (scheduled-down (if scheduled-up (- scheduled-up) nil))
  7252. (deadline-up (and (org-em 'deadline-up 'deadline-down ss)
  7253. (org-cmp-ts a b "deadline")))
  7254. (deadline-down (if deadline-up (- deadline-up) nil))
  7255. (tsia-up (and (org-em 'tsia-up 'tsia-down ss)
  7256. (org-cmp-ts a b "timestamp_ia")))
  7257. (tsia-down (if tsia-up (- tsia-up) nil))
  7258. (ts-up (and (org-em 'ts-up 'ts-down ss)
  7259. (org-cmp-ts a b "timestamp")))
  7260. (ts-down (if ts-up (- ts-up) nil))
  7261. (time-up (and (org-em 'time-up 'time-down ss)
  7262. (org-cmp-time a b)))
  7263. (time-down (if time-up (- time-up) nil))
  7264. (stats-up (and (org-em 'stats-up 'stats-down ss)
  7265. (org-cmp-values a b 'org-stats)))
  7266. (stats-down (if stats-up (- stats-up) nil))
  7267. (priority-up (and (org-em 'priority-up 'priority-down ss)
  7268. (org-cmp-values a b 'priority)))
  7269. (priority-down (if priority-up (- priority-up) nil))
  7270. (effort-up (and (org-em 'effort-up 'effort-down ss)
  7271. (org-cmp-effort a b)))
  7272. (effort-down (if effort-up (- effort-up) nil))
  7273. (category-up (and (or (org-em 'category-up 'category-down ss)
  7274. (memq 'category-keep ss))
  7275. (org-cmp-category a b)))
  7276. (category-down (if category-up (- category-up) nil))
  7277. (category-keep (if category-up +1 nil))
  7278. (tag-up (and (org-em 'tag-up 'tag-down ss)
  7279. (org-cmp-tag a b)))
  7280. (tag-down (if tag-up (- tag-up) nil))
  7281. (todo-state-up (and (org-em 'todo-state-up 'todo-state-down ss)
  7282. (org-cmp-todo-state a b)))
  7283. (todo-state-down (if todo-state-up (- todo-state-up) nil))
  7284. (habit-up (and (org-em 'habit-up 'habit-down ss)
  7285. (org-cmp-habit-p a b)))
  7286. (habit-down (if habit-up (- habit-up) nil))
  7287. (alpha-up (and (org-em 'alpha-up 'alpha-down ss)
  7288. (org-cmp-alpha a b)))
  7289. (alpha-down (if alpha-up (- alpha-up) nil))
  7290. (need-user-cmp (org-em 'user-defined-up 'user-defined-down ss))
  7291. user-defined-up user-defined-down)
  7292. (when (and need-user-cmp org-agenda-cmp-user-defined
  7293. (functionp org-agenda-cmp-user-defined))
  7294. (setq user-defined-up
  7295. (funcall org-agenda-cmp-user-defined a b)
  7296. user-defined-down (if user-defined-up (- user-defined-up) nil)))
  7297. (cdr (assoc
  7298. (eval (cons 'or org-agenda-sorting-strategy-selected) t)
  7299. '((-1 . t) (1 . nil) (nil . nil)))))))
  7300. ;;; Agenda restriction lock
  7301. (defvar org-agenda-restriction-lock-overlay (make-overlay 1 1)
  7302. "Overlay to mark the headline to which agenda commands are restricted.")
  7303. (overlay-put org-agenda-restriction-lock-overlay
  7304. 'face 'org-agenda-restriction-lock)
  7305. (overlay-put org-agenda-restriction-lock-overlay
  7306. 'help-echo "Agendas are currently limited to this subtree.")
  7307. (delete-overlay org-agenda-restriction-lock-overlay)
  7308. (defun org-agenda-set-restriction-lock-from-agenda (arg)
  7309. "Set the restriction lock to the agenda item at point from within the agenda.
  7310. When called with a `\\[universal-argument]' prefix, restrict to
  7311. the file which contains the item.
  7312. Argument ARG is the prefix argument."
  7313. (interactive "P")
  7314. (unless (derived-mode-p 'org-agenda-mode)
  7315. (user-error "Not in an Org agenda buffer"))
  7316. (let* ((marker (or (org-get-at-bol 'org-marker)
  7317. (org-agenda-error)))
  7318. (buffer (marker-buffer marker))
  7319. (pos (marker-position marker)))
  7320. (with-current-buffer buffer
  7321. (goto-char pos)
  7322. (org-agenda-set-restriction-lock arg))))
  7323. ;;;###autoload
  7324. (defun org-agenda-set-restriction-lock (&optional type)
  7325. "Set restriction lock for agenda to current subtree or file.
  7326. When in a restricted subtree, remove it.
  7327. The restriction will span over the entire file if TYPE is `file',
  7328. or if type is '(4), or if the cursor is before the first headline
  7329. in the file. Otherwise, only apply the restriction to the current
  7330. subtree."
  7331. (interactive "P")
  7332. (if (and org-agenda-overriding-restriction
  7333. (member org-agenda-restriction-lock-overlay
  7334. (overlays-at (point)))
  7335. (equal (overlay-start org-agenda-restriction-lock-overlay)
  7336. (point)))
  7337. (org-agenda-remove-restriction-lock 'noupdate)
  7338. (org-agenda-remove-restriction-lock 'noupdate)
  7339. (and (equal type '(4)) (setq type 'file))
  7340. (setq type (cond
  7341. (type type)
  7342. ((org-at-heading-p) 'subtree)
  7343. ((condition-case nil (org-back-to-heading t) (error nil))
  7344. 'subtree)
  7345. (t 'file)))
  7346. (if (eq type 'subtree)
  7347. (progn
  7348. (setq org-agenda-restrict (current-buffer))
  7349. (setq org-agenda-overriding-restriction 'subtree)
  7350. (put 'org-agenda-files 'org-restrict
  7351. (list (buffer-file-name (buffer-base-buffer))))
  7352. (org-back-to-heading t)
  7353. (move-overlay org-agenda-restriction-lock-overlay
  7354. (point)
  7355. (if org-agenda-restriction-lock-highlight-subtree
  7356. (save-excursion (org-end-of-subtree t t) (point))
  7357. (point-at-eol)))
  7358. (move-marker org-agenda-restrict-begin (point))
  7359. (move-marker org-agenda-restrict-end
  7360. (save-excursion (org-end-of-subtree t t)))
  7361. (message "Locking agenda restriction to subtree"))
  7362. (put 'org-agenda-files 'org-restrict
  7363. (list (buffer-file-name (buffer-base-buffer))))
  7364. (setq org-agenda-restrict nil)
  7365. (setq org-agenda-overriding-restriction 'file)
  7366. (move-marker org-agenda-restrict-begin nil)
  7367. (move-marker org-agenda-restrict-end nil)
  7368. (message "Locking agenda restriction to file"))
  7369. (setq current-prefix-arg nil))
  7370. (org-agenda-maybe-redo))
  7371. (defun org-agenda-remove-restriction-lock (&optional noupdate)
  7372. "Remove agenda restriction lock."
  7373. (interactive "P")
  7374. (if (not org-agenda-restrict)
  7375. (message "No agenda restriction to remove.")
  7376. (delete-overlay org-agenda-restriction-lock-overlay)
  7377. (delete-overlay org-speedbar-restriction-lock-overlay)
  7378. (setq org-agenda-overriding-restriction nil)
  7379. (setq org-agenda-restrict nil)
  7380. (put 'org-agenda-files 'org-restrict nil)
  7381. (move-marker org-agenda-restrict-begin nil)
  7382. (move-marker org-agenda-restrict-end nil)
  7383. (setq current-prefix-arg nil)
  7384. (message "Agenda restriction lock removed")
  7385. (or noupdate (org-agenda-maybe-redo))))
  7386. (defun org-agenda-maybe-redo ()
  7387. "If there is any window showing the agenda view, update it."
  7388. (let ((w (get-buffer-window (or org-agenda-this-buffer-name
  7389. org-agenda-buffer-name)
  7390. t))
  7391. (w0 (selected-window)))
  7392. (when w
  7393. (select-window w)
  7394. (org-agenda-redo)
  7395. (select-window w0)
  7396. (if org-agenda-overriding-restriction
  7397. (message "Agenda view shifted to new %s restriction"
  7398. org-agenda-overriding-restriction)
  7399. (message "Agenda restriction lock removed")))))
  7400. ;;; Agenda commands
  7401. (defun org-agenda-check-type (error &rest types)
  7402. "Check if agenda buffer or component is of allowed type.
  7403. If ERROR is non-nil, throw an error, otherwise just return nil.
  7404. Allowed types are `agenda' `todo' `tags' `search'."
  7405. (cond ((not org-agenda-type)
  7406. (error "No Org agenda currently displayed"))
  7407. ((memq org-agenda-type types) t)
  7408. (error
  7409. (error "Not allowed in '%s'-type agenda buffer or component" org-agenda-type))
  7410. (t nil)))
  7411. (defun org-agenda-Quit ()
  7412. "Exit the agenda, killing the agenda buffer.
  7413. Like `org-agenda-quit', but kill the buffer even when
  7414. `org-agenda-sticky' is non-nil."
  7415. (interactive)
  7416. (org-agenda--quit))
  7417. (defun org-agenda-quit ()
  7418. "Exit the agenda.
  7419. When `org-agenda-sticky' is non-nil, bury the agenda buffer
  7420. instead of killing it.
  7421. When `org-agenda-restore-windows-after-quit' is non-nil, restore
  7422. the pre-agenda window configuration.
  7423. When column view is active, exit column view instead of the
  7424. agenda."
  7425. (interactive)
  7426. (org-agenda--quit org-agenda-sticky))
  7427. (defun org-agenda--quit (&optional bury)
  7428. (if org-agenda-columns-active
  7429. (org-columns-quit)
  7430. (let ((wconf org-agenda-pre-window-conf)
  7431. (buf (current-buffer))
  7432. (org-agenda-last-indirect-window
  7433. (and (eq org-indirect-buffer-display 'other-window)
  7434. org-agenda-last-indirect-buffer
  7435. (get-buffer-window org-agenda-last-indirect-buffer))))
  7436. (cond
  7437. ((eq org-agenda-window-setup 'other-frame)
  7438. (delete-frame))
  7439. ((eq org-agenda-window-setup 'other-tab)
  7440. (if (fboundp 'tab-bar-close-tab)
  7441. (tab-bar-close-tab)
  7442. (user-error "Your version of Emacs does not have tab bar mode support")))
  7443. ((and org-agenda-restore-windows-after-quit
  7444. wconf)
  7445. ;; Maybe restore the pre-agenda window configuration. Reset
  7446. ;; `org-agenda-pre-window-conf' before running
  7447. ;; `set-window-configuration', which loses the current buffer.
  7448. (setq org-agenda-pre-window-conf nil)
  7449. (set-window-configuration wconf))
  7450. (t
  7451. (when org-agenda-last-indirect-window
  7452. (delete-window org-agenda-last-indirect-window))
  7453. (and (not (eq org-agenda-window-setup 'current-window))
  7454. (not (one-window-p))
  7455. (delete-window))))
  7456. (if bury
  7457. ;; Set the agenda buffer as the current buffer instead of
  7458. ;; passing it as an argument to `bury-buffer' so that
  7459. ;; `bury-buffer' removes it from the window.
  7460. (with-current-buffer buf
  7461. (bury-buffer))
  7462. (kill-buffer buf)
  7463. (setq org-agenda-archives-mode nil
  7464. org-agenda-buffer nil)))))
  7465. (defun org-agenda-exit ()
  7466. "Exit the agenda, killing Org buffers loaded by the agenda.
  7467. Like `org-agenda-Quit', but kill any buffers that were created by
  7468. the agenda. Org buffers visited directly by the user will not be
  7469. touched. Also, exit the agenda even if it is in column view."
  7470. (interactive)
  7471. (when org-agenda-columns-active
  7472. (org-columns-quit))
  7473. (org-release-buffers org-agenda-new-buffers)
  7474. (setq org-agenda-new-buffers nil)
  7475. (org-agenda-Quit))
  7476. (defun org-agenda-kill-all-agenda-buffers ()
  7477. "Kill all buffers in `org-agenda-mode'.
  7478. This is used when toggling sticky agendas."
  7479. (interactive)
  7480. (let (blist)
  7481. (dolist (buf (buffer-list))
  7482. (when (with-current-buffer buf (eq major-mode 'org-agenda-mode))
  7483. (push buf blist)))
  7484. (mapc #'kill-buffer blist)))
  7485. (defun org-agenda-execute (arg)
  7486. "Execute another agenda command, keeping same window.
  7487. So this is just a shortcut for \\<global-map>`\\[org-agenda]', available
  7488. in the agenda."
  7489. (interactive "P")
  7490. (let ((org-agenda-window-setup 'current-window))
  7491. (org-agenda arg)))
  7492. (defun org-agenda-redo (&optional all)
  7493. "Rebuild possibly ALL agenda view(s) in the current buffer."
  7494. (interactive "P")
  7495. (defvar org-agenda-tag-filter-while-redo) ;FIXME: Where is this var used?
  7496. (let* ((p (or (and (looking-at "\\'") (1- (point))) (point)))
  7497. (cpa (unless (eq all t) current-prefix-arg))
  7498. (org-agenda-doing-sticky-redo org-agenda-sticky)
  7499. (org-agenda-sticky nil)
  7500. (org-agenda-buffer-name (or org-agenda-this-buffer-name
  7501. org-agenda-buffer-name))
  7502. (org-agenda-keep-modes t)
  7503. (tag-filter org-agenda-tag-filter)
  7504. (tag-preset (get 'org-agenda-tag-filter :preset-filter))
  7505. (top-hl-filter org-agenda-top-headline-filter)
  7506. (cat-filter org-agenda-category-filter)
  7507. (cat-preset (get 'org-agenda-category-filter :preset-filter))
  7508. (re-filter org-agenda-regexp-filter)
  7509. (re-preset (get 'org-agenda-regexp-filter :preset-filter))
  7510. (effort-filter org-agenda-effort-filter)
  7511. (effort-preset (get 'org-agenda-effort-filter :preset-filter))
  7512. (org-agenda-tag-filter-while-redo (or tag-filter tag-preset))
  7513. (cols org-agenda-columns-active)
  7514. (line (org-current-line))
  7515. (window-line (- line (org-current-line (window-start))))
  7516. (lprops (get 'org-agenda-redo-command 'org-lprops))
  7517. (redo-cmd (get-text-property p 'org-redo-cmd))
  7518. (last-args (get-text-property p 'org-last-args))
  7519. (org-agenda-overriding-cmd (get-text-property p 'org-series-cmd))
  7520. (org-agenda-overriding-cmd-arguments
  7521. (unless (eq all t)
  7522. (cond ((listp last-args)
  7523. (cons (or cpa (car last-args)) (cdr last-args)))
  7524. ((stringp last-args)
  7525. last-args))))
  7526. (series-redo-cmd (get-text-property p 'org-series-redo-cmd)))
  7527. (put 'org-agenda-tag-filter :preset-filter nil)
  7528. (put 'org-agenda-category-filter :preset-filter nil)
  7529. (put 'org-agenda-regexp-filter :preset-filter nil)
  7530. (put 'org-agenda-effort-filter :preset-filter nil)
  7531. (and cols (org-columns-quit))
  7532. (message "Rebuilding agenda buffer...")
  7533. (if series-redo-cmd
  7534. (eval series-redo-cmd t)
  7535. (cl-progv
  7536. (mapcar #'car lprops)
  7537. (mapcar (lambda (binding) (eval (cadr binding) t)) lprops)
  7538. (eval redo-cmd t)))
  7539. (setq org-agenda-undo-list nil
  7540. org-agenda-pending-undo-list nil
  7541. org-agenda-tag-filter tag-filter
  7542. org-agenda-category-filter cat-filter
  7543. org-agenda-regexp-filter re-filter
  7544. org-agenda-effort-filter effort-filter
  7545. org-agenda-top-headline-filter top-hl-filter)
  7546. (message "Rebuilding agenda buffer...done")
  7547. (put 'org-agenda-tag-filter :preset-filter tag-preset)
  7548. (put 'org-agenda-category-filter :preset-filter cat-preset)
  7549. (put 'org-agenda-regexp-filter :preset-filter re-preset)
  7550. (put 'org-agenda-effort-filter :preset-filter effort-preset)
  7551. (let ((tag (or tag-filter tag-preset))
  7552. (cat (or cat-filter cat-preset))
  7553. (effort (or effort-filter effort-preset))
  7554. (re (or re-filter re-preset)))
  7555. (when tag (org-agenda-filter-apply tag 'tag t))
  7556. (when cat (org-agenda-filter-apply cat 'category))
  7557. (when effort (org-agenda-filter-apply effort 'effort))
  7558. (when re (org-agenda-filter-apply re 'regexp)))
  7559. (and top-hl-filter (org-agenda-filter-top-headline-apply top-hl-filter))
  7560. (and cols (called-interactively-p 'any) (org-agenda-columns))
  7561. (org-goto-line line)
  7562. (when (called-interactively-p 'any) (recenter window-line))))
  7563. (defun org-agenda-redo-all (&optional exhaustive)
  7564. "Rebuild all agenda views in the current buffer.
  7565. With a prefix argument, do so in all agenda buffers."
  7566. (interactive "P")
  7567. (if exhaustive
  7568. (dolist (buffer (buffer-list))
  7569. (with-current-buffer buffer
  7570. (when (derived-mode-p 'org-agenda-mode)
  7571. (org-agenda-redo t))))
  7572. (org-agenda-redo t)))
  7573. (defvar org-global-tags-completion-table nil)
  7574. (defvar org-agenda-filter-form nil)
  7575. (defvar org-agenda-filtered-by-category nil)
  7576. (defsubst org-agenda-get-category ()
  7577. "Return the category of the agenda line."
  7578. (org-get-at-bol 'org-category))
  7579. (defun org-agenda-filter-by-category (strip)
  7580. "Filter lines in the agenda buffer that have a specific category.
  7581. The category is that of the current line.
  7582. With a `\\[universal-argument]' prefix argument, exclude the lines of that category.
  7583. When there is already a category filter in place, this command removes the
  7584. filter."
  7585. (interactive "P")
  7586. (if (and org-agenda-filtered-by-category
  7587. org-agenda-category-filter)
  7588. (org-agenda-filter-show-all-cat)
  7589. (let ((cat (org-no-properties (org-get-at-eol 'org-category 1))))
  7590. (cond
  7591. ((and cat strip)
  7592. (org-agenda-filter-apply
  7593. (push (concat "-" cat) org-agenda-category-filter) 'category))
  7594. (cat
  7595. (org-agenda-filter-apply
  7596. (setq org-agenda-category-filter
  7597. (list (concat "+" cat)))
  7598. 'category))
  7599. (t (error "No category at point"))))))
  7600. (defun org-find-top-headline (&optional pos)
  7601. "Find the topmost parent headline and return it.
  7602. POS when non-nil is the marker or buffer position to start the
  7603. search from."
  7604. (save-excursion
  7605. (with-current-buffer (if (markerp pos) (marker-buffer pos) (current-buffer))
  7606. (when pos (goto-char pos))
  7607. ;; Skip up to the topmost parent.
  7608. (while (org-up-heading-safe))
  7609. (ignore-errors
  7610. (replace-regexp-in-string
  7611. "^\\[[0-9]+/[0-9]+\\] *\\|^\\[%[0-9]+\\] *" ""
  7612. (nth 4 (org-heading-components)))))))
  7613. (defvar org-agenda-filtered-by-top-headline nil)
  7614. (defun org-agenda-filter-by-top-headline (strip)
  7615. "Keep only those lines that are descendants from the same top headline.
  7616. The top headline is that of the current line. With prefix arg STRIP, hide
  7617. all lines of the category at point."
  7618. (interactive "P")
  7619. (if org-agenda-filtered-by-top-headline
  7620. (progn
  7621. (setq org-agenda-filtered-by-top-headline nil
  7622. org-agenda-top-headline-filter nil)
  7623. (org-agenda-filter-show-all-top-filter))
  7624. (let ((toph (org-find-top-headline (org-get-at-bol 'org-hd-marker))))
  7625. (if toph (org-agenda-filter-top-headline-apply toph strip)
  7626. (error "No top-level headline at point")))))
  7627. (defvar org-agenda-regexp-filter nil)
  7628. (defun org-agenda-filter-by-regexp (strip-or-accumulate)
  7629. "Filter agenda entries by a regular expressions.
  7630. You will be prompted for the regular expression, and the agenda
  7631. view will only show entries that are matched by that expression.
  7632. With one `\\[universal-argument]' prefix argument, hide entries matching the regexp.
  7633. When there is already a regexp filter active, this command removed the
  7634. filter. However, with two `\\[universal-argument]' prefix arguments, add a new condition to
  7635. an already existing regexp filter."
  7636. (interactive "P")
  7637. (let* ((strip (equal strip-or-accumulate '(4)))
  7638. (accumulate (equal strip-or-accumulate '(16))))
  7639. (cond
  7640. ((and org-agenda-regexp-filter (not accumulate))
  7641. (org-agenda-filter-show-all-re)
  7642. (message "Regexp filter removed"))
  7643. (t (let ((flt (concat (if strip "-" "+")
  7644. (read-from-minibuffer
  7645. (if strip
  7646. "Hide entries matching regexp: "
  7647. "Narrow to entries matching regexp: ")))))
  7648. (push flt org-agenda-regexp-filter)
  7649. (org-agenda-filter-apply org-agenda-regexp-filter 'regexp))))))
  7650. (defvar org-agenda-effort-filter nil)
  7651. (defun org-agenda-filter-by-effort (strip-or-accumulate)
  7652. "Filter agenda entries by effort.
  7653. With no `\\[universal-argument]' prefix argument, keep entries matching the effort condition.
  7654. With one `\\[universal-argument]' prefix argument, filter out entries matching the condition.
  7655. With two `\\[universal-argument]' prefix arguments, add a second condition to the existing filter.
  7656. This last option is in practice not very useful, but it is available for
  7657. consistency with the other filter commands."
  7658. (interactive "P")
  7659. (let* ((efforts (split-string
  7660. (or (cdr (assoc-string (concat org-effort-property "_ALL")
  7661. org-global-properties
  7662. t))
  7663. "0 0:10 0:30 1:00 2:00 3:00 4:00 5:00 6:00 7:00")))
  7664. ;; XXX: the following handles only up to 10 different
  7665. ;; effort values.
  7666. (allowed-keys (if (null efforts) nil
  7667. (mapcar (lambda (n) (mod n 10)) ;turn 10 into 0
  7668. (number-sequence 1 (length efforts)))))
  7669. (keep (equal strip-or-accumulate '(16)))
  7670. (negative (equal strip-or-accumulate '(4)))
  7671. (current org-agenda-effort-filter)
  7672. (op nil))
  7673. (while (not (memq op '(?< ?> ?= ?_)))
  7674. (setq op (read-char-exclusive
  7675. "Effort operator? (> = or <) or press `_' again to remove filter")))
  7676. ;; Select appropriate duration. Ignore non-digit characters.
  7677. (if (eq op ?_)
  7678. (progn
  7679. (org-agenda-filter-show-all-effort)
  7680. (message "Effort filter removed"))
  7681. (let ((prompt
  7682. (apply #'format
  7683. (concat "Effort %c "
  7684. (mapconcat (lambda (s) (concat "[%d]" s))
  7685. efforts
  7686. " "))
  7687. op allowed-keys))
  7688. (eff -1))
  7689. (while (not (memq eff allowed-keys))
  7690. (message prompt)
  7691. (setq eff (- (read-char-exclusive) 48)))
  7692. (org-agenda-filter-show-all-effort)
  7693. (setq org-agenda-effort-filter
  7694. (append
  7695. (list (concat (if negative "-" "+")
  7696. (char-to-string op)
  7697. ;; Numbering is 1 2 3 ... 9 0, but we want
  7698. ;; 0 1 2 ... 8 9.
  7699. (nth (mod (1- eff) 10) efforts)))
  7700. (if keep current nil)))
  7701. (org-agenda-filter-apply org-agenda-effort-filter 'effort)))))
  7702. (defun org-agenda-filter (&optional strip-or-accumulate)
  7703. "Prompt for a general filter string and apply it to the agenda.
  7704. The string may contain filter elements like
  7705. +category
  7706. +tag
  7707. +<effort > and = are also allowed as effort operators
  7708. +/regexp/
  7709. Instead of `+', `-' is allowed to strip the agenda of matching entries.
  7710. `+' is optional if it is not required to separate two string parts.
  7711. Multiple filter elements can be concatenated without spaces, for example
  7712. +work-John<0:10-/plot/
  7713. selects entries with category `work' and effort estimates below 10 minutes,
  7714. and deselects entries with tag `John' or matching the regexp `plot'.
  7715. During entry of the filter, completion for tags, categories and effort
  7716. values is offered. Since the syntax for categories and tags is identical
  7717. there should be no overlap between categories and tags. If there is, tags
  7718. get priority.
  7719. A single `\\[universal-argument]' prefix arg STRIP-OR-ACCUMULATE will negate the
  7720. entire filter, which can be useful in connection with the prompt history.
  7721. A double `\\[universal-argument] \\[universal-argument]' prefix arg will add the new filter elements to the
  7722. existing ones. A shortcut for this is to add an additional `+' at the
  7723. beginning of the string, like `+-John'.
  7724. With a triple prefix argument, execute the computed filtering defined in
  7725. the variable `org-agenda-auto-exclude-function'."
  7726. (interactive "P")
  7727. (if (equal strip-or-accumulate '(64))
  7728. ;; Execute the auto-exclude action
  7729. (if (not org-agenda-auto-exclude-function)
  7730. (user-error "`org-agenda-auto-exclude-function' is undefined")
  7731. (org-agenda-filter-show-all-tag)
  7732. (setq org-agenda-tag-filter nil)
  7733. (dolist (tag (org-agenda-get-represented-tags))
  7734. (let ((modifier (funcall org-agenda-auto-exclude-function tag)))
  7735. (when modifier
  7736. (push modifier org-agenda-tag-filter))))
  7737. (unless (null org-agenda-tag-filter)
  7738. (org-agenda-filter-apply org-agenda-tag-filter 'tag 'expand)))
  7739. ;; Prompt for a filter and act
  7740. (let* ((tag-list (org-agenda-get-represented-tags))
  7741. (category-list (org-agenda-get-represented-categories))
  7742. (negate (equal strip-or-accumulate '(4)))
  7743. (cf (mapconcat #'identity org-agenda-category-filter ""))
  7744. (tf (mapconcat #'identity org-agenda-tag-filter ""))
  7745. ;; (rpl-fn (lambda (c) (replace-regexp-in-string "^\\+" "" (or (car c) ""))))
  7746. (ef (replace-regexp-in-string "^\\+" "" (or (car org-agenda-effort-filter) "")))
  7747. (rf (replace-regexp-in-string "^\\+" "" (or (car org-agenda-regexp-filter) "")))
  7748. (ff (concat cf tf ef (when (not (equal rf "")) (concat "/" rf "/"))))
  7749. (f-string (completing-read
  7750. (concat
  7751. (if negate "Negative filter" "Filter")
  7752. " [+cat-tag<0:10-/regexp/]: ")
  7753. #'org-agenda-filter-completion-function
  7754. nil nil ff))
  7755. (keep (or (if (string-match "^\\+[+-]" f-string)
  7756. (progn (setq f-string (substring f-string 1)) t))
  7757. (equal strip-or-accumulate '(16))))
  7758. (fc (if keep org-agenda-category-filter))
  7759. (ft (if keep org-agenda-tag-filter))
  7760. (fe (if keep org-agenda-effort-filter))
  7761. (fr (if keep org-agenda-regexp-filter))
  7762. pm s)
  7763. ;; If the filter contains a double-quoted string, replace a
  7764. ;; single hyphen by the arbitrary and temporary string "~~~"
  7765. ;; to disambiguate such hyphens from syntactic ones.
  7766. (setq f-string (replace-regexp-in-string
  7767. "\"\\([^\"]*\\)-\\([^\"]*\\)\"" "\"\\1~~~\\2\"" f-string))
  7768. (while (string-match "^[ \t]*\\([-+]\\)?\\(\\([^-+<>=/ \t]+\\)\\|\\([<>=][0-9:]+\\)\\|\\(/\\([^/]+\\)/?\\)\\)" f-string)
  7769. (setq pm (if (match-beginning 1) (match-string 1 f-string) "+"))
  7770. (when negate
  7771. (setq pm (if (equal pm "+") "-" "+")))
  7772. (cond
  7773. ((match-beginning 3)
  7774. ;; category or tag
  7775. (setq s (replace-regexp-in-string ; Remove the temporary special string.
  7776. "~~~" "-" (match-string 3 f-string)))
  7777. (cond
  7778. ((member s tag-list)
  7779. (org-pushnew-to-end (concat pm s) ft))
  7780. ((member s category-list)
  7781. (org-pushnew-to-end (concat pm ; Remove temporary double quotes.
  7782. (replace-regexp-in-string "\"\\(.*\\)\"" "\\1" s))
  7783. fc))
  7784. (t (message
  7785. "`%s%s' filter ignored because tag/category is not represented"
  7786. pm s))))
  7787. ((match-beginning 4)
  7788. ;; effort
  7789. (org-pushnew-to-end (concat pm (match-string 4 f-string)) fe))
  7790. ((match-beginning 5)
  7791. ;; regexp
  7792. (org-pushnew-to-end (concat pm (match-string 6 f-string)) fr)))
  7793. (setq f-string (substring f-string (match-end 0))))
  7794. (org-agenda-filter-remove-all)
  7795. (and fc (org-agenda-filter-apply
  7796. (setq org-agenda-category-filter fc) 'category))
  7797. (and ft (org-agenda-filter-apply
  7798. (setq org-agenda-tag-filter ft) 'tag 'expand))
  7799. (and fe (org-agenda-filter-apply
  7800. (setq org-agenda-effort-filter fe) 'effort))
  7801. (and fr (org-agenda-filter-apply
  7802. (setq org-agenda-regexp-filter fr) 'regexp))
  7803. (run-hooks 'org-agenda-filter-hook))))
  7804. (defun org-agenda-filter-completion-function (string _predicate &optional flag)
  7805. "Complete a complex filter string.
  7806. FLAG specifies the type of completion operation to perform. This
  7807. function is passed as a collection function to `completing-read',
  7808. which see."
  7809. (let ((completion-ignore-case t) ;tags are case-sensitive
  7810. (confirm (lambda (x) (stringp x)))
  7811. (prefix "")
  7812. (operator "")
  7813. table)
  7814. (when (string-match "^\\(.*\\([-+<>=]\\)\\)\\([^-+<>=]*\\)$" string)
  7815. (setq prefix (match-string 1 string)
  7816. operator (match-string 2 string)
  7817. string (match-string 3 string)))
  7818. (cond
  7819. ((member operator '("+" "-" "" nil))
  7820. (setq table (append (org-agenda-get-represented-categories)
  7821. (org-agenda-get-represented-tags))))
  7822. ((member operator '("<" ">" "="))
  7823. (setq table (split-string
  7824. (or (cdr (assoc-string (concat org-effort-property "_ALL")
  7825. org-global-properties
  7826. t))
  7827. "0 0:10 0:30 1:00 2:00 3:00 4:00 5:00 6:00 7:00")
  7828. " +")))
  7829. (t (setq table nil)))
  7830. (pcase flag
  7831. (`t (all-completions string table confirm))
  7832. (`lambda (assoc string table)) ;exact match?
  7833. (`nil
  7834. (pcase (try-completion string table confirm)
  7835. ((and completion (pred stringp))
  7836. (concat prefix completion))
  7837. (completion completion)))
  7838. (_ nil))))
  7839. (defun org-agenda-filter-remove-all ()
  7840. "Remove all filters from the current agenda buffer."
  7841. (interactive)
  7842. (when org-agenda-tag-filter
  7843. (org-agenda-filter-show-all-tag))
  7844. (when org-agenda-category-filter
  7845. (org-agenda-filter-show-all-cat))
  7846. (when org-agenda-regexp-filter
  7847. (org-agenda-filter-show-all-re))
  7848. (when org-agenda-top-headline-filter
  7849. (org-agenda-filter-show-all-top-filter))
  7850. (when org-agenda-effort-filter
  7851. (org-agenda-filter-show-all-effort))
  7852. (org-agenda-finalize)
  7853. (when (called-interactively-p 'interactive)
  7854. (message "All agenda filters removed")))
  7855. (defun org-agenda-filter-by-tag (strip-or-accumulate &optional char exclude)
  7856. "Keep only those lines in the agenda buffer that have a specific tag.
  7857. The tag is selected with its fast selection letter, as configured.
  7858. With a `\\[universal-argument]' prefix, apply the filter negatively, stripping all matches.
  7859. With a `\\[universal-argument] \\[universal-argument]' prefix, add the new tag to the existing filter
  7860. instead of replacing it.
  7861. With a `\\[universal-argument] \\[universal-argument] \\[universal-argument]' prefix, filter the literal tag, \
  7862. i.e. don't
  7863. filter on all its group members.
  7864. A Lisp caller can specify CHAR. EXCLUDE means that the new tag
  7865. should be used to exclude the search - the interactive user can
  7866. also press `-' or `+' to switch between filtering and excluding."
  7867. (interactive "P")
  7868. (let* ((alist org-tag-alist-for-agenda)
  7869. (seen-chars nil)
  7870. (tag-chars (mapconcat
  7871. (lambda (x) (if (and (not (symbolp (car x)))
  7872. (cdr x)
  7873. (not (member (cdr x) seen-chars)))
  7874. (progn
  7875. (push (cdr x) seen-chars)
  7876. (char-to-string (cdr x)))
  7877. ""))
  7878. org-tag-alist-for-agenda ""))
  7879. (valid-char-list (append '(?\t ?\r ?\\ ?. ?\s ?q)
  7880. (string-to-list tag-chars)))
  7881. (exclude (or exclude (equal strip-or-accumulate '(4))))
  7882. (accumulate (equal strip-or-accumulate '(16)))
  7883. (expand (not (equal strip-or-accumulate '(64))))
  7884. (inhibit-read-only t)
  7885. (current org-agenda-tag-filter)
  7886. a tag) ;; n
  7887. (unless char
  7888. (while (not (memq char valid-char-list))
  7889. (org-unlogged-message
  7890. "%s by tag%s: [%s ]tag-char [TAB]tag %s[\\]off [q]uit"
  7891. (if exclude "Exclude[+]" "Filter[-]")
  7892. (if expand "" " (no grouptag expand)")
  7893. tag-chars
  7894. (if org-agenda-auto-exclude-function "[RET] " ""))
  7895. (setq char (read-char-exclusive))
  7896. ;; Excluding or filtering down
  7897. (cond ((eq char ?-) (setq exclude t))
  7898. ((eq char ?+) (setq exclude nil)))))
  7899. (when (eq char ?\t)
  7900. (unless (local-variable-p 'org-global-tags-completion-table)
  7901. (setq-local org-global-tags-completion-table
  7902. (org-global-tags-completion-table)))
  7903. (let ((completion-ignore-case t))
  7904. (setq tag (completing-read
  7905. "Tag: " org-global-tags-completion-table nil t))))
  7906. (cond
  7907. ((eq char ?\r)
  7908. (org-agenda-filter-show-all-tag)
  7909. (when org-agenda-auto-exclude-function
  7910. (setq org-agenda-tag-filter nil)
  7911. (dolist (tag (org-agenda-get-represented-tags))
  7912. (let ((modifier (funcall org-agenda-auto-exclude-function tag)))
  7913. (when modifier
  7914. (push modifier org-agenda-tag-filter))))
  7915. (unless (null org-agenda-tag-filter)
  7916. (org-agenda-filter-apply org-agenda-tag-filter 'tag expand))))
  7917. ((eq char ?\\)
  7918. (org-agenda-filter-show-all-tag)
  7919. (when (get 'org-agenda-tag-filter :preset-filter)
  7920. (org-agenda-filter-apply org-agenda-tag-filter 'tag expand)))
  7921. ((eq char ?.)
  7922. (setq org-agenda-tag-filter
  7923. (mapcar (lambda(tag) (concat "+" tag))
  7924. (org-get-at-bol 'tags)))
  7925. (org-agenda-filter-apply org-agenda-tag-filter 'tag expand))
  7926. ((eq char ?q)) ;If q, abort (even if there is a q-key for a tag...)
  7927. ((or (eq char ?\s)
  7928. (setq a (rassoc char alist))
  7929. (and tag (setq a (cons tag nil))))
  7930. (org-agenda-filter-show-all-tag)
  7931. (setq tag (car a))
  7932. (setq org-agenda-tag-filter
  7933. (cons (concat (if exclude "-" "+") tag)
  7934. (if accumulate current nil)))
  7935. (org-agenda-filter-apply org-agenda-tag-filter 'tag expand))
  7936. (t (error "Invalid tag selection character %c" char)))))
  7937. (defun org-agenda-get-represented-categories ()
  7938. "Return a list of all categories used in this agenda buffer."
  7939. (or org-agenda-represented-categories
  7940. (when (derived-mode-p 'org-agenda-mode)
  7941. (let ((pos (point-min)) categories)
  7942. (while (and (< pos (point-max))
  7943. (setq pos (next-single-property-change
  7944. pos 'org-category nil (point-max))))
  7945. (push (get-text-property pos 'org-category) categories))
  7946. (setq org-agenda-represented-categories
  7947. ;; Enclose category names with a hyphen in double
  7948. ;; quotes to process them specially in `org-agenda-filter'.
  7949. (mapcar (lambda (s) (if (string-match-p "-" s) (format "\"%s\"" s) s))
  7950. (nreverse (org-uniquify (delq nil categories)))))))))
  7951. (defvar org-tag-groups-alist-for-agenda)
  7952. (defun org-agenda-get-represented-tags ()
  7953. "Return a list of all tags used in this agenda buffer.
  7954. These will be lower-case, for filtering."
  7955. (or org-agenda-represented-tags
  7956. (when (derived-mode-p 'org-agenda-mode)
  7957. (let ((pos (point-min)) tags-lists tt)
  7958. (while (and (< pos (point-max))
  7959. (setq pos (next-single-property-change
  7960. pos 'tags nil (point-max))))
  7961. (setq tt (get-text-property pos 'tags))
  7962. (if tt (push tt tags-lists)))
  7963. (setq tags-lists
  7964. (nreverse (org-uniquify
  7965. (delq nil (apply #'append tags-lists)))))
  7966. (dolist (tag tags-lists)
  7967. (mapc
  7968. (lambda (group)
  7969. (when (member tag group)
  7970. (push (car group) tags-lists)))
  7971. org-tag-groups-alist-for-agenda))
  7972. (setq org-agenda-represented-tags tags-lists)))))
  7973. (defun org-agenda-filter-make-matcher (filter type &optional expand)
  7974. "Create the form that tests a line for agenda filter.
  7975. Optional argument EXPAND can be used for the TYPE tag and will
  7976. expand the tags in the FILTER if any of the tags in FILTER are
  7977. grouptags."
  7978. (let ((multi-pos-cats
  7979. (and (eq type 'category)
  7980. (string-match-p "\\+.*\\+"
  7981. (mapconcat (lambda (cat) (substring cat 0 1))
  7982. filter ""))))
  7983. f f1)
  7984. (cond
  7985. ;; Tag filter
  7986. ((eq type 'tag)
  7987. (setq filter
  7988. (delete-dups
  7989. (append (get 'org-agenda-tag-filter :preset-filter)
  7990. filter)))
  7991. (dolist (x filter)
  7992. (let ((op (string-to-char x)))
  7993. (if expand (setq x (org-agenda-filter-expand-tags (list x) t))
  7994. (setq x (list x)))
  7995. (setq f1 (org-agenda-filter-make-matcher-tag-exp x op))
  7996. (push f1 f))))
  7997. ;; Category filter
  7998. ((eq type 'category)
  7999. (setq filter
  8000. (delete-dups
  8001. (append (get 'org-agenda-category-filter :preset-filter)
  8002. filter)))
  8003. (dolist (x filter)
  8004. (if (equal "-" (substring x 0 1))
  8005. (setq f1 (list 'not (list 'equal (substring x 1) 'cat)))
  8006. (setq f1 (list 'equal (substring x 1) 'cat)))
  8007. (push f1 f)))
  8008. ;; Regexp filter
  8009. ((eq type 'regexp)
  8010. (setq filter
  8011. (delete-dups
  8012. (append (get 'org-agenda-regexp-filter :preset-filter)
  8013. filter)))
  8014. (dolist (x filter)
  8015. (if (equal "-" (substring x 0 1))
  8016. (setq f1 (list 'not (list 'string-match (substring x 1) 'txt)))
  8017. (setq f1 (list 'string-match (substring x 1) 'txt)))
  8018. (push f1 f)))
  8019. ;; Effort filter
  8020. ((eq type 'effort)
  8021. (setq filter
  8022. (delete-dups
  8023. (append (get 'org-agenda-effort-filter :preset-filter)
  8024. filter)))
  8025. (dolist (x filter)
  8026. (push (org-agenda-filter-effort-form x) f))))
  8027. (cons (if multi-pos-cats 'or 'and) (nreverse f))))
  8028. (defun org-agenda-filter-make-matcher-tag-exp (tags op)
  8029. "Return a form associated to tag-expression TAGS.
  8030. Build a form testing a line for agenda filter for
  8031. tag-expressions. OP is an operator of type CHAR that allows the
  8032. function to set the right switches in the returned form."
  8033. (let (form)
  8034. ;; Any of the expressions can match if OP is +, all must match if
  8035. ;; the operator is -.
  8036. (dolist (x tags (cons (if (eq op ?-) 'and 'or) form))
  8037. (let* ((tag (substring x 1))
  8038. (f (cond
  8039. ((string= "" tag) 'tags)
  8040. ((and (string-match-p "\\`{" tag) (string-match-p "}\\'" tag))
  8041. ;; TAG is a regexp.
  8042. (list 'org-match-any-p (substring tag 1 -1) 'tags))
  8043. (t (list 'member tag 'tags)))))
  8044. (push (if (eq op ?-) (list 'not f) f) form)))))
  8045. (defun org-agenda-filter-effort-form (e)
  8046. "Return the form to compare the effort of the current line with what E says.
  8047. E looks like \"+<2:25\"."
  8048. (let (op)
  8049. (setq e (substring e 1))
  8050. (setq op (string-to-char e) e (substring e 1))
  8051. (setq op (cond ((equal op ?<) '<=)
  8052. ((equal op ?>) '>=)
  8053. ((equal op ??) op)
  8054. (t '=)))
  8055. (list 'org-agenda-compare-effort (list 'quote op)
  8056. (org-duration-to-minutes e))))
  8057. (defun org-agenda-compare-effort (op value)
  8058. "Compare the effort of the current line with VALUE, using OP.
  8059. If the line does not have an effort defined, return nil."
  8060. ;; `effort-minutes' property cannot be extracted directly from
  8061. ;; current line but is stored as a property in `txt'.
  8062. (let ((effort (get-text-property 0 'effort-minutes (org-get-at-bol 'txt))))
  8063. (funcall op
  8064. (or effort (if org-agenda-sort-noeffort-is-high 32767 -1))
  8065. value)))
  8066. (defun org-agenda-filter-expand-tags (filter &optional no-operator)
  8067. "Expand group tags in FILTER for the agenda.
  8068. When NO-OPERATOR is non-nil, do not add the + operator to
  8069. returned tags."
  8070. (if org-group-tags
  8071. (let (case-fold-search rtn)
  8072. (mapc
  8073. (lambda (f)
  8074. (let (f0 dir)
  8075. (if (string-match "^\\([+-]\\)\\(.+\\)" f)
  8076. (setq dir (match-string 1 f) f0 (match-string 2 f))
  8077. (setq dir (if no-operator "" "+") f0 f))
  8078. (setq rtn (append (mapcar (lambda(f1) (concat dir f1))
  8079. (org-tags-expand f0 t))
  8080. rtn))))
  8081. filter)
  8082. (reverse rtn))
  8083. filter))
  8084. (defun org-agenda-filter-apply (filter type &optional expand)
  8085. "Set FILTER as the new agenda filter and apply it.
  8086. Optional argument EXPAND can be used for the TYPE tag and will
  8087. expand the tags in the FILTER if any of the tags in FILTER are
  8088. grouptags."
  8089. ;; Deactivate `org-agenda-entry-text-mode' when filtering
  8090. (when org-agenda-entry-text-mode (org-agenda-entry-text-mode))
  8091. (setq org-agenda-filter-form (org-agenda-filter-make-matcher
  8092. filter type expand))
  8093. ;; Only set `org-agenda-filtered-by-category' to t when a unique
  8094. ;; category is used as the filter:
  8095. (setq org-agenda-filtered-by-category
  8096. (and (eq type 'category)
  8097. (not (equal (substring (car filter) 0 1) "-"))))
  8098. (org-agenda-set-mode-name)
  8099. (save-excursion
  8100. (goto-char (point-min))
  8101. (while (not (eobp))
  8102. (when (or (org-get-at-bol 'org-hd-marker)
  8103. (org-get-at-bol 'org-marker))
  8104. (org-dlet
  8105. ((tags (org-get-at-bol 'tags))
  8106. (cat (org-agenda-get-category))
  8107. (txt (or (org-get-at-bol 'txt) "")))
  8108. (unless (eval org-agenda-filter-form t)
  8109. (org-agenda-filter-hide-line type))))
  8110. (beginning-of-line 2)))
  8111. (when (get-char-property (point) 'invisible)
  8112. (ignore-errors (org-agenda-previous-line))))
  8113. (defun org-agenda-filter-top-headline-apply (hl &optional negative)
  8114. "Filter by top headline HL."
  8115. (org-agenda-set-mode-name)
  8116. (save-excursion
  8117. (goto-char (point-min))
  8118. (while (not (eobp))
  8119. (let* ((pos (org-get-at-bol 'org-hd-marker))
  8120. (tophl (and pos (org-find-top-headline pos))))
  8121. (when (and tophl (funcall (if negative 'identity 'not)
  8122. (string= hl tophl)))
  8123. (org-agenda-filter-hide-line 'top-headline)))
  8124. (beginning-of-line 2)))
  8125. (when (get-char-property (point) 'invisible)
  8126. (org-agenda-previous-line))
  8127. (setq org-agenda-top-headline-filter hl
  8128. org-agenda-filtered-by-top-headline t))
  8129. (defun org-agenda-filter-hide-line (type)
  8130. "If current line is TYPE, hide it in the agenda buffer."
  8131. (let* (buffer-invisibility-spec
  8132. (beg (max (point-min) (1- (point-at-bol))))
  8133. (end (point-at-eol)))
  8134. (let ((inhibit-read-only t))
  8135. (add-text-properties
  8136. beg end `(invisible org-filtered org-filter-type ,type)))))
  8137. (defun org-agenda-remove-filter (type)
  8138. "Remove filter of type TYPE from the agenda buffer."
  8139. (interactive)
  8140. (save-excursion
  8141. (goto-char (point-min))
  8142. (let ((inhibit-read-only t) pos)
  8143. (while (setq pos (text-property-any (point) (point-max)
  8144. 'org-filter-type type))
  8145. (goto-char pos)
  8146. (remove-text-properties
  8147. (point) (next-single-property-change (point) 'org-filter-type)
  8148. `(invisible org-filtered org-filter-type ,type))))
  8149. (set (intern (format "org-agenda-%s-filter" (intern-soft type))) nil)
  8150. (setq org-agenda-filter-form nil)
  8151. (org-agenda-set-mode-name)
  8152. (org-agenda-finalize)))
  8153. (defun org-agenda-filter-show-all-tag nil
  8154. (org-agenda-remove-filter 'tag))
  8155. (defun org-agenda-filter-show-all-re nil
  8156. (org-agenda-remove-filter 'regexp))
  8157. (defun org-agenda-filter-show-all-effort nil
  8158. (org-agenda-remove-filter 'effort))
  8159. (defun org-agenda-filter-show-all-cat nil
  8160. (org-agenda-remove-filter 'category))
  8161. (defun org-agenda-filter-show-all-top-filter nil
  8162. (org-agenda-remove-filter 'top-headline))
  8163. (defun org-agenda-manipulate-query-add ()
  8164. "Manipulate the query by adding a search term with positive selection.
  8165. Positive selection means the term must be matched for selection of an entry."
  8166. (interactive)
  8167. (org-agenda-manipulate-query ?\[))
  8168. (defun org-agenda-manipulate-query-subtract ()
  8169. "Manipulate the query by adding a search term with negative selection.
  8170. Negative selection means term must not be matched for selection of an entry."
  8171. (interactive)
  8172. (org-agenda-manipulate-query ?\]))
  8173. (defun org-agenda-manipulate-query-add-re ()
  8174. "Manipulate the query by adding a search regexp with positive selection.
  8175. Positive selection means the regexp must match for selection of an entry."
  8176. (interactive)
  8177. (org-agenda-manipulate-query ?\{))
  8178. (defun org-agenda-manipulate-query-subtract-re ()
  8179. "Manipulate the query by adding a search regexp with negative selection.
  8180. Negative selection means regexp must not match for selection of an entry."
  8181. (interactive)
  8182. (org-agenda-manipulate-query ?\}))
  8183. (defun org-agenda-manipulate-query (char)
  8184. (cond
  8185. ((eq org-agenda-type 'agenda)
  8186. (let ((org-agenda-include-inactive-timestamps t))
  8187. (org-agenda-redo))
  8188. (message "Display now includes inactive timestamps as well"))
  8189. ((eq org-agenda-type 'search)
  8190. (org-add-to-string
  8191. 'org-agenda-query-string
  8192. (if org-agenda-last-search-view-search-was-boolean
  8193. (cdr (assoc char '((?\[ . " +") (?\] . " -")
  8194. (?\{ . " +{}") (?\} . " -{}"))))
  8195. " "))
  8196. (setq org-agenda-redo-command
  8197. (list 'org-search-view
  8198. (car (get-text-property (min (1- (point-max)) (point))
  8199. 'org-last-args))
  8200. org-agenda-query-string
  8201. (+ (length org-agenda-query-string)
  8202. (if (member char '(?\{ ?\})) 0 1))))
  8203. (set-register org-agenda-query-register org-agenda-query-string)
  8204. (let ((org-agenda-overriding-arguments
  8205. (cdr org-agenda-redo-command)))
  8206. (org-agenda-redo)))
  8207. (t (error "Cannot manipulate query for %s-type agenda buffers"
  8208. org-agenda-type))))
  8209. (defun org-add-to-string (var string)
  8210. (set var (concat (symbol-value var) string)))
  8211. (defun org-agenda-goto-date (date)
  8212. "Jump to DATE in agenda."
  8213. (interactive
  8214. (list
  8215. (let ((org-read-date-prefer-future org-agenda-jump-prefer-future))
  8216. (org-read-date))))
  8217. (let* ((day (time-to-days (org-time-string-to-time date)))
  8218. (org-agenda-sticky-orig org-agenda-sticky)
  8219. (org-agenda-buffer-tmp-name (buffer-name))
  8220. (args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  8221. (0-arg (or current-prefix-arg (car args)))
  8222. (2-arg (nth 2 args))
  8223. (with-hour-p (nth 4 org-agenda-redo-command))
  8224. (newcmd (list 'org-agenda-list 0-arg date
  8225. (org-agenda-span-to-ndays
  8226. 2-arg (org-time-string-to-absolute date))
  8227. with-hour-p))
  8228. (newargs (cdr newcmd))
  8229. (inhibit-read-only t)
  8230. org-agenda-sticky)
  8231. (if (not (org-agenda-check-type t 'agenda))
  8232. (error "Not available in non-agenda views")
  8233. (add-text-properties (point-min) (point-max)
  8234. `(org-redo-cmd ,newcmd org-last-args ,newargs))
  8235. (org-agenda-redo)
  8236. (goto-char (point-min))
  8237. (while (not (or (= (or (get-text-property (point) 'day) 0) day)
  8238. (save-excursion (move-beginning-of-line 2) (eobp))))
  8239. (move-beginning-of-line 2))
  8240. (setq org-agenda-sticky org-agenda-sticky-orig
  8241. org-agenda-this-buffer-is-sticky org-agenda-sticky))))
  8242. (defun org-agenda-goto-today ()
  8243. "Go to today."
  8244. (interactive)
  8245. (org-agenda-check-type t 'agenda)
  8246. (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  8247. (curspan (nth 2 args))
  8248. (tdpos (text-property-any (point-min) (point-max) 'org-today t)))
  8249. (cond
  8250. (tdpos (goto-char tdpos))
  8251. ((eq org-agenda-type 'agenda)
  8252. (let* ((sd (org-agenda-compute-starting-span
  8253. (org-today) (or curspan org-agenda-span)))
  8254. (org-agenda-overriding-arguments args))
  8255. (setf (nth 1 org-agenda-overriding-arguments) sd)
  8256. (org-agenda-redo)
  8257. (org-agenda-find-same-or-today-or-agenda)))
  8258. (t (error "Cannot find today")))))
  8259. (defun org-agenda-find-same-or-today-or-agenda (&optional cnt)
  8260. (goto-char
  8261. (or (and cnt (text-property-any (point-min) (point-max) 'org-day-cnt cnt))
  8262. (text-property-any (point-min) (point-max) 'org-today t)
  8263. (text-property-any (point-min) (point-max) 'org-agenda-type 'agenda)
  8264. (and (get-text-property (min (1- (point-max)) (point)) 'org-series)
  8265. (org-agenda-backward-block))
  8266. (point-min))))
  8267. (defun org-agenda-backward-block ()
  8268. "Move backward by one agenda block."
  8269. (interactive)
  8270. (org-agenda-forward-block 'backward))
  8271. (defun org-agenda-forward-block (&optional backward)
  8272. "Move forward by one agenda block.
  8273. When optional argument BACKWARD is set, go backward."
  8274. (interactive)
  8275. (cond ((not (derived-mode-p 'org-agenda-mode))
  8276. (user-error
  8277. "Cannot execute this command outside of org-agenda-mode buffers"))
  8278. ((looking-at (if backward "\\`" "\\'"))
  8279. (message "Already at the %s block" (if backward "first" "last")))
  8280. (t (let ((_pos (prog1 (point)
  8281. (ignore-errors (if backward (backward-char 1)
  8282. (move-end-of-line 1)))))
  8283. (f (if backward
  8284. #'previous-single-property-change
  8285. #'next-single-property-change))
  8286. moved dest)
  8287. (while (and (setq dest (funcall
  8288. f (point) 'org-agenda-structural-header))
  8289. (not (get-text-property
  8290. (point) 'org-agenda-structural-header)))
  8291. (setq moved t)
  8292. (goto-char dest))
  8293. (if moved (move-beginning-of-line 1)
  8294. (goto-char (if backward (point-min) (point-max)))
  8295. (move-beginning-of-line 1)
  8296. (message "No %s block" (if backward "previous" "further")))))))
  8297. (defun org-agenda-later (arg)
  8298. "Go forward in time by the current span.
  8299. With prefix ARG, go forward that many times the current span."
  8300. (interactive "p")
  8301. (org-agenda-check-type t 'agenda)
  8302. (let* ((wstart (window-start))
  8303. (args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  8304. (span (or (nth 2 args) org-agenda-current-span))
  8305. (sd (or (nth 1 args) (org-get-at-bol 'day) org-starting-day))
  8306. (greg (calendar-gregorian-from-absolute sd))
  8307. (cnt (org-get-at-bol 'org-day-cnt))
  8308. greg2)
  8309. (cond
  8310. ((numberp span)
  8311. (setq sd (+ (* span arg) sd)))
  8312. ((eq span 'day)
  8313. (setq sd (+ arg sd)))
  8314. ((eq span 'week)
  8315. (setq sd (+ (* 7 arg) sd)))
  8316. ((eq span 'fortnight)
  8317. (setq sd (+ (* 14 arg) sd)))
  8318. ((eq span 'month)
  8319. (setq greg2 (list (+ (car greg) arg) (nth 1 greg) (nth 2 greg))
  8320. sd (calendar-absolute-from-gregorian greg2))
  8321. (setcar greg2 (1+ (car greg2))))
  8322. ((eq span 'year)
  8323. (setq greg2 (list (car greg) (nth 1 greg) (+ arg (nth 2 greg)))
  8324. sd (calendar-absolute-from-gregorian greg2))
  8325. (setcar (nthcdr 2 greg2) (1+ (nth 2 greg2))))
  8326. (t
  8327. (setq sd (+ (* span arg) sd))))
  8328. (let ((org-agenda-overriding-cmd
  8329. ;; `cmd' may have been set by `org-agenda-run-series' which
  8330. ;; uses `org-agenda-overriding-cmd' to decide whether
  8331. ;; overriding is allowed for `cmd'
  8332. (get-text-property (min (1- (point-max)) (point)) 'org-series-cmd))
  8333. (org-agenda-overriding-arguments
  8334. (list (car args) sd span)))
  8335. (org-agenda-redo)
  8336. (org-agenda-find-same-or-today-or-agenda cnt))
  8337. (set-window-start nil wstart)))
  8338. (defun org-agenda-earlier (arg)
  8339. "Go backward in time by the current span.
  8340. With prefix ARG, go backward that many times the current span."
  8341. (interactive "p")
  8342. (org-agenda-later (- arg)))
  8343. (defun org-agenda-view-mode-dispatch ()
  8344. "Call one of the view mode commands."
  8345. (interactive)
  8346. (org-unlogged-message
  8347. "View: [d]ay [w]eek for[t]night [m]onth [y]ear [SPC]reset [q]uit/abort
  8348. time[G]rid [[]inactive [f]ollow [l]og [L]og-all [c]lockcheck
  8349. [a]rch-trees [A]rch-files clock[R]eport include[D]iary [E]ntryText")
  8350. (pcase (read-char-exclusive)
  8351. (?\ (call-interactively 'org-agenda-reset-view))
  8352. (?d (call-interactively 'org-agenda-day-view))
  8353. (?w (call-interactively 'org-agenda-week-view))
  8354. (?t (call-interactively 'org-agenda-fortnight-view))
  8355. (?m (call-interactively 'org-agenda-month-view))
  8356. (?y (call-interactively 'org-agenda-year-view))
  8357. (?l (call-interactively 'org-agenda-log-mode))
  8358. (?L (org-agenda-log-mode '(4)))
  8359. (?c (org-agenda-log-mode 'clockcheck))
  8360. ((or ?F ?f) (call-interactively 'org-agenda-follow-mode))
  8361. (?a (call-interactively 'org-agenda-archives-mode))
  8362. (?A (org-agenda-archives-mode 'files))
  8363. ((or ?R ?r) (call-interactively 'org-agenda-clockreport-mode))
  8364. ((or ?E ?e) (call-interactively 'org-agenda-entry-text-mode))
  8365. (?G (call-interactively 'org-agenda-toggle-time-grid))
  8366. (?D (call-interactively 'org-agenda-toggle-diary))
  8367. (?\! (call-interactively 'org-agenda-toggle-deadlines))
  8368. (?\[ (let ((org-agenda-include-inactive-timestamps t))
  8369. (org-agenda-check-type t 'agenda)
  8370. (org-agenda-redo))
  8371. (message "Display now includes inactive timestamps as well"))
  8372. (?q (message "Abort"))
  8373. (key (user-error "Invalid key: %s" key))))
  8374. (defun org-agenda-reset-view ()
  8375. "Switch to default view for agenda."
  8376. (interactive)
  8377. (org-agenda-change-time-span org-agenda-span))
  8378. (defun org-agenda-day-view (&optional day-of-month)
  8379. "Switch to daily view for agenda.
  8380. With argument DAY-OF-MONTH, switch to that day of the month."
  8381. (interactive "P")
  8382. (org-agenda-change-time-span 'day day-of-month))
  8383. (defun org-agenda-week-view (&optional iso-week)
  8384. "Switch to weekly view for agenda.
  8385. With argument ISO-WEEK, switch to the corresponding ISO week.
  8386. If ISO-WEEK has more then 2 digits, only the last two encode
  8387. the week. Any digits before this encode a year. So 200712
  8388. means week 12 of year 2007. Years ranging from 70 years ago
  8389. to 30 years in the future can also be written as 2-digit years."
  8390. (interactive "P")
  8391. (org-agenda-change-time-span 'week iso-week))
  8392. (defun org-agenda-fortnight-view (&optional iso-week)
  8393. "Switch to fortnightly view for agenda.
  8394. With argument ISO-WEEK, switch to the corresponding ISO week.
  8395. If ISO-WEEK has more then 2 digits, only the last two encode
  8396. the week. Any digits before this encode a year. So 200712
  8397. means week 12 of year 2007. Years ranging from 70 years ago
  8398. to 30 years in the future can also be written as 2-digit years."
  8399. (interactive "P")
  8400. (org-agenda-change-time-span 'fortnight iso-week))
  8401. (defun org-agenda-month-view (&optional month)
  8402. "Switch to monthly view for agenda.
  8403. With argument MONTH, switch to that month. If MONTH has more
  8404. then 2 digits, only the last two encode the month. Any digits
  8405. before this encode a year. So 200712 means December year 2007.
  8406. Years ranging from 70 years ago to 30 years in the future can
  8407. also be written as 2-digit years."
  8408. (interactive "P")
  8409. (org-agenda-change-time-span 'month month))
  8410. (defun org-agenda-year-view (&optional year)
  8411. "Switch to yearly view for agenda.
  8412. With argument YEAR, switch to that year. Years ranging from 70
  8413. years ago to 30 years in the future can also be written as
  8414. 2-digit years."
  8415. (interactive "P")
  8416. (when year
  8417. (setq year (org-small-year-to-year year)))
  8418. (if (y-or-n-p "Are you sure you want to compute the agenda for an entire year? ")
  8419. (org-agenda-change-time-span 'year year)
  8420. (error "Abort")))
  8421. (defun org-agenda-change-time-span (span &optional n)
  8422. "Change the agenda view to SPAN.
  8423. SPAN may be `day', `week', `fortnight', `month', `year'."
  8424. (org-agenda-check-type t 'agenda)
  8425. (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  8426. (curspan (nth 2 args)))
  8427. (when (and (not n) (equal curspan span))
  8428. (error "Viewing span is already \"%s\"" span))
  8429. (let* ((sd (or (org-get-at-bol 'day)
  8430. (nth 1 args)
  8431. org-starting-day))
  8432. (sd (org-agenda-compute-starting-span sd span n))
  8433. (org-agenda-overriding-cmd
  8434. (get-text-property (min (1- (point-max)) (point)) 'org-series-cmd))
  8435. (org-agenda-overriding-arguments
  8436. (list (car args) sd span)))
  8437. (org-agenda-redo)
  8438. (org-agenda-find-same-or-today-or-agenda))
  8439. (org-agenda-set-mode-name)
  8440. (message "Switched to %s view" span)))
  8441. (defun org-agenda-compute-starting-span (sd span &optional n)
  8442. "Compute starting date for agenda.
  8443. SPAN may be `day', `week', `fortnight', `month', `year'. The return value
  8444. is a cons cell with the starting date and the number of days,
  8445. so that the date SD will be in that range."
  8446. (let* ((greg (calendar-gregorian-from-absolute sd))
  8447. ;; (dg (nth 1 greg))
  8448. (mg (car greg))
  8449. (yg (nth 2 greg)))
  8450. (cond
  8451. ((eq span 'day)
  8452. (when n
  8453. (setq sd (+ (calendar-absolute-from-gregorian
  8454. (list mg 1 yg))
  8455. n -1))))
  8456. ((or (eq span 'week) (eq span 'fortnight))
  8457. (let* ((nt (calendar-day-of-week
  8458. (calendar-gregorian-from-absolute sd)))
  8459. (d (if org-agenda-start-on-weekday
  8460. (- nt org-agenda-start-on-weekday)
  8461. 0))
  8462. y1)
  8463. (setq sd (- sd (+ (if (< d 0) 7 0) d)))
  8464. (when n
  8465. (require 'cal-iso)
  8466. (when (> n 99)
  8467. (setq y1 (org-small-year-to-year (/ n 100))
  8468. n (mod n 100)))
  8469. (setq sd
  8470. (calendar-iso-to-absolute
  8471. (list n 1
  8472. (or y1 (nth 2 (calendar-iso-from-absolute sd)))))))))
  8473. ((eq span 'month)
  8474. (let (y1)
  8475. (when (and n (> n 99))
  8476. (setq y1 (org-small-year-to-year (/ n 100))
  8477. n (mod n 100)))
  8478. (setq sd (calendar-absolute-from-gregorian
  8479. (list (or n mg) 1 (or y1 yg))))))
  8480. ((eq span 'year)
  8481. (setq sd (calendar-absolute-from-gregorian
  8482. (list 1 1 (or n yg))))))
  8483. sd))
  8484. (defun org-agenda-next-date-line (&optional arg)
  8485. "Jump to the next line indicating a date in agenda buffer."
  8486. (interactive "p")
  8487. (org-agenda-check-type t 'agenda)
  8488. (beginning-of-line 1)
  8489. ;; This does not work if user makes date format that starts with a blank
  8490. (when (looking-at-p "^\\S-") (forward-char 1))
  8491. (unless (re-search-forward "^\\S-" nil t arg)
  8492. (backward-char 1)
  8493. (error "No next date after this line in this buffer"))
  8494. (goto-char (match-beginning 0)))
  8495. (defun org-agenda-previous-date-line (&optional arg)
  8496. "Jump to the previous line indicating a date in agenda buffer."
  8497. (interactive "p")
  8498. (org-agenda-check-type t 'agenda)
  8499. (beginning-of-line 1)
  8500. (unless (re-search-backward "^\\S-" nil t arg)
  8501. (error "No previous date before this line in this buffer")))
  8502. ;; Initialize the highlight
  8503. (defvar org-hl (make-overlay 1 1))
  8504. (overlay-put org-hl 'face 'highlight)
  8505. (defun org-highlight (begin end &optional buffer)
  8506. "Highlight a region with overlay."
  8507. (move-overlay org-hl begin end (or buffer (current-buffer))))
  8508. (defun org-unhighlight ()
  8509. "Detach overlay INDEX."
  8510. (delete-overlay org-hl))
  8511. (defun org-unhighlight-once ()
  8512. "Remove the highlight from its position, and this function from the hook."
  8513. (remove-hook 'pre-command-hook #'org-unhighlight-once)
  8514. (org-unhighlight))
  8515. (defvar org-agenda-pre-follow-window-conf nil)
  8516. (defun org-agenda-follow-mode ()
  8517. "Toggle follow mode in an agenda buffer."
  8518. (interactive)
  8519. (unless org-agenda-follow-mode
  8520. (setq org-agenda-pre-follow-window-conf
  8521. (current-window-configuration)))
  8522. (setq org-agenda-follow-mode (not org-agenda-follow-mode))
  8523. (unless org-agenda-follow-mode
  8524. (set-window-configuration org-agenda-pre-follow-window-conf))
  8525. (org-agenda-set-mode-name)
  8526. (org-agenda-do-context-action)
  8527. (message "Follow mode is %s"
  8528. (if org-agenda-follow-mode "on" "off")))
  8529. (defun org-agenda-entry-text-mode (&optional arg)
  8530. "Toggle entry text mode in an agenda buffer."
  8531. (interactive "P")
  8532. (if (or org-agenda-tag-filter
  8533. org-agenda-category-filter
  8534. org-agenda-regexp-filter
  8535. org-agenda-top-headline-filter)
  8536. (user-error "Can't show entry text in filtered views")
  8537. (setq org-agenda-entry-text-mode (or (integerp arg)
  8538. (not org-agenda-entry-text-mode)))
  8539. (org-agenda-entry-text-hide)
  8540. (and org-agenda-entry-text-mode
  8541. (let ((org-agenda-entry-text-maxlines
  8542. (if (integerp arg) arg org-agenda-entry-text-maxlines)))
  8543. (org-agenda-entry-text-show)))
  8544. (org-agenda-set-mode-name)
  8545. (message "Entry text mode is %s%s"
  8546. (if org-agenda-entry-text-mode "on" "off")
  8547. (if (not org-agenda-entry-text-mode) ""
  8548. (format " (maximum number of lines is %d)"
  8549. (if (integerp arg) arg org-agenda-entry-text-maxlines))))))
  8550. (defun org-agenda-clockreport-mode ()
  8551. "Toggle clocktable mode in an agenda buffer."
  8552. (interactive)
  8553. (org-agenda-check-type t 'agenda)
  8554. (setq org-agenda-clockreport-mode (not org-agenda-clockreport-mode))
  8555. (org-agenda-set-mode-name)
  8556. (org-agenda-redo)
  8557. (message "Clocktable mode is %s"
  8558. (if org-agenda-clockreport-mode "on" "off")))
  8559. (defun org-agenda-log-mode (&optional special)
  8560. "Toggle log mode in an agenda buffer.
  8561. With argument SPECIAL, show all possible log items, not only the ones
  8562. configured in `org-agenda-log-mode-items'.
  8563. With a `\\[universal-argument] \\[universal-argument]' prefix, show *only* \
  8564. log items, nothing else."
  8565. (interactive "P")
  8566. (org-agenda-check-type t 'agenda)
  8567. (setq org-agenda-show-log
  8568. (cond
  8569. ((equal special '(16)) 'only)
  8570. ((eq special 'clockcheck)
  8571. (if (eq org-agenda-show-log 'clockcheck)
  8572. nil 'clockcheck))
  8573. (special '(closed clock state))
  8574. (t (not org-agenda-show-log))))
  8575. (org-agenda-set-mode-name)
  8576. (org-agenda-redo)
  8577. (message "Log mode is %s" (if org-agenda-show-log "on" "off")))
  8578. (defun org-agenda-archives-mode (&optional with-files)
  8579. "Toggle inclusion of items in trees marked with :ARCHIVE:.
  8580. When called with a prefix argument, include all archive files as well."
  8581. (interactive "P")
  8582. (setq org-agenda-archives-mode
  8583. (cond ((and with-files (eq org-agenda-archives-mode t)) nil)
  8584. (with-files t)
  8585. (org-agenda-archives-mode nil)
  8586. (t 'trees)))
  8587. (org-agenda-set-mode-name)
  8588. (org-agenda-redo)
  8589. (message
  8590. "%s"
  8591. (cond
  8592. ((eq org-agenda-archives-mode nil)
  8593. "No archives are included")
  8594. ((eq org-agenda-archives-mode 'trees)
  8595. (format "Trees with :%s: tag are included" org-archive-tag))
  8596. ((eq org-agenda-archives-mode t)
  8597. (format "Trees with :%s: tag and all active archive files are included"
  8598. org-archive-tag)))))
  8599. (defun org-agenda-toggle-diary ()
  8600. "Toggle diary inclusion in an agenda buffer."
  8601. (interactive)
  8602. (org-agenda-check-type t 'agenda)
  8603. (setq org-agenda-include-diary (not org-agenda-include-diary))
  8604. (org-agenda-redo)
  8605. (org-agenda-set-mode-name)
  8606. (message "Diary inclusion turned %s"
  8607. (if org-agenda-include-diary "on" "off")))
  8608. (defun org-agenda-toggle-deadlines ()
  8609. "Toggle inclusion of entries with a deadline in an agenda buffer."
  8610. (interactive)
  8611. (org-agenda-check-type t 'agenda)
  8612. (setq org-agenda-include-deadlines (not org-agenda-include-deadlines))
  8613. (org-agenda-redo)
  8614. (org-agenda-set-mode-name)
  8615. (message "Deadlines inclusion turned %s"
  8616. (if org-agenda-include-deadlines "on" "off")))
  8617. (defun org-agenda-toggle-time-grid ()
  8618. "Toggle time grid in an agenda buffer."
  8619. (interactive)
  8620. (org-agenda-check-type t 'agenda)
  8621. (setq org-agenda-use-time-grid (not org-agenda-use-time-grid))
  8622. (org-agenda-redo)
  8623. (org-agenda-set-mode-name)
  8624. (message "Time-grid turned %s"
  8625. (if org-agenda-use-time-grid "on" "off")))
  8626. (defun org-agenda-set-mode-name ()
  8627. "Set the mode name to indicate all the small mode settings."
  8628. (setq mode-name
  8629. (list "Org-Agenda"
  8630. (if (get 'org-agenda-files 'org-restrict) " []" "")
  8631. " "
  8632. '(:eval (org-agenda-span-name org-agenda-current-span))
  8633. (if org-agenda-follow-mode " Follow" "")
  8634. (if org-agenda-entry-text-mode " ETxt" "")
  8635. (if org-agenda-include-diary " Diary" "")
  8636. (if org-agenda-include-deadlines " Ddl" "")
  8637. (if org-agenda-use-time-grid " Grid" "")
  8638. (if (and (boundp 'org-habit-show-habits)
  8639. org-habit-show-habits)
  8640. " Habit" "")
  8641. (cond
  8642. ((consp org-agenda-show-log) " LogAll")
  8643. ((eq org-agenda-show-log 'clockcheck) " ClkCk")
  8644. (org-agenda-show-log " Log")
  8645. (t ""))
  8646. (if (org-agenda-filter-any) " " "")
  8647. (if (or org-agenda-category-filter
  8648. (get 'org-agenda-category-filter :preset-filter))
  8649. '(:eval (propertize
  8650. (concat "["
  8651. (mapconcat
  8652. #'identity
  8653. (append
  8654. (get 'org-agenda-category-filter :preset-filter)
  8655. org-agenda-category-filter)
  8656. "")
  8657. "]")
  8658. 'face 'org-agenda-filter-category
  8659. 'help-echo "Category used in filtering"))
  8660. "")
  8661. (if (or org-agenda-tag-filter
  8662. (get 'org-agenda-tag-filter :preset-filter))
  8663. '(:eval (propertize
  8664. (concat (mapconcat
  8665. #'identity
  8666. (append
  8667. (get 'org-agenda-tag-filter :preset-filter)
  8668. org-agenda-tag-filter)
  8669. ""))
  8670. 'face 'org-agenda-filter-tags
  8671. 'help-echo "Tags used in filtering"))
  8672. "")
  8673. (if (or org-agenda-effort-filter
  8674. (get 'org-agenda-effort-filter :preset-filter))
  8675. '(:eval (propertize
  8676. (concat (mapconcat
  8677. #'identity
  8678. (append
  8679. (get 'org-agenda-effort-filter :preset-filter)
  8680. org-agenda-effort-filter)
  8681. ""))
  8682. 'face 'org-agenda-filter-effort
  8683. 'help-echo "Effort conditions used in filtering"))
  8684. "")
  8685. (if (or org-agenda-regexp-filter
  8686. (get 'org-agenda-regexp-filter :preset-filter))
  8687. '(:eval (propertize
  8688. (concat (mapconcat
  8689. (lambda (x) (concat (substring x 0 1) "/" (substring x 1) "/"))
  8690. (append
  8691. (get 'org-agenda-regexp-filter :preset-filter)
  8692. org-agenda-regexp-filter)
  8693. ""))
  8694. 'face 'org-agenda-filter-regexp
  8695. 'help-echo "Regexp used in filtering"))
  8696. "")
  8697. (if org-agenda-archives-mode
  8698. (if (eq org-agenda-archives-mode t)
  8699. " Archives"
  8700. (format " :%s:" org-archive-tag))
  8701. "")
  8702. (if org-agenda-clockreport-mode " Clock" "")))
  8703. (force-mode-line-update))
  8704. (defun org-agenda-update-agenda-type ()
  8705. "Update the agenda type after each command."
  8706. (setq org-agenda-type
  8707. (or (get-text-property (point) 'org-agenda-type)
  8708. (get-text-property (max (point-min) (1- (point))) 'org-agenda-type))))
  8709. (defun org-agenda-next-line ()
  8710. "Move cursor to the next line, and show if follow mode is active."
  8711. (interactive)
  8712. (call-interactively 'next-line)
  8713. (org-agenda-do-context-action))
  8714. (defun org-agenda-previous-line ()
  8715. "Move cursor to the previous line, and show if follow-mode is active."
  8716. (interactive)
  8717. (call-interactively 'previous-line)
  8718. (org-agenda-do-context-action))
  8719. (defun org-agenda-next-item (n)
  8720. "Move cursor to next agenda item."
  8721. (interactive "p")
  8722. (let ((col (current-column)))
  8723. (dotimes (_ n)
  8724. (when (next-single-property-change (point-at-eol) 'org-marker)
  8725. (move-end-of-line 1)
  8726. (goto-char (next-single-property-change (point) 'org-marker))))
  8727. (org-move-to-column col))
  8728. (org-agenda-do-context-action))
  8729. (defun org-agenda-previous-item (n)
  8730. "Move cursor to next agenda item."
  8731. (interactive "p")
  8732. (dotimes (_ n)
  8733. (let ((col (current-column))
  8734. (goto (save-excursion
  8735. (move-end-of-line 0)
  8736. (previous-single-property-change (point) 'org-marker))))
  8737. (when goto (goto-char goto))
  8738. (org-move-to-column col)))
  8739. (org-agenda-do-context-action))
  8740. (defun org-agenda-do-context-action ()
  8741. "Show outline path and, maybe, follow mode window."
  8742. (let ((m (org-get-at-bol 'org-marker)))
  8743. (when (and (markerp m) (marker-buffer m))
  8744. (and org-agenda-follow-mode
  8745. (if org-agenda-follow-indirect
  8746. (org-agenda-tree-to-indirect-buffer nil)
  8747. (org-agenda-show)))
  8748. (and org-agenda-show-outline-path
  8749. (org-with-point-at m (org-display-outline-path t))))))
  8750. (defun org-agenda-show-tags ()
  8751. "Show the tags applicable to the current item."
  8752. (interactive)
  8753. (let* ((tags (org-get-at-bol 'tags)))
  8754. (if tags
  8755. (message "Tags are :%s:"
  8756. (org-no-properties (mapconcat #'identity tags ":")))
  8757. (message "No tags associated with this line"))))
  8758. (defun org-agenda-goto (&optional highlight)
  8759. "Go to the entry at point in the corresponding Org file."
  8760. (interactive)
  8761. (let* ((marker (or (org-get-at-bol 'org-marker)
  8762. (org-agenda-error)))
  8763. (buffer (marker-buffer marker))
  8764. (pos (marker-position marker)))
  8765. ;; FIXME: use `org-switch-to-buffer-other-window'?
  8766. (switch-to-buffer-other-window buffer)
  8767. (widen)
  8768. (push-mark)
  8769. (goto-char pos)
  8770. (when (derived-mode-p 'org-mode)
  8771. (org-show-context 'agenda)
  8772. (recenter (/ (window-height) 2))
  8773. (org-back-to-heading t)
  8774. (let ((case-fold-search nil))
  8775. (when (re-search-forward org-complex-heading-regexp nil t)
  8776. (goto-char (match-beginning 4)))))
  8777. (run-hooks 'org-agenda-after-show-hook)
  8778. (and highlight (org-highlight (point-at-bol) (point-at-eol)))))
  8779. (defvar org-agenda-after-show-hook nil
  8780. "Normal hook run after an item has been shown from the agenda.
  8781. Point is in the buffer where the item originated.")
  8782. ;; Defined later in org-agenda.el
  8783. (defvar org-agenda-loop-over-headlines-in-active-region nil)
  8784. (defun org-agenda-do-in-region (beg end cmd &optional arg force-arg delete)
  8785. "Between region BEG and END, call agenda command CMD.
  8786. When optional argument ARG is non-nil or FORCE-ARG is t, pass
  8787. ARG to CMD. When optional argument DELETE is non-nil, assume CMD
  8788. deletes the agenda entry and don't move to the next entry."
  8789. (save-excursion
  8790. (goto-char beg)
  8791. (let ((mend (move-marker (make-marker) end))
  8792. (all (eq org-agenda-loop-over-headlines-in-active-region t))
  8793. (match (and (stringp org-agenda-loop-over-headlines-in-active-region)
  8794. org-agenda-loop-over-headlines-in-active-region))
  8795. (level (and (eq org-agenda-loop-over-headlines-in-active-region 'start-level)
  8796. (org-get-at-bol 'level))))
  8797. (while (< (point) mend)
  8798. (let ((ov (make-overlay (point) (point-at-eol))))
  8799. (if (not (or all
  8800. (and match (looking-at-p match))
  8801. (eq level (org-get-at-bol 'level))))
  8802. (org-agenda-next-item 1)
  8803. (overlay-put ov 'face 'region)
  8804. (if (or arg force-arg) (funcall cmd arg) (funcall cmd))
  8805. (when (not delete) (org-agenda-next-item 1))
  8806. (delete-overlay ov)))))))
  8807. ;; org-agenda-[schedule,deadline,date-prompt,todo,[toggle]archive*,
  8808. ;; kill,set-property,set-effort] commands may loop over agenda
  8809. ;; entries. Commands `org-agenda-set-tags' and `org-agenda-bulk-mark'
  8810. ;; use their own mechanisms on active regions.
  8811. (defmacro org-agenda-maybe-loop (cmd arg force-arg delete &rest body)
  8812. "Maybe loop over agenda entries and perform CMD.
  8813. Pass ARG, FORCE-ARG, DELETE and BODY to `org-agenda-do-in-region'."
  8814. (declare (debug t))
  8815. `(if (and (called-interactively-p 'any)
  8816. org-agenda-loop-over-headlines-in-active-region
  8817. (org-region-active-p))
  8818. (org-agenda-do-in-region
  8819. (region-beginning) (region-end) ,cmd ,arg ,force-arg ,delete)
  8820. ,@body))
  8821. (defun org-agenda-kill ()
  8822. "Kill the entry or subtree belonging to the current agenda entry."
  8823. (interactive)
  8824. (or (eq major-mode 'org-agenda-mode) (user-error "Not in agenda"))
  8825. (org-agenda-maybe-loop
  8826. #'org-agenda-kill nil nil t
  8827. (let* ((bufname-orig (buffer-name))
  8828. (marker (or (org-get-at-bol 'org-marker)
  8829. (org-agenda-error)))
  8830. (buffer (marker-buffer marker))
  8831. (pos (marker-position marker))
  8832. (type (org-get-at-bol 'type))
  8833. dbeg dend (n 0))
  8834. (org-with-remote-undo buffer
  8835. (with-current-buffer buffer
  8836. (save-excursion
  8837. (goto-char pos)
  8838. (if (and (derived-mode-p 'org-mode) (not (member type '("sexp"))))
  8839. (setq dbeg (progn (org-back-to-heading t) (point))
  8840. dend (org-end-of-subtree t t))
  8841. (setq dbeg (point-at-bol)
  8842. dend (min (point-max) (1+ (point-at-eol)))))
  8843. (goto-char dbeg)
  8844. (while (re-search-forward "^[ \t]*\\S-" dend t) (setq n (1+ n)))))
  8845. (when (or (eq t org-agenda-confirm-kill)
  8846. (and (numberp org-agenda-confirm-kill)
  8847. (> n org-agenda-confirm-kill)))
  8848. (let ((win-conf (current-window-configuration)))
  8849. (unwind-protect
  8850. (and
  8851. (prog2
  8852. (org-agenda-tree-to-indirect-buffer nil)
  8853. (not (y-or-n-p
  8854. (format "Delete entry with %d lines in buffer \"%s\"? "
  8855. n (buffer-name buffer))))
  8856. (kill-buffer org-last-indirect-buffer))
  8857. (error "Abort"))
  8858. (set-window-configuration win-conf))))
  8859. (let ((org-agenda-buffer-name bufname-orig))
  8860. (org-remove-subtree-entries-from-agenda buffer dbeg dend))
  8861. (with-current-buffer buffer (delete-region dbeg dend))
  8862. (message "Agenda item and source killed")))))
  8863. (defvar org-archive-default-command) ; defined in org-archive.el
  8864. (defun org-agenda-archive-default ()
  8865. "Archive the entry or subtree belonging to the current agenda entry."
  8866. (interactive)
  8867. (require 'org-archive)
  8868. (funcall-interactively
  8869. #'org-agenda-archive-with org-archive-default-command))
  8870. (defun org-agenda-archive-default-with-confirmation ()
  8871. "Archive the entry or subtree belonging to the current agenda entry."
  8872. (interactive)
  8873. (require 'org-archive)
  8874. (funcall-interactively
  8875. #'org-agenda-archive-with org-archive-default-command 'confirm))
  8876. (defun org-agenda-archive ()
  8877. "Archive the entry or subtree belonging to the current agenda entry."
  8878. (interactive)
  8879. (funcall-interactively
  8880. #'org-agenda-archive-with 'org-archive-subtree))
  8881. (defun org-agenda-archive-to-archive-sibling ()
  8882. "Move the entry to the archive sibling."
  8883. (interactive)
  8884. (funcall-interactively
  8885. #'org-agenda-archive-with 'org-archive-to-archive-sibling))
  8886. (defvar org-archive-from-agenda)
  8887. (defun org-agenda-archive-with (cmd &optional confirm)
  8888. "Move the entry to the archive sibling."
  8889. (interactive)
  8890. (or (eq major-mode 'org-agenda-mode) (user-error "Not in agenda"))
  8891. (org-agenda-maybe-loop
  8892. #'org-agenda-archive-with cmd nil t
  8893. (let* ((bufname-orig (buffer-name))
  8894. (marker (or (org-get-at-bol 'org-marker)
  8895. (org-agenda-error)))
  8896. (buffer (marker-buffer marker))
  8897. (pos (marker-position marker)))
  8898. (org-with-remote-undo buffer
  8899. (with-current-buffer buffer
  8900. (if (derived-mode-p 'org-mode)
  8901. (if (and confirm
  8902. (not (y-or-n-p "Archive this subtree or entry? ")))
  8903. (error "Abort")
  8904. (save-window-excursion
  8905. (goto-char pos)
  8906. (let ((org-agenda-buffer-name bufname-orig))
  8907. (org-remove-subtree-entries-from-agenda))
  8908. (org-back-to-heading t)
  8909. (let ((org-archive-from-agenda t))
  8910. (funcall cmd))))
  8911. (error "Archiving works only in Org files")))))))
  8912. (defun org-remove-subtree-entries-from-agenda (&optional buf beg end)
  8913. "Remove all lines in the agenda that correspond to a given subtree.
  8914. The subtree is the one in buffer BUF, starting at BEG and ending at END.
  8915. If this information is not given, the function uses the tree at point."
  8916. (let ((buf (or buf (current-buffer))) m p)
  8917. (save-excursion
  8918. (unless (and beg end)
  8919. (org-back-to-heading t)
  8920. (setq beg (point))
  8921. (org-end-of-subtree t)
  8922. (setq end (point)))
  8923. (set-buffer (get-buffer org-agenda-buffer-name))
  8924. (save-excursion
  8925. (goto-char (point-max))
  8926. (beginning-of-line 1)
  8927. (while (not (bobp))
  8928. (when (and (setq m (org-get-at-bol 'org-marker))
  8929. (equal buf (marker-buffer m))
  8930. (setq p (marker-position m))
  8931. (>= p beg)
  8932. (< p end))
  8933. (let ((inhibit-read-only t))
  8934. (delete-region (point-at-bol) (1+ (point-at-eol)))))
  8935. (beginning-of-line 0))))))
  8936. (defun org-agenda-refile (&optional goto rfloc no-update)
  8937. "Refile the item at point.
  8938. When called with `\\[universal-argument] \\[universal-argument]', \
  8939. go to the location of the last
  8940. refiled item.
  8941. When called with `\\[universal-argument] \\[universal-argument] \
  8942. \\[universal-argument]' prefix or when GOTO is 0, clear
  8943. the refile cache.
  8944. RFLOC can be a refile location obtained in a different way.
  8945. When NO-UPDATE is non-nil, don't redo the agenda buffer."
  8946. (interactive "P")
  8947. (cond
  8948. ((member goto '(0 (64)))
  8949. (org-refile-cache-clear))
  8950. ((equal goto '(16))
  8951. (org-refile-goto-last-stored))
  8952. (t
  8953. (let* ((buffer-orig (buffer-name))
  8954. (marker (or (org-get-at-bol 'org-hd-marker)
  8955. (org-agenda-error)))
  8956. (buffer (marker-buffer marker))
  8957. ;; (pos (marker-position marker))
  8958. (rfloc (or rfloc
  8959. (org-refile-get-location
  8960. (if goto "Goto" "Refile to") buffer
  8961. org-refile-allow-creating-parent-nodes))))
  8962. (with-current-buffer buffer
  8963. (org-with-wide-buffer
  8964. (goto-char marker)
  8965. (let ((org-agenda-buffer-name buffer-orig))
  8966. (org-remove-subtree-entries-from-agenda))
  8967. (org-refile goto buffer rfloc))))
  8968. (unless no-update (org-agenda-redo)))))
  8969. (defun org-agenda-open-link (&optional arg)
  8970. "Open the link(s) in the current entry, if any.
  8971. This looks for a link in the displayed line in the agenda.
  8972. It also looks at the text of the entry itself."
  8973. (interactive "P")
  8974. (let* ((marker (or (org-get-at-bol 'org-hd-marker)
  8975. (org-get-at-bol 'org-marker)))
  8976. (buffer (and marker (marker-buffer marker)))
  8977. (prefix (buffer-substring (point-at-bol) (point-at-eol)))
  8978. (lkall (and buffer (org-offer-links-in-entry
  8979. buffer marker arg prefix)))
  8980. (lk0 (car lkall))
  8981. (lk (if (stringp lk0) (list lk0) lk0))
  8982. (lkend (cdr lkall))
  8983. trg)
  8984. (cond
  8985. ((and buffer lk)
  8986. (mapcar (lambda(l)
  8987. (with-current-buffer buffer
  8988. (setq trg (and (string-match org-link-bracket-re l)
  8989. (match-string 1 l)))
  8990. (if (or (not trg) (string-match org-link-any-re trg))
  8991. ;; Don't use `org-with-wide-buffer' here as
  8992. ;; opening the link may result in moving the point
  8993. (save-restriction
  8994. (widen)
  8995. (goto-char marker)
  8996. (when (search-forward l nil lkend)
  8997. (goto-char (match-beginning 0))
  8998. (org-open-at-point)))
  8999. ;; This is an internal link, widen the buffer
  9000. ;; FIXME: use `org-switch-to-buffer-other-window'?
  9001. (switch-to-buffer-other-window buffer)
  9002. (widen)
  9003. (goto-char marker)
  9004. (when (search-forward l nil lkend)
  9005. (goto-char (match-beginning 0))
  9006. (org-open-at-point)))))
  9007. lk))
  9008. ((or (org-in-regexp (concat "\\(" org-link-bracket-re "\\)"))
  9009. (save-excursion
  9010. (beginning-of-line 1)
  9011. (looking-at (concat ".*?\\(" org-link-bracket-re "\\)"))))
  9012. (org-link-open-from-string (match-string 1)))
  9013. (t (message "No link to open here")))))
  9014. (defun org-agenda-copy-local-variable (var)
  9015. "Get a variable from a referenced buffer and install it here."
  9016. (let ((m (org-get-at-bol 'org-marker)))
  9017. (when (and m (buffer-live-p (marker-buffer m)))
  9018. (set (make-local-variable var)
  9019. (with-current-buffer (marker-buffer m)
  9020. (symbol-value var))))))
  9021. (defun org-agenda-switch-to (&optional delete-other-windows)
  9022. "Go to the Org mode file which contains the item at point.
  9023. When optional argument DELETE-OTHER-WINDOWS is non-nil, the
  9024. displayed Org file fills the frame."
  9025. (interactive)
  9026. (if (and org-return-follows-link
  9027. (not (org-get-at-bol 'org-marker))
  9028. (org-in-regexp org-link-bracket-re))
  9029. (org-link-open-from-string (match-string 0))
  9030. (let* ((marker (or (org-get-at-bol 'org-marker)
  9031. (org-agenda-error)))
  9032. (buffer (marker-buffer marker))
  9033. (pos (marker-position marker)))
  9034. (unless buffer (user-error "Trying to switch to non-existent buffer"))
  9035. (pop-to-buffer-same-window buffer)
  9036. (when delete-other-windows (delete-other-windows))
  9037. (widen)
  9038. (goto-char pos)
  9039. (when (derived-mode-p 'org-mode)
  9040. (org-show-context 'agenda)
  9041. (run-hooks 'org-agenda-after-show-hook)))))
  9042. (defun org-agenda-goto-mouse (ev)
  9043. "Go to the Org file which contains the item at the mouse click."
  9044. (interactive "e")
  9045. (mouse-set-point ev)
  9046. (org-agenda-goto))
  9047. (defun org-agenda-show (&optional full-entry)
  9048. "Display the Org file which contains the item at point.
  9049. With prefix argument FULL-ENTRY, make the entire entry visible
  9050. if it was hidden in the outline."
  9051. (interactive "P")
  9052. (let ((win (selected-window)))
  9053. (org-agenda-goto t)
  9054. (when full-entry (org-show-entry))
  9055. (select-window win)))
  9056. (defvar org-agenda-show-window nil)
  9057. (defun org-agenda-show-and-scroll-up (&optional arg)
  9058. "Display the Org file which contains the item at point.
  9059. When called repeatedly, scroll the window that is displaying the buffer.
  9060. With a `\\[universal-argument]' prefix argument, display the item, but \
  9061. fold drawers."
  9062. (interactive "P")
  9063. (let ((win (selected-window)))
  9064. (if (and (window-live-p org-agenda-show-window)
  9065. (eq this-command last-command))
  9066. (progn
  9067. (select-window org-agenda-show-window)
  9068. (ignore-errors (scroll-up)))
  9069. (org-agenda-goto t)
  9070. (org-show-entry)
  9071. (if arg (org-cycle-hide-drawers 'children)
  9072. (org-with-wide-buffer
  9073. (narrow-to-region (org-entry-beginning-position)
  9074. (org-entry-end-position))
  9075. (org-show-all '(drawers))))
  9076. (setq org-agenda-show-window (selected-window)))
  9077. (select-window win)))
  9078. (defun org-agenda-show-scroll-down ()
  9079. "Scroll down the window showing the agenda."
  9080. (interactive)
  9081. (let ((win (selected-window)))
  9082. (when (window-live-p org-agenda-show-window)
  9083. (select-window org-agenda-show-window)
  9084. (ignore-errors (scroll-down))
  9085. (select-window win))))
  9086. (defun org-agenda-show-1 (&optional more)
  9087. "Display the Org file which contains the item at point.
  9088. The prefix arg selects the amount of information to display:
  9089. 0 hide the subtree
  9090. 1 just show the entry according to defaults.
  9091. 2 show the children view
  9092. 3 show the subtree view
  9093. 4 show the entire subtree and any drawers
  9094. With prefix argument FULL-ENTRY, make the entire entry visible
  9095. if it was hidden in the outline."
  9096. (interactive "p")
  9097. (let ((win (selected-window)))
  9098. (org-agenda-goto t)
  9099. (org-back-to-heading)
  9100. (set-window-start (selected-window) (point-at-bol))
  9101. (cond
  9102. ((= more 0)
  9103. (org-flag-subtree t)
  9104. (save-excursion
  9105. (org-back-to-heading)
  9106. (run-hook-with-args 'org-cycle-hook 'folded))
  9107. (message "Remote: FOLDED"))
  9108. ((and (called-interactively-p 'any) (= more 1))
  9109. (message "Remote: show with default settings"))
  9110. ((= more 2)
  9111. (outline-show-entry)
  9112. (org-show-children)
  9113. (save-excursion
  9114. (org-back-to-heading)
  9115. (run-hook-with-args 'org-cycle-hook 'children))
  9116. (message "Remote: CHILDREN"))
  9117. ((= more 3)
  9118. (outline-show-subtree)
  9119. (save-excursion
  9120. (org-back-to-heading)
  9121. (run-hook-with-args 'org-cycle-hook 'subtree))
  9122. (message "Remote: SUBTREE"))
  9123. ((> more 3)
  9124. (outline-show-subtree)
  9125. (message "Remote: SUBTREE AND ALL DRAWERS")))
  9126. (select-window win)))
  9127. (defvar org-agenda-cycle-counter nil)
  9128. (defun org-agenda-cycle-show (&optional n)
  9129. "Show the current entry in another window, with default settings.
  9130. Default settings are taken from `org-show-context-detail'. When
  9131. use repeatedly in immediate succession, the remote entry will
  9132. cycle through visibility
  9133. children -> subtree -> folded
  9134. When called with a numeric prefix arg, that arg will be passed through to
  9135. `org-agenda-show-1'. For the interpretation of that argument, see the
  9136. docstring of `org-agenda-show-1'."
  9137. (interactive "P")
  9138. (if (integerp n)
  9139. (setq org-agenda-cycle-counter n)
  9140. (if (not (eq last-command this-command))
  9141. (setq org-agenda-cycle-counter 1)
  9142. (if (equal org-agenda-cycle-counter 0)
  9143. (setq org-agenda-cycle-counter 2)
  9144. (setq org-agenda-cycle-counter (1+ org-agenda-cycle-counter))
  9145. (when (> org-agenda-cycle-counter 3)
  9146. (setq org-agenda-cycle-counter 0)))))
  9147. (org-agenda-show-1 org-agenda-cycle-counter))
  9148. (defun org-agenda-recenter (arg)
  9149. "Display the Org file which contains the item at point and recenter."
  9150. (interactive "P")
  9151. (let ((win (selected-window)))
  9152. (org-agenda-goto t)
  9153. (recenter arg)
  9154. (select-window win)))
  9155. (defun org-agenda-show-mouse (ev)
  9156. "Display the Org file which contains the item at the mouse click."
  9157. (interactive "e")
  9158. (mouse-set-point ev)
  9159. (org-agenda-show))
  9160. (defun org-agenda-check-no-diary ()
  9161. "Check if the entry is a diary link and abort if yes."
  9162. (when (org-get-at-bol 'org-agenda-diary-link)
  9163. (org-agenda-error)))
  9164. (defun org-agenda-error ()
  9165. "Throw an error when a command is not allowed in the agenda."
  9166. (user-error "Command not allowed in this line"))
  9167. (defun org-agenda-tree-to-indirect-buffer (arg)
  9168. "Show the subtree corresponding to the current entry in an indirect buffer.
  9169. This calls the command `org-tree-to-indirect-buffer' from the original buffer.
  9170. With a numerical prefix ARG, go up to this level and then take that tree.
  9171. With a negative numeric ARG, go up by this number of levels.
  9172. With a `\\[universal-argument]' prefix, make a separate frame for this tree, \
  9173. i.e. don't use
  9174. the dedicated frame."
  9175. (interactive "P")
  9176. (if current-prefix-arg
  9177. (org-agenda-do-tree-to-indirect-buffer arg)
  9178. (let ((agenda-buffer (buffer-name))
  9179. (agenda-window (selected-window))
  9180. (indirect-window
  9181. (and org-last-indirect-buffer
  9182. (get-buffer-window org-last-indirect-buffer))))
  9183. (save-window-excursion (org-agenda-do-tree-to-indirect-buffer arg))
  9184. (unless (or (eq org-indirect-buffer-display 'new-frame)
  9185. (eq org-indirect-buffer-display 'dedicated-frame))
  9186. (unwind-protect
  9187. (unless (and indirect-window (window-live-p indirect-window))
  9188. (setq indirect-window (split-window agenda-window)))
  9189. (and indirect-window (select-window indirect-window))
  9190. (switch-to-buffer org-last-indirect-buffer :norecord)
  9191. (fit-window-to-buffer indirect-window)))
  9192. (select-window (get-buffer-window agenda-buffer))
  9193. (setq org-agenda-last-indirect-buffer org-last-indirect-buffer))))
  9194. (defun org-agenda-do-tree-to-indirect-buffer (arg)
  9195. "Same as `org-agenda-tree-to-indirect-buffer' without saving window."
  9196. (org-agenda-check-no-diary)
  9197. (let* ((marker (or (org-get-at-bol 'org-marker)
  9198. (org-agenda-error)))
  9199. (buffer (marker-buffer marker))
  9200. (pos (marker-position marker)))
  9201. (with-current-buffer buffer
  9202. (save-excursion
  9203. (goto-char pos)
  9204. (org-tree-to-indirect-buffer arg)))))
  9205. (defvar org-last-heading-marker (make-marker)
  9206. "Marker pointing to the headline that last changed its TODO state
  9207. by a remote command from the agenda.")
  9208. (defun org-agenda-todo-nextset ()
  9209. "Switch TODO entry to next sequence."
  9210. (interactive)
  9211. (org-agenda-todo 'nextset))
  9212. (defun org-agenda-todo-previousset ()
  9213. "Switch TODO entry to previous sequence."
  9214. (interactive)
  9215. (org-agenda-todo 'previousset))
  9216. (defvar org-agenda-headline-snapshot-before-repeat)
  9217. (defun org-agenda-todo (&optional arg)
  9218. "Cycle TODO state of line at point, also in Org file.
  9219. This changes the line at point, all other lines in the agenda referring to
  9220. the same tree node, and the headline of the tree node in the Org file."
  9221. (interactive "P")
  9222. (org-agenda-check-no-diary)
  9223. (org-agenda-maybe-loop
  9224. #'org-agenda-todo arg nil nil
  9225. (let* ((col (current-column))
  9226. (marker (or (org-get-at-bol 'org-marker)
  9227. (org-agenda-error)))
  9228. (buffer (marker-buffer marker))
  9229. (pos (marker-position marker))
  9230. (hdmarker (org-get-at-bol 'org-hd-marker))
  9231. (todayp (org-agenda-today-p (org-get-at-bol 'day)))
  9232. (inhibit-read-only t)
  9233. org-loop-over-headlines-in-active-region
  9234. org-agenda-headline-snapshot-before-repeat newhead just-one)
  9235. (org-with-remote-undo buffer
  9236. (with-current-buffer buffer
  9237. (widen)
  9238. (goto-char pos)
  9239. (org-show-context 'agenda)
  9240. (let ((current-prefix-arg arg))
  9241. (call-interactively 'org-todo)
  9242. ;; Make sure that log is recorded in current undo.
  9243. (when (and org-log-setup
  9244. (not (eq org-log-note-how 'note)))
  9245. (org-add-log-note)))
  9246. (and (bolp) (forward-char 1))
  9247. (setq newhead (org-get-heading))
  9248. (when (and org-agenda-headline-snapshot-before-repeat
  9249. (not (equal org-agenda-headline-snapshot-before-repeat
  9250. newhead))
  9251. todayp)
  9252. (setq newhead org-agenda-headline-snapshot-before-repeat
  9253. just-one t))
  9254. (save-excursion
  9255. (org-back-to-heading)
  9256. (move-marker org-last-heading-marker (point))))
  9257. (beginning-of-line 1)
  9258. (save-window-excursion
  9259. (org-agenda-change-all-lines newhead hdmarker 'fixface just-one))
  9260. (when (bound-and-true-p org-clock-out-when-done)
  9261. (string-match (concat "^" (regexp-opt org-done-keywords-for-agenda))
  9262. newhead)
  9263. (org-agenda-unmark-clocking-task))
  9264. (org-move-to-column col)
  9265. (org-agenda-mark-clocking-task)))))
  9266. (defun org-agenda-add-note (&optional _arg)
  9267. "Add a time-stamped note to the entry at point."
  9268. (interactive) ;; "P"
  9269. (org-agenda-check-no-diary)
  9270. (let* ((marker (or (org-get-at-bol 'org-marker)
  9271. (org-agenda-error)))
  9272. (buffer (marker-buffer marker))
  9273. (pos (marker-position marker))
  9274. (_hdmarker (org-get-at-bol 'org-hd-marker))
  9275. (inhibit-read-only t))
  9276. (with-current-buffer buffer
  9277. (widen)
  9278. (goto-char pos)
  9279. (org-show-context 'agenda)
  9280. (org-add-note))))
  9281. (defun org-agenda-change-all-lines (newhead hdmarker
  9282. &optional fixface just-this)
  9283. "Change all lines in the agenda buffer which match HDMARKER.
  9284. The new content of the line will be NEWHEAD (as modified by
  9285. `org-agenda-format-item'). HDMARKER is checked with
  9286. `equal' against all `org-hd-marker' text properties in the file.
  9287. If FIXFACE is non-nil, the face of each item is modified according to
  9288. the new TODO state.
  9289. If JUST-THIS is non-nil, change just the current line, not all.
  9290. If FORCE-TAGS is non-nil, the car of it returns the new tags."
  9291. (let* ((inhibit-read-only t)
  9292. (line (org-current-line))
  9293. (org-agenda-buffer (current-buffer))
  9294. (thetags (with-current-buffer (marker-buffer hdmarker)
  9295. (org-get-tags hdmarker)))
  9296. props m undone-face done-face finish new dotime level cat tags
  9297. effort effort-minutes) ;; pl
  9298. (save-excursion
  9299. (goto-char (point-max))
  9300. (beginning-of-line 1)
  9301. (while (not finish)
  9302. (setq finish (bobp))
  9303. (when (and (setq m (org-get-at-bol 'org-hd-marker))
  9304. (or (not just-this) (= (org-current-line) line))
  9305. (equal m hdmarker))
  9306. (setq props (text-properties-at (point))
  9307. dotime (org-get-at-bol 'dotime)
  9308. cat (org-agenda-get-category)
  9309. level (org-get-at-bol 'level)
  9310. tags thetags
  9311. effort (org-get-at-bol 'effort)
  9312. effort-minutes (org-get-at-bol 'effort-minutes)
  9313. new
  9314. (let ((org-prefix-format-compiled
  9315. (or (get-text-property (min (1- (point-max)) (point)) 'format)
  9316. org-prefix-format-compiled))
  9317. (extra (org-get-at-bol 'extra)))
  9318. (with-current-buffer (marker-buffer hdmarker)
  9319. (org-with-wide-buffer
  9320. (org-agenda-format-item extra
  9321. (org-add-props newhead nil
  9322. 'effort effort
  9323. 'effort-minutes effort-minutes)
  9324. level cat tags dotime))))
  9325. ;; pl (text-property-any (point-at-bol) (point-at-eol) 'org-heading t)
  9326. undone-face (org-get-at-bol 'undone-face)
  9327. done-face (org-get-at-bol 'done-face))
  9328. (beginning-of-line 1)
  9329. (cond
  9330. ((equal new "") (delete-region (point) (line-beginning-position 2)))
  9331. ((looking-at ".*")
  9332. ;; When replacing the whole line, preserve bulk mark
  9333. ;; overlay, if any.
  9334. (let ((mark (catch :overlay
  9335. (dolist (o (overlays-in (point) (+ 2 (point))))
  9336. (when (eq (overlay-get o 'type)
  9337. 'org-marked-entry-overlay)
  9338. (throw :overlay o))))))
  9339. (replace-match new t t)
  9340. (beginning-of-line)
  9341. (when mark (move-overlay mark (point) (+ 2 (point)))))
  9342. (add-text-properties (point-at-bol) (point-at-eol) props)
  9343. (when fixface
  9344. (add-text-properties
  9345. (point-at-bol) (point-at-eol)
  9346. (list 'face
  9347. (if org-last-todo-state-is-todo
  9348. undone-face done-face))))
  9349. (org-agenda-highlight-todo 'line)
  9350. (beginning-of-line 1))
  9351. (t (error "Line update did not work")))
  9352. (save-restriction
  9353. (narrow-to-region (point-at-bol) (point-at-eol))
  9354. (org-agenda-finalize)))
  9355. (beginning-of-line 0)))))
  9356. (defun org-agenda-align-tags (&optional line)
  9357. "Align all tags in agenda items to `org-agenda-tags-column'.
  9358. When optional argument LINE is non-nil, align tags only on the
  9359. current line."
  9360. (let ((inhibit-read-only t)
  9361. (org-agenda-tags-column (if (eq 'auto org-agenda-tags-column)
  9362. (- (window-text-width))
  9363. org-agenda-tags-column))
  9364. (end (and line (line-end-position)))
  9365. l c)
  9366. (save-excursion
  9367. (goto-char (if line (line-beginning-position) (point-min)))
  9368. (while (re-search-forward org-tag-group-re end t)
  9369. (add-text-properties
  9370. (match-beginning 1) (match-end 1)
  9371. (list 'face (delq nil (let ((prop (get-text-property
  9372. (match-beginning 1) 'face)))
  9373. (or (listp prop) (setq prop (list prop)))
  9374. (if (memq 'org-tag prop)
  9375. prop
  9376. (cons 'org-tag prop))))))
  9377. (setq l (string-width (match-string 1))
  9378. c (if (< org-agenda-tags-column 0)
  9379. (- (abs org-agenda-tags-column) l)
  9380. org-agenda-tags-column))
  9381. (goto-char (match-beginning 1))
  9382. (delete-region (save-excursion (skip-chars-backward " \t") (point))
  9383. (point))
  9384. (insert (org-add-props
  9385. (make-string (max 1 (- c (current-column))) ?\s)
  9386. (plist-put (copy-sequence (text-properties-at (point)))
  9387. 'face nil))))
  9388. (goto-char (point-min))
  9389. (org-font-lock-add-tag-faces (point-max)))))
  9390. (defun org-agenda-priority-up ()
  9391. "Increase the priority of line at point, also in Org file."
  9392. (interactive)
  9393. (org-agenda-priority 'up))
  9394. (defun org-agenda-priority-down ()
  9395. "Decrease the priority of line at point, also in Org file."
  9396. (interactive)
  9397. (org-agenda-priority 'down))
  9398. (defun org-agenda-priority (&optional force-direction)
  9399. "Set the priority of line at point, also in Org file.
  9400. This changes the line at point, all other lines in the agenda
  9401. referring to the same tree node, and the headline of the tree
  9402. node in the Org file.
  9403. Called with one universal prefix arg, show the priority instead
  9404. of setting it.
  9405. When called programmatically, FORCE-DIRECTION can be `set', `up',
  9406. `down', or a character."
  9407. (interactive "P")
  9408. (unless org-priority-enable-commands
  9409. (user-error "Priority commands are disabled"))
  9410. (org-agenda-check-no-diary)
  9411. (let* ((col (current-column))
  9412. (hdmarker (org-get-at-bol 'org-hd-marker))
  9413. (buffer (marker-buffer hdmarker))
  9414. (pos (marker-position hdmarker))
  9415. (inhibit-read-only t)
  9416. newhead)
  9417. (org-with-remote-undo buffer
  9418. (with-current-buffer buffer
  9419. (widen)
  9420. (goto-char pos)
  9421. (org-show-context 'agenda)
  9422. (org-priority force-direction)
  9423. (end-of-line 1)
  9424. (setq newhead (org-get-heading)))
  9425. (org-agenda-change-all-lines newhead hdmarker)
  9426. (org-move-to-column col))))
  9427. ;; FIXME: should fix the tags property of the agenda line.
  9428. (defun org-agenda-set-tags (&optional tag onoff)
  9429. "Set tags for the current headline."
  9430. (interactive)
  9431. (org-agenda-check-no-diary)
  9432. (if (and (org-region-active-p) (called-interactively-p 'any))
  9433. (call-interactively 'org-change-tag-in-region)
  9434. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  9435. (org-agenda-error)))
  9436. (buffer (marker-buffer hdmarker))
  9437. (pos (marker-position hdmarker))
  9438. (inhibit-read-only t)
  9439. newhead)
  9440. (org-with-remote-undo buffer
  9441. (with-current-buffer buffer
  9442. (widen)
  9443. (goto-char pos)
  9444. (org-show-context 'agenda)
  9445. (if tag
  9446. (org-toggle-tag tag onoff)
  9447. (call-interactively #'org-set-tags-command))
  9448. (end-of-line 1)
  9449. (setq newhead (org-get-heading)))
  9450. (org-agenda-change-all-lines newhead hdmarker)
  9451. (beginning-of-line 1)))))
  9452. (defun org-agenda-set-property ()
  9453. "Set a property for the current headline."
  9454. (interactive)
  9455. (org-agenda-check-no-diary)
  9456. (org-agenda-maybe-loop
  9457. #'org-agenda-set-property nil nil nil
  9458. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  9459. (org-agenda-error)))
  9460. (buffer (marker-buffer hdmarker))
  9461. (pos (marker-position hdmarker))
  9462. (inhibit-read-only t)
  9463. ) ;; newhead
  9464. (org-with-remote-undo buffer
  9465. (with-current-buffer buffer
  9466. (widen)
  9467. (goto-char pos)
  9468. (org-show-context 'agenda)
  9469. (call-interactively 'org-set-property))))))
  9470. (defun org-agenda-set-effort ()
  9471. "Set the effort property for the current headline."
  9472. (interactive)
  9473. (org-agenda-check-no-diary)
  9474. (org-agenda-maybe-loop
  9475. #'org-agenda-set-effort nil nil nil
  9476. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  9477. (org-agenda-error)))
  9478. (buffer (marker-buffer hdmarker))
  9479. (pos (marker-position hdmarker))
  9480. (inhibit-read-only t)
  9481. newhead)
  9482. (org-with-remote-undo buffer
  9483. (with-current-buffer buffer
  9484. (widen)
  9485. (goto-char pos)
  9486. (org-show-context 'agenda)
  9487. (call-interactively 'org-set-effort)
  9488. (end-of-line 1)
  9489. (setq newhead (org-get-heading)))
  9490. (org-agenda-change-all-lines newhead hdmarker)))))
  9491. (defun org-agenda-toggle-archive-tag ()
  9492. "Toggle the archive tag for the current entry."
  9493. (interactive)
  9494. (org-agenda-check-no-diary)
  9495. (org-agenda-maybe-loop
  9496. #'org-agenda-toggle-archive-tag nil nil nil
  9497. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  9498. (org-agenda-error)))
  9499. (buffer (marker-buffer hdmarker))
  9500. (pos (marker-position hdmarker))
  9501. (inhibit-read-only t)
  9502. newhead)
  9503. (org-with-remote-undo buffer
  9504. (with-current-buffer buffer
  9505. (widen)
  9506. (goto-char pos)
  9507. (org-show-context 'agenda)
  9508. (call-interactively 'org-toggle-archive-tag)
  9509. (end-of-line 1)
  9510. (setq newhead (org-get-heading)))
  9511. (org-agenda-change-all-lines newhead hdmarker)
  9512. (beginning-of-line 1)))))
  9513. (defun org-agenda-do-date-later (arg)
  9514. (interactive "P")
  9515. (cond
  9516. ((or (equal arg '(16))
  9517. (memq last-command
  9518. '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
  9519. (setq this-command 'org-agenda-date-later-minutes)
  9520. (org-agenda-date-later-minutes 1))
  9521. ((or (equal arg '(4))
  9522. (memq last-command
  9523. '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
  9524. (setq this-command 'org-agenda-date-later-hours)
  9525. (org-agenda-date-later-hours 1))
  9526. (t
  9527. (org-agenda-date-later (prefix-numeric-value arg)))))
  9528. (defun org-agenda-do-date-earlier (arg)
  9529. (interactive "P")
  9530. (cond
  9531. ((or (equal arg '(16))
  9532. (memq last-command
  9533. '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
  9534. (setq this-command 'org-agenda-date-earlier-minutes)
  9535. (org-agenda-date-earlier-minutes 1))
  9536. ((or (equal arg '(4))
  9537. (memq last-command
  9538. '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
  9539. (setq this-command 'org-agenda-date-earlier-hours)
  9540. (org-agenda-date-earlier-hours 1))
  9541. (t
  9542. (org-agenda-date-earlier (prefix-numeric-value arg)))))
  9543. (defun org-agenda-date-later (arg &optional what)
  9544. "Change the date of this item to ARG day(s) later."
  9545. (interactive "p")
  9546. (org-agenda-check-type t 'agenda)
  9547. (org-agenda-check-no-diary)
  9548. (let* ((marker (or (org-get-at-bol 'org-marker)
  9549. (org-agenda-error)))
  9550. (buffer (marker-buffer marker))
  9551. (pos (marker-position marker))
  9552. cdate today)
  9553. (org-with-remote-undo buffer
  9554. (with-current-buffer buffer
  9555. (widen)
  9556. (goto-char pos)
  9557. (unless (org-at-timestamp-p 'lax) (error "Cannot find time stamp"))
  9558. (when (and org-agenda-move-date-from-past-immediately-to-today
  9559. (equal arg 1)
  9560. (or (not what) (eq what 'day))
  9561. (not (save-match-data (org-at-date-range-p))))
  9562. (setq cdate (org-parse-time-string (match-string 0) 'nodefault)
  9563. cdate (calendar-absolute-from-gregorian
  9564. (list (nth 4 cdate) (nth 3 cdate) (nth 5 cdate)))
  9565. today (org-today))
  9566. (when (> today cdate)
  9567. ;; immediately shift to today
  9568. (setq arg (- today cdate))))
  9569. (org-timestamp-change arg (or what 'day))
  9570. (when (and (org-at-date-range-p)
  9571. (re-search-backward org-tr-regexp-both (point-at-bol)))
  9572. (let ((end org-last-changed-timestamp))
  9573. (org-timestamp-change arg (or what 'day))
  9574. (setq org-last-changed-timestamp
  9575. (concat org-last-changed-timestamp "--" end)))))
  9576. (org-agenda-show-new-time marker org-last-changed-timestamp))
  9577. (message "Time stamp changed to %s" org-last-changed-timestamp)))
  9578. (defun org-agenda-date-earlier (arg &optional what)
  9579. "Change the date of this item to ARG day(s) earlier."
  9580. (interactive "p")
  9581. (org-agenda-date-later (- arg) what))
  9582. (defun org-agenda-date-later-minutes (arg)
  9583. "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
  9584. (interactive "p")
  9585. (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
  9586. (org-agenda-date-later arg 'minute))
  9587. (defun org-agenda-date-earlier-minutes (arg)
  9588. "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
  9589. (interactive "p")
  9590. (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
  9591. (org-agenda-date-earlier arg 'minute))
  9592. (defun org-agenda-date-later-hours (arg)
  9593. "Change the time of this item, in hour steps."
  9594. (interactive "p")
  9595. (org-agenda-date-later arg 'hour))
  9596. (defun org-agenda-date-earlier-hours (arg)
  9597. "Change the time of this item, in hour steps."
  9598. (interactive "p")
  9599. (org-agenda-date-earlier arg 'hour))
  9600. (defun org-agenda-show-new-time (marker stamp &optional prefix)
  9601. "Show new date stamp via text properties."
  9602. ;; We use text properties to make this undoable
  9603. (let ((inhibit-read-only t))
  9604. (setq stamp (concat prefix " => " stamp " "))
  9605. (save-excursion
  9606. (goto-char (point-max))
  9607. (while (not (bobp))
  9608. (when (equal marker (org-get-at-bol 'org-marker))
  9609. (remove-text-properties (line-beginning-position)
  9610. (line-end-position)
  9611. '(display nil))
  9612. (org-move-to-column
  9613. (- (if (fboundp 'window-font-width)
  9614. (/ (window-width nil t) (window-font-width))
  9615. ;; Fall back to pre-9.3.3 behavior on Emacs <25.
  9616. (window-width))
  9617. (length stamp))
  9618. t)
  9619. (add-text-properties
  9620. (1- (point)) (point-at-eol)
  9621. (list 'display (org-add-props stamp nil
  9622. 'face '(secondary-selection default))))
  9623. (beginning-of-line 1))
  9624. (beginning-of-line 0)))))
  9625. (defun org-agenda-date-prompt (arg)
  9626. "Change the date of this item. Date is prompted for, with default today.
  9627. The prefix ARG is passed to the `org-time-stamp' command and can therefore
  9628. be used to request time specification in the time stamp."
  9629. (interactive "P")
  9630. (org-agenda-check-type t 'agenda)
  9631. (org-agenda-check-no-diary)
  9632. (org-agenda-maybe-loop
  9633. #'org-agenda-date-prompt arg t nil
  9634. (let* ((marker (or (org-get-at-bol 'org-marker)
  9635. (org-agenda-error)))
  9636. (buffer (marker-buffer marker))
  9637. (pos (marker-position marker)))
  9638. (org-with-remote-undo buffer
  9639. (with-current-buffer buffer
  9640. (widen)
  9641. (goto-char pos)
  9642. (unless (org-at-timestamp-p 'lax) (error "Cannot find time stamp"))
  9643. (org-time-stamp arg (equal (char-after (match-beginning 0)) ?\[)))
  9644. (org-agenda-show-new-time marker org-last-changed-timestamp))
  9645. (message "Time stamp changed to %s" org-last-changed-timestamp))))
  9646. (defun org-agenda-schedule (arg &optional time)
  9647. "Schedule the item at point.
  9648. ARG is passed through to `org-schedule'."
  9649. (interactive "P")
  9650. (org-agenda-check-type t 'agenda 'todo 'tags 'search)
  9651. (org-agenda-check-no-diary)
  9652. (org-agenda-maybe-loop
  9653. #'org-agenda-schedule arg t nil
  9654. (let* ((marker (or (org-get-at-bol 'org-marker)
  9655. (org-agenda-error)))
  9656. ;; (type (marker-insertion-type marker))
  9657. (buffer (marker-buffer marker))
  9658. (pos (marker-position marker))
  9659. ts)
  9660. (set-marker-insertion-type marker t)
  9661. (org-with-remote-undo buffer
  9662. (with-current-buffer buffer
  9663. (widen)
  9664. (goto-char pos)
  9665. (setq ts (org-schedule arg time)))
  9666. (org-agenda-show-new-time marker ts " S"))
  9667. (message "%s" ts))))
  9668. (defun org-agenda-deadline (arg &optional time)
  9669. "Schedule the item at point.
  9670. ARG is passed through to `org-deadline'."
  9671. (interactive "P")
  9672. (org-agenda-check-type t 'agenda 'todo 'tags 'search)
  9673. (org-agenda-check-no-diary)
  9674. (org-agenda-maybe-loop
  9675. #'org-agenda-deadline arg t nil
  9676. (let* ((marker (or (org-get-at-bol 'org-marker)
  9677. (org-agenda-error)))
  9678. (buffer (marker-buffer marker))
  9679. (pos (marker-position marker))
  9680. ts)
  9681. (org-with-remote-undo buffer
  9682. (with-current-buffer buffer
  9683. (widen)
  9684. (goto-char pos)
  9685. (setq ts (org-deadline arg time)))
  9686. (org-agenda-show-new-time marker ts " D"))
  9687. (message "%s" ts))))
  9688. (defun org-agenda-clock-in (&optional arg)
  9689. "Start the clock on the currently selected item."
  9690. (interactive "P")
  9691. (org-agenda-check-no-diary)
  9692. (if (equal arg '(4))
  9693. (org-clock-in arg)
  9694. (let* ((marker (or (org-get-at-bol 'org-marker)
  9695. (org-agenda-error)))
  9696. (hdmarker (or (org-get-at-bol 'org-hd-marker) marker))
  9697. (pos (marker-position marker))
  9698. (col (current-column))
  9699. newhead)
  9700. (org-with-remote-undo (marker-buffer marker)
  9701. (with-current-buffer (marker-buffer marker)
  9702. (widen)
  9703. (goto-char pos)
  9704. (org-show-context 'agenda)
  9705. (org-clock-in arg)
  9706. (setq newhead (org-get-heading)))
  9707. (org-agenda-change-all-lines newhead hdmarker))
  9708. (org-move-to-column col))))
  9709. (defun org-agenda-clock-out ()
  9710. "Stop the currently running clock."
  9711. (interactive)
  9712. (unless (marker-buffer org-clock-marker)
  9713. (user-error "No running clock"))
  9714. (let ((marker (make-marker)) (col (current-column)) newhead)
  9715. (org-with-remote-undo (marker-buffer org-clock-marker)
  9716. (with-current-buffer (marker-buffer org-clock-marker)
  9717. (org-with-wide-buffer
  9718. (goto-char org-clock-marker)
  9719. (org-back-to-heading t)
  9720. (move-marker marker (point))
  9721. (org-clock-out)
  9722. (setq newhead (org-get-heading)))))
  9723. (org-agenda-change-all-lines newhead marker)
  9724. (move-marker marker nil)
  9725. (org-move-to-column col)
  9726. (org-agenda-unmark-clocking-task)))
  9727. (defun org-agenda-clock-cancel (&optional _arg)
  9728. "Cancel the currently running clock."
  9729. (interactive) ;; "P"
  9730. (unless (marker-buffer org-clock-marker)
  9731. (user-error "No running clock"))
  9732. (org-with-remote-undo (marker-buffer org-clock-marker)
  9733. (org-clock-cancel)))
  9734. (defun org-agenda-clock-goto ()
  9735. "Jump to the currently clocked in task within the agenda.
  9736. If the currently clocked in task is not listed in the agenda
  9737. buffer, display it in another window."
  9738. (interactive)
  9739. (let (pos)
  9740. (mapc (lambda (o)
  9741. (when (eq (overlay-get o 'type) 'org-agenda-clocking)
  9742. (setq pos (overlay-start o))))
  9743. (overlays-in (point-min) (point-max)))
  9744. (cond (pos (goto-char pos))
  9745. ;; If the currently clocked entry is not in the agenda
  9746. ;; buffer, we visit it in another window:
  9747. ((bound-and-true-p org-clock-current-task)
  9748. (org-switch-to-buffer-other-window (org-clock-goto)))
  9749. (t (message "No running clock, use `C-c C-x C-j' to jump to the most recent one")))))
  9750. (defun org-agenda-diary-entry-in-org-file ()
  9751. "Make a diary entry in the file `org-agenda-diary-file'."
  9752. (let (d1 d2 char (text "") dp1 dp2)
  9753. (if (equal (buffer-name) "*Calendar*")
  9754. (setq d1 (calendar-cursor-to-date t)
  9755. d2 (car calendar-mark-ring))
  9756. (setq dp1 (get-text-property (point-at-bol) 'day))
  9757. (unless dp1 (user-error "No date defined in current line"))
  9758. (setq d1 (calendar-gregorian-from-absolute dp1)
  9759. d2 (and (ignore-errors (mark))
  9760. (save-excursion
  9761. (goto-char (mark))
  9762. (setq dp2 (get-text-property (point-at-bol) 'day)))
  9763. (calendar-gregorian-from-absolute dp2))))
  9764. (message "Diary entry: [d]ay [a]nniversary [b]lock [j]ump to date tree")
  9765. (setq char (read-char-exclusive))
  9766. (cond
  9767. ((equal char ?d)
  9768. (setq text (read-string "Day entry: "))
  9769. (org-agenda-add-entry-to-org-agenda-diary-file 'day text d1)
  9770. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  9771. ((equal char ?a)
  9772. (setq d1 (list (car d1) (nth 1 d1)
  9773. (read-number (format "Reference year [%d]: " (nth 2 d1))
  9774. (nth 2 d1))))
  9775. (setq text (read-string "Anniversary (use %d to show years): "))
  9776. (org-agenda-add-entry-to-org-agenda-diary-file 'anniversary text d1)
  9777. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  9778. ((equal char ?b)
  9779. (setq text (read-string "Block entry: "))
  9780. (unless (and d1 d2 (not (equal d1 d2)))
  9781. (user-error "No block of days selected"))
  9782. (org-agenda-add-entry-to-org-agenda-diary-file 'block text d1 d2)
  9783. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  9784. ((equal char ?j)
  9785. (org-switch-to-buffer-other-window
  9786. (find-file-noselect org-agenda-diary-file))
  9787. (require 'org-datetree)
  9788. (org-datetree-find-date-create d1)
  9789. (org-reveal t))
  9790. (t (user-error "Invalid selection character `%c'" char)))))
  9791. (defcustom org-agenda-insert-diary-strategy 'date-tree
  9792. "Where in `org-agenda-diary-file' should new entries be added?
  9793. Valid values:
  9794. date-tree in the date tree, as first child of the date
  9795. date-tree-last in the date tree, as last child of the date
  9796. top-level as top-level entries at the end of the file."
  9797. :group 'org-agenda
  9798. :type '(choice
  9799. (const :tag "first in a date tree" date-tree)
  9800. (const :tag "last in a date tree" date-tree-last)
  9801. (const :tag "as top level at end of file" top-level)))
  9802. (defcustom org-agenda-insert-diary-extract-time nil
  9803. "Non-nil means extract any time specification from the diary entry."
  9804. :group 'org-agenda
  9805. :version "24.1"
  9806. :type 'boolean)
  9807. (defcustom org-agenda-bulk-mark-char ">"
  9808. "A single-character string to be used as the bulk mark."
  9809. :group 'org-agenda
  9810. :version "24.1"
  9811. :type 'string)
  9812. (defun org-agenda-add-entry-to-org-agenda-diary-file (type text &optional d1 d2)
  9813. "Add a diary entry with TYPE to `org-agenda-diary-file'.
  9814. If TEXT is not empty, it will become the headline of the new entry, and
  9815. the resulting entry will not be shown. When TEXT is empty, switch to
  9816. `org-agenda-diary-file' and let the user finish the entry there."
  9817. (let ((cw (current-window-configuration)))
  9818. (org-switch-to-buffer-other-window
  9819. (find-file-noselect org-agenda-diary-file))
  9820. (widen)
  9821. (goto-char (point-min))
  9822. (cl-case type
  9823. (anniversary
  9824. (or (re-search-forward "^\\*[ \t]+Anniversaries" nil t)
  9825. (progn
  9826. (or (org-at-heading-p t)
  9827. (progn
  9828. (outline-next-heading)
  9829. (insert "* Anniversaries\n\n")
  9830. (beginning-of-line -1)))))
  9831. (outline-next-heading)
  9832. (org-back-over-empty-lines)
  9833. (backward-char 1)
  9834. (insert "\n")
  9835. (insert (format "%%%%(org-anniversary %d %2d %2d) %s"
  9836. (nth 2 d1) (car d1) (nth 1 d1) text)))
  9837. (day
  9838. (let ((org-prefix-has-time t)
  9839. (org-agenda-time-leading-zero t)
  9840. fmt time time2)
  9841. (when org-agenda-insert-diary-extract-time
  9842. ;; Use org-agenda-format-item to parse text for a time-range and
  9843. ;; remove it. FIXME: This is a hack, we should refactor
  9844. ;; that function to make time extraction available separately
  9845. (setq fmt (org-agenda-format-item nil text nil nil nil t)
  9846. time (get-text-property 0 'time fmt)
  9847. time2 (if (> (length time) 0)
  9848. ;; split-string removes trailing ...... if
  9849. ;; no end time given. First space
  9850. ;; separates time from date.
  9851. (concat " " (car (split-string time "\\.")))
  9852. nil)
  9853. text (get-text-property 0 'txt fmt)))
  9854. (if (eq org-agenda-insert-diary-strategy 'top-level)
  9855. (org-agenda-insert-diary-as-top-level text)
  9856. (require 'org-datetree)
  9857. (org-datetree-find-date-create d1)
  9858. (org-agenda-insert-diary-make-new-entry text))
  9859. (org-insert-time-stamp (org-time-from-absolute
  9860. (calendar-absolute-from-gregorian d1))
  9861. nil nil nil nil time2))
  9862. (end-of-line 0))
  9863. ((block) ;; Wrap this in (strictly unnecessary) parens because
  9864. ;; otherwise the indentation gets confused by the
  9865. ;; special meaning of 'block
  9866. (when (> (calendar-absolute-from-gregorian d1)
  9867. (calendar-absolute-from-gregorian d2))
  9868. (setq d1 (prog1 d2 (setq d2 d1))))
  9869. (if (eq org-agenda-insert-diary-strategy 'top-level)
  9870. (org-agenda-insert-diary-as-top-level text)
  9871. (require 'org-datetree)
  9872. (org-datetree-find-date-create d1)
  9873. (org-agenda-insert-diary-make-new-entry text))
  9874. (org-insert-time-stamp (org-time-from-absolute
  9875. (calendar-absolute-from-gregorian d1)))
  9876. (insert "--")
  9877. (org-insert-time-stamp (org-time-from-absolute
  9878. (calendar-absolute-from-gregorian d2)))
  9879. (end-of-line 0)))
  9880. (if (string-match "\\S-" text)
  9881. (progn
  9882. (set-window-configuration cw)
  9883. (message "%s entry added to %s"
  9884. (capitalize (symbol-name type))
  9885. (abbreviate-file-name org-agenda-diary-file)))
  9886. (org-reveal t)
  9887. (message "Please finish entry here"))))
  9888. (defun org-agenda-insert-diary-as-top-level (text)
  9889. "Make new entry as a top-level entry at the end of the file.
  9890. Add TEXT as headline, and position the cursor in the second line so that
  9891. a timestamp can be added there."
  9892. (widen)
  9893. (goto-char (point-max))
  9894. (unless (bolp) (insert "\n"))
  9895. (org-insert-heading nil t t)
  9896. (insert text)
  9897. (org-end-of-meta-data)
  9898. (unless (bolp) (insert "\n"))
  9899. (when org-adapt-indentation (indent-to-column 2)))
  9900. (defun org-agenda-insert-diary-make-new-entry (text)
  9901. "Make a new entry with TEXT as a child of the current subtree.
  9902. Position the point in the heading's first body line so that
  9903. a timestamp can be added there."
  9904. (cond
  9905. ((eq org-agenda-insert-diary-strategy 'date-tree-last)
  9906. (end-of-line)
  9907. (org-insert-heading '(4) t)
  9908. (org-do-demote))
  9909. (t
  9910. (outline-next-heading)
  9911. (org-back-over-empty-lines)
  9912. (unless (looking-at "[ \t]*$") (save-excursion (insert "\n")))
  9913. (org-insert-heading nil t)
  9914. (org-do-demote)))
  9915. (let ((col (current-column)))
  9916. (insert text)
  9917. (org-end-of-meta-data)
  9918. ;; Ensure point is left on a blank line, at proper indentation.
  9919. (unless (bolp) (insert "\n"))
  9920. (unless (looking-at-p "^[ \t]*$") (save-excursion (insert "\n")))
  9921. (when org-adapt-indentation (indent-to-column col)))
  9922. (org-show-set-visibility 'lineage))
  9923. (defun org-agenda-diary-entry ()
  9924. "Make a diary entry, like the `i' command from the calendar.
  9925. All the standard commands work: block, weekly etc.
  9926. When `org-agenda-diary-file' points to a file,
  9927. `org-agenda-diary-entry-in-org-file' is called instead to create
  9928. entries in that Org file."
  9929. (interactive)
  9930. (if (not (eq org-agenda-diary-file 'diary-file))
  9931. (org-agenda-diary-entry-in-org-file)
  9932. (require 'diary-lib)
  9933. (let* ((char (read-char-exclusive
  9934. "Diary entry: [d]ay [w]eekly [m]onthly [y]early\
  9935. [a]nniversary [b]lock [c]yclic"))
  9936. (cmd (cdr (assoc char
  9937. '((?d . diary-insert-entry)
  9938. (?w . diary-insert-weekly-entry)
  9939. (?m . diary-insert-monthly-entry)
  9940. (?y . diary-insert-yearly-entry)
  9941. (?a . diary-insert-anniversary-entry)
  9942. (?b . diary-insert-block-entry)
  9943. (?c . diary-insert-cyclic-entry)))))
  9944. (oldf (symbol-function 'calendar-cursor-to-date))
  9945. ;; (buf (get-file-buffer (substitute-in-file-name diary-file)))
  9946. (point (point))
  9947. (mark (or (mark t) (point))))
  9948. (unless cmd
  9949. (user-error "No command associated with <%c>" char))
  9950. (unless (and (get-text-property point 'day)
  9951. (or (not (equal ?b char))
  9952. (get-text-property mark 'day)))
  9953. (user-error "Don't know which date to use for diary entry"))
  9954. ;; We implement this by hacking the `calendar-cursor-to-date' function
  9955. ;; and the `calendar-mark-ring' variable. Saves a lot of code.
  9956. (let ((calendar-mark-ring
  9957. (list (calendar-gregorian-from-absolute
  9958. (or (get-text-property mark 'day)
  9959. (get-text-property point 'day))))))
  9960. (unwind-protect
  9961. (progn
  9962. (fset 'calendar-cursor-to-date
  9963. (lambda (&optional _error _dummy)
  9964. (calendar-gregorian-from-absolute
  9965. (get-text-property point 'day))))
  9966. (call-interactively cmd))
  9967. (fset 'calendar-cursor-to-date oldf))))))
  9968. (defun org-agenda-execute-calendar-command (cmd)
  9969. "Execute a calendar command from the agenda with date from cursor."
  9970. (org-agenda-check-type t 'agenda)
  9971. (require 'diary-lib)
  9972. (unless (get-text-property (min (1- (point-max)) (point)) 'day)
  9973. (user-error "Don't know which date to use for the calendar command"))
  9974. (let* ((oldf (symbol-function 'calendar-cursor-to-date))
  9975. (point (point))
  9976. (date (calendar-gregorian-from-absolute
  9977. (get-text-property point 'day))))
  9978. ;; the following 2 vars are needed in the calendar
  9979. (org-dlet
  9980. ((displayed-month (car date))
  9981. (displayed-year (nth 2 date)))
  9982. (unwind-protect
  9983. (progn
  9984. (fset 'calendar-cursor-to-date
  9985. (lambda (&optional _error _dummy)
  9986. (calendar-gregorian-from-absolute
  9987. (get-text-property point 'day))))
  9988. (call-interactively cmd))
  9989. (fset 'calendar-cursor-to-date oldf)))))
  9990. (defun org-agenda-phases-of-moon ()
  9991. "Display the phases of the moon for the 3 months around the cursor date."
  9992. (interactive)
  9993. (org-agenda-execute-calendar-command 'calendar-lunar-phases))
  9994. (defun org-agenda-holidays ()
  9995. "Display the holidays for the 3 months around the cursor date."
  9996. (interactive)
  9997. (org-agenda-execute-calendar-command 'calendar-list-holidays))
  9998. (defvar calendar-longitude) ; defined in calendar.el
  9999. (defvar calendar-latitude) ; defined in calendar.el
  10000. (defvar calendar-location-name) ; defined in calendar.el
  10001. (defun org-agenda-sunrise-sunset (arg)
  10002. "Display sunrise and sunset for the cursor date.
  10003. Latitude and longitude can be specified with the variables
  10004. `calendar-latitude' and `calendar-longitude'. When called with prefix
  10005. argument, latitude and longitude will be prompted for."
  10006. (interactive "P")
  10007. (require 'solar)
  10008. (let ((calendar-longitude (if arg nil calendar-longitude))
  10009. (calendar-latitude (if arg nil calendar-latitude))
  10010. (calendar-location-name
  10011. (if arg "the given coordinates" calendar-location-name)))
  10012. (org-agenda-execute-calendar-command 'calendar-sunrise-sunset)))
  10013. (defun org-agenda-goto-calendar ()
  10014. "Open the Emacs calendar with the date at the cursor."
  10015. (interactive)
  10016. (org-agenda-check-type t 'agenda)
  10017. (let* ((day (or (get-text-property (min (1- (point-max)) (point)) 'day)
  10018. (user-error "Don't know which date to open in calendar")))
  10019. (date (calendar-gregorian-from-absolute day))
  10020. (calendar-move-hook nil)
  10021. (calendar-view-holidays-initially-flag nil)
  10022. (calendar-view-diary-initially-flag nil))
  10023. (calendar)
  10024. (calendar-goto-date date)))
  10025. ;;;###autoload
  10026. (defun org-calendar-goto-agenda ()
  10027. "Compute the Org agenda for the calendar date displayed at the cursor.
  10028. This is a command that has to be installed in `calendar-mode-map'."
  10029. (interactive)
  10030. ;; Temporarily disable sticky agenda since user clearly wants to
  10031. ;; refresh view anyway.
  10032. (let ((org-agenda-buffer-tmp-name "*Org Agenda(a)*")
  10033. (org-agenda-sticky nil))
  10034. (org-agenda-list nil (calendar-absolute-from-gregorian
  10035. (calendar-cursor-to-date))
  10036. nil)))
  10037. (defun org-agenda-convert-date ()
  10038. (interactive)
  10039. (org-agenda-check-type t 'agenda)
  10040. (let ((day (get-text-property (min (1- (point-max)) (point)) 'day))
  10041. date s)
  10042. (unless day
  10043. (user-error "Don't know which date to convert"))
  10044. (setq date (calendar-gregorian-from-absolute day))
  10045. (setq s (concat
  10046. "Gregorian: " (calendar-date-string date) "\n"
  10047. "ISO: " (calendar-iso-date-string date) "\n"
  10048. "Day of Yr: " (calendar-day-of-year-string date) "\n"
  10049. "Julian: " (calendar-julian-date-string date) "\n"
  10050. "Astron. JD: " (calendar-astro-date-string date)
  10051. " (Julian date number at noon UTC)\n"
  10052. "Hebrew: " (calendar-hebrew-date-string date) " (until sunset)\n"
  10053. "Islamic: " (calendar-islamic-date-string date) " (until sunset)\n"
  10054. "French: " (calendar-french-date-string date) "\n"
  10055. "Bahá’í: " (calendar-bahai-date-string date) " (until sunset)\n"
  10056. "Mayan: " (calendar-mayan-date-string date) "\n"
  10057. "Coptic: " (calendar-coptic-date-string date) "\n"
  10058. "Ethiopic: " (calendar-ethiopic-date-string date) "\n"
  10059. "Persian: " (calendar-persian-date-string date) "\n"
  10060. "Chinese: " (calendar-chinese-date-string date) "\n"))
  10061. (with-output-to-temp-buffer "*Dates*"
  10062. (princ s))
  10063. (org-fit-window-to-buffer (get-buffer-window "*Dates*"))))
  10064. ;;; Bulk commands
  10065. (defun org-agenda-bulk-marked-p ()
  10066. "Non-nil when current entry is marked for bulk action."
  10067. (eq (get-char-property (point-at-bol) 'type)
  10068. 'org-marked-entry-overlay))
  10069. (defun org-agenda-bulk-mark (&optional arg)
  10070. "Mark entries for future bulk action.
  10071. When ARG is nil or one and region is not active then mark the
  10072. entry at point.
  10073. When ARG is nil or one and region is active then mark the entries
  10074. in the region.
  10075. When ARG is greater than one mark ARG lines."
  10076. (interactive "p")
  10077. (when (and (or (not arg) (= arg 1)) (use-region-p))
  10078. (setq arg (count-lines (region-beginning) (region-end)))
  10079. (goto-char (region-beginning))
  10080. (deactivate-mark))
  10081. (dotimes (_ (or arg 1))
  10082. (unless (org-get-at-bol 'org-agenda-diary-link)
  10083. (let* ((m (org-get-at-bol 'org-hd-marker))
  10084. ov)
  10085. (unless (org-agenda-bulk-marked-p)
  10086. (unless m (user-error "Nothing to mark at point"))
  10087. (push m org-agenda-bulk-marked-entries)
  10088. (setq ov (make-overlay (point-at-bol) (+ 2 (point-at-bol))))
  10089. (org-overlay-display ov (concat org-agenda-bulk-mark-char " ")
  10090. (org-get-todo-face "TODO")
  10091. 'evaporate)
  10092. (overlay-put ov 'type 'org-marked-entry-overlay))
  10093. (end-of-line 1)
  10094. (or (ignore-errors
  10095. (goto-char (next-single-property-change (point) 'org-hd-marker)))
  10096. (beginning-of-line 2))
  10097. (while (and (get-char-property (point) 'invisible) (not (eobp)))
  10098. (beginning-of-line 2)))))
  10099. (message "%d entries marked for bulk action"
  10100. (length org-agenda-bulk-marked-entries)))
  10101. (defun org-agenda-bulk-mark-all ()
  10102. "Mark all entries for future agenda bulk action."
  10103. (interactive)
  10104. (org-agenda-bulk-mark-regexp "."))
  10105. (defun org-agenda-bulk-mark-regexp (regexp)
  10106. "Mark entries matching REGEXP for future agenda bulk action."
  10107. (interactive "sMark entries matching regexp: ")
  10108. (let ((entries-marked 0) txt-at-point)
  10109. (save-excursion
  10110. (goto-char (point-min))
  10111. (goto-char (next-single-property-change (point) 'org-hd-marker))
  10112. (while (and (re-search-forward regexp nil t)
  10113. (setq txt-at-point
  10114. (get-text-property (match-beginning 0) 'txt)))
  10115. (if (get-char-property (point) 'invisible)
  10116. (beginning-of-line 2)
  10117. (when (string-match-p regexp txt-at-point)
  10118. (setq entries-marked (1+ entries-marked))
  10119. (call-interactively 'org-agenda-bulk-mark)))))
  10120. (unless entries-marked
  10121. (message "No entry matching this regexp."))))
  10122. (defun org-agenda-bulk-unmark (&optional arg)
  10123. "Unmark the entry at point for future bulk action."
  10124. (interactive "P")
  10125. (if arg
  10126. (org-agenda-bulk-unmark-all)
  10127. (cond ((org-agenda-bulk-marked-p)
  10128. (org-agenda-bulk-remove-overlays
  10129. (point-at-bol) (+ 2 (point-at-bol)))
  10130. (setq org-agenda-bulk-marked-entries
  10131. (delete (org-get-at-bol 'org-hd-marker)
  10132. org-agenda-bulk-marked-entries))
  10133. (end-of-line 1)
  10134. (or (ignore-errors
  10135. (goto-char (next-single-property-change (point) 'txt)))
  10136. (beginning-of-line 2))
  10137. (while (and (get-char-property (point) 'invisible) (not (eobp)))
  10138. (beginning-of-line 2))
  10139. (message "%d entries left marked for bulk action"
  10140. (length org-agenda-bulk-marked-entries)))
  10141. (t (message "No entry to unmark here")))))
  10142. (defun org-agenda-bulk-toggle-all ()
  10143. "Toggle all marks for bulk action."
  10144. (interactive)
  10145. (save-excursion
  10146. (goto-char (point-min))
  10147. (while (ignore-errors
  10148. (goto-char (next-single-property-change (point) 'org-hd-marker)))
  10149. (org-agenda-bulk-toggle))))
  10150. (defun org-agenda-bulk-toggle ()
  10151. "Toggle the mark at point for bulk action."
  10152. (interactive)
  10153. (if (org-agenda-bulk-marked-p)
  10154. (org-agenda-bulk-unmark)
  10155. (org-agenda-bulk-mark)))
  10156. (defun org-agenda-bulk-remove-overlays (&optional beg end)
  10157. "Remove the mark overlays between BEG and END in the agenda buffer.
  10158. BEG and END default to the buffer limits.
  10159. This only removes the overlays, it does not remove the markers
  10160. from the list in `org-agenda-bulk-marked-entries'."
  10161. (interactive)
  10162. (mapc (lambda (ov)
  10163. (and (eq (overlay-get ov 'type) 'org-marked-entry-overlay)
  10164. (delete-overlay ov)))
  10165. (overlays-in (or beg (point-min)) (or end (point-max)))))
  10166. (defun org-agenda-bulk-unmark-all ()
  10167. "Remove all marks in the agenda buffer.
  10168. This will remove the markers and the overlays."
  10169. (interactive)
  10170. (if (null org-agenda-bulk-marked-entries)
  10171. (message "No entry to unmark")
  10172. (setq org-agenda-bulk-marked-entries nil)
  10173. (org-agenda-bulk-remove-overlays (point-min) (point-max))))
  10174. (defcustom org-agenda-persistent-marks nil
  10175. "Non-nil means marked items will stay marked after a bulk action.
  10176. You can toggle this interactively by typing `p' when prompted for a
  10177. bulk action."
  10178. :group 'org-agenda
  10179. :version "24.1"
  10180. :type 'boolean)
  10181. (defcustom org-agenda-loop-over-headlines-in-active-region t
  10182. "Shall some commands act upon headlines in the active region?
  10183. When set to t, some commands will be performed in all headlines
  10184. within the active region.
  10185. When set to `start-level', some commands will be performed in all
  10186. headlines within the active region, provided that these headlines
  10187. are of the same level than the first one.
  10188. When set to a regular expression, those commands will be
  10189. performed on the matching headlines within the active region.
  10190. The list of commands is: `org-agenda-schedule',
  10191. `org-agenda-deadline', `org-agenda-date-prompt',
  10192. `org-agenda-todo', `org-agenda-archive*', `org-agenda-kill'.
  10193. See `org-loop-over-headlines-in-active-region' for the equivalent
  10194. option for Org buffers."
  10195. :type '(choice (const :tag "Don't loop" nil)
  10196. (const :tag "All headlines in active region" t)
  10197. (const :tag "In active region, headlines at the same level than the first one" start-level)
  10198. (regexp :tag "Regular expression matcher"))
  10199. :version "27.1"
  10200. :package-version '(Org . "9.4")
  10201. :group 'org-agenda)
  10202. (defun org-agenda-bulk-action (&optional arg)
  10203. "Execute an remote-editing action on all marked entries.
  10204. The prefix arg is passed through to the command if possible."
  10205. (interactive "P")
  10206. ;; When there is no mark, act on the agenda entry at point.
  10207. (if (not org-agenda-bulk-marked-entries)
  10208. (save-excursion (org-agenda-bulk-mark)))
  10209. (dolist (m org-agenda-bulk-marked-entries)
  10210. (unless (and (markerp m)
  10211. (marker-buffer m)
  10212. (buffer-live-p (marker-buffer m))
  10213. (marker-position m))
  10214. (user-error "Marker %s for bulk command is invalid" m)))
  10215. ;; Prompt for the bulk command.
  10216. (org-unlogged-message
  10217. (concat "Bulk (" (if org-agenda-persistent-marks "" "don't ") "[p]ersist marks): "
  10218. "[$]arch [A]rch->sib [t]odo [+/-]tag [s]chd [d]eadline [r]efile "
  10219. "[S]catter [f]unction "
  10220. (and org-agenda-bulk-custom-functions
  10221. (format " Custom: [%s]"
  10222. (mapconcat (lambda (f) (char-to-string (car f)))
  10223. org-agenda-bulk-custom-functions
  10224. "")))))
  10225. (catch 'exit
  10226. (let* ((org-log-refile (if org-log-refile 'time nil))
  10227. (entries (reverse org-agenda-bulk-marked-entries))
  10228. (org-overriding-default-time
  10229. (and (get-text-property (point) 'org-agenda-date-header)
  10230. (org-get-cursor-date)))
  10231. redo-at-end
  10232. cmd)
  10233. (pcase (read-char-exclusive)
  10234. (?p
  10235. (let ((org-agenda-persistent-marks
  10236. (not org-agenda-persistent-marks)))
  10237. (org-agenda-bulk-action)
  10238. (throw 'exit nil)))
  10239. (?$
  10240. (setq cmd #'org-agenda-archive))
  10241. (?A
  10242. (setq cmd #'org-agenda-archive-to-archive-sibling))
  10243. ((or ?r ?w)
  10244. (let ((refile-location
  10245. (org-refile-get-location
  10246. "Refile to"
  10247. (marker-buffer (car entries))
  10248. org-refile-allow-creating-parent-nodes)))
  10249. (when (nth 3 refile-location)
  10250. (setcar (nthcdr 3 refile-location)
  10251. (move-marker
  10252. (make-marker)
  10253. (nth 3 refile-location)
  10254. (or (get-file-buffer (nth 1 refile-location))
  10255. (find-buffer-visiting (nth 1 refile-location))
  10256. (error "This should not happen")))))
  10257. (setq cmd (lambda () (org-agenda-refile nil refile-location t)))
  10258. (setq redo-at-end t)))
  10259. (?t
  10260. (let ((state (completing-read
  10261. "Todo state: "
  10262. (with-current-buffer (marker-buffer (car entries))
  10263. (mapcar #'list org-todo-keywords-1)))))
  10264. (setq cmd (lambda ()
  10265. (let ((org-inhibit-blocking t)
  10266. (org-inhibit-logging 'note))
  10267. (org-agenda-todo state))))))
  10268. ((and (or ?- ?+) action)
  10269. (let ((tag (completing-read
  10270. (format "Tag to %s: " (if (eq action ?+) "add" "remove"))
  10271. (with-current-buffer (marker-buffer (car entries))
  10272. (delq nil
  10273. (mapcar (lambda (x) (and (stringp (car x)) x))
  10274. org-current-tag-alist))))))
  10275. (setq cmd
  10276. (lambda ()
  10277. (org-agenda-set-tags tag
  10278. (if (eq action ?+) 'on 'off))))))
  10279. ((and (or ?s ?d) c)
  10280. (let* ((schedule? (eq c ?s))
  10281. (prompt (if schedule? "(Re)Schedule to" "(Re)Set Deadline to"))
  10282. (time
  10283. (and (not arg)
  10284. (let ((new (org-read-date
  10285. nil nil nil prompt org-overriding-default-time)))
  10286. ;; A "double plus" answer applies to every
  10287. ;; scheduled time. Do not turn it into
  10288. ;; a fixed date yet.
  10289. (if (string-match-p "\\`[ \t]*\\+\\+"
  10290. org-read-date-final-answer)
  10291. org-read-date-final-answer
  10292. new)))))
  10293. ;; Make sure to not prompt for a note when bulk
  10294. ;; rescheduling/resetting deadline as Org cannot cope with
  10295. ;; simultaneous notes. Besides, it could be annoying
  10296. ;; depending on the number of marked items.
  10297. (setq cmd
  10298. (if schedule?
  10299. (lambda ()
  10300. (let ((org-log-reschedule
  10301. (and org-log-reschedule 'time)))
  10302. (org-agenda-schedule arg time)))
  10303. (lambda ()
  10304. (let ((org-log-redeadline (and org-log-redeadline 'time)))
  10305. (org-agenda-deadline arg time)))))))
  10306. (?S
  10307. (unless (org-agenda-check-type nil 'agenda 'todo)
  10308. (user-error "Can't scatter tasks in \"%s\" agenda view" org-agenda-type))
  10309. (let ((days (read-number
  10310. (format "Scatter tasks across how many %sdays: "
  10311. (if arg "week" ""))
  10312. 7)))
  10313. (setq cmd
  10314. (lambda ()
  10315. (let ((distance (1+ (random days))))
  10316. (when arg
  10317. (let ((dist distance)
  10318. (day-of-week
  10319. (calendar-day-of-week
  10320. (calendar-gregorian-from-absolute (org-today)))))
  10321. (dotimes (_ (1+ dist))
  10322. (while (member day-of-week org-agenda-weekend-days)
  10323. (cl-incf distance)
  10324. (cl-incf day-of-week)
  10325. (when (= day-of-week 7)
  10326. (setq day-of-week 0)))
  10327. (cl-incf day-of-week)
  10328. (when (= day-of-week 7)
  10329. (setq day-of-week 0)))))
  10330. ;; Silently fail when try to replan a sexp entry.
  10331. (ignore-errors
  10332. (let* ((date (calendar-gregorian-from-absolute
  10333. (+ (org-today) distance)))
  10334. (time (encode-time 0 0 0 (nth 1 date) (nth 0 date)
  10335. (nth 2 date))))
  10336. (org-agenda-schedule nil time))))))))
  10337. (?f
  10338. (setq cmd
  10339. (intern
  10340. (completing-read "Function: " obarray #'fboundp t nil nil))))
  10341. (action
  10342. (setq cmd
  10343. (pcase (assoc action org-agenda-bulk-custom-functions)
  10344. (`(,_ ,fn)
  10345. fn)
  10346. (`(,_ ,fn ,arg-fn)
  10347. (apply #'apply-partially fn (funcall arg-fn)))
  10348. (_
  10349. (user-error "Invalid bulk action: %c" action))))
  10350. (setq redo-at-end t)))
  10351. ;; Sort the markers, to make sure that parents are handled
  10352. ;; before children.
  10353. (setq entries (sort entries
  10354. (lambda (a b)
  10355. (cond
  10356. ((eq (marker-buffer a) (marker-buffer b))
  10357. (< (marker-position a) (marker-position b)))
  10358. (t
  10359. (string< (buffer-name (marker-buffer a))
  10360. (buffer-name (marker-buffer b))))))))
  10361. ;; Now loop over all markers and apply CMD.
  10362. (let ((processed 0)
  10363. (skipped 0))
  10364. (dolist (e entries)
  10365. (let ((pos (text-property-any (point-min) (point-max) 'org-hd-marker e)))
  10366. (if (not pos)
  10367. (progn (message "Skipping removed entry at %s" e)
  10368. (cl-incf skipped))
  10369. (goto-char pos)
  10370. (let (org-loop-over-headlines-in-active-region) (funcall cmd))
  10371. ;; `post-command-hook' is not run yet. We make sure any
  10372. ;; pending log note is processed.
  10373. (when org-log-setup (org-add-log-note))
  10374. (cl-incf processed))))
  10375. (when redo-at-end (org-agenda-redo))
  10376. (unless org-agenda-persistent-marks (org-agenda-bulk-unmark-all))
  10377. (message "Acted on %d entries%s%s"
  10378. processed
  10379. (if (= skipped 0)
  10380. ""
  10381. (format ", skipped %d (disappeared before their turn)"
  10382. skipped))
  10383. (if (not org-agenda-persistent-marks) "" " (kept marked)"))))))
  10384. (defun org-agenda-capture (&optional with-time)
  10385. "Call `org-capture' with the date at point.
  10386. With a `C-1' prefix, use the HH:MM value at point (if any) or the
  10387. current HH:MM time."
  10388. (interactive "P")
  10389. (if (not (eq major-mode 'org-agenda-mode))
  10390. (user-error "You cannot do this outside of agenda buffers")
  10391. (let ((org-overriding-default-time
  10392. (org-get-cursor-date (equal with-time 1))))
  10393. (call-interactively 'org-capture))))
  10394. ;;; Dragging agenda lines forward/backward
  10395. (defun org-agenda-reapply-filters ()
  10396. "Re-apply all agenda filters."
  10397. (mapcar
  10398. (lambda(f) (when (car f) (org-agenda-filter-apply (car f) (cadr f) t)))
  10399. `((,org-agenda-tag-filter tag)
  10400. (,org-agenda-category-filter category)
  10401. (,org-agenda-regexp-filter regexp)
  10402. (,org-agenda-effort-filter effort)
  10403. (,(get 'org-agenda-tag-filter :preset-filter) tag)
  10404. (,(get 'org-agenda-category-filter :preset-filter) category)
  10405. (,(get 'org-agenda-effort-filter :preset-filter) effort)
  10406. (,(get 'org-agenda-regexp-filter :preset-filter) regexp))))
  10407. (defun org-agenda-drag-line-forward (arg &optional backward)
  10408. "Drag an agenda line forward by ARG lines.
  10409. When the optional argument `backward' is non-nil, move backward."
  10410. (interactive "p")
  10411. (let ((inhibit-read-only t) lst line)
  10412. (if (or (not (get-text-property (point) 'txt))
  10413. (save-excursion
  10414. (dotimes (_ arg)
  10415. (move-beginning-of-line (if backward 0 2))
  10416. (push (not (get-text-property (point) 'txt)) lst))
  10417. (delq nil lst)))
  10418. (message "Cannot move line forward")
  10419. (let ((end (save-excursion (move-beginning-of-line 2) (point))))
  10420. (move-beginning-of-line 1)
  10421. (setq line (buffer-substring (point) end))
  10422. (delete-region (point) end)
  10423. (move-beginning-of-line (funcall (if backward '1- '1+) arg))
  10424. (insert line)
  10425. (org-agenda-reapply-filters)
  10426. (org-agenda-mark-clocking-task)
  10427. (move-beginning-of-line 0)))))
  10428. (defun org-agenda-drag-line-backward (arg)
  10429. "Drag an agenda line backward by ARG lines."
  10430. (interactive "p")
  10431. (org-agenda-drag-line-forward arg t))
  10432. ;;; Flagging notes
  10433. (defun org-agenda-show-the-flagging-note ()
  10434. "Display the flagging note in the other window.
  10435. When called a second time in direct sequence, offer to remove the FLAGGING
  10436. tag and (if present) the flagging note."
  10437. (interactive)
  10438. (let ((hdmarker (org-get-at-bol 'org-hd-marker))
  10439. (win (selected-window))
  10440. note) ;; heading newhead
  10441. (unless hdmarker
  10442. (user-error "No linked entry at point"))
  10443. (if (and (eq this-command last-command)
  10444. (y-or-n-p "Unflag and remove any flagging note? "))
  10445. (progn
  10446. (org-agenda-remove-flag hdmarker)
  10447. (let ((win (get-buffer-window "*Flagging Note*")))
  10448. (and win (delete-window win)))
  10449. (message "Entry unflagged"))
  10450. (setq note (org-entry-get hdmarker "THEFLAGGINGNOTE"))
  10451. (unless note
  10452. (user-error "No flagging note"))
  10453. (org-kill-new note)
  10454. (org-switch-to-buffer-other-window "*Flagging Note*")
  10455. (erase-buffer)
  10456. (insert note)
  10457. (goto-char (point-min))
  10458. (while (re-search-forward "\\\\n" nil t)
  10459. (replace-match "\n" t t))
  10460. (goto-char (point-min))
  10461. (select-window win)
  10462. (message "%s" (substitute-command-keys "Flagging note pushed to \
  10463. kill ring. Press `\\[org-agenda-show-the-flagging-note]' again to remove \
  10464. tag and note")))))
  10465. (defun org-agenda-remove-flag (marker)
  10466. "Remove the FLAGGED tag and any flagging note in the entry."
  10467. (let ((newhead
  10468. (org-with-point-at marker
  10469. (org-toggle-tag "FLAGGED" 'off)
  10470. (org-entry-delete nil "THEFLAGGINGNOTE")
  10471. (org-get-heading))))
  10472. (org-agenda-change-all-lines newhead marker)
  10473. (message "Entry unflagged")))
  10474. (defun org-agenda-get-any-marker (&optional pos)
  10475. (or (get-text-property (or pos (point-at-bol)) 'org-hd-marker)
  10476. (get-text-property (or pos (point-at-bol)) 'org-marker)))
  10477. ;;; Appointment reminders
  10478. (defvar appt-time-msg-list) ; defined in appt.el
  10479. ;;;###autoload
  10480. (defun org-agenda-to-appt (&optional refresh filter &rest args)
  10481. "Activate appointments found in `org-agenda-files'.
  10482. With a `\\[universal-argument]' prefix, refresh the list of \
  10483. appointments.
  10484. If FILTER is t, interactively prompt the user for a regular
  10485. expression, and filter out entries that don't match it.
  10486. If FILTER is a string, use this string as a regular expression
  10487. for filtering entries out.
  10488. If FILTER is a function, filter out entries against which
  10489. calling the function returns nil. This function takes one
  10490. argument: an entry from `org-agenda-get-day-entries'.
  10491. FILTER can also be an alist with the car of each cell being
  10492. either `headline' or `category'. For example:
  10493. \\='((headline \"IMPORTANT\")
  10494. (category \"Work\"))
  10495. will only add headlines containing IMPORTANT or headlines
  10496. belonging to the \"Work\" category.
  10497. ARGS are symbols indicating what kind of entries to consider.
  10498. By default `org-agenda-to-appt' will use :deadline*, :scheduled*
  10499. \(i.e., deadlines and scheduled items with a hh:mm specification)
  10500. and :timestamp entries. See the docstring of `org-diary' for
  10501. details and examples.
  10502. If an entry has a APPT_WARNTIME property, its value will be used
  10503. to override `appt-message-warning-time'."
  10504. (interactive "P")
  10505. (when refresh (setq appt-time-msg-list nil))
  10506. (when (eq filter t)
  10507. (setq filter (read-from-minibuffer "Regexp filter: ")))
  10508. (let* ((cnt 0) ; count added events
  10509. (scope (or args '(:deadline* :scheduled* :timestamp)))
  10510. (org-agenda-new-buffers nil)
  10511. (org-deadline-warning-days 0)
  10512. ;; Do not use `org-today' here because appt only takes
  10513. ;; time and without date as argument, so it may pass wrong
  10514. ;; information otherwise
  10515. (today (org-date-to-gregorian
  10516. (time-to-days nil)))
  10517. (org-agenda-restrict nil)
  10518. (files (org-agenda-files 'unrestricted)) entries file
  10519. (org-agenda-buffer nil))
  10520. ;; Get all entries which may contain an appt
  10521. (org-agenda-prepare-buffers files)
  10522. (while (setq file (pop files))
  10523. (setq entries
  10524. (delq nil
  10525. (append entries
  10526. (apply #'org-agenda-get-day-entries
  10527. file today scope)))))
  10528. ;; Map through entries and find if we should filter them out
  10529. (mapc
  10530. (lambda (x)
  10531. (let* ((evt (org-trim
  10532. (replace-regexp-in-string
  10533. org-link-bracket-re "\\2"
  10534. (or (get-text-property 1 'txt x) ""))))
  10535. (cat (get-text-property (1- (length x)) 'org-category x))
  10536. (tod (get-text-property 1 'time-of-day x))
  10537. (ok (or (null filter)
  10538. (and (stringp filter) (string-match filter evt))
  10539. (and (functionp filter) (funcall filter x))
  10540. (and (listp filter)
  10541. (let ((cat-filter (cadr (assq 'category filter)))
  10542. (evt-filter (cadr (assq 'headline filter))))
  10543. (or (and (stringp cat-filter)
  10544. (string-match cat-filter cat))
  10545. (and (stringp evt-filter)
  10546. (string-match evt-filter evt)))))))
  10547. (wrn (get-text-property 1 'warntime x)))
  10548. ;; FIXME: Shall we remove text-properties for the appt text?
  10549. ;; (setq evt (set-text-properties 0 (length evt) nil evt))
  10550. (when (and ok tod (not (string-match "\\`DONE\\|CANCELLED" evt)))
  10551. (setq tod (concat "00" (number-to-string tod)))
  10552. (setq tod (when (string-match
  10553. "\\([0-9]\\{1,2\\}\\)\\([0-9]\\{2\\}\\)\\'" tod)
  10554. (concat (match-string 1 tod) ":"
  10555. (match-string 2 tod))))
  10556. (when (appt-add tod evt wrn)
  10557. (setq cnt (1+ cnt))))))
  10558. entries)
  10559. (org-release-buffers org-agenda-new-buffers)
  10560. (if (eq cnt 0)
  10561. (message "No event to add")
  10562. (message "Added %d event%s for today" cnt (if (> cnt 1) "s" "")))))
  10563. (defun org-agenda-today-p (date)
  10564. "Non-nil when DATE means today.
  10565. DATE is either a list of the form (month day year) or a number of
  10566. days as returned by `calendar-absolute-from-gregorian' or
  10567. `org-today'. This function considers `org-extend-today-until'
  10568. when defining today."
  10569. (eq (org-today)
  10570. (if (consp date) (calendar-absolute-from-gregorian date) date)))
  10571. (defun org-agenda-todo-yesterday (&optional arg)
  10572. "Like `org-agenda-todo' but the time of change will be 23:59 of yesterday."
  10573. (interactive "P")
  10574. (let* ((org-use-effective-time t)
  10575. (hour (nth 2 (decode-time (org-current-time))))
  10576. (org-extend-today-until (1+ hour)))
  10577. (org-agenda-todo arg)))
  10578. (defun org-agenda-ctrl-c-ctrl-c ()
  10579. "Set tags in agenda buffer."
  10580. (interactive)
  10581. (org-agenda-set-tags))
  10582. (provide 'org-agenda)
  10583. ;;; org-agenda.el ends here