org-agenda.el 414 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731
  1. ;;; org-agenda.el --- Dynamic task and appointment lists for Org
  2. ;; Copyright (C) 2004-2020 Free Software Foundation, Inc.
  3. ;; Author: Carsten Dominik <carsten at orgmode dot org>
  4. ;; Keywords: outlines, hypermedia, calendar, wp
  5. ;; Homepage: https://orgmode.org
  6. ;;
  7. ;; This file is part of GNU Emacs.
  8. ;;
  9. ;; GNU Emacs is free software: you can redistribute it and/or modify
  10. ;; it under the terms of the GNU General Public License as published by
  11. ;; the Free Software Foundation, either version 3 of the License, or
  12. ;; (at your option) any later version.
  13. ;; GNU Emacs is distributed in the hope that it will be useful,
  14. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. ;; GNU General Public License for more details.
  17. ;; You should have received a copy of the GNU General Public License
  18. ;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
  19. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  20. ;;
  21. ;;; Commentary:
  22. ;; This file contains the code for creating and using the Agenda for Org.
  23. ;;
  24. ;; The functions `org-batch-agenda', `org-batch-agenda-csv', and
  25. ;; `org-batch-store-agenda-views' are implemented as macros to provide
  26. ;; a convenient way for extracting agenda information from the command
  27. ;; line. The Lisp does not evaluate parameters of a macro call; thus
  28. ;; it is not necessary to quote the parameters passed to one of those
  29. ;; functions. E.g. you can write:
  30. ;;
  31. ;; emacs -batch -l ~/.emacs -eval '(org-batch-agenda "a" org-agenda-span 7)'
  32. ;;
  33. ;; To export an agenda spanning 7 days. If `org-batch-agenda' would
  34. ;; have been implemented as a regular function you'd have to quote the
  35. ;; symbol org-agenda-span. Moreover: To use a symbol as parameter
  36. ;; value you would have to double quote the symbol.
  37. ;;
  38. ;; This is a hack, but it works even when running Org byte-compiled.
  39. ;;
  40. ;;; Code:
  41. (require 'cl-lib)
  42. (require 'ol)
  43. (require 'org)
  44. (require 'org-macs)
  45. (require 'org-refile)
  46. (declare-function diary-add-to-list "diary-lib"
  47. (date string specifier &optional marker globcolor literal))
  48. (declare-function calendar-iso-to-absolute "cal-iso" (date))
  49. (declare-function calendar-astro-date-string "cal-julian" (&optional date))
  50. (declare-function calendar-bahai-date-string "cal-bahai" (&optional date))
  51. (declare-function calendar-chinese-date-string "cal-china" (&optional date))
  52. (declare-function calendar-coptic-date-string "cal-coptic" (&optional date))
  53. (declare-function calendar-ethiopic-date-string "cal-coptic" (&optional date))
  54. (declare-function calendar-french-date-string "cal-french" (&optional date))
  55. (declare-function calendar-goto-date "cal-move" (date))
  56. (declare-function calendar-hebrew-date-string "cal-hebrew" (&optional date))
  57. (declare-function calendar-islamic-date-string "cal-islam" (&optional date))
  58. (declare-function calendar-iso-date-string "cal-iso" (&optional date))
  59. (declare-function calendar-iso-from-absolute "cal-iso" (date))
  60. (declare-function calendar-julian-date-string "cal-julian" (&optional date))
  61. (declare-function calendar-mayan-date-string "cal-mayan" (&optional date))
  62. (declare-function calendar-persian-date-string "cal-persia" (&optional date))
  63. (declare-function calendar-check-holidays "holidays" (date))
  64. (declare-function org-columns-remove-overlays "org-colview" ())
  65. (declare-function org-datetree-find-date-create "org-datetree"
  66. (date &optional keep-restriction))
  67. (declare-function org-columns-quit "org-colview" ())
  68. (declare-function diary-date-display-form "diary-lib" (&optional type))
  69. (declare-function org-mobile-write-agenda-for-mobile "org-mobile" (file))
  70. (declare-function org-habit-insert-consistency-graphs
  71. "org-habit" (&optional line))
  72. (declare-function org-is-habit-p "org-habit" (&optional pom))
  73. (declare-function org-habit-parse-todo "org-habit" (&optional pom))
  74. (declare-function org-habit-get-priority "org-habit" (habit &optional moment))
  75. (declare-function org-agenda-columns "org-colview" ())
  76. (declare-function org-add-archive-files "org-archive" (files))
  77. (declare-function org-capture "org-capture" (&optional goto keys))
  78. (declare-function org-clock-modify-effort-estimate "org-clock" (&optional value))
  79. (defvar calendar-mode-map)
  80. (defvar org-clock-current-task)
  81. (defvar org-current-tag-alist)
  82. (defvar org-mobile-force-id-on-agenda-items)
  83. (defvar org-habit-show-habits)
  84. (defvar org-habit-show-habits-only-for-today)
  85. (defvar org-habit-show-all-today)
  86. (defvar org-habit-scheduled-past-days)
  87. ;; Defined somewhere in this file, but used before definition.
  88. (defvar org-agenda-buffer-name "*Org Agenda*")
  89. (defvar org-agenda-overriding-header nil)
  90. (defvar org-agenda-title-append nil)
  91. (with-no-warnings (defvar entry)) ;; unprefixed, from calendar.el
  92. (with-no-warnings (defvar date)) ;; unprefixed, from calendar.el
  93. (defvar original-date) ; dynamically scoped, calendar.el does scope this
  94. (defvar org-agenda-undo-list nil
  95. "List of undoable operations in the agenda since last refresh.")
  96. (defvar org-agenda-pending-undo-list nil
  97. "In a series of undo commands, this is the list of remaining undo items.")
  98. (defcustom org-agenda-confirm-kill 1
  99. "When set, remote killing from the agenda buffer needs confirmation.
  100. When t, a confirmation is always needed. When a number N, confirmation is
  101. only needed when the text to be killed contains more than N non-white lines."
  102. :group 'org-agenda
  103. :type '(choice
  104. (const :tag "Never" nil)
  105. (const :tag "Always" t)
  106. (integer :tag "When more than N lines")))
  107. (defcustom org-agenda-compact-blocks nil
  108. "Non-nil means make the block agenda more compact.
  109. This is done globally by leaving out lines like the agenda span
  110. name and week number or the separator lines."
  111. :group 'org-agenda
  112. :type 'boolean)
  113. (defcustom org-agenda-block-separator ?=
  114. "The separator between blocks in the agenda.
  115. If this is a string, it will be used as the separator, with a newline added.
  116. If it is a character, it will be repeated to fill the window width.
  117. If nil the separator is disabled. In `org-agenda-custom-commands' this
  118. addresses the separator between the current and the previous block."
  119. :group 'org-agenda
  120. :type '(choice
  121. (const :tag "Disabled" nil)
  122. (character)
  123. (string)))
  124. (defgroup org-agenda-export nil
  125. "Options concerning exporting agenda views in Org mode."
  126. :tag "Org Agenda Export"
  127. :group 'org-agenda)
  128. (defcustom org-agenda-with-colors t
  129. "Non-nil means use colors in agenda views."
  130. :group 'org-agenda-export
  131. :type 'boolean)
  132. (defcustom org-agenda-exporter-settings nil
  133. "Alist of variable/value pairs that should be active during agenda export.
  134. This is a good place to set options for ps-print and for htmlize.
  135. Note that the way this is implemented, the values will be evaluated
  136. before assigned to the variables. So make sure to quote values you do
  137. *not* want evaluated, for example
  138. (setq org-agenda-exporter-settings
  139. \\='((ps-print-color-p \\='black-white)))"
  140. :group 'org-agenda-export
  141. :type '(repeat
  142. (list
  143. (variable)
  144. (sexp :tag "Value"))))
  145. (defcustom org-agenda-before-write-hook '(org-agenda-add-entry-text)
  146. "Hook run in a temporary buffer before writing the agenda to an export file.
  147. A useful function for this hook is `org-agenda-add-entry-text'."
  148. :group 'org-agenda-export
  149. :type 'hook
  150. :options '(org-agenda-add-entry-text))
  151. (defcustom org-agenda-add-entry-text-maxlines 0
  152. "Maximum number of entry text lines to be added to agenda.
  153. This is only relevant when `org-agenda-add-entry-text' is part of
  154. `org-agenda-before-write-hook', which is the default.
  155. When this is 0, nothing will happen. When it is greater than 0, it
  156. specifies the maximum number of lines that will be added for each entry
  157. that is listed in the agenda view.
  158. Note that this variable is not used during display, only when exporting
  159. the agenda. For agenda display, see the variables `org-agenda-entry-text-mode'
  160. and `org-agenda-entry-text-maxlines'."
  161. :group 'org-agenda
  162. :type 'integer)
  163. (defcustom org-agenda-add-entry-text-descriptive-links t
  164. "Non-nil means export org-links as descriptive links in agenda added text.
  165. This variable applies to the text added to the agenda when
  166. `org-agenda-add-entry-text-maxlines' is larger than 0.
  167. When this variable is nil, the URL will (also) be shown."
  168. :group 'org-agenda
  169. :type 'boolean)
  170. (defcustom org-agenda-export-html-style nil
  171. "The style specification for exported HTML Agenda files.
  172. If this variable contains a string, it will replace the default <style>
  173. section as produced by `htmlize'.
  174. Since there are different ways of setting style information, this variable
  175. needs to contain the full HTML structure to provide a style, including the
  176. surrounding HTML tags. The style specifications should include definitions
  177. the fonts used by the agenda, here is an example:
  178. <style type=\"text/css\">
  179. p { font-weight: normal; color: gray; }
  180. .org-agenda-structure {
  181. font-size: 110%;
  182. color: #003399;
  183. font-weight: 600;
  184. }
  185. .org-todo {
  186. color: #cc6666;
  187. font-weight: bold;
  188. }
  189. .org-agenda-done {
  190. color: #339933;
  191. }
  192. .org-done {
  193. color: #339933;
  194. }
  195. .title { text-align: center; }
  196. .todo, .deadline { color: red; }
  197. .done { color: green; }
  198. </style>
  199. or, if you want to keep the style in a file,
  200. <link rel=\"stylesheet\" type=\"text/css\" href=\"mystyles.css\">
  201. As the value of this option simply gets inserted into the HTML <head> header,
  202. you can \"misuse\" it to also add other text to the header."
  203. :group 'org-agenda-export
  204. :group 'org-export-html
  205. :type '(choice
  206. (const nil)
  207. (string)))
  208. (defcustom org-agenda-persistent-filter nil
  209. "When set, keep filters from one agenda view to the next."
  210. :group 'org-agenda
  211. :type 'boolean)
  212. (defgroup org-agenda-custom-commands nil
  213. "Options concerning agenda views in Org mode."
  214. :tag "Org Agenda Custom Commands"
  215. :group 'org-agenda)
  216. (defconst org-sorting-choice
  217. '(choice
  218. (const time-up) (const time-down)
  219. (const timestamp-up) (const timestamp-down)
  220. (const scheduled-up) (const scheduled-down)
  221. (const deadline-up) (const deadline-down)
  222. (const ts-up) (const ts-down)
  223. (const tsia-up) (const tsia-down)
  224. (const category-keep) (const category-up) (const category-down)
  225. (const tag-down) (const tag-up)
  226. (const priority-up) (const priority-down)
  227. (const todo-state-up) (const todo-state-down)
  228. (const effort-up) (const effort-down)
  229. (const habit-up) (const habit-down)
  230. (const alpha-up) (const alpha-down)
  231. (const user-defined-up) (const user-defined-down))
  232. "Sorting choices.")
  233. ;; Keep custom values for `org-agenda-filter-preset' compatible with
  234. ;; the new variable `org-agenda-tag-filter-preset'.
  235. (defvaralias 'org-agenda-filter-preset 'org-agenda-tag-filter-preset)
  236. (defvaralias 'org-agenda-filter 'org-agenda-tag-filter)
  237. (defvar org-agenda-entry-types '(:deadline :scheduled :timestamp :sexp)
  238. "List of types searched for when creating the daily/weekly agenda.
  239. This variable is a list of symbols that controls the types of
  240. items that appear in the daily/weekly agenda. Allowed symbols in this
  241. list are
  242. :timestamp List items containing a date stamp or date range matching
  243. the selected date. This includes sexp entries in angular
  244. brackets.
  245. :sexp List entries resulting from plain diary-like sexps.
  246. :deadline List deadline due on that date. When the date is today,
  247. also list any deadlines past due, or due within
  248. `org-deadline-warning-days'.
  249. :deadline* Same as above, but only include the deadline if it has an
  250. hour specification as [h]h:mm.
  251. :scheduled List all items which are scheduled for the given date.
  252. The diary for *today* also contains items which were
  253. scheduled earlier and are not yet marked DONE.
  254. :scheduled* Same as above, but only include the scheduled item if it
  255. has an hour specification as [h]h:mm.
  256. By default, all four non-starred types are turned on.
  257. When :scheduled* or :deadline* are included, :schedule or :deadline
  258. will be ignored.
  259. Never set this variable globally using `setq', because then it
  260. will apply to all future agenda commands. Instead, bind it with
  261. `let' to scope it dynamically into the agenda-constructing
  262. command. A good way to set it is through options in
  263. `org-agenda-custom-commands'. For a more flexible (though
  264. somewhat less efficient) way of determining what is included in
  265. the daily/weekly agenda, see `org-agenda-skip-function'.")
  266. (defconst org-agenda-custom-commands-local-options
  267. `(repeat :tag "Local settings for this command. Remember to quote values"
  268. (choice :tag "Setting"
  269. (list :tag "Heading for this block"
  270. (const org-agenda-overriding-header)
  271. (string :tag "Headline"))
  272. (list :tag "Files to be searched"
  273. (const org-agenda-files)
  274. (list
  275. (const :format "" quote)
  276. (repeat (file))))
  277. (list :tag "Sorting strategy"
  278. (const org-agenda-sorting-strategy)
  279. (list
  280. (const :format "" quote)
  281. (repeat
  282. ,org-sorting-choice)))
  283. (list :tag "Prefix format"
  284. (const org-agenda-prefix-format :value " %-12:c%?-12t% s")
  285. (string))
  286. (list :tag "Number of days in agenda"
  287. (const org-agenda-span)
  288. (list
  289. (const :format "" quote)
  290. (choice (const :tag "Day" day)
  291. (const :tag "Week" week)
  292. (const :tag "Fortnight" fortnight)
  293. (const :tag "Month" month)
  294. (const :tag "Year" year)
  295. (integer :tag "Custom"))))
  296. (list :tag "Fixed starting date"
  297. (const org-agenda-start-day)
  298. (string :value "2007-11-01"))
  299. (list :tag "Start on day of week"
  300. (const org-agenda-start-on-weekday)
  301. (choice :value 1
  302. (const :tag "Today" nil)
  303. (integer :tag "Weekday No.")))
  304. (list :tag "Include data from diary"
  305. (const org-agenda-include-diary)
  306. (boolean))
  307. (list :tag "Deadline Warning days"
  308. (const org-deadline-warning-days)
  309. (integer :value 1))
  310. (list :tag "Category filter preset"
  311. (const org-agenda-category-filter-preset)
  312. (list
  313. (const :format "" quote)
  314. (repeat
  315. (string :tag "+category or -category"))))
  316. (list :tag "Tags filter preset"
  317. (const org-agenda-tag-filter-preset)
  318. (list
  319. (const :format "" quote)
  320. (repeat
  321. (string :tag "+tag or -tag"))))
  322. (list :tag "Effort filter preset"
  323. (const org-agenda-effort-filter-preset)
  324. (list
  325. (const :format "" quote)
  326. (repeat
  327. (string :tag "+=10 or -=10 or +<10 or ->10"))))
  328. (list :tag "Regexp filter preset"
  329. (const org-agenda-regexp-filter-preset)
  330. (list
  331. (const :format "" quote)
  332. (repeat
  333. (string :tag "+regexp or -regexp"))))
  334. (list :tag "Set daily/weekly entry types"
  335. (const org-agenda-entry-types)
  336. (list
  337. (const :format "" quote)
  338. (set :greedy t :value ,org-agenda-entry-types
  339. (const :deadline)
  340. (const :scheduled)
  341. (const :deadline*)
  342. (const :scheduled*)
  343. (const :timestamp)
  344. (const :sexp))))
  345. (list :tag "Columns format"
  346. (const org-overriding-columns-format)
  347. (string :tag "Format"))
  348. (list :tag "Standard skipping condition"
  349. :value (org-agenda-skip-function '(org-agenda-skip-entry-if))
  350. (const org-agenda-skip-function)
  351. (list
  352. (const :format "" quote)
  353. (list
  354. (choice
  355. :tag "Skipping range"
  356. (const :tag "Skip entry" org-agenda-skip-entry-if)
  357. (const :tag "Skip subtree" org-agenda-skip-subtree-if))
  358. (repeat :inline t :tag "Conditions for skipping"
  359. (choice
  360. :tag "Condition type"
  361. (list :tag "Regexp matches" :inline t
  362. (const :format "" regexp)
  363. (regexp))
  364. (list :tag "Regexp does not match" :inline t
  365. (const :format "" notregexp)
  366. (regexp))
  367. (list :tag "TODO state is" :inline t
  368. (const todo)
  369. (choice
  370. (const :tag "Any not-done state" todo)
  371. (const :tag "Any done state" done)
  372. (const :tag "Any state" any)
  373. (list :tag "Keyword list"
  374. (const :format "" quote)
  375. (repeat (string :tag "Keyword")))))
  376. (list :tag "TODO state is not" :inline t
  377. (const nottodo)
  378. (choice
  379. (const :tag "Any not-done state" todo)
  380. (const :tag "Any done state" done)
  381. (const :tag "Any state" any)
  382. (list :tag "Keyword list"
  383. (const :format "" quote)
  384. (repeat (string :tag "Keyword")))))
  385. (const :tag "scheduled" scheduled)
  386. (const :tag "not scheduled" notscheduled)
  387. (const :tag "deadline" deadline)
  388. (const :tag "no deadline" notdeadline)
  389. (const :tag "timestamp" timestamp)
  390. (const :tag "no timestamp" nottimestamp))))))
  391. (list :tag "Non-standard skipping condition"
  392. :value (org-agenda-skip-function)
  393. (const org-agenda-skip-function)
  394. (sexp :tag "Function or form (quoted!)"))
  395. (list :tag "Any variable"
  396. (variable :tag "Variable")
  397. (sexp :tag "Value (sexp)"))))
  398. "Selection of examples for agenda command settings.
  399. This will be spliced into the custom type of
  400. `org-agenda-custom-commands'.")
  401. (defcustom org-agenda-custom-commands
  402. '(("n" "Agenda and all TODOs" ((agenda "") (alltodo ""))))
  403. "Custom commands for the agenda.
  404. \\<org-mode-map>
  405. These commands will be offered on the splash screen displayed by the
  406. agenda dispatcher `\\[org-agenda]'. Each entry is a list like this:
  407. (key desc type match settings files)
  408. key The key (one or more characters as a string) to be associated
  409. with the command.
  410. desc A description of the command, when omitted or nil, a default
  411. description is built using MATCH.
  412. type The command type, any of the following symbols:
  413. agenda The daily/weekly agenda.
  414. todo Entries with a specific TODO keyword, in all agenda files.
  415. search Entries containing search words entry or headline.
  416. tags Tags/Property/TODO match in all agenda files.
  417. tags-todo Tags/P/T match in all agenda files, TODO entries only.
  418. todo-tree Sparse tree of specific TODO keyword in *current* file.
  419. tags-tree Sparse tree with all tags matches in *current* file.
  420. occur-tree Occur sparse tree for *current* file.
  421. ... A user-defined function.
  422. match What to search for:
  423. - a single keyword for TODO keyword searches
  424. - a tags/property/todo match expression for searches
  425. - a word search expression for text searches.
  426. - a regular expression for occur searches
  427. For all other commands, this should be the empty string.
  428. settings A list of option settings, similar to that in a let form, so like
  429. this: ((opt1 val1) (opt2 val2) ...). The values will be
  430. evaluated at the moment of execution, so quote them when needed.
  431. files A list of files to write the produced agenda buffer to with
  432. the command `org-store-agenda-views'.
  433. If a file name ends in \".html\", an HTML version of the buffer
  434. is written out. If it ends in \".ps\", a postscript version is
  435. produced. Otherwise, only the plain text is written to the file.
  436. You can also define a set of commands, to create a composite agenda buffer.
  437. In this case, an entry looks like this:
  438. (key desc (cmd1 cmd2 ...) general-settings-for-whole-set files)
  439. where
  440. desc A description string to be displayed in the dispatcher menu.
  441. cmd An agenda command, similar to the above. However, tree commands
  442. are not allowed, but instead you can get agenda and global todo list.
  443. So valid commands for a set are:
  444. (agenda \"\" settings)
  445. (alltodo \"\" settings)
  446. (stuck \"\" settings)
  447. (todo \"match\" settings files)
  448. (search \"match\" settings files)
  449. (tags \"match\" settings files)
  450. (tags-todo \"match\" settings files)
  451. Each command can carry a list of options, and another set of options can be
  452. given for the whole set of commands. Individual command options take
  453. precedence over the general options.
  454. When using several characters as key to a command, the first characters
  455. are prefix commands. For the dispatcher to display useful information, you
  456. should provide a description for the prefix, like
  457. (setq org-agenda-custom-commands
  458. \\='((\"h\" . \"HOME + Name tag searches\") ; describe prefix \"h\"
  459. (\"hl\" tags \"+HOME+Lisa\")
  460. (\"hp\" tags \"+HOME+Peter\")
  461. (\"hk\" tags \"+HOME+Kim\")))"
  462. :group 'org-agenda-custom-commands
  463. :type `(repeat
  464. (choice :value ("x" "Describe command here" tags "" nil)
  465. (list :tag "Single command"
  466. (string :tag "Access Key(s) ")
  467. (option (string :tag "Description"))
  468. (choice
  469. (const :tag "Agenda" agenda)
  470. (const :tag "TODO list" alltodo)
  471. (const :tag "Search words" search)
  472. (const :tag "Stuck projects" stuck)
  473. (const :tag "Tags/Property match (all agenda files)" tags)
  474. (const :tag "Tags/Property match of TODO entries (all agenda files)" tags-todo)
  475. (const :tag "TODO keyword search (all agenda files)" todo)
  476. (const :tag "Tags sparse tree (current buffer)" tags-tree)
  477. (const :tag "TODO keyword tree (current buffer)" todo-tree)
  478. (const :tag "Occur tree (current buffer)" occur-tree)
  479. (sexp :tag "Other, user-defined function"))
  480. (string :tag "Match (only for some commands)")
  481. ,org-agenda-custom-commands-local-options
  482. (option (repeat :tag "Export" (file :tag "Export to"))))
  483. (list :tag "Command series, all agenda files"
  484. (string :tag "Access Key(s)")
  485. (string :tag "Description ")
  486. (repeat :tag "Component"
  487. (choice
  488. (list :tag "Agenda"
  489. (const :format "" agenda)
  490. (const :tag "" :format "" "")
  491. ,org-agenda-custom-commands-local-options)
  492. (list :tag "TODO list (all keywords)"
  493. (const :format "" alltodo)
  494. (const :tag "" :format "" "")
  495. ,org-agenda-custom-commands-local-options)
  496. (list :tag "Search words"
  497. (const :format "" search)
  498. (string :tag "Match")
  499. ,org-agenda-custom-commands-local-options)
  500. (list :tag "Stuck projects"
  501. (const :format "" stuck)
  502. (const :tag "" :format "" "")
  503. ,org-agenda-custom-commands-local-options)
  504. (list :tag "Tags/Property match (all agenda files)"
  505. (const :format "" tags)
  506. (string :tag "Match")
  507. ,org-agenda-custom-commands-local-options)
  508. (list :tag "Tags/Property match of TODO entries (all agenda files)"
  509. (const :format "" tags-todo)
  510. (string :tag "Match")
  511. ,org-agenda-custom-commands-local-options)
  512. (list :tag "TODO keyword search"
  513. (const :format "" todo)
  514. (string :tag "Match")
  515. ,org-agenda-custom-commands-local-options)
  516. (list :tag "Other, user-defined function"
  517. (symbol :tag "function")
  518. (string :tag "Match")
  519. ,org-agenda-custom-commands-local-options)))
  520. (repeat :tag "Settings for entire command set"
  521. (list (variable :tag "Any variable")
  522. (sexp :tag "Value")))
  523. (option (repeat :tag "Export" (file :tag "Export to"))))
  524. (cons :tag "Prefix key documentation"
  525. (string :tag "Access Key(s)")
  526. (string :tag "Description ")))))
  527. (defcustom org-agenda-query-register ?o
  528. "The register holding the current query string.
  529. The purpose of this is that if you construct a query string interactively,
  530. you can then use it to define a custom command."
  531. :group 'org-agenda-custom-commands
  532. :type 'character)
  533. (defcustom org-stuck-projects
  534. '("+LEVEL=2/-DONE" ("TODO" "NEXT" "NEXTACTION") nil "")
  535. "How to identify stuck projects.
  536. This is a list of four items:
  537. 1. A tags/todo/property matcher string that is used to identify a project.
  538. See the manual for a description of tag and property searches.
  539. The entire tree below a headline matched by this is considered one project.
  540. 2. A list of TODO keywords identifying non-stuck projects.
  541. If the project subtree contains any headline with one of these todo
  542. keywords, the project is considered to be not stuck. If you specify
  543. \"*\" as a keyword, any TODO keyword will mark the project unstuck.
  544. 3. A list of tags identifying non-stuck projects.
  545. If the project subtree contains any headline with one of these tags,
  546. the project is considered to be not stuck. If you specify \"*\" as
  547. a tag, any tag will mark the project unstuck. Note that this is about
  548. the explicit presence of a tag somewhere in the subtree, inherited
  549. tags do not count here. If inherited tags make a project not stuck,
  550. use \"-TAG\" in the tags part of the matcher under (1.) above.
  551. 4. An arbitrary regular expression matching non-stuck projects.
  552. If the project turns out to be not stuck, search continues also in the
  553. subtree to see if any of the subtasks have project status.
  554. See also the variable `org-tags-match-list-sublevels' which applies
  555. to projects matched by this search as well.
  556. After defining this variable, you may use `org-agenda-list-stuck-projects'
  557. \(bound to `\\[org-agenda] #') to produce the list."
  558. :group 'org-agenda-custom-commands
  559. :type '(list
  560. (string :tag "Tags/TODO match to identify a project")
  561. (repeat :tag "Projects are *not* stuck if they have an entry with \
  562. TODO keyword any of" (string))
  563. (repeat :tag "Projects are *not* stuck if they have an entry with \
  564. TAG being any of" (string))
  565. (regexp :tag "Projects are *not* stuck if this regexp matches inside \
  566. the subtree")))
  567. (defgroup org-agenda-skip nil
  568. "Options concerning skipping parts of agenda files."
  569. :tag "Org Agenda Skip"
  570. :group 'org-agenda)
  571. (defcustom org-agenda-skip-function-global nil
  572. "Function to be called at each match during agenda construction.
  573. If this function returns nil, the current match should not be skipped.
  574. If the function decided to skip an agenda match, is must return the
  575. buffer position from which the search should be continued.
  576. This may also be a Lisp form, which will be evaluated.
  577. This variable will be applied to every agenda match, including
  578. tags/property searches and TODO lists. So try to make the test function
  579. do its checking as efficiently as possible. To implement a skipping
  580. condition just for specific agenda commands, use the variable
  581. `org-agenda-skip-function' which can be set in the options section
  582. of custom agenda commands."
  583. :group 'org-agenda-skip
  584. :type 'sexp)
  585. (defgroup org-agenda-daily/weekly nil
  586. "Options concerning the daily/weekly agenda."
  587. :tag "Org Agenda Daily/Weekly"
  588. :group 'org-agenda)
  589. (defgroup org-agenda-todo-list nil
  590. "Options concerning the global todo list agenda view."
  591. :tag "Org Agenda Todo List"
  592. :group 'org-agenda)
  593. (defgroup org-agenda-match-view nil
  594. "Options concerning the general tags/property/todo match agenda view."
  595. :tag "Org Agenda Match View"
  596. :group 'org-agenda)
  597. (defgroup org-agenda-search-view nil
  598. "Options concerning the search agenda view."
  599. :tag "Org Agenda Search View"
  600. :group 'org-agenda)
  601. (defvar org-agenda-archives-mode nil
  602. "Non-nil means the agenda will include archived items.
  603. If this is the symbol `trees', trees in the selected agenda scope
  604. that are marked with the ARCHIVE tag will be included anyway. When this is
  605. t, also all archive files associated with the current selection of agenda
  606. files will be included.")
  607. (defcustom org-agenda-restriction-lock-highlight-subtree t
  608. "Non-nil means highlight the whole subtree when restriction is active.
  609. Otherwise only highlight the headline. Highlighting the whole subtree is
  610. useful to ensure no edits happen beyond the restricted region."
  611. :group 'org-agenda
  612. :type 'boolean)
  613. (defcustom org-agenda-skip-comment-trees t
  614. "Non-nil means skip trees that start with the COMMENT keyword.
  615. When nil, these trees are also scanned by agenda commands."
  616. :group 'org-agenda-skip
  617. :type 'boolean)
  618. (defcustom org-agenda-todo-list-sublevels t
  619. "Non-nil means check also the sublevels of a TODO entry for TODO entries.
  620. When nil, the sublevels of a TODO entry are not checked, resulting in
  621. potentially much shorter TODO lists."
  622. :group 'org-agenda-skip
  623. :group 'org-agenda-todo-list
  624. :type 'boolean)
  625. (defcustom org-agenda-todo-ignore-with-date nil
  626. "Non-nil means don't show entries with a date in the global todo list.
  627. You can use this if you prefer to mark mere appointments with a TODO keyword,
  628. but don't want them to show up in the TODO list.
  629. When this is set, it also covers deadlines and scheduled items, the settings
  630. of `org-agenda-todo-ignore-scheduled' and `org-agenda-todo-ignore-deadlines'
  631. will be ignored.
  632. See also the variable `org-agenda-tags-todo-honor-ignore-options'."
  633. :group 'org-agenda-skip
  634. :group 'org-agenda-todo-list
  635. :type 'boolean)
  636. (defcustom org-agenda-todo-ignore-timestamp nil
  637. "Non-nil means don't show entries with a timestamp.
  638. This applies when creating the global todo list.
  639. Valid values are:
  640. past Don't show entries for today or in the past.
  641. future Don't show entries with a timestamp in the future.
  642. The idea behind this is that if it has a future
  643. timestamp, you don't want to think about it until the
  644. date.
  645. all Don't show any entries with a timestamp in the global todo list.
  646. The idea behind this is that by setting a timestamp, you
  647. have already \"taken care\" of this item.
  648. This variable can also have an integer as a value. If positive (N),
  649. todos with a timestamp N or more days in the future will be ignored. If
  650. negative (-N), todos with a timestamp N or more days in the past will be
  651. ignored. If 0, todos with a timestamp either today or in the future will
  652. be ignored. For example, a value of -1 will exclude todos with a
  653. timestamp in the past (yesterday or earlier), while a value of 7 will
  654. exclude todos with a timestamp a week or more in the future.
  655. See also `org-agenda-todo-ignore-with-date'.
  656. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  657. to make his option also apply to the tags-todo list."
  658. :group 'org-agenda-skip
  659. :group 'org-agenda-todo-list
  660. :version "24.1"
  661. :type '(choice
  662. (const :tag "Ignore future timestamp todos" future)
  663. (const :tag "Ignore past or present timestamp todos" past)
  664. (const :tag "Ignore all timestamp todos" all)
  665. (const :tag "Show timestamp todos" nil)
  666. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  667. (defcustom org-agenda-todo-ignore-scheduled nil
  668. "Non-nil means, ignore some scheduled TODO items when making TODO list.
  669. This applies when creating the global todo list.
  670. Valid values are:
  671. past Don't show entries scheduled today or in the past.
  672. future Don't show entries scheduled in the future.
  673. The idea behind this is that by scheduling it, you don't want to
  674. think about it until the scheduled date.
  675. all Don't show any scheduled entries in the global todo list.
  676. The idea behind this is that by scheduling it, you have already
  677. \"taken care\" of this item.
  678. t Same as `all', for backward compatibility.
  679. This variable can also have an integer as a value. See
  680. `org-agenda-todo-ignore-timestamp' for more details.
  681. See also `org-agenda-todo-ignore-with-date'.
  682. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  683. to make his option also apply to the tags-todo list."
  684. :group 'org-agenda-skip
  685. :group 'org-agenda-todo-list
  686. :type '(choice
  687. (const :tag "Ignore future-scheduled todos" future)
  688. (const :tag "Ignore past- or present-scheduled todos" past)
  689. (const :tag "Ignore all scheduled todos" all)
  690. (const :tag "Ignore all scheduled todos (compatibility)" t)
  691. (const :tag "Show scheduled todos" nil)
  692. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  693. (defcustom org-agenda-todo-ignore-deadlines nil
  694. "Non-nil means ignore some deadline TODO items when making TODO list.
  695. There are different motivations for using different values, please think
  696. carefully when configuring this variable.
  697. This applies when creating the global TODO list.
  698. Valid values are:
  699. near Don't show near deadline entries. A deadline is near when it is
  700. closer than `org-deadline-warning-days' days. The idea behind this
  701. is that such items will appear in the agenda anyway.
  702. far Don't show TODO entries where a deadline has been defined, but
  703. is not going to happen anytime soon. This is useful if you want to use
  704. the TODO list to figure out what to do now.
  705. past Don't show entries with a deadline timestamp for today or in the past.
  706. future Don't show entries with a deadline timestamp in the future, not even
  707. when they become `near' ones. Use it with caution.
  708. all Ignore all TODO entries that do have a deadline.
  709. t Same as `near', for backward compatibility.
  710. This variable can also have an integer as a value. See
  711. `org-agenda-todo-ignore-timestamp' for more details.
  712. See also `org-agenda-todo-ignore-with-date'.
  713. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  714. to make his option also apply to the tags-todo list."
  715. :group 'org-agenda-skip
  716. :group 'org-agenda-todo-list
  717. :type '(choice
  718. (const :tag "Ignore near deadlines" near)
  719. (const :tag "Ignore near deadlines (compatibility)" t)
  720. (const :tag "Ignore far deadlines" far)
  721. (const :tag "Ignore all TODOs with a deadlines" all)
  722. (const :tag "Show all TODOs, even if they have a deadline" nil)
  723. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  724. (defcustom org-agenda-todo-ignore-time-comparison-use-seconds nil
  725. "Time unit to use when possibly ignoring an agenda item.
  726. See the docstring of various `org-agenda-todo-ignore-*' options.
  727. The default is to compare time stamps using days. An item is thus
  728. considered to be in the future if it is at least one day after today.
  729. Non-nil means to compare time stamps using seconds. An item is then
  730. considered future if it has a time value later than current time."
  731. :group 'org-agenda-skip
  732. :group 'org-agenda-todo-list
  733. :version "24.4"
  734. :package-version '(Org . "8.0")
  735. :type '(choice
  736. (const :tag "Compare time with days" nil)
  737. (const :tag "Compare time with seconds" t)))
  738. (defcustom org-agenda-tags-todo-honor-ignore-options nil
  739. "Non-nil means honor todo-list ignores options also in tags-todo search.
  740. The variables
  741. `org-agenda-todo-ignore-with-date',
  742. `org-agenda-todo-ignore-timestamp',
  743. `org-agenda-todo-ignore-scheduled',
  744. `org-agenda-todo-ignore-deadlines'
  745. make the global TODO list skip entries that have time stamps of certain
  746. kinds. If this option is set, the same options will also apply for the
  747. tags-todo search, which is the general tags/property matcher
  748. restricted to unfinished TODO entries only."
  749. :group 'org-agenda-skip
  750. :group 'org-agenda-todo-list
  751. :group 'org-agenda-match-view
  752. :type 'boolean)
  753. (defcustom org-agenda-skip-scheduled-if-done nil
  754. "Non-nil means don't show scheduled items in agenda when they are done.
  755. This is relevant for the daily/weekly agenda, not for the TODO list. It
  756. applies only to the actual date of the scheduling. Warnings about an item
  757. with a past scheduling dates are always turned off when the item is DONE."
  758. :group 'org-agenda-skip
  759. :group 'org-agenda-daily/weekly
  760. :type 'boolean)
  761. (defcustom org-agenda-skip-scheduled-if-deadline-is-shown nil
  762. "Non-nil means skip scheduling line if same entry shows because of deadline.
  763. In the agenda of today, an entry can show up multiple times
  764. because it is both scheduled and has a nearby deadline, and maybe
  765. a plain time stamp as well.
  766. When this variable is nil, the entry will be shown several times.
  767. When set to t, then only the deadline is shown and the fact that
  768. the entry is scheduled today or was scheduled previously is not
  769. shown.
  770. When set to the symbol `not-today', skip scheduled previously,
  771. but not scheduled today.
  772. When set to the symbol `repeated-after-deadline', skip scheduled
  773. items if they are repeated beyond the current deadline."
  774. :group 'org-agenda-skip
  775. :group 'org-agenda-daily/weekly
  776. :type '(choice
  777. (const :tag "Never" nil)
  778. (const :tag "Always" t)
  779. (const :tag "Not when scheduled today" not-today)
  780. (const :tag "When repeated past deadline" repeated-after-deadline)))
  781. (defcustom org-agenda-skip-timestamp-if-deadline-is-shown nil
  782. "Non-nil means skip timestamp line if same entry shows because of deadline.
  783. In the agenda of today, an entry can show up multiple times
  784. because it has both a plain timestamp and has a nearby deadline.
  785. When this variable is t, then only the deadline is shown and the
  786. fact that the entry has a timestamp for or including today is not
  787. shown. When this variable is nil, the entry will be shown
  788. several times."
  789. :group 'org-agenda-skip
  790. :group 'org-agenda-daily/weekly
  791. :version "24.1"
  792. :type '(choice
  793. (const :tag "Never" nil)
  794. (const :tag "Always" t)))
  795. (defcustom org-agenda-skip-deadline-if-done nil
  796. "Non-nil means don't show deadlines when the corresponding item is done.
  797. When nil, the deadline is still shown and should give you a happy feeling.
  798. This is relevant for the daily/weekly agenda. It applies only to the
  799. actual date of the deadline. Warnings about approaching and past-due
  800. deadlines are always turned off when the item is DONE."
  801. :group 'org-agenda-skip
  802. :group 'org-agenda-daily/weekly
  803. :type 'boolean)
  804. (defcustom org-agenda-skip-deadline-prewarning-if-scheduled nil
  805. "Non-nil means skip deadline prewarning when entry is also scheduled.
  806. This will apply on all days where a prewarning for the deadline would
  807. be shown, but not at the day when the entry is actually due. On that day,
  808. the deadline will be shown anyway.
  809. This variable may be set to nil, t, the symbol `pre-scheduled',
  810. or a number which will then give the number of days before the actual
  811. deadline when the prewarnings should resume. The symbol `pre-scheduled'
  812. eliminates the deadline prewarning only prior to the scheduled date.
  813. This can be used in a workflow where the first showing of the deadline will
  814. trigger you to schedule it, and then you don't want to be reminded of it
  815. because you will take care of it on the day when scheduled."
  816. :group 'org-agenda-skip
  817. :group 'org-agenda-daily/weekly
  818. :version "24.1"
  819. :type '(choice
  820. (const :tag "Always show prewarning" nil)
  821. (const :tag "Remove prewarning prior to scheduled date" pre-scheduled)
  822. (const :tag "Remove prewarning if entry is scheduled" t)
  823. (integer :tag "Restart prewarning N days before deadline")))
  824. (defcustom org-agenda-skip-scheduled-delay-if-deadline nil
  825. "Non-nil means skip scheduled delay when entry also has a deadline.
  826. This variable may be set to nil, t, the symbol `post-deadline',
  827. or a number which will then give the number of days after the actual
  828. scheduled date when the delay should expire. The symbol `post-deadline'
  829. eliminates the schedule delay when the date is posterior to the deadline."
  830. :group 'org-agenda-skip
  831. :group 'org-agenda-daily/weekly
  832. :version "24.4"
  833. :package-version '(Org . "8.0")
  834. :type '(choice
  835. (const :tag "Always honor delay" nil)
  836. (const :tag "Ignore delay if posterior to the deadline" post-deadline)
  837. (const :tag "Ignore delay if entry has a deadline" t)
  838. (integer :tag "Honor delay up until N days after the scheduled date")))
  839. (defcustom org-agenda-skip-additional-timestamps-same-entry nil
  840. "When nil, multiple same-day timestamps in entry make multiple agenda lines.
  841. When non-nil, after the search for timestamps has matched once in an
  842. entry, the rest of the entry will not be searched."
  843. :group 'org-agenda-skip
  844. :type 'boolean)
  845. (defcustom org-agenda-skip-timestamp-if-done nil
  846. "Non-nil means don't select item by timestamp or -range if it is DONE."
  847. :group 'org-agenda-skip
  848. :group 'org-agenda-daily/weekly
  849. :type 'boolean)
  850. (defcustom org-agenda-dim-blocked-tasks t
  851. "Non-nil means dim blocked tasks in the agenda display.
  852. This causes some overhead during agenda construction, but if you
  853. have turned on `org-enforce-todo-dependencies',
  854. `org-enforce-todo-checkbox-dependencies', or any other blocking
  855. mechanism, this will create useful feedback in the agenda.
  856. Instead of t, this variable can also have the value `invisible'.
  857. Then blocked tasks will be invisible and only become visible when
  858. they become unblocked. An exemption to this behavior is when a task is
  859. blocked because of unchecked checkboxes below it. Since checkboxes do
  860. not show up in the agenda views, making this task invisible you remove any
  861. trace from agenda views that there is something to do. Therefore, a task
  862. that is blocked because of checkboxes will never be made invisible, it
  863. will only be dimmed."
  864. :group 'org-agenda-daily/weekly
  865. :group 'org-agenda-todo-list
  866. :version "24.3"
  867. :type '(choice
  868. (const :tag "Do not dim" nil)
  869. (const :tag "Dim to a gray face" t)
  870. (const :tag "Make invisible" invisible)))
  871. (defgroup org-agenda-startup nil
  872. "Options concerning initial settings in the Agenda in Org Mode."
  873. :tag "Org Agenda Startup"
  874. :group 'org-agenda)
  875. (defcustom org-agenda-menu-show-matcher t
  876. "Non-nil means show the match string in the agenda dispatcher menu.
  877. When nil, the matcher string is not shown, but is put into the help-echo
  878. property so than moving the mouse over the command shows it.
  879. Setting it to nil is good if matcher strings are very long and/or if
  880. you want to use two-columns display (see `org-agenda-menu-two-columns')."
  881. :group 'org-agenda
  882. :version "24.1"
  883. :type 'boolean)
  884. (defcustom org-agenda-menu-two-columns nil
  885. "Non-nil means, use two columns to show custom commands in the dispatcher.
  886. If you use this, you probably want to set `org-agenda-menu-show-matcher'
  887. to nil."
  888. :group 'org-agenda
  889. :version "24.1"
  890. :type 'boolean)
  891. (defcustom org-agenda-finalize-hook nil
  892. "Hook run just before displaying an agenda buffer.
  893. The buffer is still writable when the hook is called.
  894. You can modify some of the buffer substrings but you should be
  895. extra careful not to modify the text properties of the agenda
  896. headlines as the agenda display heavily relies on them."
  897. :group 'org-agenda-startup
  898. :type 'hook)
  899. (defcustom org-agenda-filter-hook nil
  900. "Hook run just after filtering with `org-agenda-filter'."
  901. :group 'org-agenda-startup
  902. :package-version '(Org . "9.4")
  903. :type 'hook)
  904. (defcustom org-agenda-mouse-1-follows-link nil
  905. "Non-nil means mouse-1 on a link will follow the link in the agenda.
  906. A longer mouse click will still set point. Needs to be set
  907. before org.el is loaded."
  908. :group 'org-agenda-startup
  909. :type 'boolean)
  910. (defcustom org-agenda-start-with-follow-mode nil
  911. "The initial value of follow mode in a newly created agenda window."
  912. :group 'org-agenda-startup
  913. :type 'boolean)
  914. (defcustom org-agenda-follow-indirect nil
  915. "Non-nil means `org-agenda-follow-mode' displays only the
  916. current item's tree, in an indirect buffer."
  917. :group 'org-agenda
  918. :version "24.1"
  919. :type 'boolean)
  920. (defcustom org-agenda-show-outline-path t
  921. "Non-nil means show outline path in echo area after line motion."
  922. :group 'org-agenda-startup
  923. :type 'boolean)
  924. (defcustom org-agenda-start-with-entry-text-mode nil
  925. "The initial value of entry-text-mode in a newly created agenda window."
  926. :group 'org-agenda-startup
  927. :type 'boolean)
  928. (defcustom org-agenda-entry-text-maxlines 5
  929. "Number of text lines to be added when `E' is pressed in the agenda.
  930. Note that this variable only used during agenda display. To add entry text
  931. when exporting the agenda, configure the variable
  932. `org-agenda-add-entry-text-maxlines'."
  933. :group 'org-agenda
  934. :type 'integer)
  935. (defcustom org-agenda-entry-text-exclude-regexps nil
  936. "List of regular expressions to clean up entry text.
  937. The complete matches of all regular expressions in this list will be
  938. removed from entry text before it is shown in the agenda."
  939. :group 'org-agenda
  940. :type '(repeat (regexp)))
  941. (defcustom org-agenda-entry-text-leaders " > "
  942. "Text prepended to the entry text in agenda buffers."
  943. :version "24.4"
  944. :package-version '(Org . "8.0")
  945. :group 'org-agenda
  946. :type 'string)
  947. (defvar org-agenda-entry-text-cleanup-hook nil
  948. "Hook that is run after basic cleanup of entry text to be shown in agenda.
  949. This cleanup is done in a temporary buffer, so the function may inspect and
  950. change the entire buffer.
  951. Some default stuff like drawers and scheduling/deadline dates will already
  952. have been removed when this is called, as will any matches for regular
  953. expressions listed in `org-agenda-entry-text-exclude-regexps'.")
  954. (defvar org-agenda-include-inactive-timestamps nil
  955. "Non-nil means include inactive time stamps in agenda.
  956. Dynamically scoped.")
  957. (defgroup org-agenda-windows nil
  958. "Options concerning the windows used by the Agenda in Org Mode."
  959. :tag "Org Agenda Windows"
  960. :group 'org-agenda)
  961. (defcustom org-agenda-window-setup 'reorganize-frame
  962. "How the agenda buffer should be displayed.
  963. Possible values for this option are:
  964. current-window Show agenda in the current window, keeping all other windows.
  965. other-window Use `switch-to-buffer-other-window' to display agenda.
  966. only-window Show agenda, deleting all other windows.
  967. reorganize-frame Show only two windows on the current frame, the current
  968. window and the agenda.
  969. other-frame Use `switch-to-buffer-other-frame' to display agenda.
  970. Also, when exiting the agenda, kill that frame.
  971. other-tab Use `switch-to-buffer-other-tab' to display the
  972. agenda, making use of the `tab-bar-mode' introduced
  973. in Emacs version 27.1. Also, kill that tab when
  974. exiting the agenda view.
  975. See also the variable `org-agenda-restore-windows-after-quit'."
  976. :group 'org-agenda-windows
  977. :type '(choice
  978. (const current-window)
  979. (const other-frame)
  980. (const other-tab)
  981. (const other-window)
  982. (const only-window)
  983. (const reorganize-frame))
  984. :package-version '(Org . "9.4"))
  985. (defcustom org-agenda-window-frame-fractions '(0.5 . 0.75)
  986. "The min and max height of the agenda window as a fraction of frame height.
  987. The value of the variable is a cons cell with two numbers between 0 and 1.
  988. It only matters if `org-agenda-window-setup' is `reorganize-frame'."
  989. :group 'org-agenda-windows
  990. :type '(cons (number :tag "Minimum") (number :tag "Maximum")))
  991. (defcustom org-agenda-restore-windows-after-quit nil
  992. "Non-nil means restore window configuration upon exiting agenda.
  993. Before the window configuration is changed for displaying the
  994. agenda, the current status is recorded. When the agenda is
  995. exited with `q' or `x' and this option is set, the old state is
  996. restored. If `org-agenda-window-setup' is `other-frame' or
  997. `other-tab', the value of this option will be ignored."
  998. :group 'org-agenda-windows
  999. :type 'boolean)
  1000. (defcustom org-agenda-span 'week
  1001. "Number of days to include in overview display.
  1002. Can be day, week, month, year, or any number of days.
  1003. Custom commands can set this variable in the options section."
  1004. :group 'org-agenda-daily/weekly
  1005. :type '(choice (const :tag "Day" day)
  1006. (const :tag "Week" week)
  1007. (const :tag "Fortnight" fortnight)
  1008. (const :tag "Month" month)
  1009. (const :tag "Year" year)
  1010. (integer :tag "Custom")))
  1011. (defcustom org-agenda-start-on-weekday 1
  1012. "Non-nil means start the overview always on the specified weekday.
  1013. 0 denotes Sunday, 1 denotes Monday, etc.
  1014. When nil, always start on the current day.
  1015. Custom commands can set this variable in the options section."
  1016. :group 'org-agenda-daily/weekly
  1017. :type '(choice (const :tag "Today" nil)
  1018. (integer :tag "Weekday No.")))
  1019. (defcustom org-agenda-show-all-dates t
  1020. "Non-nil means `org-agenda' shows every day in the selected range.
  1021. When nil, only the days which actually have entries are shown."
  1022. :group 'org-agenda-daily/weekly
  1023. :type 'boolean)
  1024. (defcustom org-agenda-format-date 'org-agenda-format-date-aligned
  1025. "Format string for displaying dates in the agenda.
  1026. Used by the daily/weekly agenda. This should be a format string
  1027. understood by `format-time-string', or a function returning the
  1028. formatted date as a string. The function must take a single
  1029. argument, a calendar-style date list like (month day year)."
  1030. :group 'org-agenda-daily/weekly
  1031. :type '(choice
  1032. (string :tag "Format string")
  1033. (function :tag "Function")))
  1034. (defun org-agenda-end-of-line ()
  1035. "Go to the end of visible line."
  1036. (interactive)
  1037. (goto-char (line-end-position)))
  1038. (defun org-agenda-format-date-aligned (date)
  1039. "Format a DATE string for display in the daily/weekly agenda.
  1040. This function makes sure that dates are aligned for easy reading."
  1041. (require 'cal-iso)
  1042. (let* ((dayname (calendar-day-name date))
  1043. (day (cadr date))
  1044. (day-of-week (calendar-day-of-week date))
  1045. (month (car date))
  1046. (monthname (calendar-month-name month))
  1047. (year (nth 2 date))
  1048. (iso-week (org-days-to-iso-week
  1049. (calendar-absolute-from-gregorian date)))
  1050. (weekyear (cond ((and (= month 1) (>= iso-week 52))
  1051. (1- year))
  1052. ((and (= month 12) (<= iso-week 1))
  1053. (1+ year))
  1054. (t year)))
  1055. (weekstring (if (= day-of-week 1)
  1056. (format " W%02d" iso-week)
  1057. "")))
  1058. (format "%-10s %2d %s %4d%s"
  1059. dayname day monthname year weekstring)))
  1060. (defcustom org-agenda-time-leading-zero nil
  1061. "Non-nil means use leading zero for military times in agenda.
  1062. For example, 9:30am would become 09:30 rather than 9:30."
  1063. :group 'org-agenda-daily/weekly
  1064. :version "24.1"
  1065. :type 'boolean)
  1066. (defcustom org-agenda-timegrid-use-ampm nil
  1067. "When set, show AM/PM style timestamps on the timegrid."
  1068. :group 'org-agenda
  1069. :version "24.1"
  1070. :type 'boolean)
  1071. (defun org-agenda-time-of-day-to-ampm (time)
  1072. "Convert TIME of a string like \"13:45\" to an AM/PM style time string."
  1073. (let* ((hour-number (string-to-number (substring time 0 -3)))
  1074. (minute (substring time -2))
  1075. (ampm "am"))
  1076. (cond
  1077. ((equal hour-number 12)
  1078. (setq ampm "pm"))
  1079. ((> hour-number 12)
  1080. (setq ampm "pm")
  1081. (setq hour-number (- hour-number 12))))
  1082. (concat
  1083. (if org-agenda-time-leading-zero
  1084. (format "%02d" hour-number)
  1085. (format "%02s" (number-to-string hour-number)))
  1086. ":" minute ampm)))
  1087. (defun org-agenda-time-of-day-to-ampm-maybe (time)
  1088. "Conditionally convert TIME to AM/PM format based on `org-agenda-timegrid-use-ampm'."
  1089. (if org-agenda-timegrid-use-ampm
  1090. (org-agenda-time-of-day-to-ampm time)
  1091. time))
  1092. (defcustom org-agenda-weekend-days '(6 0)
  1093. "Which days are weekend?
  1094. These days get the special face `org-agenda-date-weekend' in the agenda."
  1095. :group 'org-agenda-daily/weekly
  1096. :type '(set :greedy t
  1097. (const :tag "Monday" 1)
  1098. (const :tag "Tuesday" 2)
  1099. (const :tag "Wednesday" 3)
  1100. (const :tag "Thursday" 4)
  1101. (const :tag "Friday" 5)
  1102. (const :tag "Saturday" 6)
  1103. (const :tag "Sunday" 0)))
  1104. (defcustom org-agenda-move-date-from-past-immediately-to-today t
  1105. "Non-nil means jump to today when moving a past date forward in time.
  1106. When using S-right in the agenda to move a date forward, and the date
  1107. stamp currently points to the past, the first key press will move it
  1108. to today. When nil, just move one day forward even if the date stays
  1109. in the past."
  1110. :group 'org-agenda-daily/weekly
  1111. :version "24.1"
  1112. :type 'boolean)
  1113. (defcustom org-agenda-diary-file 'diary-file
  1114. "File to which to add new entries with the `i' key in agenda and calendar.
  1115. When this is the symbol `diary-file', the functionality in the Emacs
  1116. calendar will be used to add entries to the `diary-file'. But when this
  1117. points to a file, `org-agenda-diary-entry' will be used instead."
  1118. :group 'org-agenda
  1119. :type '(choice
  1120. (const :tag "The standard Emacs diary file" diary-file)
  1121. (file :tag "Special Org file diary entries")))
  1122. (defcustom org-agenda-include-diary nil
  1123. "If non-nil, include in the agenda entries from the Emacs Calendar's diary.
  1124. Custom commands can set this variable in the options section."
  1125. :group 'org-agenda-daily/weekly
  1126. :type 'boolean)
  1127. (defcustom org-agenda-include-deadlines t
  1128. "If non-nil, include entries within their deadline warning period.
  1129. Custom commands can set this variable in the options section."
  1130. :group 'org-agenda-daily/weekly
  1131. :version "24.1"
  1132. :type 'boolean)
  1133. (defcustom org-agenda-show-future-repeats t
  1134. "Non-nil shows repeated entries in the future part of the agenda.
  1135. When set to the symbol `next' only the first future repeat is shown."
  1136. :group 'org-agenda-daily/weekly
  1137. :type '(choice
  1138. (const :tag "Show all repeated entries" t)
  1139. (const :tag "Show next repeated entry" next)
  1140. (const :tag "Do not show repeated entries" nil))
  1141. :version "26.1"
  1142. :package-version '(Org . "9.1")
  1143. :safe #'symbolp)
  1144. (defcustom org-agenda-prefer-last-repeat nil
  1145. "Non-nil sets date for repeated entries to their last repeat.
  1146. When nil, display SCHEDULED and DEADLINE dates at their base
  1147. date, and in today's agenda, as a reminder. Display plain
  1148. time-stamps, on the other hand, at every repeat date in the past
  1149. in addition to the base date.
  1150. When non-nil, show a repeated entry at its latest repeat date,
  1151. possibly being today even if it wasn't marked as done. This
  1152. setting is useful if you do not always mark repeated entries as
  1153. done and, yet, consider that reaching repeat date starts the task
  1154. anew.
  1155. When set to a list of strings, prefer last repeats only for
  1156. entries with these TODO keywords."
  1157. :group 'org-agenda-daily/weekly
  1158. :type '(choice
  1159. (const :tag "Prefer last repeat" t)
  1160. (const :tag "Prefer base date" nil)
  1161. (repeat :tag "Prefer last repeat for entries with these TODO keywords"
  1162. (string :tag "TODO keyword")))
  1163. :version "26.1"
  1164. :package-version '(Org . "9.1")
  1165. :safe (lambda (x) (or (booleanp x) (consp x))))
  1166. (defcustom org-scheduled-past-days 10000
  1167. "Number of days to continue listing scheduled items not marked DONE.
  1168. When an item is scheduled on a date, it shows up in the agenda on
  1169. this day and will be listed until it is marked done or for the
  1170. number of days given here."
  1171. :group 'org-agenda-daily/weekly
  1172. :type 'integer
  1173. :safe 'integerp)
  1174. (defcustom org-deadline-past-days 10000
  1175. "Number of days to warn about missed deadlines.
  1176. When an item has deadline on a date, it shows up in the agenda on
  1177. this day and will appear as a reminder until it is marked DONE or
  1178. for the number of days given here."
  1179. :group 'org-agenda-daily/weekly
  1180. :type 'integer
  1181. :version "26.1"
  1182. :package-version '(Org . "9.1")
  1183. :safe 'integerp)
  1184. (defcustom org-agenda-log-mode-items '(closed clock)
  1185. "List of items that should be shown in agenda log mode.
  1186. \\<org-agenda-mode-map>\
  1187. This list may contain the following symbols:
  1188. closed Show entries that have been closed on that day.
  1189. clock Show entries that have received clocked time on that day.
  1190. state Show all logged state changes.
  1191. Note that instead of changing this variable, you can also press \
  1192. `\\[universal-argument] \\[org-agenda-log-mode]' in
  1193. the agenda to display all available LOG items temporarily."
  1194. :group 'org-agenda-daily/weekly
  1195. :type '(set :greedy t (const closed) (const clock) (const state)))
  1196. (defcustom org-agenda-clock-consistency-checks
  1197. '(:max-duration "10:00" :min-duration 0 :max-gap "0:05"
  1198. :gap-ok-around ("4:00")
  1199. :default-face ((:background "DarkRed") (:foreground "white"))
  1200. :overlap-face nil :gap-face nil :no-end-time-face nil
  1201. :long-face nil :short-face nil)
  1202. "This is a property list, with the following keys:
  1203. :max-duration Mark clocking chunks that are longer than this time.
  1204. This is a time string like \"HH:MM\", or the number
  1205. of minutes as an integer.
  1206. :min-duration Mark clocking chunks that are shorter that this.
  1207. This is a time string like \"HH:MM\", or the number
  1208. of minutes as an integer.
  1209. :max-gap Mark gaps between clocking chunks that are longer than
  1210. this duration. A number of minutes, or a string
  1211. like \"HH:MM\".
  1212. :gap-ok-around List of times during the day which are usually not working
  1213. times. When a gap is detected, but the gap contains any
  1214. of these times, the gap is *not* reported. For example,
  1215. if this is (\"4:00\" \"13:00\") then gaps that contain
  1216. 4:00 in the morning (i.e. the night) and 13:00
  1217. (i.e. a typical lunch time) do not cause a warning.
  1218. You should have at least one time during the night in this
  1219. list, or otherwise the first task each morning will trigger
  1220. a warning because it follows a long gap.
  1221. Furthermore, the following properties can be used to define faces for
  1222. issue display.
  1223. :default-face the default face, if the specific face is undefined
  1224. :overlap-face face for overlapping clocks
  1225. :gap-face face for gaps between clocks
  1226. :no-end-time-face face for incomplete clocks
  1227. :long-face face for clock intervals that are too long
  1228. :short-face face for clock intervals that are too short"
  1229. :group 'org-agenda-daily/weekly
  1230. :group 'org-clock
  1231. :version "24.1"
  1232. :type 'plist)
  1233. (defcustom org-agenda-log-mode-add-notes t
  1234. "Non-nil means add first line of notes to log entries in agenda views.
  1235. If a log item like a state change or a clock entry is associated with
  1236. notes, the first line of these notes will be added to the entry in the
  1237. agenda display."
  1238. :group 'org-agenda-daily/weekly
  1239. :type 'boolean)
  1240. (defcustom org-agenda-start-with-log-mode nil
  1241. "The initial value of log-mode in a newly created agenda window.
  1242. See `org-agenda-log-mode' and `org-agenda-log-mode-items' for further
  1243. explanations on the possible values."
  1244. :group 'org-agenda-startup
  1245. :group 'org-agenda-daily/weekly
  1246. :type '(choice (const :tag "Don't show log items" nil)
  1247. (const :tag "Show only log items" only)
  1248. (const :tag "Show all possible log items" clockcheck)
  1249. (repeat :tag "Choose among possible values for `org-agenda-log-mode-items'"
  1250. (choice (const :tag "Show closed log items" closed)
  1251. (const :tag "Show clocked log items" clock)
  1252. (const :tag "Show all logged state changes" state)))))
  1253. (defcustom org-agenda-start-with-clockreport-mode nil
  1254. "The initial value of clockreport-mode in a newly created agenda window."
  1255. :group 'org-agenda-startup
  1256. :group 'org-agenda-daily/weekly
  1257. :type 'boolean)
  1258. (defcustom org-agenda-clockreport-parameter-plist '(:link t :maxlevel 2)
  1259. "Property list with parameters for the clocktable in clockreport mode.
  1260. This is the display mode that shows a clock table in the daily/weekly
  1261. agenda, the properties for this dynamic block can be set here.
  1262. The usual clocktable parameters are allowed here, but you cannot set
  1263. the properties :name, :tstart, :tend, :block, and :scope - these will
  1264. be overwritten to make sure the content accurately reflects the
  1265. current display in the agenda."
  1266. :group 'org-agenda-daily/weekly
  1267. :type 'plist)
  1268. (defvaralias 'org-agenda-search-view-search-words-only
  1269. 'org-agenda-search-view-always-boolean)
  1270. (defcustom org-agenda-search-view-always-boolean nil
  1271. "Non-nil means the search string is interpreted as individual parts.
  1272. The search string for search view can either be interpreted as a phrase,
  1273. or as a list of snippets that define a boolean search for a number of
  1274. strings.
  1275. When this is non-nil, the string will be split on whitespace, and each
  1276. snippet will be searched individually, and all must match in order to
  1277. select an entry. A snippet is then a single string of non-white
  1278. characters, or a string in double quotes, or a regexp in {} braces.
  1279. If a snippet is preceded by \"-\", the snippet must *not* match.
  1280. \"+\" is syntactic sugar for positive selection. Each snippet may
  1281. be found as a full word or a partial word, but see the variable
  1282. `org-agenda-search-view-force-full-words'.
  1283. When this is nil, search will look for the entire search phrase as one,
  1284. with each space character matching any amount of whitespace, including
  1285. line breaks.
  1286. Even when this is nil, you can still switch to Boolean search dynamically
  1287. by preceding the first snippet with \"+\" or \"-\". If the first snippet
  1288. is a regexp marked with braces like \"{abc}\", this will also switch to
  1289. boolean search."
  1290. :group 'org-agenda-search-view
  1291. :version "24.1"
  1292. :type 'boolean)
  1293. (defcustom org-agenda-search-view-force-full-words nil
  1294. "Non-nil means, search words must be matches as complete words.
  1295. When nil, they may also match part of a word."
  1296. :group 'org-agenda-search-view
  1297. :version "24.1"
  1298. :type 'boolean)
  1299. (defcustom org-agenda-search-view-max-outline-level 0
  1300. "Maximum outline level to display in search view.
  1301. E.g. when this is set to 1, the search view will only
  1302. show headlines of level 1. When set to 0, the default
  1303. value, don't limit agenda view by outline level."
  1304. :group 'org-agenda-search-view
  1305. :version "26.1"
  1306. :package-version '(Org . "8.3")
  1307. :type 'integer)
  1308. (defgroup org-agenda-time-grid nil
  1309. "Options concerning the time grid in the Org Agenda."
  1310. :tag "Org Agenda Time Grid"
  1311. :group 'org-agenda)
  1312. (defcustom org-agenda-search-headline-for-time t
  1313. "Non-nil means search headline for a time-of-day.
  1314. If the headline contains a time-of-day in one format or another, it will
  1315. be used to sort the entry into the time sequence of items for a day.
  1316. Some people have time stamps in the headline that refer to the creation
  1317. time or so, and then this produces an unwanted side effect. If this is
  1318. the case for your, use this variable to turn off searching the headline
  1319. for a time."
  1320. :group 'org-agenda-time-grid
  1321. :type 'boolean)
  1322. (defcustom org-agenda-use-time-grid t
  1323. "Non-nil means show a time grid in the agenda schedule.
  1324. A time grid is a set of lines for specific times (like every two hours between
  1325. 8:00 and 20:00). The items scheduled for a day at specific times are
  1326. sorted in between these lines.
  1327. For details about when the grid will be shown, and what it will look like, see
  1328. the variable `org-agenda-time-grid'."
  1329. :group 'org-agenda-time-grid
  1330. :type 'boolean)
  1331. (defcustom org-agenda-time-grid
  1332. '((daily today require-timed)
  1333. (800 1000 1200 1400 1600 1800 2000)
  1334. "......"
  1335. "----------------")
  1336. "The settings for time grid for agenda display.
  1337. This is a list of four items. The first item is again a list. It contains
  1338. symbols specifying conditions when the grid should be displayed:
  1339. daily if the agenda shows a single day
  1340. weekly if the agenda shows an entire week
  1341. today show grid on current date, independent of daily/weekly display
  1342. require-timed show grid only if at least one item has a time specification
  1343. remove-match skip grid times already present in an entry
  1344. The second item is a list of integers, indicating the times that
  1345. should have a grid line.
  1346. The third item is a string which will be placed right after the
  1347. times that have a grid line.
  1348. The fourth item is a string placed after the grid times. This
  1349. will align with agenda items."
  1350. :group 'org-agenda-time-grid
  1351. :type
  1352. '(list
  1353. (set :greedy t :tag "Grid Display Options"
  1354. (const :tag "Show grid in single day agenda display" daily)
  1355. (const :tag "Show grid in weekly agenda display" weekly)
  1356. (const :tag "Always show grid for today" today)
  1357. (const :tag "Show grid only if any timed entries are present"
  1358. require-timed)
  1359. (const :tag "Skip grid times already present in an entry"
  1360. remove-match))
  1361. (repeat :tag "Grid Times" (integer :tag "Time"))
  1362. (string :tag "Grid String (after agenda times)")
  1363. (string :tag "Grid String (aligns with agenda items)")))
  1364. (defcustom org-agenda-show-current-time-in-grid t
  1365. "Non-nil means show the current time in the time grid."
  1366. :group 'org-agenda-time-grid
  1367. :version "24.1"
  1368. :type 'boolean)
  1369. (defcustom org-agenda-current-time-string
  1370. "now - - - - - - - - - - - - - - - - - - - - - - - - -"
  1371. "The string for the current time marker in the agenda."
  1372. :group 'org-agenda-time-grid
  1373. :version "24.1"
  1374. :type 'string)
  1375. (defgroup org-agenda-sorting nil
  1376. "Options concerning sorting in the Org Agenda."
  1377. :tag "Org Agenda Sorting"
  1378. :group 'org-agenda)
  1379. (defcustom org-agenda-sorting-strategy
  1380. '((agenda habit-down time-up priority-down category-keep)
  1381. (todo priority-down category-keep)
  1382. (tags priority-down category-keep)
  1383. (search category-keep))
  1384. "Sorting structure for the agenda items of a single day.
  1385. This is a list of symbols which will be used in sequence to determine
  1386. if an entry should be listed before another entry. The following
  1387. symbols are recognized:
  1388. time-up Put entries with time-of-day indications first, early first.
  1389. time-down Put entries with time-of-day indications first, late first.
  1390. timestamp-up Sort by any timestamp, early first.
  1391. timestamp-down Sort by any timestamp, late first.
  1392. scheduled-up Sort by scheduled timestamp, early first.
  1393. scheduled-down Sort by scheduled timestamp, late first.
  1394. deadline-up Sort by deadline timestamp, early first.
  1395. deadline-down Sort by deadline timestamp, late first.
  1396. ts-up Sort by active timestamp, early first.
  1397. ts-down Sort by active timestamp, late first.
  1398. tsia-up Sort by inactive timestamp, early first.
  1399. tsia-down Sort by inactive timestamp, late first.
  1400. category-keep Keep the default order of categories, corresponding to the
  1401. sequence in `org-agenda-files'.
  1402. category-up Sort alphabetically by category, A-Z.
  1403. category-down Sort alphabetically by category, Z-A.
  1404. tag-up Sort alphabetically by last tag, A-Z.
  1405. tag-down Sort alphabetically by last tag, Z-A.
  1406. priority-up Sort numerically by priority, high priority last.
  1407. priority-down Sort numerically by priority, high priority first.
  1408. todo-state-up Sort by todo state, tasks that are done last.
  1409. todo-state-down Sort by todo state, tasks that are done first.
  1410. effort-up Sort numerically by estimated effort, high effort last.
  1411. effort-down Sort numerically by estimated effort, high effort first.
  1412. user-defined-up Sort according to `org-agenda-cmp-user-defined', high last.
  1413. user-defined-down Sort according to `org-agenda-cmp-user-defined', high first.
  1414. habit-up Put entries that are habits first.
  1415. habit-down Put entries that are habits last.
  1416. alpha-up Sort headlines alphabetically.
  1417. alpha-down Sort headlines alphabetically, reversed.
  1418. The different possibilities will be tried in sequence, and testing stops
  1419. if one comparison returns a \"not-equal\". For example, the default
  1420. '(time-up category-keep priority-down)
  1421. means: Pull out all entries having a specified time of day and sort them,
  1422. in order to make a time schedule for the current day the first thing in the
  1423. agenda listing for the day. Of the entries without a time indication, keep
  1424. the grouped in categories, don't sort the categories, but keep them in
  1425. the sequence given in `org-agenda-files'. Within each category sort by
  1426. priority.
  1427. Leaving out `category-keep' would mean that items will be sorted across
  1428. categories by priority.
  1429. Instead of a single list, this can also be a set of list for specific
  1430. contents, with a context symbol in the car of the list, any of
  1431. `agenda', `todo', `tags', `search' for the corresponding agenda views.
  1432. Custom commands can bind this variable in the options section."
  1433. :group 'org-agenda-sorting
  1434. :type `(choice
  1435. (repeat :tag "General" ,org-sorting-choice)
  1436. (list :tag "Individually"
  1437. (cons (const :tag "Strategy for Weekly/Daily agenda" agenda)
  1438. (repeat ,org-sorting-choice))
  1439. (cons (const :tag "Strategy for TODO lists" todo)
  1440. (repeat ,org-sorting-choice))
  1441. (cons (const :tag "Strategy for Tags matches" tags)
  1442. (repeat ,org-sorting-choice))
  1443. (cons (const :tag "Strategy for search matches" search)
  1444. (repeat ,org-sorting-choice)))))
  1445. (defcustom org-agenda-cmp-user-defined nil
  1446. "A function to define the comparison `user-defined'.
  1447. This function must receive two arguments, agenda entry a and b.
  1448. If a>b, return +1. If a<b, return -1. If they are equal as seen by
  1449. the user comparison, return nil.
  1450. When this is defined, you can make `user-defined-up' and `user-defined-down'
  1451. part of an agenda sorting strategy."
  1452. :group 'org-agenda-sorting
  1453. :type 'symbol)
  1454. (defcustom org-agenda-sort-notime-is-late t
  1455. "Non-nil means items without time are considered late.
  1456. This is only relevant for sorting. When t, items which have no explicit
  1457. time like 15:30 will be considered as 99:01, i.e. later than any items which
  1458. do have a time. When nil, the default time is before 0:00. You can use this
  1459. option to decide if the schedule for today should come before or after timeless
  1460. agenda entries."
  1461. :group 'org-agenda-sorting
  1462. :type 'boolean)
  1463. (defcustom org-agenda-sort-noeffort-is-high t
  1464. "Non-nil means items without effort estimate are sorted as high effort.
  1465. This also applies when filtering an agenda view with respect to the
  1466. < or > effort operator. Then, tasks with no effort defined will be treated
  1467. as tasks with high effort.
  1468. When nil, such items are sorted as 0 minutes effort."
  1469. :group 'org-agenda-sorting
  1470. :type 'boolean)
  1471. (defgroup org-agenda-line-format nil
  1472. "Options concerning the entry prefix in the Org agenda display."
  1473. :tag "Org Agenda Line Format"
  1474. :group 'org-agenda)
  1475. (defcustom org-agenda-prefix-format
  1476. '((agenda . " %i %-12:c%?-12t% s")
  1477. (todo . " %i %-12:c")
  1478. (tags . " %i %-12:c")
  1479. (search . " %i %-12:c"))
  1480. "Format specifications for the prefix of items in the agenda views.
  1481. An alist with one entry per agenda type. The keys of the
  1482. sublists are `agenda', `todo', `search' and `tags'. The values
  1483. are format strings.
  1484. This format works similar to a printf format, with the following meaning:
  1485. %c the category of the item, \"Diary\" for entries from the diary,
  1486. or as given by the CATEGORY keyword or derived from the file name
  1487. %e the effort required by the item
  1488. %l the level of the item (insert X space(s) if item is of level X)
  1489. %i the icon category of the item, see `org-agenda-category-icon-alist'
  1490. %T the last tag of the item (ignore inherited tags, which come first)
  1491. %t the HH:MM time-of-day specification if one applies to the entry
  1492. %s Scheduling/Deadline information, a short string
  1493. %b show breadcrumbs, i.e., the names of the higher levels
  1494. %(expression) Eval EXPRESSION and replace the control string
  1495. by the result
  1496. All specifiers work basically like the standard `%s' of printf, but may
  1497. contain two additional characters: a question mark just after the `%'
  1498. and a whitespace/punctuation character just before the final letter.
  1499. If the first character after `%' is a question mark, the entire field
  1500. will only be included if the corresponding value applies to the current
  1501. entry. This is useful for fields which should have fixed width when
  1502. present, but zero width when absent. For example, \"%?-12t\" will
  1503. result in a 12 character time field if a time of the day is specified,
  1504. but will completely disappear in entries which do not contain a time.
  1505. If there is punctuation or whitespace character just before the
  1506. final format letter, this character will be appended to the field
  1507. value if the value is not empty. For example, the format
  1508. \"%-12:c\" leads to \"Diary: \" if the category is \"Diary\". If
  1509. the category is empty, no additional colon is inserted.
  1510. The default value for the agenda sublist is \" %-12:c%?-12t% s\",
  1511. which means:
  1512. - Indent the line with two space characters
  1513. - Give the category a 12 chars wide field, padded with whitespace on
  1514. the right (because of `-'). Append a colon if there is a category
  1515. (because of `:').
  1516. - If there is a time-of-day, put it into a 12 chars wide field. If no
  1517. time, don't put in an empty field, just skip it (because of '?').
  1518. - Finally, put the scheduling information.
  1519. See also the variables `org-agenda-remove-times-when-in-prefix' and
  1520. `org-agenda-remove-tags'.
  1521. Custom commands can set this variable in the options section."
  1522. :type '(choice
  1523. (string :tag "General format")
  1524. (list :greedy t :tag "View dependent"
  1525. (cons (const agenda) (string :tag "Format"))
  1526. (cons (const todo) (string :tag "Format"))
  1527. (cons (const tags) (string :tag "Format"))
  1528. (cons (const search) (string :tag "Format"))))
  1529. :group 'org-agenda-line-format
  1530. :version "26.1"
  1531. :package-version '(Org . "9.1"))
  1532. (defcustom org-agenda-breadcrumbs-separator "->"
  1533. "The separator of breadcrumbs in agenda lines."
  1534. :group 'org-agenda-line-format
  1535. :package-version '(Org . "9.3")
  1536. :type 'string
  1537. :safe #'stringp)
  1538. (defvar org-prefix-format-compiled nil
  1539. "The compiled prefix format and associated variables.
  1540. This is a list where first element is a list of variable bindings, and second
  1541. element is the compiled format expression. See the variable
  1542. `org-agenda-prefix-format'.")
  1543. (defcustom org-agenda-todo-keyword-format "%-1s"
  1544. "Format for the TODO keyword in agenda lines.
  1545. Set this to something like \"%-12s\" if you want all TODO keywords
  1546. to occupy a fixed space in the agenda display."
  1547. :group 'org-agenda-line-format
  1548. :type 'string)
  1549. (defcustom org-agenda-diary-sexp-prefix nil
  1550. "A regexp that matches part of a diary sexp entry
  1551. which should be treated as scheduling/deadline information in
  1552. `org-agenda'.
  1553. For example, you can use this to extract the `diary-remind-message' from
  1554. `diary-remind' entries."
  1555. :group 'org-agenda-line-format
  1556. :type '(choice (const :tag "None" nil) (regexp :tag "Regexp")))
  1557. (defcustom org-agenda-timerange-leaders '("" "(%d/%d): ")
  1558. "Text preceding timerange entries in the agenda view.
  1559. This is a list with two strings. The first applies when the range
  1560. is entirely on one day. The second applies if the range spans several days.
  1561. The strings may have two \"%d\" format specifiers which will be filled
  1562. with the sequence number of the days, and the total number of days in the
  1563. range, respectively."
  1564. :group 'org-agenda-line-format
  1565. :type '(list
  1566. (string :tag "Deadline today ")
  1567. (choice :tag "Deadline relative"
  1568. (string :tag "Format string")
  1569. (function))))
  1570. (defcustom org-agenda-scheduled-leaders '("Scheduled: " "Sched.%2dx: ")
  1571. "Text preceding scheduled items in the agenda view.
  1572. This is a list with two strings. The first applies when the item is
  1573. scheduled on the current day. The second applies when it has been scheduled
  1574. previously, it may contain a %d indicating that this is the nth time that
  1575. this item is scheduled, due to automatic rescheduling of unfinished items
  1576. for the following day. So this number is one larger than the number of days
  1577. that passed since this item was scheduled first."
  1578. :group 'org-agenda-line-format
  1579. :version "24.4"
  1580. :package-version '(Org . "8.0")
  1581. :type '(list
  1582. (string :tag "Scheduled today ")
  1583. (string :tag "Scheduled previously")))
  1584. (defcustom org-agenda-inactive-leader "["
  1585. "Text preceding item pulled into the agenda by inactive time stamps.
  1586. These entries are added to the agenda when pressing \"[\"."
  1587. :group 'org-agenda-line-format
  1588. :version "24.1"
  1589. :type 'string)
  1590. (defcustom org-agenda-deadline-leaders '("Deadline: " "In %3d d.: " "%2d d. ago: ")
  1591. "Text preceding deadline items in the agenda view.
  1592. This is a list with three strings. The first applies when the item has its
  1593. deadline on the current day. The second applies when the deadline is in the
  1594. future, the third one when it is in the past. The strings may contain %d
  1595. to capture the number of days."
  1596. :group 'org-agenda-line-format
  1597. :version "24.4"
  1598. :package-version '(Org . "8.0")
  1599. :type '(list
  1600. (string :tag "Deadline today ")
  1601. (string :tag "Deadline in the future ")
  1602. (string :tag "Deadline in the past ")))
  1603. (defcustom org-agenda-remove-times-when-in-prefix t
  1604. "Non-nil means remove duplicate time specifications in agenda items.
  1605. When the format `org-agenda-prefix-format' contains a `%t' specifier, a
  1606. time-of-day specification in a headline or diary entry is extracted and
  1607. placed into the prefix. If this option is non-nil, the original specification
  1608. \(a timestamp or -range, or just a plain time(range) specification like
  1609. 11:30-4pm) will be removed for agenda display. This makes the agenda less
  1610. cluttered.
  1611. The option can be t or nil. It may also be the symbol `beg', indicating
  1612. that the time should only be removed when it is located at the beginning of
  1613. the headline/diary entry."
  1614. :group 'org-agenda-line-format
  1615. :type '(choice
  1616. (const :tag "Always" t)
  1617. (const :tag "Never" nil)
  1618. (const :tag "When at beginning of entry" beg)))
  1619. (defcustom org-agenda-remove-timeranges-from-blocks nil
  1620. "Non-nil means remove time ranges specifications in agenda
  1621. items that span on several days."
  1622. :group 'org-agenda-line-format
  1623. :version "24.1"
  1624. :type 'boolean)
  1625. (defcustom org-agenda-default-appointment-duration nil
  1626. "Default duration for appointments that only have a starting time.
  1627. When nil, no duration is specified in such cases.
  1628. When non-nil, this must be the number of minutes, e.g. 60 for one hour."
  1629. :group 'org-agenda-line-format
  1630. :type '(choice
  1631. (integer :tag "Minutes")
  1632. (const :tag "No default duration")))
  1633. (defcustom org-agenda-show-inherited-tags t
  1634. "Non-nil means show inherited tags in each agenda line.
  1635. When this option is set to `always', it takes precedence over
  1636. `org-agenda-use-tag-inheritance' and inherited tags are shown
  1637. in every agenda.
  1638. When this option is set to t (the default), inherited tags are
  1639. shown when they are available, i.e. when the value of
  1640. `org-agenda-use-tag-inheritance' enables tag inheritance for the
  1641. given agenda type.
  1642. This can be set to a list of agenda types in which the agenda
  1643. must display the inherited tags. Available types are `todo',
  1644. `agenda' and `search'.
  1645. When set to nil, never show inherited tags in agenda lines."
  1646. :group 'org-agenda-line-format
  1647. :group 'org-agenda
  1648. :version "24.3"
  1649. :type '(choice
  1650. (const :tag "Show inherited tags when available" t)
  1651. (const :tag "Always show inherited tags" always)
  1652. (repeat :tag "Show inherited tags only in selected agenda types"
  1653. (symbol :tag "Agenda type"))))
  1654. (defcustom org-agenda-use-tag-inheritance '(todo search agenda)
  1655. "List of agenda view types where to use tag inheritance.
  1656. In tags/tags-todo/tags-tree agenda views, tag inheritance is
  1657. controlled by `org-use-tag-inheritance'. In other agenda types,
  1658. `org-use-tag-inheritance' is not used for the selection of the
  1659. agenda entries. Still, you may want the agenda to be aware of
  1660. the inherited tags anyway, e.g. for later tag filtering.
  1661. Allowed value are `todo', `search' and `agenda'.
  1662. This variable has no effect if `org-agenda-show-inherited-tags'
  1663. is set to `always'. In that case, the agenda is aware of those
  1664. tags.
  1665. The default value sets tags in every agenda type. Setting this
  1666. option to nil will speed up non-tags agenda view a lot."
  1667. :group 'org-agenda
  1668. :version "26.1"
  1669. :package-version '(Org . "9.1")
  1670. :type '(choice
  1671. (const :tag "Use tag inheritance in all agenda types" t)
  1672. (repeat :tag "Use tag inheritance in selected agenda types"
  1673. (symbol :tag "Agenda type"))))
  1674. (defcustom org-agenda-hide-tags-regexp nil
  1675. "Regular expression used to filter away specific tags in agenda views.
  1676. This means that these tags will be present, but not be shown in the agenda
  1677. line. Secondary filtering will still work on the hidden tags.
  1678. Nil means don't hide any tags."
  1679. :group 'org-agenda-line-format
  1680. :type '(choice
  1681. (const :tag "Hide none" nil)
  1682. (regexp :tag "Regexp ")))
  1683. (defvaralias 'org-agenda-remove-tags-when-in-prefix
  1684. 'org-agenda-remove-tags)
  1685. (defcustom org-agenda-remove-tags nil
  1686. "Non-nil means remove the tags from the headline copy in the agenda.
  1687. When this is the symbol `prefix', only remove tags when
  1688. `org-agenda-prefix-format' contains a `%T' specifier."
  1689. :group 'org-agenda-line-format
  1690. :type '(choice
  1691. (const :tag "Always" t)
  1692. (const :tag "Never" nil)
  1693. (const :tag "When prefix format contains %T" prefix)))
  1694. (defvaralias 'org-agenda-align-tags-to-column 'org-agenda-tags-column)
  1695. (defcustom org-agenda-tags-column 'auto
  1696. "Shift tags in agenda items to this column.
  1697. If set to `auto', tags will be automatically aligned to the right
  1698. edge of the window.
  1699. If set to a positive number, tags will be left-aligned to that
  1700. column. If set to a negative number, tags will be right-aligned
  1701. to that column. For example, -80 works well for a normal 80
  1702. character screen."
  1703. :group 'org-agenda-line-format
  1704. :type '(choice
  1705. (const :tag "Automatically align to right edge of window" auto)
  1706. (integer :tag "Specific column" -80))
  1707. :package-version '(Org . "9.1")
  1708. :version "26.1")
  1709. (defcustom org-agenda-fontify-priorities 'cookies
  1710. "Non-nil means highlight low and high priorities in agenda.
  1711. When t, the highest priority entries are bold, lowest priority italic.
  1712. However, settings in `org-priority-faces' will overrule these faces.
  1713. When this variable is the symbol `cookies', only fontify the
  1714. cookies, not the entire task.
  1715. This may also be an association list of priority faces, whose
  1716. keys are the character values of `org-priority-highest',
  1717. `org-priority-default', and `org-priority-lowest' (the default values
  1718. are ?A, ?B, and ?C, respectively). The face may be a named face, a
  1719. color as a string, or a list like `(:background \"Red\")'.
  1720. If it is a color, the variable `org-faces-easy-properties'
  1721. determines if it is a foreground or a background color."
  1722. :group 'org-agenda-line-format
  1723. :type '(choice
  1724. (const :tag "Never" nil)
  1725. (const :tag "Defaults" t)
  1726. (const :tag "Cookies only" cookies)
  1727. (repeat :tag "Specify"
  1728. (list (character :tag "Priority" :value ?A)
  1729. (choice :tag "Face "
  1730. (string :tag "Color")
  1731. (sexp :tag "Face"))))))
  1732. (defcustom org-agenda-day-face-function nil
  1733. "Function called to determine what face should be used to display a day.
  1734. The only argument passed to that function is the day. It should
  1735. returns a face, or nil if does not want to specify a face and let
  1736. the normal rules apply."
  1737. :group 'org-agenda-line-format
  1738. :version "24.1"
  1739. :type '(choice (const nil) (function)))
  1740. (defcustom org-agenda-category-icon-alist nil
  1741. "Alist of category icon to be displayed in agenda views.
  1742. Each entry should have the following format:
  1743. (CATEGORY-REGEXP FILE-OR-DATA TYPE DATA-P PROPS)
  1744. Where CATEGORY-REGEXP is a regexp matching the categories where
  1745. the icon should be displayed.
  1746. FILE-OR-DATA either a file path or a string containing image data.
  1747. The other fields can be omitted safely if not needed:
  1748. TYPE indicates the image type.
  1749. DATA-P is a boolean indicating whether the FILE-OR-DATA string is
  1750. image data.
  1751. PROPS are additional image attributes to assign to the image,
  1752. like, e.g. `:ascent center'.
  1753. (\"Org\" \"/path/to/icon.png\" nil nil :ascent center)
  1754. If you want to set the display properties yourself, just put a
  1755. list as second element:
  1756. (CATEGORY-REGEXP (MY PROPERTY LIST))
  1757. For example, to display a 16px horizontal space for Emacs
  1758. category, you can use:
  1759. (\"Emacs\" \\='(space . (:width (16))))"
  1760. :group 'org-agenda-line-format
  1761. :version "24.1"
  1762. :type '(alist :key-type (regexp :tag "Regexp matching category")
  1763. :value-type (choice (list :tag "Icon"
  1764. (string :tag "File or data")
  1765. (symbol :tag "Type")
  1766. (boolean :tag "Data?")
  1767. (repeat :tag "Extra image properties" :inline t symbol))
  1768. (list :tag "Display properties" sexp))))
  1769. (defgroup org-agenda-column-view nil
  1770. "Options concerning column view in the agenda."
  1771. :tag "Org Agenda Column View"
  1772. :group 'org-agenda)
  1773. (defcustom org-agenda-view-columns-initially nil
  1774. "When non-nil, switch to columns view right after creating the agenda."
  1775. :group 'org-agenda-column-view
  1776. :type 'boolean
  1777. :version "26.1"
  1778. :package-version '(Org . "9.0")
  1779. :safe #'booleanp)
  1780. (defcustom org-agenda-columns-show-summaries t
  1781. "Non-nil means show summaries for columns displayed in the agenda view."
  1782. :group 'org-agenda-column-view
  1783. :type 'boolean)
  1784. (defcustom org-agenda-columns-compute-summary-properties t
  1785. "Non-nil means recompute all summary properties before column view.
  1786. When column view in the agenda is listing properties that have a summary
  1787. operator, it can go to all relevant buffers and recompute the summaries
  1788. there. This can mean overhead for the agenda column view, but is necessary
  1789. to have thing up to date.
  1790. As a special case, a CLOCKSUM property also makes sure that the clock
  1791. computations are current."
  1792. :group 'org-agenda-column-view
  1793. :type 'boolean)
  1794. (defcustom org-agenda-columns-add-appointments-to-effort-sum nil
  1795. "Non-nil means the duration of an appointment will add to day effort.
  1796. The property to which appointment durations will be added is the one given
  1797. in the option `org-effort-property'. If an appointment does not have
  1798. an end time, `org-agenda-default-appointment-duration' will be used. If that
  1799. is not set, an appointment without end time will not contribute to the time
  1800. estimate."
  1801. :group 'org-agenda-column-view
  1802. :type 'boolean)
  1803. (defcustom org-agenda-auto-exclude-function nil
  1804. "A function called with a tag to decide if it is filtered on \
  1805. \\<org-agenda-mode-map>`\\[org-agenda-filter-by-tag] RET'.
  1806. The sole argument to the function, which is called once for each
  1807. possible tag, is a string giving the name of the tag. The
  1808. function should return either nil if the tag should be included
  1809. as normal, \"-<TAG>\" to exclude the tag, or \"+<TAG>\" to exclude
  1810. lines not carrying this tag.
  1811. Note that for the purpose of tag filtering, only the lower-case version of
  1812. all tags will be considered, so that this function will only ever see
  1813. the lower-case version of all tags."
  1814. :group 'org-agenda
  1815. :type '(choice (const nil) (function)))
  1816. (defcustom org-agenda-bulk-custom-functions nil
  1817. "Alist of characters and custom functions for bulk actions.
  1818. For example, this value makes those two functions available:
  1819. \\='((?R set-category)
  1820. (?C bulk-cut))
  1821. With selected entries in an agenda buffer, `B R' will call
  1822. the custom function `set-category' on the selected entries.
  1823. Note that functions in this alist don't need to be quoted."
  1824. :type '(alist :key-type character :value-type (group function))
  1825. :version "24.1"
  1826. :group 'org-agenda)
  1827. (defmacro org-agenda-with-point-at-orig-entry (string &rest body)
  1828. "Execute BODY with point at location given by `org-hd-marker' property.
  1829. If STRING is non-nil, the text property will be fetched from position 0
  1830. in that string. If STRING is nil, it will be fetched from the beginning
  1831. of the current line."
  1832. (org-with-gensyms (marker)
  1833. `(let ((,marker (get-text-property (if ,string 0 (point-at-bol))
  1834. 'org-hd-marker ,string)))
  1835. (with-current-buffer (marker-buffer ,marker)
  1836. (save-excursion
  1837. (goto-char ,marker)
  1838. ,@body)))))
  1839. (def-edebug-spec org-agenda-with-point-at-orig-entry (form body))
  1840. (defun org-add-agenda-custom-command (entry)
  1841. "Replace or add a command in `org-agenda-custom-commands'.
  1842. This is mostly for hacking and trying a new command - once the command
  1843. works you probably want to add it to `org-agenda-custom-commands' for good."
  1844. (let ((ass (assoc (car entry) org-agenda-custom-commands)))
  1845. (if ass
  1846. (setcdr ass (cdr entry))
  1847. (push entry org-agenda-custom-commands))))
  1848. (defmacro org-agenda--insert-overriding-header (default)
  1849. "Insert header into agenda view.
  1850. The inserted header depends on `org-agenda-overriding-header'.
  1851. If the empty string, don't insert a header. If any other string,
  1852. insert it as a header. If nil, insert DEFAULT, which should
  1853. evaluate to a string."
  1854. (declare (debug (form)) (indent defun))
  1855. `(cond
  1856. ((not org-agenda-overriding-header) (insert ,default))
  1857. ((equal org-agenda-overriding-header "") nil)
  1858. ((stringp org-agenda-overriding-header)
  1859. (insert (propertize org-agenda-overriding-header
  1860. 'face 'org-agenda-structure)
  1861. "\n"))
  1862. (t (user-error "Invalid value for `org-agenda-overriding-header': %S"
  1863. org-agenda-overriding-header))))
  1864. ;;; Define the org-agenda-mode
  1865. (defvaralias 'org-agenda-keymap 'org-agenda-mode-map)
  1866. (defvar org-agenda-mode-map (make-sparse-keymap)
  1867. "Keymap for `org-agenda-mode'.")
  1868. (org-remap org-agenda-mode-map 'move-end-of-line 'org-agenda-end-of-line)
  1869. (defvar org-agenda-menu) ; defined later in this file.
  1870. (defvar org-agenda-restrict nil) ; defined later in this file.
  1871. (defvar org-agenda-follow-mode nil)
  1872. (defvar org-agenda-entry-text-mode nil)
  1873. (defvar org-agenda-clockreport-mode nil)
  1874. (defvar org-agenda-show-log nil
  1875. "When non-nil, show the log in the agenda.
  1876. Do not set this directly; instead use
  1877. `org-agenda-start-with-log-mode', which see.")
  1878. (defvar org-agenda-redo-command nil)
  1879. (defvar org-agenda-query-string nil)
  1880. (defvar org-agenda-mode-hook nil
  1881. "Hook run after `org-agenda-mode' is turned on.
  1882. The buffer is still writable when this hook is called.")
  1883. (defvar org-agenda-type nil)
  1884. (defvar org-agenda-force-single-file nil)
  1885. (defvar org-agenda-bulk-marked-entries nil
  1886. "List of markers that refer to marked entries in the agenda.")
  1887. (defvar org-agenda-current-date nil
  1888. "Active date when building the agenda.")
  1889. ;;; Multiple agenda buffers support
  1890. (defcustom org-agenda-sticky nil
  1891. "Non-nil means agenda q key will bury agenda buffers.
  1892. Agenda commands will then show existing buffer instead of generating new ones.
  1893. When nil, `q' will kill the single agenda buffer."
  1894. :group 'org-agenda
  1895. :version "24.3"
  1896. :type 'boolean)
  1897. ;;;###autoload
  1898. (defun org-toggle-sticky-agenda (&optional arg)
  1899. "Toggle `org-agenda-sticky'."
  1900. (interactive "P")
  1901. (let ((new-value (if arg
  1902. (> (prefix-numeric-value arg) 0)
  1903. (not org-agenda-sticky))))
  1904. (if (equal new-value org-agenda-sticky)
  1905. (and (called-interactively-p 'interactive)
  1906. (message "Sticky agenda was already %s"
  1907. (if org-agenda-sticky "enabled" "disabled")))
  1908. (setq org-agenda-sticky new-value)
  1909. (org-agenda-kill-all-agenda-buffers)
  1910. (and (called-interactively-p 'interactive)
  1911. (message "Sticky agenda %s"
  1912. (if org-agenda-sticky "enabled" "disabled"))))))
  1913. (defvar org-agenda-buffer nil
  1914. "Agenda buffer currently being generated.")
  1915. (defvar org-agenda-last-prefix-arg nil)
  1916. (defvar org-agenda-this-buffer-name nil)
  1917. (defvar org-agenda-doing-sticky-redo nil)
  1918. (defvar org-agenda-this-buffer-is-sticky nil)
  1919. (defvar org-agenda-last-indirect-buffer nil
  1920. "Last buffer loaded by `org-agenda-tree-to-indirect-buffer'.")
  1921. (defconst org-agenda-local-vars
  1922. '(org-agenda-this-buffer-name
  1923. org-agenda-undo-list
  1924. org-agenda-pending-undo-list
  1925. org-agenda-follow-mode
  1926. org-agenda-entry-text-mode
  1927. org-agenda-clockreport-mode
  1928. org-agenda-show-log
  1929. org-agenda-redo-command
  1930. org-agenda-query-string
  1931. org-agenda-type
  1932. org-agenda-bulk-marked-entries
  1933. org-agenda-undo-has-started-in
  1934. org-agenda-info
  1935. org-agenda-pre-window-conf
  1936. org-agenda-columns-active
  1937. org-agenda-tag-filter
  1938. org-agenda-category-filter
  1939. org-agenda-top-headline-filter
  1940. org-agenda-regexp-filter
  1941. org-agenda-effort-filter
  1942. org-agenda-markers
  1943. org-agenda-last-search-view-search-was-boolean
  1944. org-agenda-last-indirect-buffer
  1945. org-agenda-filtered-by-category
  1946. org-agenda-filter-form
  1947. org-agenda-cycle-counter
  1948. org-agenda-last-prefix-arg)
  1949. "Variables that must be local in agenda buffers to allow multiple buffers.")
  1950. (defun org-agenda-mode ()
  1951. "Mode for time-sorted view on action items in Org files.
  1952. The following commands are available:
  1953. \\{org-agenda-mode-map}"
  1954. (interactive)
  1955. (ignore-errors (require 'face-remap))
  1956. (let ((agenda-local-vars-to-keep
  1957. '(text-scale-mode-amount
  1958. text-scale-mode
  1959. text-scale-mode-lighter
  1960. face-remapping-alist))
  1961. (save (buffer-local-variables)))
  1962. (kill-all-local-variables)
  1963. (cl-flet ((reset-saved (var-set)
  1964. "Reset variables in VAR-SET to possibly stored value in SAVE."
  1965. (dolist (elem save)
  1966. (pcase elem
  1967. (`(,var . ,val) ;ignore unbound variables
  1968. (when (and val (memq var var-set))
  1969. (set var val)))))))
  1970. (cond (org-agenda-doing-sticky-redo
  1971. ;; Refreshing sticky agenda-buffer
  1972. ;;
  1973. ;; Preserve the value of `org-agenda-local-vars' variables.
  1974. (mapc #'make-local-variable org-agenda-local-vars)
  1975. (reset-saved org-agenda-local-vars)
  1976. (setq-local org-agenda-this-buffer-is-sticky t))
  1977. (org-agenda-sticky
  1978. ;; Creating a sticky Agenda buffer for the first time
  1979. (mapc 'make-local-variable org-agenda-local-vars)
  1980. (setq-local org-agenda-this-buffer-is-sticky t))
  1981. (t
  1982. ;; Creating a non-sticky agenda buffer
  1983. (setq-local org-agenda-this-buffer-is-sticky nil)))
  1984. (mapc #'make-local-variable agenda-local-vars-to-keep)
  1985. (reset-saved agenda-local-vars-to-keep)))
  1986. (setq org-agenda-undo-list nil
  1987. org-agenda-pending-undo-list nil
  1988. org-agenda-bulk-marked-entries nil)
  1989. (setq major-mode 'org-agenda-mode)
  1990. ;; Keep global-font-lock-mode from turning on font-lock-mode
  1991. (setq-local font-lock-global-modes (list 'not major-mode))
  1992. (setq mode-name "Org-Agenda")
  1993. (setq indent-tabs-mode nil)
  1994. (use-local-map org-agenda-mode-map)
  1995. (easy-menu-add org-agenda-menu)
  1996. (when org-startup-truncated (setq truncate-lines t))
  1997. (setq-local line-move-visual nil)
  1998. (add-hook 'post-command-hook 'org-agenda-update-agenda-type nil 'local)
  1999. (add-hook 'pre-command-hook 'org-unhighlight nil 'local)
  2000. ;; Make sure properties are removed when copying text
  2001. (if (boundp 'filter-buffer-substring-functions)
  2002. (add-hook 'filter-buffer-substring-functions
  2003. (lambda (fun start end delete)
  2004. (substring-no-properties (funcall fun start end delete)))
  2005. nil t)
  2006. ;; Emacs >= 24.4.
  2007. (add-function :filter-return (local 'filter-buffer-substring-function)
  2008. #'substring-no-properties))
  2009. (unless org-agenda-keep-modes
  2010. (setq org-agenda-follow-mode org-agenda-start-with-follow-mode
  2011. org-agenda-entry-text-mode org-agenda-start-with-entry-text-mode
  2012. org-agenda-show-log org-agenda-start-with-log-mode
  2013. org-agenda-clockreport-mode org-agenda-start-with-clockreport-mode))
  2014. (add-to-invisibility-spec '(org-filtered))
  2015. (add-to-invisibility-spec '(org-link))
  2016. (easy-menu-change
  2017. '("Agenda") "Agenda Files"
  2018. (append
  2019. (list
  2020. (vector
  2021. (if (get 'org-agenda-files 'org-restrict)
  2022. "Restricted to single file"
  2023. "Edit File List")
  2024. '(org-edit-agenda-file-list)
  2025. (not (get 'org-agenda-files 'org-restrict)))
  2026. "--")
  2027. (mapcar 'org-file-menu-entry (org-agenda-files))))
  2028. (org-agenda-set-mode-name)
  2029. (apply
  2030. (if (fboundp 'run-mode-hooks) 'run-mode-hooks 'run-hooks)
  2031. (list 'org-agenda-mode-hook)))
  2032. (substitute-key-definition #'undo #'org-agenda-undo
  2033. org-agenda-mode-map global-map)
  2034. (org-defkey org-agenda-mode-map "\C-i" #'org-agenda-goto)
  2035. (org-defkey org-agenda-mode-map [(tab)] #'org-agenda-goto)
  2036. (org-defkey org-agenda-mode-map "\C-m" #'org-agenda-switch-to)
  2037. (org-defkey org-agenda-mode-map "\C-k" #'org-agenda-kill)
  2038. (org-defkey org-agenda-mode-map "\C-c\C-w" #'org-agenda-refile)
  2039. (org-defkey org-agenda-mode-map [(meta down)] #'org-agenda-drag-line-forward)
  2040. (org-defkey org-agenda-mode-map [(meta up)] #'org-agenda-drag-line-backward)
  2041. (org-defkey org-agenda-mode-map "m" #'org-agenda-bulk-mark)
  2042. (org-defkey org-agenda-mode-map "\M-m" #'org-agenda-bulk-toggle)
  2043. (org-defkey org-agenda-mode-map "*" #'org-agenda-bulk-mark-all)
  2044. (org-defkey org-agenda-mode-map "\M-*" #'org-agenda-bulk-toggle-all)
  2045. (org-defkey org-agenda-mode-map "#" #'org-agenda-dim-blocked-tasks)
  2046. (org-defkey org-agenda-mode-map "%" #'org-agenda-bulk-mark-regexp)
  2047. (org-defkey org-agenda-mode-map "u" #'org-agenda-bulk-unmark)
  2048. (org-defkey org-agenda-mode-map "U" #'org-agenda-bulk-unmark-all)
  2049. (org-defkey org-agenda-mode-map "B" #'org-agenda-bulk-action)
  2050. (org-defkey org-agenda-mode-map "k" #'org-agenda-capture)
  2051. (org-defkey org-agenda-mode-map "A" #'org-agenda-append-agenda)
  2052. (org-defkey org-agenda-mode-map "\C-c\C-x!" #'org-reload)
  2053. (org-defkey org-agenda-mode-map "\C-c\C-x\C-a" #'org-agenda-archive-default)
  2054. (org-defkey org-agenda-mode-map "\C-c\C-xa" #'org-agenda-toggle-archive-tag)
  2055. (org-defkey org-agenda-mode-map "\C-c\C-xA" #'org-agenda-archive-to-archive-sibling)
  2056. (org-defkey org-agenda-mode-map "\C-c\C-x\C-s" #'org-agenda-archive)
  2057. (org-defkey org-agenda-mode-map "\C-c$" #'org-agenda-archive)
  2058. (org-defkey org-agenda-mode-map "$" #'org-agenda-archive)
  2059. (org-defkey org-agenda-mode-map "\C-c\C-o" #'org-agenda-open-link)
  2060. (org-defkey org-agenda-mode-map " " #'org-agenda-show-and-scroll-up)
  2061. (org-defkey org-agenda-mode-map [backspace] #'org-agenda-show-scroll-down)
  2062. (org-defkey org-agenda-mode-map "\d" #'org-agenda-show-scroll-down)
  2063. (org-defkey org-agenda-mode-map [(control shift right)] #'org-agenda-todo-nextset)
  2064. (org-defkey org-agenda-mode-map [(control shift left)] #'org-agenda-todo-previousset)
  2065. (org-defkey org-agenda-mode-map "\C-c\C-xb" #'org-agenda-tree-to-indirect-buffer)
  2066. (org-defkey org-agenda-mode-map "o" #'delete-other-windows)
  2067. (org-defkey org-agenda-mode-map "L" #'org-agenda-recenter)
  2068. (org-defkey org-agenda-mode-map "\C-c\C-t" #'org-agenda-todo)
  2069. (org-defkey org-agenda-mode-map "t" #'org-agenda-todo)
  2070. (org-defkey org-agenda-mode-map "a" #'org-agenda-archive-default-with-confirmation)
  2071. (org-defkey org-agenda-mode-map ":" #'org-agenda-set-tags)
  2072. (org-defkey org-agenda-mode-map "\C-c\C-q" #'org-agenda-set-tags)
  2073. (org-defkey org-agenda-mode-map "." #'org-agenda-goto-today)
  2074. (org-defkey org-agenda-mode-map "j" #'org-agenda-goto-date)
  2075. (org-defkey org-agenda-mode-map "d" #'org-agenda-day-view)
  2076. (org-defkey org-agenda-mode-map "w" #'org-agenda-week-view)
  2077. (org-defkey org-agenda-mode-map "y" #'org-agenda-year-view)
  2078. (org-defkey org-agenda-mode-map "\C-c\C-z" #'org-agenda-add-note)
  2079. (org-defkey org-agenda-mode-map "z" #'org-agenda-add-note)
  2080. (org-defkey org-agenda-mode-map [(shift right)] #'org-agenda-do-date-later)
  2081. (org-defkey org-agenda-mode-map [(shift left)] #'org-agenda-do-date-earlier)
  2082. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (right)] #'org-agenda-do-date-later)
  2083. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (left)] #'org-agenda-do-date-earlier)
  2084. (org-defkey org-agenda-mode-map ">" #'org-agenda-date-prompt)
  2085. (org-defkey org-agenda-mode-map "\C-c\C-s" #'org-agenda-schedule)
  2086. (org-defkey org-agenda-mode-map "\C-c\C-d" #'org-agenda-deadline)
  2087. (let ((l '(1 2 3 4 5 6 7 8 9 0)))
  2088. (while l (org-defkey org-agenda-mode-map
  2089. (number-to-string (pop l)) #'digit-argument)))
  2090. (org-defkey org-agenda-mode-map "F" #'org-agenda-follow-mode)
  2091. (org-defkey org-agenda-mode-map "R" #'org-agenda-clockreport-mode)
  2092. (org-defkey org-agenda-mode-map "E" #'org-agenda-entry-text-mode)
  2093. (org-defkey org-agenda-mode-map "l" #'org-agenda-log-mode)
  2094. (org-defkey org-agenda-mode-map "v" #'org-agenda-view-mode-dispatch)
  2095. (org-defkey org-agenda-mode-map "D" #'org-agenda-toggle-diary)
  2096. (org-defkey org-agenda-mode-map "!" #'org-agenda-toggle-deadlines)
  2097. (org-defkey org-agenda-mode-map "G" #'org-agenda-toggle-time-grid)
  2098. (org-defkey org-agenda-mode-map "r" #'org-agenda-redo)
  2099. (org-defkey org-agenda-mode-map "g" #'org-agenda-redo-all)
  2100. (org-defkey org-agenda-mode-map "e" #'org-agenda-set-effort)
  2101. (org-defkey org-agenda-mode-map "\C-c\C-xe" #'org-agenda-set-effort)
  2102. (org-defkey org-agenda-mode-map "\C-c\C-x\C-e"
  2103. #'org-clock-modify-effort-estimate)
  2104. (org-defkey org-agenda-mode-map "\C-c\C-xp" #'org-agenda-set-property)
  2105. (org-defkey org-agenda-mode-map "q" #'org-agenda-quit)
  2106. (org-defkey org-agenda-mode-map "Q" #'org-agenda-Quit)
  2107. (org-defkey org-agenda-mode-map "x" #'org-agenda-exit)
  2108. (org-defkey org-agenda-mode-map "\C-x\C-w" #'org-agenda-write)
  2109. (org-defkey org-agenda-mode-map "\C-x\C-s" #'org-save-all-org-buffers)
  2110. (org-defkey org-agenda-mode-map "s" #'org-save-all-org-buffers)
  2111. (org-defkey org-agenda-mode-map "T" #'org-agenda-show-tags)
  2112. (org-defkey org-agenda-mode-map "n" #'org-agenda-next-line)
  2113. (org-defkey org-agenda-mode-map "p" #'org-agenda-previous-line)
  2114. (org-defkey org-agenda-mode-map "N" #'org-agenda-next-item)
  2115. (org-defkey org-agenda-mode-map "P" #'org-agenda-previous-item)
  2116. (substitute-key-definition #'next-line #'org-agenda-next-line
  2117. org-agenda-mode-map global-map)
  2118. (substitute-key-definition #'previous-line #'org-agenda-previous-line
  2119. org-agenda-mode-map global-map)
  2120. (org-defkey org-agenda-mode-map "\C-c\C-a" #'org-attach)
  2121. (org-defkey org-agenda-mode-map "\C-c\C-n" #'org-agenda-next-date-line)
  2122. (org-defkey org-agenda-mode-map "\C-c\C-p" #'org-agenda-previous-date-line)
  2123. (org-defkey org-agenda-mode-map "\C-c," #'org-agenda-priority)
  2124. (org-defkey org-agenda-mode-map "," #'org-agenda-priority)
  2125. (org-defkey org-agenda-mode-map "i" #'org-agenda-diary-entry)
  2126. (org-defkey org-agenda-mode-map "c" #'org-agenda-goto-calendar)
  2127. (org-defkey org-agenda-mode-map "C" #'org-agenda-convert-date)
  2128. (org-defkey org-agenda-mode-map "M" #'org-agenda-phases-of-moon)
  2129. (org-defkey org-agenda-mode-map "S" #'org-agenda-sunrise-sunset)
  2130. (org-defkey org-agenda-mode-map "h" #'org-agenda-holidays)
  2131. (org-defkey org-agenda-mode-map "H" #'org-agenda-holidays)
  2132. (org-defkey org-agenda-mode-map "\C-c\C-x\C-i" #'org-agenda-clock-in)
  2133. (org-defkey org-agenda-mode-map "I" #'org-agenda-clock-in)
  2134. (org-defkey org-agenda-mode-map "\C-c\C-x\C-o" #'org-agenda-clock-out)
  2135. (org-defkey org-agenda-mode-map "O" #'org-agenda-clock-out)
  2136. (org-defkey org-agenda-mode-map "\C-c\C-x\C-x" #'org-agenda-clock-cancel)
  2137. (org-defkey org-agenda-mode-map "X" #'org-agenda-clock-cancel)
  2138. (org-defkey org-agenda-mode-map "\C-c\C-x\C-j" #'org-clock-goto)
  2139. (org-defkey org-agenda-mode-map "J" #'org-agenda-clock-goto)
  2140. (org-defkey org-agenda-mode-map "+" #'org-agenda-priority-up)
  2141. (org-defkey org-agenda-mode-map "-" #'org-agenda-priority-down)
  2142. (org-defkey org-agenda-mode-map [(shift up)] #'org-agenda-priority-up)
  2143. (org-defkey org-agenda-mode-map [(shift down)] #'org-agenda-priority-down)
  2144. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (up)] #'org-agenda-priority-up)
  2145. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (down)] #'org-agenda-priority-down)
  2146. (org-defkey org-agenda-mode-map "f" #'org-agenda-later)
  2147. (org-defkey org-agenda-mode-map "b" #'org-agenda-earlier)
  2148. (org-defkey org-agenda-mode-map "\C-c\C-x\C-c" #'org-agenda-columns)
  2149. (org-defkey org-agenda-mode-map "\C-c\C-x>" #'org-agenda-remove-restriction-lock)
  2150. (org-defkey org-agenda-mode-map "\C-c\C-x<" #'org-agenda-set-restriction-lock-from-agenda)
  2151. (org-defkey org-agenda-mode-map "[" #'org-agenda-manipulate-query-add)
  2152. (org-defkey org-agenda-mode-map "]" #'org-agenda-manipulate-query-subtract)
  2153. (org-defkey org-agenda-mode-map "{" #'org-agenda-manipulate-query-add-re)
  2154. (org-defkey org-agenda-mode-map "}" #'org-agenda-manipulate-query-subtract-re)
  2155. (org-defkey org-agenda-mode-map "\\" #'org-agenda-filter-by-tag)
  2156. (org-defkey org-agenda-mode-map "_" #'org-agenda-filter-by-effort)
  2157. (org-defkey org-agenda-mode-map "=" #'org-agenda-filter-by-regexp)
  2158. (org-defkey org-agenda-mode-map "/" #'org-agenda-filter)
  2159. (org-defkey org-agenda-mode-map "|" #'org-agenda-filter-remove-all)
  2160. (org-defkey org-agenda-mode-map "~" #'org-agenda-limit-interactively)
  2161. (org-defkey org-agenda-mode-map "<" #'org-agenda-filter-by-category)
  2162. (org-defkey org-agenda-mode-map "^" #'org-agenda-filter-by-top-headline)
  2163. (org-defkey org-agenda-mode-map ";" #'org-timer-set-timer)
  2164. (org-defkey org-agenda-mode-map "\C-c\C-x_" #'org-timer-stop)
  2165. (org-defkey org-agenda-mode-map "?" #'org-agenda-show-the-flagging-note)
  2166. (org-defkey org-agenda-mode-map "\C-c\C-x\C-mg" #'org-mobile-pull)
  2167. (org-defkey org-agenda-mode-map "\C-c\C-x\C-mp" #'org-mobile-push)
  2168. (org-defkey org-agenda-mode-map "\C-c\C-xI" #'org-info-find-node)
  2169. (org-defkey org-agenda-mode-map [mouse-2] #'org-agenda-goto-mouse)
  2170. (org-defkey org-agenda-mode-map [mouse-3] #'org-agenda-show-mouse)
  2171. (org-defkey org-agenda-mode-map [remap forward-paragraph] #'org-agenda-forward-block)
  2172. (org-defkey org-agenda-mode-map [remap backward-paragraph] #'org-agenda-backward-block)
  2173. (org-defkey org-agenda-mode-map "\C-c\C-c" #'org-agenda-ctrl-c-ctrl-c)
  2174. (when org-agenda-mouse-1-follows-link
  2175. (org-defkey org-agenda-mode-map [follow-link] 'mouse-face))
  2176. (easy-menu-define org-agenda-menu org-agenda-mode-map "Agenda menu"
  2177. '("Agenda"
  2178. ("Agenda Files")
  2179. "--"
  2180. ("Agenda Dates"
  2181. ["Goto Today" org-agenda-goto-today (org-agenda-check-type nil 'agenda)]
  2182. ["Next Dates" org-agenda-later (org-agenda-check-type nil 'agenda)]
  2183. ["Previous Dates" org-agenda-earlier (org-agenda-check-type nil 'agenda)]
  2184. ["Jump to date" org-agenda-goto-date (org-agenda-check-type nil 'agenda)])
  2185. "--"
  2186. ("View"
  2187. ["Day View" org-agenda-day-view
  2188. :active (org-agenda-check-type nil 'agenda)
  2189. :style radio :selected (eq org-agenda-current-span 'day)
  2190. :keys "v d (or just d)"]
  2191. ["Week View" org-agenda-week-view
  2192. :active (org-agenda-check-type nil 'agenda)
  2193. :style radio :selected (eq org-agenda-current-span 'week)
  2194. :keys "v w"]
  2195. ["Fortnight View" org-agenda-fortnight-view
  2196. :active (org-agenda-check-type nil 'agenda)
  2197. :style radio :selected (eq org-agenda-current-span 'fortnight)
  2198. :keys "v t"]
  2199. ["Month View" org-agenda-month-view
  2200. :active (org-agenda-check-type nil 'agenda)
  2201. :style radio :selected (eq org-agenda-current-span 'month)
  2202. :keys "v m"]
  2203. ["Year View" org-agenda-year-view
  2204. :active (org-agenda-check-type nil 'agenda)
  2205. :style radio :selected (eq org-agenda-current-span 'year)
  2206. :keys "v y"]
  2207. "--"
  2208. ["Include Diary" org-agenda-toggle-diary
  2209. :style toggle :selected org-agenda-include-diary
  2210. :active (org-agenda-check-type nil 'agenda)]
  2211. ["Include Deadlines" org-agenda-toggle-deadlines
  2212. :style toggle :selected org-agenda-include-deadlines
  2213. :active (org-agenda-check-type nil 'agenda)]
  2214. ["Use Time Grid" org-agenda-toggle-time-grid
  2215. :style toggle :selected org-agenda-use-time-grid
  2216. :active (org-agenda-check-type nil 'agenda)]
  2217. "--"
  2218. ["Show clock report" org-agenda-clockreport-mode
  2219. :style toggle :selected org-agenda-clockreport-mode
  2220. :active (org-agenda-check-type nil 'agenda)]
  2221. ["Show some entry text" org-agenda-entry-text-mode
  2222. :style toggle :selected org-agenda-entry-text-mode
  2223. :active t]
  2224. "--"
  2225. ["Show Logbook entries" org-agenda-log-mode
  2226. :style toggle :selected org-agenda-show-log
  2227. :active (org-agenda-check-type nil 'agenda)
  2228. :keys "v l (or just l)"]
  2229. ["Include archived trees" org-agenda-archives-mode
  2230. :style toggle :selected org-agenda-archives-mode :active t
  2231. :keys "v a"]
  2232. ["Include archive files" (org-agenda-archives-mode t)
  2233. :style toggle :selected (eq org-agenda-archives-mode t) :active t
  2234. :keys "v A"]
  2235. "--"
  2236. ["Remove Restriction" org-agenda-remove-restriction-lock org-agenda-restrict])
  2237. ("Filter current view"
  2238. ["with generic interface" org-agenda-filter t]
  2239. "--"
  2240. ["by category at cursor" org-agenda-filter-by-category t]
  2241. ["by tag" org-agenda-filter-by-tag t]
  2242. ["by effort" org-agenda-filter-by-effort t]
  2243. ["by regexp" org-agenda-filter-by-regexp t]
  2244. ["by top-level headline" org-agenda-filter-by-top-headline t]
  2245. "--"
  2246. ["Remove all filtering" org-agenda-filter-remove-all t]
  2247. "--"
  2248. ["limit" org-agenda-limit-interactively t])
  2249. ["Rebuild buffer" org-agenda-redo t]
  2250. ["Write view to file" org-agenda-write t]
  2251. ["Save all Org buffers" org-save-all-org-buffers t]
  2252. "--"
  2253. ["Show original entry" org-agenda-show t]
  2254. ["Go To (other window)" org-agenda-goto t]
  2255. ["Go To (this window)" org-agenda-switch-to t]
  2256. ["Capture with cursor date" org-agenda-capture t]
  2257. ["Follow Mode" org-agenda-follow-mode
  2258. :style toggle :selected org-agenda-follow-mode :active t]
  2259. ;; ["Tree to indirect frame" org-agenda-tree-to-indirect-buffer t]
  2260. "--"
  2261. ("TODO"
  2262. ["Cycle TODO" org-agenda-todo t]
  2263. ["Next TODO set" org-agenda-todo-nextset t]
  2264. ["Previous TODO set" org-agenda-todo-previousset t]
  2265. ["Add note" org-agenda-add-note t])
  2266. ("Archive/Refile/Delete"
  2267. ["Archive default" org-agenda-archive-default t]
  2268. ["Archive default" org-agenda-archive-default-with-confirmation t]
  2269. ["Toggle ARCHIVE tag" org-agenda-toggle-archive-tag t]
  2270. ["Move to archive sibling" org-agenda-archive-to-archive-sibling t]
  2271. ["Archive subtree" org-agenda-archive t]
  2272. "--"
  2273. ["Refile" org-agenda-refile t]
  2274. "--"
  2275. ["Delete subtree" org-agenda-kill t])
  2276. ("Bulk action"
  2277. ["Mark entry" org-agenda-bulk-mark t]
  2278. ["Mark all" org-agenda-bulk-mark-all t]
  2279. ["Unmark entry" org-agenda-bulk-unmark t]
  2280. ["Unmark all" org-agenda-bulk-unmark-all :active t :keys "U"]
  2281. ["Toggle mark" org-agenda-bulk-toggle t]
  2282. ["Toggle all" org-agenda-bulk-toggle-all t]
  2283. ["Mark regexp" org-agenda-bulk-mark-regexp t])
  2284. ["Act on all marked" org-agenda-bulk-action t]
  2285. "--"
  2286. ("Tags and Properties"
  2287. ["Show all Tags" org-agenda-show-tags t]
  2288. ["Set Tags current line" org-agenda-set-tags (not (org-region-active-p))]
  2289. ["Change tag in region" org-agenda-set-tags (org-region-active-p)]
  2290. "--"
  2291. ["Column View" org-columns t])
  2292. ("Deadline/Schedule"
  2293. ["Schedule" org-agenda-schedule t]
  2294. ["Set Deadline" org-agenda-deadline t]
  2295. "--"
  2296. ["Change Date +1 day" org-agenda-date-later (org-agenda-check-type nil 'agenda)]
  2297. ["Change Date -1 day" org-agenda-date-earlier (org-agenda-check-type nil 'agenda)]
  2298. ["Change Time +1 hour" org-agenda-do-date-later :active (org-agenda-check-type nil 'agenda) :keys "C-u S-right"]
  2299. ["Change Time -1 hour" org-agenda-do-date-earlier :active (org-agenda-check-type nil 'agenda) :keys "C-u S-left"]
  2300. ["Change Time + min" org-agenda-date-later :active (org-agenda-check-type nil 'agenda) :keys "C-u C-u S-right"]
  2301. ["Change Time - min" org-agenda-date-earlier :active (org-agenda-check-type nil 'agenda) :keys "C-u C-u S-left"]
  2302. ["Change Date to ..." org-agenda-date-prompt (org-agenda-check-type nil 'agenda)])
  2303. ("Clock and Effort"
  2304. ["Clock in" org-agenda-clock-in t]
  2305. ["Clock out" org-agenda-clock-out t]
  2306. ["Clock cancel" org-agenda-clock-cancel t]
  2307. ["Goto running clock" org-clock-goto t]
  2308. "--"
  2309. ["Set Effort" org-agenda-set-effort t]
  2310. ["Change clocked effort" org-clock-modify-effort-estimate
  2311. (org-clock-is-active)])
  2312. ("Priority"
  2313. ["Set Priority" org-agenda-priority t]
  2314. ["Increase Priority" org-agenda-priority-up t]
  2315. ["Decrease Priority" org-agenda-priority-down t]
  2316. ["Show Priority" org-priority-show t])
  2317. ("Calendar/Diary"
  2318. ["New Diary Entry" org-agenda-diary-entry (org-agenda-check-type nil 'agenda)]
  2319. ["Goto Calendar" org-agenda-goto-calendar (org-agenda-check-type nil 'agenda)]
  2320. ["Phases of the Moon" org-agenda-phases-of-moon (org-agenda-check-type nil 'agenda)]
  2321. ["Sunrise/Sunset" org-agenda-sunrise-sunset (org-agenda-check-type nil 'agenda)]
  2322. ["Holidays" org-agenda-holidays (org-agenda-check-type nil 'agenda)]
  2323. ["Convert" org-agenda-convert-date (org-agenda-check-type nil 'agenda)]
  2324. "--"
  2325. ["Create iCalendar File" org-icalendar-combine-agenda-files t])
  2326. "--"
  2327. ["Undo Remote Editing" org-agenda-undo org-agenda-undo-list]
  2328. "--"
  2329. ("MobileOrg"
  2330. ["Push Files and Views" org-mobile-push t]
  2331. ["Get Captured and Flagged" org-mobile-pull t]
  2332. ["Find FLAGGED Tasks" (org-agenda nil "?") :active t :keys "\\[org-agenda] ?"]
  2333. ["Show note / unflag" org-agenda-show-the-flagging-note t]
  2334. "--"
  2335. ["Setup" (progn (require 'org-mobile) (customize-group 'org-mobile)) t])
  2336. "--"
  2337. ["Quit" org-agenda-quit t]
  2338. ["Exit and Release Buffers" org-agenda-exit t]
  2339. ))
  2340. ;;; Agenda undo
  2341. (defvar org-agenda-allow-remote-undo t
  2342. "Non-nil means allow remote undo from the agenda buffer.")
  2343. (defvar org-agenda-undo-has-started-in nil
  2344. "Buffers that have already seen `undo-start' in the current undo sequence.")
  2345. (defun org-agenda-undo ()
  2346. "Undo a remote editing step in the agenda.
  2347. This undoes changes both in the agenda buffer and in the remote buffer
  2348. that have been changed along."
  2349. (interactive)
  2350. (or org-agenda-allow-remote-undo
  2351. (user-error "Check the variable `org-agenda-allow-remote-undo' to activate remote undo"))
  2352. (when (not (eq this-command last-command))
  2353. (setq org-agenda-undo-has-started-in nil
  2354. org-agenda-pending-undo-list org-agenda-undo-list))
  2355. (when (not org-agenda-pending-undo-list)
  2356. (user-error "No further undo information"))
  2357. (let* ((entry (pop org-agenda-pending-undo-list))
  2358. buf line cmd rembuf)
  2359. (setq cmd (pop entry) line (pop entry))
  2360. (setq rembuf (nth 2 entry))
  2361. (org-with-remote-undo rembuf
  2362. (while (bufferp (setq buf (pop entry)))
  2363. (when (pop entry)
  2364. (with-current-buffer buf
  2365. (let ((last-undo-buffer buf)
  2366. (inhibit-read-only t))
  2367. (unless (memq buf org-agenda-undo-has-started-in)
  2368. (push buf org-agenda-undo-has-started-in)
  2369. (make-local-variable 'pending-undo-list)
  2370. (undo-start))
  2371. (while (and pending-undo-list
  2372. (listp pending-undo-list)
  2373. (not (car pending-undo-list)))
  2374. (pop pending-undo-list))
  2375. (undo-more 1))))))
  2376. (org-goto-line line)
  2377. (message "`%s' undone (buffer %s)" cmd (buffer-name rembuf))))
  2378. (defun org-verify-change-for-undo (l1 l2)
  2379. "Verify that a real change occurred between the undo lists L1 and L2."
  2380. (while (and l1 (listp l1) (null (car l1))) (pop l1))
  2381. (while (and l2 (listp l2) (null (car l2))) (pop l2))
  2382. (not (eq l1 l2)))
  2383. ;;; Agenda dispatch
  2384. (defvar org-agenda-restrict-begin (make-marker))
  2385. (defvar org-agenda-restrict-end (make-marker))
  2386. (defvar org-agenda-last-dispatch-buffer nil)
  2387. (defvar org-agenda-overriding-restriction nil)
  2388. (defcustom org-agenda-custom-commands-contexts nil
  2389. "Alist of custom agenda keys and contextual rules.
  2390. For example, if you have a custom agenda command \"p\" and you
  2391. want this command to be accessible only from plain text files,
  2392. use this:
  2393. \\='((\"p\" ((in-file . \"\\\\.txt\\\\'\"))))
  2394. Here are the available contexts definitions:
  2395. in-file: command displayed only in matching files
  2396. in-mode: command displayed only in matching modes
  2397. not-in-file: command not displayed in matching files
  2398. not-in-mode: command not displayed in matching modes
  2399. in-buffer: command displayed only in matching buffers
  2400. not-in-buffer: command not displayed in matching buffers
  2401. [function]: a custom function taking no argument
  2402. If you define several checks, the agenda command will be
  2403. accessible if there is at least one valid check.
  2404. You can also bind a key to another agenda custom command
  2405. depending on contextual rules.
  2406. \\='((\"p\" \"q\" ((in-file . \"\\\\.txt\\\\'\"))))
  2407. Here it means: in .txt files, use \"p\" as the key for the
  2408. agenda command otherwise associated with \"q\". (The command
  2409. originally associated with \"q\" is not displayed to avoid
  2410. duplicates.)"
  2411. :version "24.3"
  2412. :group 'org-agenda-custom-commands
  2413. :type '(repeat (list :tag "Rule"
  2414. (string :tag " Agenda key")
  2415. (string :tag "Replace by command")
  2416. (repeat :tag "Available when"
  2417. (choice
  2418. (cons :tag "Condition"
  2419. (choice
  2420. (const :tag "In file" in-file)
  2421. (const :tag "Not in file" not-in-file)
  2422. (const :tag "In buffer" in-buffer)
  2423. (const :tag "Not in buffer" not-in-buffer)
  2424. (const :tag "In mode" in-mode)
  2425. (const :tag "Not in mode" not-in-mode))
  2426. (regexp))
  2427. (function :tag "Custom function"))))))
  2428. (defcustom org-agenda-max-entries nil
  2429. "Maximum number of entries to display in an agenda.
  2430. This can be nil (no limit) or an integer or an alist of agenda
  2431. types with an associated number of entries to display in this
  2432. type."
  2433. :version "24.4"
  2434. :package-version '(Org . "8.0")
  2435. :group 'org-agenda-custom-commands
  2436. :type '(choice (symbol :tag "No limit" nil)
  2437. (integer :tag "Max number of entries")
  2438. (repeat
  2439. (cons (choice :tag "Agenda type"
  2440. (const agenda)
  2441. (const todo)
  2442. (const tags)
  2443. (const search))
  2444. (integer :tag "Max number of entries")))))
  2445. (defcustom org-agenda-max-todos nil
  2446. "Maximum number of TODOs to display in an agenda.
  2447. This can be nil (no limit) or an integer or an alist of agenda
  2448. types with an associated number of entries to display in this
  2449. type."
  2450. :version "24.4"
  2451. :package-version '(Org . "8.0")
  2452. :group 'org-agenda-custom-commands
  2453. :type '(choice (symbol :tag "No limit" nil)
  2454. (integer :tag "Max number of TODOs")
  2455. (repeat
  2456. (cons (choice :tag "Agenda type"
  2457. (const agenda)
  2458. (const todo)
  2459. (const tags)
  2460. (const search))
  2461. (integer :tag "Max number of TODOs")))))
  2462. (defcustom org-agenda-max-tags nil
  2463. "Maximum number of tagged entries to display in an agenda.
  2464. This can be nil (no limit) or an integer or an alist of agenda
  2465. types with an associated number of entries to display in this
  2466. type."
  2467. :version "24.4"
  2468. :package-version '(Org . "8.0")
  2469. :group 'org-agenda-custom-commands
  2470. :type '(choice (symbol :tag "No limit" nil)
  2471. (integer :tag "Max number of tagged entries")
  2472. (repeat
  2473. (cons (choice :tag "Agenda type"
  2474. (const agenda)
  2475. (const todo)
  2476. (const tags)
  2477. (const search))
  2478. (integer :tag "Max number of tagged entries")))))
  2479. (defcustom org-agenda-max-effort nil
  2480. "Maximum cumulated effort duration for the agenda.
  2481. This can be nil (no limit) or a number of minutes (as an integer)
  2482. or an alist of agenda types with an associated number of minutes
  2483. to limit entries to in this type."
  2484. :version "24.4"
  2485. :package-version '(Org . "8.0")
  2486. :group 'org-agenda-custom-commands
  2487. :type '(choice (symbol :tag "No limit" nil)
  2488. (integer :tag "Max number of minutes")
  2489. (repeat
  2490. (cons (choice :tag "Agenda type"
  2491. (const agenda)
  2492. (const todo)
  2493. (const tags)
  2494. (const search))
  2495. (integer :tag "Max number of minutes")))))
  2496. (defvar org-agenda-keep-restricted-file-list nil)
  2497. (defvar org-keys nil)
  2498. (defvar org-match nil)
  2499. ;;;###autoload
  2500. (defun org-agenda (&optional arg org-keys restriction)
  2501. "Dispatch agenda commands to collect entries to the agenda buffer.
  2502. Prompts for a command to execute. Any prefix arg will be passed
  2503. on to the selected command. The default selections are:
  2504. a Call `org-agenda-list' to display the agenda for current day or week.
  2505. t Call `org-todo-list' to display the global todo list.
  2506. T Call `org-todo-list' to display the global todo list, select only
  2507. entries with a specific TODO keyword (the user gets a prompt).
  2508. m Call `org-tags-view' to display headlines with tags matching
  2509. a condition (the user is prompted for the condition).
  2510. M Like `m', but select only TODO entries, no ordinary headlines.
  2511. e Export views to associated files.
  2512. s Search entries for keywords.
  2513. S Search entries for keywords, only with TODO keywords.
  2514. / Multi occur across all agenda files and also files listed
  2515. in `org-agenda-text-search-extra-files'.
  2516. < Restrict agenda commands to buffer, subtree, or region.
  2517. Press several times to get the desired effect.
  2518. > Remove a previous restriction.
  2519. # List \"stuck\" projects.
  2520. ! Configure what \"stuck\" means.
  2521. C Configure custom agenda commands.
  2522. More commands can be added by configuring the variable
  2523. `org-agenda-custom-commands'. In particular, specific tags and TODO keyword
  2524. searches can be pre-defined in this way.
  2525. If the current buffer is in Org mode and visiting a file, you can also
  2526. first press `<' once to indicate that the agenda should be temporarily
  2527. \(until the next use of `\\[org-agenda]') restricted to the current file.
  2528. Pressing `<' twice means to restrict to the current subtree or region
  2529. \(if active)."
  2530. (interactive "P")
  2531. (catch 'exit
  2532. (let* ((prefix-descriptions nil)
  2533. (org-agenda-buffer-name org-agenda-buffer-name)
  2534. (org-agenda-window-setup (if (equal (buffer-name)
  2535. org-agenda-buffer-name)
  2536. 'current-window
  2537. org-agenda-window-setup))
  2538. (org-agenda-custom-commands-orig org-agenda-custom-commands)
  2539. (org-agenda-custom-commands
  2540. ;; normalize different versions
  2541. (delq nil
  2542. (mapcar
  2543. (lambda (x)
  2544. (cond ((stringp (cdr x))
  2545. (push x prefix-descriptions)
  2546. nil)
  2547. ((stringp (nth 1 x)) x)
  2548. ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
  2549. (t (cons (car x) (cons "" (cdr x))))))
  2550. org-agenda-custom-commands)))
  2551. (org-agenda-custom-commands
  2552. (org-contextualize-keys
  2553. org-agenda-custom-commands org-agenda-custom-commands-contexts))
  2554. (buf (current-buffer))
  2555. (bfn (buffer-file-name (buffer-base-buffer)))
  2556. entry key type org-match lprops ans)
  2557. ;; Turn off restriction unless there is an overriding one,
  2558. (unless org-agenda-overriding-restriction
  2559. (unless org-agenda-keep-restricted-file-list
  2560. ;; There is a request to keep the file list in place
  2561. (put 'org-agenda-files 'org-restrict nil))
  2562. (setq org-agenda-restrict nil)
  2563. (move-marker org-agenda-restrict-begin nil)
  2564. (move-marker org-agenda-restrict-end nil))
  2565. ;; Delete old local properties
  2566. (put 'org-agenda-redo-command 'org-lprops nil)
  2567. ;; Delete previously set last-arguments
  2568. (put 'org-agenda-redo-command 'last-args nil)
  2569. ;; Remember where this call originated
  2570. (setq org-agenda-last-dispatch-buffer (current-buffer))
  2571. (unless org-keys
  2572. (setq ans (org-agenda-get-restriction-and-command prefix-descriptions)
  2573. org-keys (car ans)
  2574. restriction (cdr ans)))
  2575. ;; If we have sticky agenda buffers, set a name for the buffer,
  2576. ;; depending on the invoking keys. The user may still set this
  2577. ;; as a command option, which will overwrite what we do here.
  2578. (when org-agenda-sticky
  2579. (setq org-agenda-buffer-name
  2580. (format "*Org Agenda(%s)*" org-keys)))
  2581. ;; Establish the restriction, if any
  2582. (when (and (not org-agenda-overriding-restriction) restriction)
  2583. (put 'org-agenda-files 'org-restrict (list bfn))
  2584. (cond
  2585. ((eq restriction 'region)
  2586. (setq org-agenda-restrict (current-buffer))
  2587. (move-marker org-agenda-restrict-begin (region-beginning))
  2588. (move-marker org-agenda-restrict-end (region-end)))
  2589. ((eq restriction 'subtree)
  2590. (save-excursion
  2591. (setq org-agenda-restrict (current-buffer))
  2592. (org-back-to-heading t)
  2593. (move-marker org-agenda-restrict-begin (point))
  2594. (move-marker org-agenda-restrict-end
  2595. (progn (org-end-of-subtree t)))))
  2596. ((and (eq restriction 'buffer)
  2597. (or (< 1 (point-min))
  2598. (< (point-max) (1+ (buffer-size)))))
  2599. (setq org-agenda-restrict (current-buffer))
  2600. (move-marker org-agenda-restrict-begin (point-min))
  2601. (move-marker org-agenda-restrict-end (point-max)))))
  2602. ;; For example the todo list should not need it (but does...)
  2603. (cond
  2604. ((setq entry (assoc org-keys org-agenda-custom-commands))
  2605. (if (or (symbolp (nth 2 entry)) (functionp (nth 2 entry)))
  2606. (progn
  2607. (setq type (nth 2 entry) org-match (eval (nth 3 entry))
  2608. lprops (nth 4 entry))
  2609. (when org-agenda-sticky
  2610. (setq org-agenda-buffer-name
  2611. (or (and (stringp org-match) (format "*Org Agenda(%s:%s)*" org-keys org-match))
  2612. (format "*Org Agenda(%s)*" org-keys))))
  2613. (put 'org-agenda-redo-command 'org-lprops lprops)
  2614. (cond
  2615. ((eq type 'agenda)
  2616. (org-let lprops '(org-agenda-list current-prefix-arg)))
  2617. ((eq type 'agenda*)
  2618. (org-let lprops '(org-agenda-list current-prefix-arg nil nil t)))
  2619. ((eq type 'alltodo)
  2620. (org-let lprops '(org-todo-list current-prefix-arg)))
  2621. ((eq type 'search)
  2622. (org-let lprops '(org-search-view current-prefix-arg org-match nil)))
  2623. ((eq type 'stuck)
  2624. (org-let lprops '(org-agenda-list-stuck-projects
  2625. current-prefix-arg)))
  2626. ((eq type 'tags)
  2627. (org-let lprops '(org-tags-view current-prefix-arg org-match)))
  2628. ((eq type 'tags-todo)
  2629. (org-let lprops '(org-tags-view '(4) org-match)))
  2630. ((eq type 'todo)
  2631. (org-let lprops '(org-todo-list org-match)))
  2632. ((eq type 'tags-tree)
  2633. (org-check-for-org-mode)
  2634. (org-let lprops '(org-match-sparse-tree current-prefix-arg org-match)))
  2635. ((eq type 'todo-tree)
  2636. (org-check-for-org-mode)
  2637. (org-let lprops
  2638. '(org-occur (concat "^" org-outline-regexp "[ \t]*"
  2639. (regexp-quote org-match) "\\>"))))
  2640. ((eq type 'occur-tree)
  2641. (org-check-for-org-mode)
  2642. (org-let lprops '(org-occur org-match)))
  2643. ((functionp type)
  2644. (org-let lprops '(funcall type org-match)))
  2645. ((fboundp type)
  2646. (org-let lprops '(funcall type org-match)))
  2647. (t (user-error "Invalid custom agenda command type %s" type))))
  2648. (org-agenda-run-series (nth 1 entry) (cddr entry))))
  2649. ((equal org-keys "C")
  2650. (setq org-agenda-custom-commands org-agenda-custom-commands-orig)
  2651. (customize-variable 'org-agenda-custom-commands))
  2652. ((equal org-keys "a") (call-interactively 'org-agenda-list))
  2653. ((equal org-keys "s") (call-interactively 'org-search-view))
  2654. ((equal org-keys "S") (org-call-with-arg 'org-search-view (or arg '(4))))
  2655. ((equal org-keys "t") (call-interactively 'org-todo-list))
  2656. ((equal org-keys "T") (org-call-with-arg 'org-todo-list (or arg '(4))))
  2657. ((equal org-keys "m") (call-interactively 'org-tags-view))
  2658. ((equal org-keys "M") (org-call-with-arg 'org-tags-view (or arg '(4))))
  2659. ((equal org-keys "e") (call-interactively 'org-store-agenda-views))
  2660. ((equal org-keys "?") (org-tags-view nil "+FLAGGED")
  2661. (add-hook
  2662. 'post-command-hook
  2663. (lambda ()
  2664. (unless (current-message)
  2665. (let* ((m (org-agenda-get-any-marker))
  2666. (note (and m (org-entry-get m "THEFLAGGINGNOTE"))))
  2667. (when note
  2668. (message "FLAGGING-NOTE ([?] for more info): %s"
  2669. (org-add-props
  2670. (replace-regexp-in-string
  2671. "\\\\n" "//"
  2672. (copy-sequence note))
  2673. nil 'face 'org-warning))))))
  2674. t t))
  2675. ((equal org-keys "#") (call-interactively 'org-agenda-list-stuck-projects))
  2676. ((equal org-keys "/") (call-interactively 'org-occur-in-agenda-files))
  2677. ((equal org-keys "!") (customize-variable 'org-stuck-projects))
  2678. (t (user-error "Invalid agenda key"))))))
  2679. (defvar org-agenda-multi)
  2680. (defun org-agenda-append-agenda ()
  2681. "Append another agenda view to the current one.
  2682. This function allows interactive building of block agendas.
  2683. Agenda views are separated by `org-agenda-block-separator'."
  2684. (interactive)
  2685. (unless (derived-mode-p 'org-agenda-mode)
  2686. (user-error "Can only append from within agenda buffer"))
  2687. (let ((org-agenda-multi t))
  2688. (org-agenda)
  2689. (widen)
  2690. (org-agenda-finalize)
  2691. (setq buffer-read-only t)
  2692. (org-agenda-fit-window-to-buffer)))
  2693. (defun org-agenda-normalize-custom-commands (cmds)
  2694. "Normalize custom commands CMDS."
  2695. (delq nil
  2696. (mapcar
  2697. (lambda (x)
  2698. (cond ((stringp (cdr x)) nil)
  2699. ((stringp (nth 1 x)) x)
  2700. ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
  2701. (t (cons (car x) (cons "" (cdr x))))))
  2702. cmds)))
  2703. (defun org-agenda-get-restriction-and-command (prefix-descriptions)
  2704. "The user interface for selecting an agenda command."
  2705. (catch 'exit
  2706. (let* ((bfn (buffer-file-name (buffer-base-buffer)))
  2707. (restrict-ok (and bfn (derived-mode-p 'org-mode)))
  2708. (region-p (org-region-active-p))
  2709. (custom org-agenda-custom-commands)
  2710. (selstring "")
  2711. restriction second-time
  2712. c entry key type match prefixes rmheader header-end custom1 desc
  2713. line lines left right n n1)
  2714. (save-window-excursion
  2715. (delete-other-windows)
  2716. (org-switch-to-buffer-other-window " *Agenda Commands*")
  2717. (erase-buffer)
  2718. (insert (eval-when-compile
  2719. (let ((header
  2720. (copy-sequence
  2721. "Press key for an agenda command:
  2722. -------------------------------- < Buffer, subtree/region restriction
  2723. a Agenda for current week or day > Remove restriction
  2724. t List of all TODO entries e Export agenda views
  2725. m Match a TAGS/PROP/TODO query T Entries with special TODO kwd
  2726. s Search for keywords M Like m, but only TODO entries
  2727. / Multi-occur S Like s, but only TODO entries
  2728. ? Find :FLAGGED: entries C Configure custom agenda commands
  2729. * Toggle sticky agenda views # List stuck projects (!=configure)
  2730. "))
  2731. (start 0))
  2732. (while (string-match
  2733. "\\(^\\| \\|(\\)\\(\\S-\\)\\( \\|=\\)"
  2734. header start)
  2735. (setq start (match-end 0))
  2736. (add-text-properties (match-beginning 2) (match-end 2)
  2737. '(face bold) header))
  2738. header)))
  2739. (setq header-end (point-marker))
  2740. (while t
  2741. (setq custom1 custom)
  2742. (when (eq rmheader t)
  2743. (org-goto-line 1)
  2744. (re-search-forward ":" nil t)
  2745. (delete-region (match-end 0) (point-at-eol))
  2746. (forward-char 1)
  2747. (looking-at "-+")
  2748. (delete-region (match-end 0) (point-at-eol))
  2749. (move-marker header-end (match-end 0)))
  2750. (goto-char header-end)
  2751. (delete-region (point) (point-max))
  2752. ;; Produce all the lines that describe custom commands and prefixes
  2753. (setq lines nil)
  2754. (while (setq entry (pop custom1))
  2755. (setq key (car entry) desc (nth 1 entry)
  2756. type (nth 2 entry)
  2757. match (nth 3 entry))
  2758. (if (> (length key) 1)
  2759. (cl-pushnew (string-to-char key) prefixes :test #'equal)
  2760. (setq line
  2761. (format
  2762. "%-4s%-14s"
  2763. (org-add-props (copy-sequence key)
  2764. '(face bold))
  2765. (cond
  2766. ((string-match "\\S-" desc) desc)
  2767. ((eq type 'agenda) "Agenda for current week or day")
  2768. ((eq type 'agenda*) "Appointments for current week or day")
  2769. ((eq type 'alltodo) "List of all TODO entries")
  2770. ((eq type 'search) "Word search")
  2771. ((eq type 'stuck) "List of stuck projects")
  2772. ((eq type 'todo) "TODO keyword")
  2773. ((eq type 'tags) "Tags query")
  2774. ((eq type 'tags-todo) "Tags (TODO)")
  2775. ((eq type 'tags-tree) "Tags tree")
  2776. ((eq type 'todo-tree) "TODO kwd tree")
  2777. ((eq type 'occur-tree) "Occur tree")
  2778. ((functionp type) (if (symbolp type)
  2779. (symbol-name type)
  2780. "Lambda expression"))
  2781. (t "???"))))
  2782. (cond
  2783. ((not (org-string-nw-p match)) nil)
  2784. (org-agenda-menu-show-matcher
  2785. (setq line
  2786. (concat line ": "
  2787. (cond
  2788. ((stringp match)
  2789. (propertize match 'face 'org-warning))
  2790. ((listp type)
  2791. (format "set of %d commands" (length type)))))))
  2792. (t
  2793. (org-add-props line nil 'help-echo (concat "Matcher: " match))))
  2794. (push line lines)))
  2795. (setq lines (nreverse lines))
  2796. (when prefixes
  2797. (mapc (lambda (x)
  2798. (push
  2799. (format "%s %s"
  2800. (org-add-props (char-to-string x)
  2801. nil 'face 'bold)
  2802. (or (cdr (assoc (concat selstring
  2803. (char-to-string x))
  2804. prefix-descriptions))
  2805. "Prefix key"))
  2806. lines))
  2807. prefixes))
  2808. ;; Check if we should display in two columns
  2809. (if org-agenda-menu-two-columns
  2810. (progn
  2811. (setq n (length lines)
  2812. n1 (+ (/ n 2) (mod n 2))
  2813. right (nthcdr n1 lines)
  2814. left (copy-sequence lines))
  2815. (setcdr (nthcdr (1- n1) left) nil))
  2816. (setq left lines right nil))
  2817. (while left
  2818. (insert "\n" (pop left))
  2819. (when right
  2820. (if (< (current-column) 40)
  2821. (move-to-column 40 t)
  2822. (insert " "))
  2823. (insert (pop right))))
  2824. ;; Make the window the right size
  2825. (goto-char (point-min))
  2826. (if second-time
  2827. (when (not (pos-visible-in-window-p (point-max)))
  2828. (org-fit-window-to-buffer))
  2829. (setq second-time t)
  2830. (org-fit-window-to-buffer))
  2831. ;; Hint to navigation if window too small for all information
  2832. (setq header-line-format
  2833. (when (not (pos-visible-in-window-p (point-max)))
  2834. "Use C-v, M-v, C-n or C-p to navigate."))
  2835. ;; Ask for selection
  2836. (cl-loop
  2837. do (progn
  2838. (message "Press key for agenda command%s:"
  2839. (if (or restrict-ok org-agenda-overriding-restriction)
  2840. (if org-agenda-overriding-restriction
  2841. " (restriction lock active)"
  2842. (if restriction
  2843. (format " (restricted to %s)" restriction)
  2844. " (unrestricted)"))
  2845. ""))
  2846. (setq c (read-char-exclusive)))
  2847. until (not (memq c '(14 16 22 134217846)))
  2848. do (org-scroll c))
  2849. (message "")
  2850. (cond
  2851. ((assoc (char-to-string c) custom)
  2852. (setq selstring (concat selstring (char-to-string c)))
  2853. (throw 'exit (cons selstring restriction)))
  2854. ((memq c prefixes)
  2855. (setq selstring (concat selstring (char-to-string c))
  2856. prefixes nil
  2857. rmheader (or rmheader t)
  2858. custom (delq nil (mapcar
  2859. (lambda (x)
  2860. (if (or (= (length (car x)) 1)
  2861. (/= (string-to-char (car x)) c))
  2862. nil
  2863. (cons (substring (car x) 1) (cdr x))))
  2864. custom))))
  2865. ((eq c ?*)
  2866. (call-interactively 'org-toggle-sticky-agenda)
  2867. (sit-for 2))
  2868. ((and (not restrict-ok) (memq c '(?1 ?0 ?<)))
  2869. (message "Restriction is only possible in Org buffers")
  2870. (ding) (sit-for 1))
  2871. ((eq c ?1)
  2872. (org-agenda-remove-restriction-lock 'noupdate)
  2873. (setq restriction 'buffer))
  2874. ((eq c ?0)
  2875. (org-agenda-remove-restriction-lock 'noupdate)
  2876. (setq restriction (if region-p 'region 'subtree)))
  2877. ((eq c ?<)
  2878. (org-agenda-remove-restriction-lock 'noupdate)
  2879. (setq restriction
  2880. (cond
  2881. ((eq restriction 'buffer)
  2882. (if region-p 'region 'subtree))
  2883. ((memq restriction '(subtree region))
  2884. nil)
  2885. (t 'buffer))))
  2886. ((eq c ?>)
  2887. (org-agenda-remove-restriction-lock 'noupdate)
  2888. (setq restriction nil))
  2889. ((and (equal selstring "") (memq c '(?s ?S ?a ?t ?m ?L ?C ?e ?T ?M ?# ?! ?/ ??)))
  2890. (throw 'exit (cons (setq selstring (char-to-string c)) restriction)))
  2891. ((and (> (length selstring) 0) (eq c ?\d))
  2892. (delete-window)
  2893. (org-agenda-get-restriction-and-command prefix-descriptions))
  2894. ((equal c ?q) (error "Abort"))
  2895. (t (user-error "Invalid key %c" c))))))))
  2896. (defun org-agenda-fit-window-to-buffer ()
  2897. "Fit the window to the buffer size."
  2898. (and (memq org-agenda-window-setup '(reorganize-frame))
  2899. (fboundp 'fit-window-to-buffer)
  2900. (if (and (= (cdr org-agenda-window-frame-fractions) 1.0)
  2901. (= (car org-agenda-window-frame-fractions) 1.0))
  2902. (delete-other-windows)
  2903. (org-fit-window-to-buffer
  2904. nil
  2905. (floor (* (frame-height) (cdr org-agenda-window-frame-fractions)))
  2906. (floor (* (frame-height) (car org-agenda-window-frame-fractions)))))))
  2907. (defvar org-cmd nil)
  2908. (defvar org-agenda-overriding-cmd nil)
  2909. (defvar org-agenda-overriding-arguments nil)
  2910. (defvar org-agenda-overriding-cmd-arguments nil)
  2911. (defun org-agenda-run-series (name series)
  2912. "Run agenda NAME as a SERIES of agenda commands."
  2913. (org-let (nth 1 series) '(org-agenda-prepare name))
  2914. ;; We need to reset agenda markers here, because when constructing a
  2915. ;; block agenda, the individual blocks do not do that.
  2916. (org-agenda-reset-markers)
  2917. (let* ((org-agenda-multi t)
  2918. (redo (list 'org-agenda-run-series name (list 'quote series)))
  2919. (cmds (car series))
  2920. (gprops (nth 1 series))
  2921. match ;; The byte compiler incorrectly complains about this. Keep it!
  2922. org-cmd type lprops)
  2923. (while (setq org-cmd (pop cmds))
  2924. (setq type (car org-cmd))
  2925. (setq match (eval (nth 1 org-cmd)))
  2926. (setq lprops (nth 2 org-cmd))
  2927. (let ((org-agenda-overriding-arguments
  2928. (if (eq org-agenda-overriding-cmd org-cmd)
  2929. (or org-agenda-overriding-arguments
  2930. org-agenda-overriding-cmd-arguments))))
  2931. (cond
  2932. ((eq type 'agenda)
  2933. (org-let2 gprops lprops
  2934. '(call-interactively 'org-agenda-list)))
  2935. ((eq type 'agenda*)
  2936. (org-let2 gprops lprops
  2937. '(funcall 'org-agenda-list nil nil t)))
  2938. ((eq type 'alltodo)
  2939. (org-let2 gprops lprops
  2940. '(call-interactively 'org-todo-list)))
  2941. ((eq type 'search)
  2942. (org-let2 gprops lprops
  2943. '(org-search-view current-prefix-arg match nil)))
  2944. ((eq type 'stuck)
  2945. (org-let2 gprops lprops
  2946. '(call-interactively 'org-agenda-list-stuck-projects)))
  2947. ((eq type 'tags)
  2948. (org-let2 gprops lprops
  2949. '(org-tags-view current-prefix-arg match)))
  2950. ((eq type 'tags-todo)
  2951. (org-let2 gprops lprops
  2952. '(org-tags-view '(4) match)))
  2953. ((eq type 'todo)
  2954. (org-let2 gprops lprops
  2955. '(org-todo-list match)))
  2956. ((fboundp type)
  2957. (org-let2 gprops lprops
  2958. '(funcall type match)))
  2959. (t (error "Invalid type in command series")))))
  2960. (widen)
  2961. (let ((inhibit-read-only t))
  2962. (add-text-properties (point-min) (point-max)
  2963. `(org-series t org-series-redo-cmd ,redo)))
  2964. (setq org-agenda-redo-command redo)
  2965. (goto-char (point-min)))
  2966. (org-agenda-fit-window-to-buffer)
  2967. (org-let (nth 1 series) '(org-agenda-finalize)))
  2968. ;;;###autoload
  2969. (defmacro org-batch-agenda (cmd-key &rest parameters)
  2970. "Run an agenda command in batch mode and send the result to STDOUT.
  2971. If CMD-KEY is a string of length 1, it is used as a key in
  2972. `org-agenda-custom-commands' and triggers this command. If it is a
  2973. longer string it is used as a tags/todo match string.
  2974. Parameters are alternating variable names and values that will be bound
  2975. before running the agenda command."
  2976. (org-eval-in-environment (org-make-parameter-alist parameters)
  2977. (let (org-agenda-sticky)
  2978. (if (> (length cmd-key) 1)
  2979. (org-tags-view nil cmd-key)
  2980. (org-agenda nil cmd-key))))
  2981. (set-buffer org-agenda-buffer-name)
  2982. (princ (buffer-string)))
  2983. (defvar org-agenda-info nil)
  2984. ;;;###autoload
  2985. (defmacro org-batch-agenda-csv (cmd-key &rest parameters)
  2986. "Run an agenda command in batch mode and send the result to STDOUT.
  2987. If CMD-KEY is a string of length 1, it is used as a key in
  2988. `org-agenda-custom-commands' and triggers this command. If it is a
  2989. longer string it is used as a tags/todo match string.
  2990. Parameters are alternating variable names and values that will be bound
  2991. before running the agenda command.
  2992. The output gives a line for each selected agenda item. Each
  2993. item is a list of comma-separated values, like this:
  2994. category,head,type,todo,tags,date,time,extra,priority-l,priority-n
  2995. category The category of the item
  2996. head The headline, without TODO kwd, TAGS and PRIORITY
  2997. type The type of the agenda entry, can be
  2998. todo selected in TODO match
  2999. tagsmatch selected in tags match
  3000. diary imported from diary
  3001. deadline a deadline on given date
  3002. scheduled scheduled on given date
  3003. timestamp entry has timestamp on given date
  3004. closed entry was closed on given date
  3005. upcoming-deadline warning about deadline
  3006. past-scheduled forwarded scheduled item
  3007. block entry has date block including g. date
  3008. todo The todo keyword, if any
  3009. tags All tags including inherited ones, separated by colons
  3010. date The relevant date, like 2007-2-14
  3011. time The time, like 15:00-16:50
  3012. extra String with extra planning info
  3013. priority-l The priority letter if any was given
  3014. priority-n The computed numerical priority
  3015. agenda-day The day in the agenda where this is listed"
  3016. (org-eval-in-environment (append '((org-agenda-remove-tags t))
  3017. (org-make-parameter-alist parameters))
  3018. (if (> (length cmd-key) 2)
  3019. (org-tags-view nil cmd-key)
  3020. (org-agenda nil cmd-key)))
  3021. (set-buffer org-agenda-buffer-name)
  3022. (let ((lines (org-split-string (buffer-string) "\n")))
  3023. (dolist (line lines)
  3024. (when (get-text-property 0 'org-category line)
  3025. (setq org-agenda-info
  3026. (org-fix-agenda-info (text-properties-at 0 line)))
  3027. (princ
  3028. (mapconcat 'org-agenda-export-csv-mapper
  3029. '(org-category txt type todo tags date time extra
  3030. priority-letter priority agenda-day)
  3031. ","))
  3032. (princ "\n")))))
  3033. (defun org-fix-agenda-info (props)
  3034. "Make sure all properties on an agenda item have a canonical form.
  3035. This ensures the export commands can easily use it."
  3036. (let (tmp re)
  3037. (when (setq tmp (plist-get props 'tags))
  3038. (setq props (plist-put props 'tags (mapconcat 'identity tmp ":"))))
  3039. (when (setq tmp (plist-get props 'date))
  3040. (when (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
  3041. (let ((calendar-date-display-form '(year "-" month "-" day)))
  3042. '((format "%4d, %9s %2s, %4s" dayname monthname day year))
  3043. (setq tmp (calendar-date-string tmp)))
  3044. (setq props (plist-put props 'date tmp)))
  3045. (when (setq tmp (plist-get props 'day))
  3046. (when (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
  3047. (let ((calendar-date-display-form '(year "-" month "-" day)))
  3048. (setq tmp (calendar-date-string tmp)))
  3049. (setq props (plist-put props 'day tmp))
  3050. (setq props (plist-put props 'agenda-day tmp)))
  3051. (when (setq tmp (plist-get props 'txt))
  3052. (when (string-match "\\[#\\([A-Z0-9]\\)\\] ?" tmp)
  3053. (plist-put props 'priority-letter (match-string 1 tmp))
  3054. (setq tmp (replace-match "" t t tmp)))
  3055. (when (and (setq re (plist-get props 'org-todo-regexp))
  3056. (setq re (concat "\\`\\.*" re " ?"))
  3057. (let ((case-fold-search nil)) (string-match re tmp)))
  3058. (plist-put props 'todo (match-string 1 tmp))
  3059. (setq tmp (replace-match "" t t tmp)))
  3060. (plist-put props 'txt tmp)))
  3061. props)
  3062. (defun org-agenda-export-csv-mapper (prop)
  3063. (let ((res (plist-get org-agenda-info prop)))
  3064. (setq res
  3065. (cond
  3066. ((not res) "")
  3067. ((stringp res) res)
  3068. (t (prin1-to-string res))))
  3069. (org-trim (replace-regexp-in-string "," ";" res nil t))))
  3070. ;;;###autoload
  3071. (defun org-store-agenda-views (&rest parameters)
  3072. "Store agenda views."
  3073. (interactive)
  3074. (eval (list 'org-batch-store-agenda-views)))
  3075. ;;;###autoload
  3076. (defmacro org-batch-store-agenda-views (&rest parameters)
  3077. "Run all custom agenda commands that have a file argument."
  3078. (let ((cmds (org-agenda-normalize-custom-commands org-agenda-custom-commands))
  3079. (pop-up-frames nil)
  3080. (dir default-directory)
  3081. (pars (org-make-parameter-alist parameters))
  3082. cmd thiscmdkey thiscmdcmd match files opts cmd-or-set bufname)
  3083. (save-window-excursion
  3084. (while cmds
  3085. (setq cmd (pop cmds)
  3086. thiscmdkey (car cmd)
  3087. thiscmdcmd (cdr cmd)
  3088. match (nth 2 thiscmdcmd)
  3089. bufname (if org-agenda-sticky
  3090. (or (and (stringp match)
  3091. (format "*Org Agenda(%s:%s)*" thiscmdkey match))
  3092. (format "*Org Agenda(%s)*" thiscmdkey))
  3093. org-agenda-buffer-name)
  3094. cmd-or-set (nth 2 cmd)
  3095. opts (nth (if (listp cmd-or-set) 3 4) cmd)
  3096. files (nth (if (listp cmd-or-set) 4 5) cmd))
  3097. (if (stringp files) (setq files (list files)))
  3098. (when files
  3099. (org-eval-in-environment (append org-agenda-exporter-settings
  3100. opts pars)
  3101. (org-agenda nil thiscmdkey))
  3102. (set-buffer bufname)
  3103. (while files
  3104. (org-eval-in-environment (append org-agenda-exporter-settings
  3105. opts pars)
  3106. (org-agenda-write (expand-file-name (pop files) dir) nil t bufname)))
  3107. (and (get-buffer bufname)
  3108. (kill-buffer bufname)))))))
  3109. (defvar org-agenda-current-span nil
  3110. "The current span used in the agenda view.") ; local variable in the agenda buffer
  3111. (defun org-agenda-mark-header-line (pos)
  3112. "Mark the line at POS as an agenda structure header."
  3113. (save-excursion
  3114. (goto-char pos)
  3115. (put-text-property (point-at-bol) (point-at-eol)
  3116. 'org-agenda-structural-header t)
  3117. (when org-agenda-title-append
  3118. (put-text-property (point-at-bol) (point-at-eol)
  3119. 'org-agenda-title-append org-agenda-title-append))))
  3120. (defvar org-mobile-creating-agendas) ; defined in org-mobile.el
  3121. (defvar org-agenda-write-buffer-name "Agenda View")
  3122. (defun org-agenda-write (file &optional open nosettings agenda-bufname)
  3123. "Write the current buffer (an agenda view) as a file.
  3124. Depending on the extension of the file name, plain text (.txt),
  3125. HTML (.html or .htm), PDF (.pdf) or Postscript (.ps) is produced.
  3126. If the extension is .ics, translate visible agenda into iCalendar
  3127. format. If the extension is .org, collect all subtrees
  3128. corresponding to the agenda entries and add them in an .org file.
  3129. With prefix argument OPEN, open the new file immediately. If
  3130. NOSETTINGS is given, do not scope the settings of
  3131. `org-agenda-exporter-settings' into the export commands. This is
  3132. used when the settings have already been scoped and we do not
  3133. wish to overrule other, higher priority settings. If
  3134. AGENDA-BUFFER-NAME is provided, use this as the buffer name for
  3135. the agenda to write."
  3136. (interactive "FWrite agenda to file: \nP")
  3137. (if (or (not (file-writable-p file))
  3138. (and (file-exists-p file)
  3139. (if (called-interactively-p 'any)
  3140. (not (y-or-n-p (format "Overwrite existing file %s? " file))))))
  3141. (user-error "Cannot write agenda to file %s" file))
  3142. (org-let (if nosettings nil org-agenda-exporter-settings)
  3143. '(save-excursion
  3144. (save-window-excursion
  3145. (let ((bs (copy-sequence (buffer-string)))
  3146. (extension (file-name-extension file))
  3147. (default-directory (file-name-directory file))
  3148. beg content)
  3149. (with-temp-buffer
  3150. (rename-buffer org-agenda-write-buffer-name t)
  3151. (set-buffer-modified-p nil)
  3152. (insert bs)
  3153. (org-agenda-remove-marked-text 'invisible 'org-filtered)
  3154. (run-hooks 'org-agenda-before-write-hook)
  3155. (cond
  3156. ((bound-and-true-p org-mobile-creating-agendas)
  3157. (org-mobile-write-agenda-for-mobile file))
  3158. ((string= "org" extension)
  3159. (let (content p m message-log-max)
  3160. (goto-char (point-min))
  3161. (while (setq p (next-single-property-change (point) 'org-hd-marker nil))
  3162. (goto-char p)
  3163. (setq m (get-text-property (point) 'org-hd-marker))
  3164. (when m
  3165. (push (save-excursion
  3166. (set-buffer (marker-buffer m))
  3167. (goto-char m)
  3168. (org-copy-subtree 1 nil t t)
  3169. org-subtree-clip)
  3170. content)))
  3171. (find-file file)
  3172. (erase-buffer)
  3173. (dolist (s content) (org-paste-subtree 1 s))
  3174. (write-file file)
  3175. (kill-buffer (current-buffer))
  3176. (message "Org file written to %s" file)))
  3177. ((member extension '("html" "htm"))
  3178. (or (require 'htmlize nil t)
  3179. (error "Please install htmlize from https://github.com/hniksic/emacs-htmlize"))
  3180. (set-buffer (htmlize-buffer (current-buffer)))
  3181. (when org-agenda-export-html-style
  3182. ;; replace <style> section with org-agenda-export-html-style
  3183. (goto-char (point-min))
  3184. (kill-region (- (search-forward "<style") 6)
  3185. (search-forward "</style>"))
  3186. (insert org-agenda-export-html-style))
  3187. (write-file file)
  3188. (kill-buffer (current-buffer))
  3189. (message "HTML written to %s" file))
  3190. ((string= "ps" extension)
  3191. (require 'ps-print)
  3192. (ps-print-buffer-with-faces file)
  3193. (message "Postscript written to %s" file))
  3194. ((string= "pdf" extension)
  3195. (require 'ps-print)
  3196. (ps-print-buffer-with-faces
  3197. (concat (file-name-sans-extension file) ".ps"))
  3198. (call-process "ps2pdf" nil nil nil
  3199. (expand-file-name
  3200. (concat (file-name-sans-extension file) ".ps"))
  3201. (expand-file-name file))
  3202. (delete-file (concat (file-name-sans-extension file) ".ps"))
  3203. (message "PDF written to %s" file))
  3204. ((string= "ics" extension)
  3205. (require 'ox-icalendar)
  3206. (org-icalendar-export-current-agenda (expand-file-name file)))
  3207. (t
  3208. (let ((bs (buffer-string)))
  3209. (find-file file)
  3210. (erase-buffer)
  3211. (insert bs)
  3212. (save-buffer 0)
  3213. (kill-buffer (current-buffer))
  3214. (message "Plain text written to %s" file))))))))
  3215. (set-buffer (or agenda-bufname
  3216. (and (called-interactively-p 'any) (buffer-name))
  3217. org-agenda-buffer-name)))
  3218. (when open (org-open-file file)))
  3219. (defun org-agenda-remove-marked-text (property &optional value)
  3220. "Delete all text marked with VALUE of PROPERTY.
  3221. VALUE defaults to t."
  3222. (let (beg)
  3223. (setq value (or value t))
  3224. (while (setq beg (text-property-any (point-min) (point-max)
  3225. property value))
  3226. (delete-region
  3227. beg (or (next-single-property-change beg property)
  3228. (point-max))))))
  3229. (defun org-agenda-add-entry-text ()
  3230. "Add entry text to agenda lines.
  3231. This will add a maximum of `org-agenda-add-entry-text-maxlines' lines of the
  3232. entry text following headings shown in the agenda.
  3233. Drawers will be excluded, also the line with scheduling/deadline info."
  3234. (when (and (> org-agenda-add-entry-text-maxlines 0)
  3235. (not (bound-and-true-p org-mobile-creating-agendas)))
  3236. (let (m txt)
  3237. (goto-char (point-min))
  3238. (while (not (eobp))
  3239. (if (not (setq m (org-get-at-bol 'org-hd-marker)))
  3240. (beginning-of-line 2)
  3241. (setq txt (org-agenda-get-some-entry-text
  3242. m org-agenda-add-entry-text-maxlines " > "))
  3243. (end-of-line 1)
  3244. (if (string-match "\\S-" txt)
  3245. (insert "\n" txt)
  3246. (or (eobp) (forward-char 1))))))))
  3247. (defun org-agenda-get-some-entry-text (marker n-lines &optional indent
  3248. &rest keep)
  3249. "Extract entry text from MARKER, at most N-LINES lines.
  3250. This will ignore drawers etc, just get the text.
  3251. If INDENT is given, prefix every line with this string. If KEEP is
  3252. given, it is a list of symbols, defining stuff that should not be
  3253. removed from the entry content. Currently only `planning' is allowed here."
  3254. (let (txt drawer-re kwd-time-re ind)
  3255. (save-excursion
  3256. (with-current-buffer (marker-buffer marker)
  3257. (if (not (derived-mode-p 'org-mode))
  3258. (setq txt "")
  3259. (org-with-wide-buffer
  3260. (goto-char marker)
  3261. (end-of-line 1)
  3262. (setq txt (buffer-substring
  3263. (min (1+ (point)) (point-max))
  3264. (progn (outline-next-heading) (point)))
  3265. drawer-re org-drawer-regexp
  3266. kwd-time-re (concat "^[ \t]*" org-keyword-time-regexp
  3267. ".*\n?"))
  3268. (with-temp-buffer
  3269. (insert txt)
  3270. (when org-agenda-add-entry-text-descriptive-links
  3271. (goto-char (point-min))
  3272. (while (org-activate-links (point-max))
  3273. (goto-char (match-end 0))))
  3274. (goto-char (point-min))
  3275. (while (re-search-forward org-link-bracket-re (point-max) t)
  3276. (set-text-properties (match-beginning 0) (match-end 0)
  3277. nil))
  3278. (goto-char (point-min))
  3279. (while (re-search-forward drawer-re nil t)
  3280. (delete-region
  3281. (match-beginning 0)
  3282. (progn (re-search-forward
  3283. "^[ \t]*:END:.*\n?" nil 'move)
  3284. (point))))
  3285. (unless (member 'planning keep)
  3286. (goto-char (point-min))
  3287. (while (re-search-forward kwd-time-re nil t)
  3288. (replace-match "")))
  3289. (goto-char (point-min))
  3290. (when org-agenda-entry-text-exclude-regexps
  3291. (let ((re-list org-agenda-entry-text-exclude-regexps) re)
  3292. (while (setq re (pop re-list))
  3293. (goto-char (point-min))
  3294. (while (re-search-forward re nil t)
  3295. (replace-match "")))))
  3296. (goto-char (point-max))
  3297. (skip-chars-backward " \t\n")
  3298. (when (looking-at "[ \t\n]+\\'") (replace-match ""))
  3299. ;; find and remove min common indentation
  3300. (goto-char (point-min))
  3301. (untabify (point-min) (point-max))
  3302. (setq ind (current-indentation))
  3303. (while (not (eobp))
  3304. (unless (looking-at "[ \t]*$")
  3305. (setq ind (min ind (current-indentation))))
  3306. (beginning-of-line 2))
  3307. (goto-char (point-min))
  3308. (while (not (eobp))
  3309. (unless (looking-at "[ \t]*$")
  3310. (move-to-column ind)
  3311. (delete-region (point-at-bol) (point)))
  3312. (beginning-of-line 2))
  3313. (run-hooks 'org-agenda-entry-text-cleanup-hook)
  3314. (goto-char (point-min))
  3315. (when indent
  3316. (while (and (not (eobp)) (re-search-forward "^" nil t))
  3317. (replace-match indent t t)))
  3318. (goto-char (point-min))
  3319. (while (looking-at "[ \t]*\n") (replace-match ""))
  3320. (goto-char (point-max))
  3321. (when (> (org-current-line)
  3322. n-lines)
  3323. (org-goto-line (1+ n-lines))
  3324. (backward-char 1))
  3325. (setq txt (buffer-substring (point-min) (point))))))))
  3326. txt))
  3327. (defun org-check-for-org-mode ()
  3328. "Make sure current buffer is in Org mode. Error if not."
  3329. (or (derived-mode-p 'org-mode)
  3330. (error "Cannot execute Org agenda command on buffer in %s"
  3331. major-mode)))
  3332. ;;; Agenda prepare and finalize
  3333. (defvar org-agenda-multi nil) ; dynamically scoped
  3334. (defvar org-agenda-pre-window-conf nil)
  3335. (defvar org-agenda-columns-active nil)
  3336. (defvar org-agenda-name nil)
  3337. (defvar org-agenda-tag-filter nil)
  3338. (defvar org-agenda-category-filter nil)
  3339. (defvar org-agenda-regexp-filter nil)
  3340. (defvar org-agenda-effort-filter nil)
  3341. (defvar org-agenda-top-headline-filter nil)
  3342. (defvar org-agenda-represented-categories nil
  3343. "Cache for the list of all categories in the agenda.")
  3344. (defvar org-agenda-represented-tags nil
  3345. "Cache for the list of all categories in the agenda.")
  3346. (defvar org-agenda-tag-filter-preset nil
  3347. "A preset of the tags filter used for secondary agenda filtering.
  3348. This must be a list of strings, each string must be a single tag preceded
  3349. by \"+\" or \"-\".
  3350. This variable should not be set directly, but agenda custom commands can
  3351. bind it in the options section. The preset filter is a global property of
  3352. the entire agenda view. In a block agenda, it will not work reliably to
  3353. define a filter for one of the individual blocks. You need to set it in
  3354. the global options and expect it to be applied to the entire view.")
  3355. (defconst org-agenda-filter-variables
  3356. '((category . org-agenda-category-filter)
  3357. (tag . org-agenda-tag-filter)
  3358. (effort . org-agenda-effort-filter)
  3359. (regexp . org-agenda-regexp-filter))
  3360. "Alist of filter types and associated variables")
  3361. (defun org-agenda-filter-any ()
  3362. "Is any filter active?"
  3363. (let ((form (cons 'or (mapcar (lambda (x)
  3364. (if (or (symbol-value (cdr x))
  3365. (get :preset-filter x))
  3366. t nil))
  3367. org-agenda-filter-variables))))
  3368. (eval form)))
  3369. (defvar org-agenda-category-filter-preset nil
  3370. "A preset of the category filter used for secondary agenda filtering.
  3371. This must be a list of strings, each string must be a single category
  3372. preceded by \"+\" or \"-\".
  3373. This variable should not be set directly, but agenda custom commands can
  3374. bind it in the options section. The preset filter is a global property of
  3375. the entire agenda view. In a block agenda, it will not work reliably to
  3376. define a filter for one of the individual blocks. You need to set it in
  3377. the global options and expect it to be applied to the entire view.")
  3378. (defvar org-agenda-regexp-filter-preset nil
  3379. "A preset of the regexp filter used for secondary agenda filtering.
  3380. This must be a list of strings, each string must be a single regexp
  3381. preceded by \"+\" or \"-\".
  3382. This variable should not be set directly, but agenda custom commands can
  3383. bind it in the options section. The preset filter is a global property of
  3384. the entire agenda view. In a block agenda, it will not work reliably to
  3385. define a filter for one of the individual blocks. You need to set it in
  3386. the global options and expect it to be applied to the entire view.")
  3387. (defvar org-agenda-effort-filter-preset nil
  3388. "A preset of the effort condition used for secondary agenda filtering.
  3389. This must be a list of strings, each string must be a single regexp
  3390. preceded by \"+\" or \"-\".
  3391. This variable should not be set directly, but agenda custom commands can
  3392. bind it in the options section. The preset filter is a global property of
  3393. the entire agenda view. In a block agenda, it will not work reliably to
  3394. define a filter for one of the individual blocks. You need to set it in
  3395. the global options and expect it to be applied to the entire view.")
  3396. (defun org-agenda-use-sticky-p ()
  3397. "Return non-nil if an agenda buffer named
  3398. `org-agenda-buffer-name' exists and should be shown instead of
  3399. generating a new one."
  3400. (and
  3401. ;; turned off by user
  3402. org-agenda-sticky
  3403. ;; For multi-agenda buffer already exists
  3404. (not org-agenda-multi)
  3405. ;; buffer found
  3406. (get-buffer org-agenda-buffer-name)
  3407. ;; C-u parameter is same as last call
  3408. (with-current-buffer (get-buffer org-agenda-buffer-name)
  3409. (and
  3410. (equal current-prefix-arg
  3411. org-agenda-last-prefix-arg)
  3412. ;; In case user turned stickiness on, while having existing
  3413. ;; Agenda buffer active, don't reuse that buffer, because it
  3414. ;; does not have org variables local
  3415. org-agenda-this-buffer-is-sticky))))
  3416. (defun org-agenda-prepare-window (abuf filter-alist)
  3417. "Setup agenda buffer in the window.
  3418. ABUF is the buffer for the agenda window.
  3419. FILTER-ALIST is an alist of filters we need to apply when
  3420. `org-agenda-persistent-filter' is non-nil."
  3421. (let* ((awin (get-buffer-window abuf)) wconf)
  3422. (cond
  3423. ((equal (current-buffer) abuf) nil)
  3424. (awin (select-window awin))
  3425. ((not (setq wconf (current-window-configuration))))
  3426. ((eq org-agenda-window-setup 'current-window)
  3427. (pop-to-buffer-same-window abuf))
  3428. ((eq org-agenda-window-setup 'other-window)
  3429. (org-switch-to-buffer-other-window abuf))
  3430. ((eq org-agenda-window-setup 'other-frame)
  3431. (switch-to-buffer-other-frame abuf))
  3432. ((eq org-agenda-window-setup 'other-tab)
  3433. (if (fboundp 'switch-to-buffer-other-tab)
  3434. (switch-to-buffer-other-tab abuf)
  3435. (user-error "Your version of Emacs does not have tab bar support")))
  3436. ((eq org-agenda-window-setup 'only-window)
  3437. (delete-other-windows)
  3438. (pop-to-buffer-same-window abuf))
  3439. ((eq org-agenda-window-setup 'reorganize-frame)
  3440. (delete-other-windows)
  3441. (org-switch-to-buffer-other-window abuf)))
  3442. (setq org-agenda-tag-filter (cdr (assq 'tag filter-alist)))
  3443. (setq org-agenda-category-filter (cdr (assq 'cat filter-alist)))
  3444. (setq org-agenda-effort-filter (cdr (assq 'effort filter-alist)))
  3445. (setq org-agenda-regexp-filter (cdr (assq 're filter-alist)))
  3446. ;; Additional test in case agenda is invoked from within agenda
  3447. ;; buffer via elisp link.
  3448. (unless (equal (current-buffer) abuf)
  3449. (pop-to-buffer-same-window abuf))
  3450. (setq org-agenda-pre-window-conf
  3451. (or wconf org-agenda-pre-window-conf))))
  3452. (defun org-agenda-prepare (&optional name)
  3453. (let ((filter-alist (when org-agenda-persistent-filter
  3454. (with-current-buffer
  3455. (get-buffer-create org-agenda-buffer-name)
  3456. `((tag . ,org-agenda-tag-filter)
  3457. (re . ,org-agenda-regexp-filter)
  3458. (effort . ,org-agenda-effort-filter)
  3459. (cat . ,org-agenda-category-filter))))))
  3460. (if (org-agenda-use-sticky-p)
  3461. (progn
  3462. (put 'org-agenda-tag-filter :preset-filter nil)
  3463. (put 'org-agenda-category-filter :preset-filter nil)
  3464. (put 'org-agenda-regexp-filter :preset-filter nil)
  3465. (put 'org-agenda-effort-filter :preset-filter nil)
  3466. ;; Popup existing buffer
  3467. (org-agenda-prepare-window (get-buffer org-agenda-buffer-name)
  3468. filter-alist)
  3469. (message "Sticky Agenda buffer, use `r' to refresh")
  3470. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  3471. (throw 'exit "Sticky Agenda buffer, use `r' to refresh"))
  3472. (setq org-todo-keywords-for-agenda nil)
  3473. (put 'org-agenda-tag-filter :preset-filter
  3474. org-agenda-tag-filter-preset)
  3475. (put 'org-agenda-category-filter :preset-filter
  3476. org-agenda-category-filter-preset)
  3477. (put 'org-agenda-regexp-filter :preset-filter
  3478. org-agenda-regexp-filter-preset)
  3479. (put 'org-agenda-effort-filter :preset-filter
  3480. org-agenda-effort-filter-preset)
  3481. (if org-agenda-multi
  3482. (progn
  3483. (setq buffer-read-only nil)
  3484. (goto-char (point-max))
  3485. (unless (or (bobp) org-agenda-compact-blocks
  3486. (not org-agenda-block-separator))
  3487. (insert "\n"
  3488. (if (stringp org-agenda-block-separator)
  3489. org-agenda-block-separator
  3490. (make-string (window-width) org-agenda-block-separator))
  3491. "\n"))
  3492. (narrow-to-region (point) (point-max)))
  3493. (setq org-done-keywords-for-agenda nil)
  3494. ;; Setting any org variables that are in org-agenda-local-vars
  3495. ;; list need to be done after the prepare call
  3496. (org-agenda-prepare-window
  3497. (get-buffer-create org-agenda-buffer-name) filter-alist)
  3498. (setq buffer-read-only nil)
  3499. (org-agenda-reset-markers)
  3500. (let ((inhibit-read-only t)) (erase-buffer))
  3501. (org-agenda-mode)
  3502. (setq org-agenda-buffer (current-buffer))
  3503. (setq org-agenda-contributing-files nil)
  3504. (setq org-agenda-columns-active nil)
  3505. (org-agenda-prepare-buffers (org-agenda-files nil 'ifmode))
  3506. (setq org-todo-keywords-for-agenda
  3507. (org-uniquify org-todo-keywords-for-agenda))
  3508. (setq org-done-keywords-for-agenda
  3509. (org-uniquify org-done-keywords-for-agenda))
  3510. (setq org-agenda-last-prefix-arg current-prefix-arg)
  3511. (setq org-agenda-this-buffer-name org-agenda-buffer-name)
  3512. (and name (not org-agenda-name)
  3513. (setq-local org-agenda-name name)))
  3514. (setq buffer-read-only nil))))
  3515. (defvar org-overriding-columns-format)
  3516. (defvar org-local-columns-format)
  3517. (defun org-agenda-finalize ()
  3518. "Finishing touch for the agenda buffer.
  3519. This function is called just before displaying the agenda. If
  3520. you want to add your own functions to the finalization of the
  3521. agenda display, configure `org-agenda-finalize-hook'."
  3522. (unless org-agenda-multi
  3523. (let ((inhibit-read-only t))
  3524. (save-excursion
  3525. (goto-char (point-min))
  3526. (save-excursion
  3527. (while (org-activate-links (point-max))
  3528. (goto-char (match-end 0))))
  3529. (unless (eq org-agenda-remove-tags t)
  3530. (org-agenda-align-tags))
  3531. (unless org-agenda-with-colors
  3532. (remove-text-properties (point-min) (point-max) '(face nil)))
  3533. (when (bound-and-true-p org-overriding-columns-format)
  3534. (setq-local org-local-columns-format
  3535. org-overriding-columns-format))
  3536. (when org-agenda-view-columns-initially
  3537. (org-agenda-columns))
  3538. (when org-agenda-fontify-priorities
  3539. (org-agenda-fontify-priorities))
  3540. (when (and org-agenda-dim-blocked-tasks org-blocker-hook)
  3541. (org-agenda-dim-blocked-tasks))
  3542. (org-agenda-mark-clocking-task)
  3543. (when org-agenda-entry-text-mode
  3544. (org-agenda-entry-text-hide)
  3545. (org-agenda-entry-text-show))
  3546. (when (and (featurep 'org-habit)
  3547. (save-excursion (next-single-property-change (point-min) 'org-habit-p)))
  3548. (org-habit-insert-consistency-graphs))
  3549. (setq org-agenda-type (org-get-at-bol 'org-agenda-type))
  3550. (unless (or (eq org-agenda-show-inherited-tags 'always)
  3551. (and (listp org-agenda-show-inherited-tags)
  3552. (memq org-agenda-type org-agenda-show-inherited-tags))
  3553. (and (eq org-agenda-show-inherited-tags t)
  3554. (or (eq org-agenda-use-tag-inheritance t)
  3555. (and (listp org-agenda-use-tag-inheritance)
  3556. (not (memq org-agenda-type
  3557. org-agenda-use-tag-inheritance))))))
  3558. (let (mrk)
  3559. (save-excursion
  3560. (goto-char (point-min))
  3561. (while (equal (forward-line) 0)
  3562. (when (setq mrk (get-text-property (point) 'org-hd-marker))
  3563. (put-text-property (point-at-bol) (point-at-eol)
  3564. 'tags
  3565. (org-with-point-at mrk
  3566. (mapcar #'downcase (org-get-tags)))))))))
  3567. (setq org-agenda-represented-tags nil
  3568. org-agenda-represented-categories nil)
  3569. (when org-agenda-top-headline-filter
  3570. (org-agenda-filter-top-headline-apply
  3571. org-agenda-top-headline-filter))
  3572. (when org-agenda-tag-filter
  3573. (org-agenda-filter-apply org-agenda-tag-filter 'tag t))
  3574. (when (get 'org-agenda-tag-filter :preset-filter)
  3575. (org-agenda-filter-apply
  3576. (get 'org-agenda-tag-filter :preset-filter) 'tag t))
  3577. (when org-agenda-category-filter
  3578. (org-agenda-filter-apply org-agenda-category-filter 'category))
  3579. (when (get 'org-agenda-category-filter :preset-filter)
  3580. (org-agenda-filter-apply
  3581. (get 'org-agenda-category-filter :preset-filter) 'category))
  3582. (when org-agenda-regexp-filter
  3583. (org-agenda-filter-apply org-agenda-regexp-filter 'regexp))
  3584. (when (get 'org-agenda-regexp-filter :preset-filter)
  3585. (org-agenda-filter-apply
  3586. (get 'org-agenda-regexp-filter :preset-filter) 'regexp))
  3587. (when org-agenda-effort-filter
  3588. (org-agenda-filter-apply org-agenda-effort-filter 'effort))
  3589. (when (get 'org-agenda-effort-filter :preset-filter)
  3590. (org-agenda-filter-apply
  3591. (get 'org-agenda-effort-filter :preset-filter) 'effort))
  3592. (add-hook 'kill-buffer-hook 'org-agenda-reset-markers 'append 'local))
  3593. (run-hooks 'org-agenda-finalize-hook))))
  3594. (defun org-agenda-mark-clocking-task ()
  3595. "Mark the current clock entry in the agenda if it is present."
  3596. ;; We need to widen when `org-agenda-finalize' is called from
  3597. ;; `org-agenda-change-all-lines' (e.g. in `org-agenda-clock-in').
  3598. (when (bound-and-true-p org-clock-current-task)
  3599. (save-restriction
  3600. (widen)
  3601. (org-agenda-unmark-clocking-task)
  3602. (when (marker-buffer org-clock-hd-marker)
  3603. (save-excursion
  3604. (goto-char (point-min))
  3605. (let (s ov)
  3606. (while (setq s (next-single-property-change (point) 'org-hd-marker))
  3607. (goto-char s)
  3608. (when (equal (org-get-at-bol 'org-hd-marker)
  3609. org-clock-hd-marker)
  3610. (setq ov (make-overlay (point-at-bol) (1+ (point-at-eol))))
  3611. (overlay-put ov 'type 'org-agenda-clocking)
  3612. (overlay-put ov 'face 'org-agenda-clocking)
  3613. (overlay-put ov 'help-echo
  3614. "The clock is running in this item")))))))))
  3615. (defun org-agenda-unmark-clocking-task ()
  3616. "Unmark the current clocking task."
  3617. (mapc (lambda (o)
  3618. (when (eq (overlay-get o 'type) 'org-agenda-clocking)
  3619. (delete-overlay o)))
  3620. (overlays-in (point-min) (point-max))))
  3621. (defun org-agenda-fontify-priorities ()
  3622. "Make highest priority lines bold, and lowest italic."
  3623. (interactive)
  3624. (mapc (lambda (o) (when (eq (overlay-get o 'org-type) 'org-priority)
  3625. (delete-overlay o)))
  3626. (overlays-in (point-min) (point-max)))
  3627. (save-excursion
  3628. (let (b e p ov h l)
  3629. (goto-char (point-min))
  3630. (while (re-search-forward org-priority-regexp nil t)
  3631. (setq h (or (get-char-property (point) 'org-priority-highest)
  3632. org-priority-highest)
  3633. l (or (get-char-property (point) 'org-priority-lowest)
  3634. org-priority-lowest)
  3635. p (string-to-char (match-string 2))
  3636. b (match-beginning 1)
  3637. e (if (eq org-agenda-fontify-priorities 'cookies)
  3638. (match-end 1)
  3639. (point-at-eol))
  3640. ov (make-overlay b e))
  3641. (overlay-put
  3642. ov 'face
  3643. (let ((special-face
  3644. (cond ((org-face-from-face-or-color
  3645. 'priority 'org-priority
  3646. (cdr (assoc p org-priority-faces))))
  3647. ((and (listp org-agenda-fontify-priorities)
  3648. (org-face-from-face-or-color
  3649. 'priority 'org-priority
  3650. (cdr (assoc p org-agenda-fontify-priorities)))))
  3651. ((equal p l) 'italic)
  3652. ((equal p h) 'bold))))
  3653. (if special-face (list special-face 'org-priority) 'org-priority)))
  3654. (overlay-put ov 'org-type 'org-priority)))))
  3655. (defvar org-depend-tag-blocked)
  3656. (defun org-agenda-dim-blocked-tasks (&optional invisible)
  3657. "Dim currently blocked TODOs in the agenda display.
  3658. When INVISIBLE is non-nil, hide currently blocked TODO instead of
  3659. dimming them."
  3660. (interactive "P")
  3661. (when (called-interactively-p 'interactive)
  3662. (message "Dim or hide blocked tasks..."))
  3663. (dolist (o (overlays-in (point-min) (point-max)))
  3664. (when (eq (overlay-get o 'face) 'org-agenda-dimmed-todo-face)
  3665. (delete-overlay o)))
  3666. (save-excursion
  3667. (let ((inhibit-read-only t))
  3668. (goto-char (point-min))
  3669. (while (let ((pos (text-property-not-all
  3670. (point) (point-max) 'org-todo-blocked nil)))
  3671. (when pos (goto-char pos)))
  3672. (let* ((invisible
  3673. (eq (org-get-at-bol 'org-todo-blocked) 'invisible))
  3674. (todo-blocked
  3675. (eq (org-get-at-bol 'org-filter-type) 'todo-blocked))
  3676. (ov (make-overlay (if invisible
  3677. (line-end-position 0)
  3678. (line-beginning-position))
  3679. (line-end-position))))
  3680. (when todo-blocked
  3681. (overlay-put ov 'face 'org-agenda-dimmed-todo-face))
  3682. (when invisible
  3683. (org-agenda-filter-hide-line 'todo-blocked)))
  3684. (move-beginning-of-line 2))))
  3685. (when (called-interactively-p 'interactive)
  3686. (message "Dim or hide blocked tasks...done")))
  3687. (defun org-agenda--mark-blocked-entry (entry)
  3688. "If ENTRY is blocked, mark it for fontification or invisibility.
  3689. If the header at `org-hd-marker' is blocked according to
  3690. `org-entry-blocked-p', then if `org-agenda-dim-blocked-tasks' is
  3691. 'invisible and the header is not blocked by checkboxes, set the
  3692. text property `org-todo-blocked' to `invisible', otherwise set it
  3693. to t."
  3694. (when (get-text-property 0 'todo-state entry)
  3695. (let ((entry-marker (get-text-property 0 'org-hd-marker entry))
  3696. (org-blocked-by-checkboxes nil)
  3697. ;; Necessary so that `org-entry-blocked-p' does not change
  3698. ;; the buffer.
  3699. (org-depend-tag-blocked nil))
  3700. (when entry-marker
  3701. (let ((blocked
  3702. (with-current-buffer (marker-buffer entry-marker)
  3703. (save-excursion
  3704. (goto-char entry-marker)
  3705. (org-entry-blocked-p)))))
  3706. (when blocked
  3707. (let ((really-invisible
  3708. (and (not org-blocked-by-checkboxes)
  3709. (eq org-agenda-dim-blocked-tasks 'invisible))))
  3710. (put-text-property
  3711. 0 (length entry) 'org-todo-blocked
  3712. (if really-invisible 'invisible t)
  3713. entry)
  3714. (put-text-property
  3715. 0 (length entry) 'org-filter-type 'todo-blocked entry)))))))
  3716. entry)
  3717. (defvar org-agenda-skip-function nil
  3718. "Function to be called at each match during agenda construction.
  3719. If this function returns nil, the current match should not be skipped.
  3720. Otherwise, the function must return a position from where the search
  3721. should be continued.
  3722. This may also be a Lisp form, it will be evaluated.
  3723. Never set this variable using `setq' or so, because then it will apply
  3724. to all future agenda commands. If you do want a global skipping condition,
  3725. use the option `org-agenda-skip-function-global' instead.
  3726. The correct usage for `org-agenda-skip-function' is to bind it with
  3727. `let' to scope it dynamically into the agenda-constructing command.
  3728. A good way to set it is through options in `org-agenda-custom-commands'.")
  3729. (defun org-agenda-skip ()
  3730. "Throw to `:skip' in places that should be skipped.
  3731. Also moves point to the end of the skipped region, so that search can
  3732. continue from there."
  3733. (let ((p (point-at-bol)) to)
  3734. (when (or
  3735. (save-excursion (goto-char p) (looking-at comment-start-skip))
  3736. (and org-agenda-skip-archived-trees (not org-agenda-archives-mode)
  3737. (or (and (get-text-property p :org-archived)
  3738. (org-end-of-subtree t))
  3739. (and (member org-archive-tag org-file-tags)
  3740. (goto-char (point-max)))))
  3741. (and org-agenda-skip-comment-trees
  3742. (get-text-property p :org-comment)
  3743. (org-end-of-subtree t))
  3744. (and (setq to (or (org-agenda-skip-eval org-agenda-skip-function-global)
  3745. (org-agenda-skip-eval org-agenda-skip-function)))
  3746. (goto-char to))
  3747. (org-in-src-block-p t))
  3748. (throw :skip t))))
  3749. (defun org-agenda-skip-eval (form)
  3750. "If FORM is a function or a list, call (or eval) it and return the result.
  3751. `save-excursion' and `save-match-data' are wrapped around the call, so point
  3752. and match data are returned to the previous state no matter what these
  3753. functions do."
  3754. (let (fp)
  3755. (and form
  3756. (or (setq fp (functionp form))
  3757. (consp form))
  3758. (save-excursion
  3759. (save-match-data
  3760. (if fp
  3761. (funcall form)
  3762. (eval form)))))))
  3763. (defvar org-agenda-markers nil
  3764. "List of all currently active markers created by `org-agenda'.")
  3765. (defvar org-agenda-last-marker-time (float-time)
  3766. "Creation time of the last agenda marker.")
  3767. (defun org-agenda-new-marker (&optional pos)
  3768. "Return a new agenda marker.
  3769. Maker is at point, or at POS if non-nil. Org mode keeps a list of
  3770. these markers and resets them when they are no longer in use."
  3771. (let ((m (copy-marker (or pos (point)) t)))
  3772. (setq org-agenda-last-marker-time (float-time))
  3773. (if org-agenda-buffer
  3774. (with-current-buffer org-agenda-buffer
  3775. (push m org-agenda-markers))
  3776. (push m org-agenda-markers))
  3777. m))
  3778. (defun org-agenda-reset-markers ()
  3779. "Reset markers created by `org-agenda'."
  3780. (while org-agenda-markers
  3781. (move-marker (pop org-agenda-markers) nil)))
  3782. (defun org-agenda-save-markers-for-cut-and-paste (beg end)
  3783. "Save relative positions of markers in region.
  3784. This check for agenda markers in all agenda buffers currently active."
  3785. (dolist (buf (buffer-list))
  3786. (with-current-buffer buf
  3787. (when (eq major-mode 'org-agenda-mode)
  3788. (mapc (lambda (m) (org-check-and-save-marker m beg end))
  3789. org-agenda-markers)))))
  3790. ;;; Entry text mode
  3791. (defun org-agenda-entry-text-show-here ()
  3792. "Add some text from the entry as context to the current line."
  3793. (let (m txt o)
  3794. (setq m (org-get-at-bol 'org-hd-marker))
  3795. (unless (marker-buffer m)
  3796. (error "No marker points to an entry here"))
  3797. (setq txt (concat "\n" (org-no-properties
  3798. (org-agenda-get-some-entry-text
  3799. m org-agenda-entry-text-maxlines
  3800. org-agenda-entry-text-leaders))))
  3801. (when (string-match "\\S-" txt)
  3802. (setq o (make-overlay (point-at-bol) (point-at-eol)))
  3803. (overlay-put o 'evaporate t)
  3804. (overlay-put o 'org-overlay-type 'agenda-entry-content)
  3805. (overlay-put o 'after-string txt))))
  3806. (defun org-agenda-entry-text-show ()
  3807. "Add entry context for all agenda lines."
  3808. (interactive)
  3809. (save-excursion
  3810. (goto-char (point-max))
  3811. (beginning-of-line 1)
  3812. (while (not (bobp))
  3813. (when (org-get-at-bol 'org-hd-marker)
  3814. (org-agenda-entry-text-show-here))
  3815. (beginning-of-line 0))))
  3816. (defun org-agenda-entry-text-hide ()
  3817. "Remove any shown entry context."
  3818. (mapc (lambda (o)
  3819. (when (eq (overlay-get o 'org-overlay-type)
  3820. 'agenda-entry-content)
  3821. (delete-overlay o)))
  3822. (overlays-in (point-min) (point-max))))
  3823. (defun org-agenda-get-day-face (date)
  3824. "Return the face DATE should be displayed with."
  3825. (cond ((and (functionp org-agenda-day-face-function)
  3826. (funcall org-agenda-day-face-function date)))
  3827. ((org-agenda-today-p date) 'org-agenda-date-today)
  3828. ((memq (calendar-day-of-week date) org-agenda-weekend-days)
  3829. 'org-agenda-date-weekend)
  3830. (t 'org-agenda-date)))
  3831. (defvar org-agenda-show-log-scoped)
  3832. ;;; Agenda Daily/Weekly
  3833. (defvar org-agenda-start-day nil ; dynamically scoped parameter
  3834. "Start day for the agenda view.
  3835. Custom commands can set this variable in the options section.
  3836. This is usually a string like \"2007-11-01\", \"+2d\" or any other
  3837. input allowed when reading a date through the Org calendar.
  3838. See the docstring of `org-read-date' for details.")
  3839. (defvar org-starting-day nil) ; local variable in the agenda buffer
  3840. (defvar org-arg-loc nil) ; local variable
  3841. (defvar org-agenda-buffer-tmp-name nil)
  3842. ;;;###autoload
  3843. (defun org-agenda-list (&optional arg start-day span with-hour)
  3844. "Produce a daily/weekly view from all files in variable `org-agenda-files'.
  3845. The view will be for the current day or week, but from the overview buffer
  3846. you will be able to go to other days/weeks.
  3847. With a numeric prefix argument in an interactive call, the agenda will
  3848. span ARG days. Lisp programs should instead specify SPAN to change
  3849. the number of days. SPAN defaults to `org-agenda-span'.
  3850. START-DAY defaults to TODAY, or to the most recent match for the weekday
  3851. given in `org-agenda-start-on-weekday'.
  3852. When WITH-HOUR is non-nil, only include scheduled and deadline
  3853. items if they have an hour specification like [h]h:mm."
  3854. (interactive "P")
  3855. (when org-agenda-overriding-arguments
  3856. (setq arg (car org-agenda-overriding-arguments)
  3857. start-day (nth 1 org-agenda-overriding-arguments)
  3858. span (nth 2 org-agenda-overriding-arguments)))
  3859. (when (and (integerp arg) (> arg 0))
  3860. (setq span arg arg nil))
  3861. (when (numberp span)
  3862. (unless (< 0 span)
  3863. (user-error "Agenda creation impossible for this span(=%d days)." span)))
  3864. (catch 'exit
  3865. (setq org-agenda-buffer-name
  3866. (or org-agenda-buffer-tmp-name
  3867. (and org-agenda-doing-sticky-redo org-agenda-buffer-name)
  3868. (when org-agenda-sticky
  3869. (cond ((and org-keys (stringp org-match))
  3870. (format "*Org Agenda(%s:%s)*" org-keys org-match))
  3871. (org-keys
  3872. (format "*Org Agenda(%s)*" org-keys))
  3873. (t "*Org Agenda(a)*")))
  3874. "*Org Agenda*"))
  3875. (org-agenda-prepare "Day/Week")
  3876. (setq start-day (or start-day org-agenda-start-day))
  3877. (when (stringp start-day)
  3878. ;; Convert to an absolute day number
  3879. (setq start-day (time-to-days (org-read-date nil t start-day))))
  3880. (org-compile-prefix-format 'agenda)
  3881. (org-set-sorting-strategy 'agenda)
  3882. (let* ((span (org-agenda-ndays-to-span (or span org-agenda-span)))
  3883. (today (org-today))
  3884. (sd (or start-day today))
  3885. (ndays (org-agenda-span-to-ndays span sd))
  3886. (org-agenda-start-on-weekday
  3887. (and (or (eq ndays 7) (eq ndays 14))
  3888. org-agenda-start-on-weekday))
  3889. (thefiles (org-agenda-files nil 'ifmode))
  3890. (files thefiles)
  3891. (start (if (or (null org-agenda-start-on-weekday)
  3892. (< ndays 7))
  3893. sd
  3894. (let* ((nt (calendar-day-of-week
  3895. (calendar-gregorian-from-absolute sd)))
  3896. (n1 org-agenda-start-on-weekday)
  3897. (d (- nt n1)))
  3898. (- sd (+ (if (< d 0) 7 0) d)))))
  3899. (day-numbers (list start))
  3900. (day-cnt 0)
  3901. (inhibit-redisplay (not debug-on-error))
  3902. (org-agenda-show-log-scoped org-agenda-show-log)
  3903. s e rtn rtnall file date d start-pos end-pos todayp
  3904. clocktable-start clocktable-end filter)
  3905. (setq org-agenda-redo-command
  3906. (list 'org-agenda-list (list 'quote arg) start-day (list 'quote span) with-hour))
  3907. (dotimes (n (1- ndays))
  3908. (push (1+ (car day-numbers)) day-numbers))
  3909. (setq day-numbers (nreverse day-numbers))
  3910. (setq clocktable-start (car day-numbers)
  3911. clocktable-end (1+ (or (org-last day-numbers) 0)))
  3912. (setq-local org-starting-day (car day-numbers))
  3913. (setq-local org-arg-loc arg)
  3914. (setq-local org-agenda-current-span (org-agenda-ndays-to-span span))
  3915. (unless org-agenda-compact-blocks
  3916. (let* ((d1 (car day-numbers))
  3917. (d2 (org-last day-numbers))
  3918. (w1 (org-days-to-iso-week d1))
  3919. (w2 (org-days-to-iso-week d2)))
  3920. (setq s (point))
  3921. (org-agenda--insert-overriding-header
  3922. (concat (org-agenda-span-name span)
  3923. "-agenda"
  3924. (cond ((<= 350 (- d2 d1)) "")
  3925. ((= w1 w2) (format " (W%02d)" w1))
  3926. (t (format " (W%02d-W%02d)" w1 w2)))
  3927. ":\n")))
  3928. ;; Add properties if we actually inserted a header.
  3929. (when (> (point) s)
  3930. (add-text-properties s (1- (point))
  3931. (list 'face 'org-agenda-structure
  3932. 'org-date-line t))
  3933. (org-agenda-mark-header-line s)))
  3934. (while (setq d (pop day-numbers))
  3935. (setq date (calendar-gregorian-from-absolute d)
  3936. s (point))
  3937. (if (or (setq todayp (= d today))
  3938. (and (not start-pos) (= d sd)))
  3939. (setq start-pos (point))
  3940. (when (and start-pos (not end-pos))
  3941. (setq end-pos (point))))
  3942. (setq files thefiles
  3943. rtnall nil)
  3944. (while (setq file (pop files))
  3945. (catch 'nextfile
  3946. (org-check-agenda-file file)
  3947. (let ((org-agenda-entry-types org-agenda-entry-types))
  3948. ;; Starred types override non-starred equivalents
  3949. (when (member :deadline* org-agenda-entry-types)
  3950. (setq org-agenda-entry-types
  3951. (delq :deadline org-agenda-entry-types)))
  3952. (when (member :scheduled* org-agenda-entry-types)
  3953. (setq org-agenda-entry-types
  3954. (delq :scheduled org-agenda-entry-types)))
  3955. ;; Honor with-hour
  3956. (when with-hour
  3957. (when (member :deadline org-agenda-entry-types)
  3958. (setq org-agenda-entry-types
  3959. (delq :deadline org-agenda-entry-types))
  3960. (push :deadline* org-agenda-entry-types))
  3961. (when (member :scheduled org-agenda-entry-types)
  3962. (setq org-agenda-entry-types
  3963. (delq :scheduled org-agenda-entry-types))
  3964. (push :scheduled* org-agenda-entry-types)))
  3965. (unless org-agenda-include-deadlines
  3966. (setq org-agenda-entry-types
  3967. (delq :deadline* (delq :deadline org-agenda-entry-types))))
  3968. (cond
  3969. ((memq org-agenda-show-log-scoped '(only clockcheck))
  3970. (setq rtn (org-agenda-get-day-entries
  3971. file date :closed)))
  3972. (org-agenda-show-log-scoped
  3973. (setq rtn (apply 'org-agenda-get-day-entries
  3974. file date
  3975. (append '(:closed) org-agenda-entry-types))))
  3976. (t
  3977. (setq rtn (apply 'org-agenda-get-day-entries
  3978. file date
  3979. org-agenda-entry-types)))))
  3980. (setq rtnall (append rtnall rtn)))) ;; all entries
  3981. (when org-agenda-include-diary
  3982. (let ((org-agenda-search-headline-for-time t))
  3983. (require 'diary-lib)
  3984. (setq rtn (org-get-entries-from-diary date))
  3985. (setq rtnall (append rtnall rtn))))
  3986. (when (or rtnall org-agenda-show-all-dates)
  3987. (setq day-cnt (1+ day-cnt))
  3988. (insert
  3989. (if (stringp org-agenda-format-date)
  3990. (format-time-string org-agenda-format-date
  3991. (org-time-from-absolute date))
  3992. (funcall org-agenda-format-date date))
  3993. "\n")
  3994. (put-text-property s (1- (point)) 'face
  3995. (org-agenda-get-day-face date))
  3996. (put-text-property s (1- (point)) 'org-date-line t)
  3997. (put-text-property s (1- (point)) 'org-agenda-date-header t)
  3998. (put-text-property s (1- (point)) 'org-day-cnt day-cnt)
  3999. (when todayp
  4000. (put-text-property s (1- (point)) 'org-today t))
  4001. (setq rtnall
  4002. (org-agenda-add-time-grid-maybe rtnall ndays todayp))
  4003. (when rtnall (insert ;; all entries
  4004. (org-agenda-finalize-entries rtnall 'agenda)
  4005. "\n"))
  4006. (put-text-property s (1- (point)) 'day d)
  4007. (put-text-property s (1- (point)) 'org-day-cnt day-cnt)))
  4008. (when (and org-agenda-clockreport-mode clocktable-start)
  4009. (let ((org-agenda-files (org-agenda-files nil 'ifmode))
  4010. ;; the above line is to ensure the restricted range!
  4011. (p (copy-sequence org-agenda-clockreport-parameter-plist))
  4012. tbl)
  4013. (setq p (org-plist-delete p :block))
  4014. (setq p (plist-put p :tstart clocktable-start))
  4015. (setq p (plist-put p :tend clocktable-end))
  4016. (setq p (plist-put p :scope 'agenda))
  4017. (setq tbl (apply 'org-clock-get-clocktable p))
  4018. (insert tbl)))
  4019. (goto-char (point-min))
  4020. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4021. (unless (or (not (get-buffer-window org-agenda-buffer-name))
  4022. (and (pos-visible-in-window-p (point-min))
  4023. (pos-visible-in-window-p (point-max))))
  4024. (goto-char (1- (point-max)))
  4025. (recenter -1)
  4026. (when (not (pos-visible-in-window-p (or start-pos 1)))
  4027. (goto-char (or start-pos 1))
  4028. (recenter 1)))
  4029. (goto-char (or start-pos 1))
  4030. (add-text-properties (point-min) (point-max)
  4031. `(org-agenda-type agenda
  4032. org-last-args (,arg ,start-day ,span)
  4033. org-redo-cmd ,org-agenda-redo-command
  4034. org-series-cmd ,org-cmd))
  4035. (when (eq org-agenda-show-log-scoped 'clockcheck)
  4036. (org-agenda-show-clocking-issues))
  4037. (org-agenda-finalize)
  4038. (setq buffer-read-only t)
  4039. (message ""))))
  4040. (defun org-agenda-ndays-to-span (n)
  4041. "Return a span symbol for a span of N days, or N if none matches."
  4042. (cond ((symbolp n) n)
  4043. ((= n 1) 'day)
  4044. ((= n 7) 'week)
  4045. ((= n 14) 'fortnight)
  4046. (t n)))
  4047. (defun org-agenda-span-to-ndays (span &optional start-day)
  4048. "Return ndays from SPAN, possibly starting at START-DAY.
  4049. START-DAY is an absolute time value."
  4050. (cond ((numberp span) span)
  4051. ((eq span 'day) 1)
  4052. ((eq span 'week) 7)
  4053. ((eq span 'fortnight) 14)
  4054. ((eq span 'month)
  4055. (let ((date (calendar-gregorian-from-absolute start-day)))
  4056. (calendar-last-day-of-month (car date) (cl-caddr date))))
  4057. ((eq span 'year)
  4058. (let ((date (calendar-gregorian-from-absolute start-day)))
  4059. (if (calendar-leap-year-p (cl-caddr date)) 366 365)))))
  4060. (defun org-agenda-span-name (span)
  4061. "Return a SPAN name."
  4062. (if (null span)
  4063. ""
  4064. (if (symbolp span)
  4065. (capitalize (symbol-name span))
  4066. (format "%d days" span))))
  4067. ;;; Agenda word search
  4068. (defvar org-agenda-search-history nil)
  4069. (defvar org-search-syntax-table nil
  4070. "Special syntax table for Org search.
  4071. In this table, we have single quotes not as word constituents, to
  4072. that when \"+Ameli\" is searched as a work, it will also match \"Ameli's\"")
  4073. (defvar org-mode-syntax-table) ; From org.el
  4074. (defun org-search-syntax-table ()
  4075. (unless org-search-syntax-table
  4076. (setq org-search-syntax-table (copy-syntax-table org-mode-syntax-table))
  4077. (modify-syntax-entry ?' "." org-search-syntax-table)
  4078. (modify-syntax-entry ?` "." org-search-syntax-table))
  4079. org-search-syntax-table)
  4080. (defvar org-agenda-last-search-view-search-was-boolean nil)
  4081. ;;;###autoload
  4082. (defun org-search-view (&optional todo-only string edit-at)
  4083. "Show all entries that contain a phrase or words or regular expressions.
  4084. With optional prefix argument TODO-ONLY, only consider entries that are
  4085. TODO entries. The argument STRING can be used to pass a default search
  4086. string into this function. If EDIT-AT is non-nil, it means that the
  4087. user should get a chance to edit this string, with cursor at position
  4088. EDIT-AT.
  4089. The search string can be viewed either as a phrase that should be found as
  4090. is, or it can be broken into a number of snippets, each of which must match
  4091. in a Boolean way to select an entry. The default depends on the variable
  4092. `org-agenda-search-view-always-boolean'.
  4093. Even if this is turned off (the default) you can always switch to
  4094. Boolean search dynamically by preceding the first word with \"+\" or \"-\".
  4095. The default is a direct search of the whole phrase, where each space in
  4096. the search string can expand to an arbitrary amount of whitespace,
  4097. including newlines.
  4098. If using a Boolean search, the search string is split on whitespace and
  4099. each snippet is searched separately, with logical AND to select an entry.
  4100. Words prefixed with a minus must *not* occur in the entry. Words without
  4101. a prefix or prefixed with a plus must occur in the entry. Matching is
  4102. case-insensitive. Words are enclosed by word delimiters (i.e. they must
  4103. match whole words, not parts of a word) if
  4104. `org-agenda-search-view-force-full-words' is set (default is nil).
  4105. Boolean search snippets enclosed by curly braces are interpreted as
  4106. regular expressions that must or (when preceded with \"-\") must not
  4107. match in the entry. Snippets enclosed into double quotes will be taken
  4108. as a whole, to include whitespace.
  4109. - If the search string starts with an asterisk, search only in headlines.
  4110. - If (possibly after the leading star) the search string starts with an
  4111. exclamation mark, this also means to look at TODO entries only, an effect
  4112. that can also be achieved with a prefix argument.
  4113. - If (possibly after star and exclamation mark) the search string starts
  4114. with a colon, this will mean that the (non-regexp) snippets of the
  4115. Boolean search must match as full words.
  4116. This command searches the agenda files, and in addition the files
  4117. listed in `org-agenda-text-search-extra-files' unless a restriction lock
  4118. is active."
  4119. (interactive "P")
  4120. (when org-agenda-overriding-arguments
  4121. (setq todo-only (car org-agenda-overriding-arguments)
  4122. string (nth 1 org-agenda-overriding-arguments)
  4123. edit-at (nth 2 org-agenda-overriding-arguments)))
  4124. (let* ((props (list 'face nil
  4125. 'done-face 'org-agenda-done
  4126. 'org-not-done-regexp org-not-done-regexp
  4127. 'org-todo-regexp org-todo-regexp
  4128. 'org-complex-heading-regexp org-complex-heading-regexp
  4129. 'mouse-face 'highlight
  4130. 'help-echo (format "mouse-2 or RET jump to location")))
  4131. (full-words org-agenda-search-view-force-full-words)
  4132. (org-agenda-text-search-extra-files org-agenda-text-search-extra-files)
  4133. regexp rtn rtnall files file pos inherited-tags
  4134. marker category level tags c neg re boolean
  4135. ee txt beg end words regexps+ regexps- hdl-only buffer beg1 str)
  4136. (unless (and (not edit-at)
  4137. (stringp string)
  4138. (string-match "\\S-" string))
  4139. (setq string (read-string
  4140. (if org-agenda-search-view-always-boolean
  4141. "[+-]Word/{Regexp} ...: "
  4142. "Phrase or [+-]Word/{Regexp} ...: ")
  4143. (cond
  4144. ((integerp edit-at) (cons string edit-at))
  4145. (edit-at string))
  4146. 'org-agenda-search-history)))
  4147. (catch 'exit
  4148. (when org-agenda-sticky
  4149. (setq org-agenda-buffer-name
  4150. (if (stringp string)
  4151. (format "*Org Agenda(%s:%s)*"
  4152. (or org-keys (or (and todo-only "S") "s")) string)
  4153. (format "*Org Agenda(%s)*" (or (and todo-only "S") "s")))))
  4154. (org-agenda-prepare "SEARCH")
  4155. (org-compile-prefix-format 'search)
  4156. (org-set-sorting-strategy 'search)
  4157. (setq org-agenda-redo-command
  4158. (list 'org-search-view (if todo-only t nil)
  4159. (list 'if 'current-prefix-arg nil string)))
  4160. (setq org-agenda-query-string string)
  4161. (if (equal (string-to-char string) ?*)
  4162. (setq hdl-only t
  4163. words (substring string 1))
  4164. (setq words string))
  4165. (when (equal (string-to-char words) ?!)
  4166. (setq todo-only t
  4167. words (substring words 1)))
  4168. (when (equal (string-to-char words) ?:)
  4169. (setq full-words t
  4170. words (substring words 1)))
  4171. (when (or org-agenda-search-view-always-boolean
  4172. (member (string-to-char words) '(?- ?+ ?\{)))
  4173. (setq boolean t))
  4174. (setq words (split-string words))
  4175. (let (www w)
  4176. (while (setq w (pop words))
  4177. (while (and (string-match "\\\\\\'" w) words)
  4178. (setq w (concat (substring w 0 -1) " " (pop words))))
  4179. (push w www))
  4180. (setq words (nreverse www) www nil)
  4181. (while (setq w (pop words))
  4182. (when (and (string-match "\\`[-+]?{" w)
  4183. (not (string-match "}\\'" w)))
  4184. (while (and words (not (string-match "}\\'" (car words))))
  4185. (setq w (concat w " " (pop words))))
  4186. (setq w (concat w " " (pop words))))
  4187. (push w www))
  4188. (setq words (nreverse www)))
  4189. (setq org-agenda-last-search-view-search-was-boolean boolean)
  4190. (when boolean
  4191. (let (wds w)
  4192. (while (setq w (pop words))
  4193. (when (or (equal (substring w 0 1) "\"")
  4194. (and (> (length w) 1)
  4195. (member (substring w 0 1) '("+" "-"))
  4196. (equal (substring w 1 2) "\"")))
  4197. (while (and words (not (equal (substring w -1) "\"")))
  4198. (setq w (concat w " " (pop words)))))
  4199. (and (string-match "\\`\\([-+]?\\)\"" w)
  4200. (setq w (replace-match "\\1" nil nil w)))
  4201. (and (equal (substring w -1) "\"") (setq w (substring w 0 -1)))
  4202. (push w wds))
  4203. (setq words (nreverse wds))))
  4204. (if boolean
  4205. (mapc (lambda (w)
  4206. (setq c (string-to-char w))
  4207. (if (equal c ?-)
  4208. (setq neg t w (substring w 1))
  4209. (if (equal c ?+)
  4210. (setq neg nil w (substring w 1))
  4211. (setq neg nil)))
  4212. (if (string-match "\\`{.*}\\'" w)
  4213. (setq re (substring w 1 -1))
  4214. (if full-words
  4215. (setq re (concat "\\<" (regexp-quote (downcase w)) "\\>"))
  4216. (setq re (regexp-quote (downcase w)))))
  4217. (if neg (push re regexps-) (push re regexps+)))
  4218. words)
  4219. (push (mapconcat (lambda (w) (regexp-quote w)) words "\\s-+")
  4220. regexps+))
  4221. (setq regexps+ (sort regexps+ (lambda (a b) (> (length a) (length b)))))
  4222. (if (not regexps+)
  4223. (setq regexp org-outline-regexp-bol)
  4224. (setq regexp (pop regexps+))
  4225. (when hdl-only (setq regexp (concat org-outline-regexp-bol ".*?"
  4226. regexp))))
  4227. (setq files (org-agenda-files nil 'ifmode))
  4228. ;; Add `org-agenda-text-search-extra-files' unless there is some
  4229. ;; restriction.
  4230. (when (eq (car org-agenda-text-search-extra-files) 'agenda-archives)
  4231. (pop org-agenda-text-search-extra-files)
  4232. (unless (get 'org-agenda-files 'org-restrict)
  4233. (setq files (org-add-archive-files files))))
  4234. ;; Uniquify files. However, let `org-check-agenda-file' handle
  4235. ;; non-existent ones.
  4236. (setq files (cl-remove-duplicates
  4237. (append files org-agenda-text-search-extra-files)
  4238. :test (lambda (a b)
  4239. (and (file-exists-p a)
  4240. (file-exists-p b)
  4241. (file-equal-p a b))))
  4242. rtnall nil)
  4243. (while (setq file (pop files))
  4244. (setq ee nil)
  4245. (catch 'nextfile
  4246. (org-check-agenda-file file)
  4247. (setq buffer (if (file-exists-p file)
  4248. (org-get-agenda-file-buffer file)
  4249. (error "No such file %s" file)))
  4250. (unless buffer
  4251. ;; If file does not exist, make sure an error message is sent
  4252. (setq rtn (list (format "ORG-AGENDA-ERROR: No such org-file %s"
  4253. file))))
  4254. (with-current-buffer buffer
  4255. (with-syntax-table (org-search-syntax-table)
  4256. (unless (derived-mode-p 'org-mode)
  4257. (error "Agenda file %s is not in Org mode" file))
  4258. (let ((case-fold-search t))
  4259. (save-excursion
  4260. (save-restriction
  4261. (if (eq buffer org-agenda-restrict)
  4262. (narrow-to-region org-agenda-restrict-begin
  4263. org-agenda-restrict-end)
  4264. (widen))
  4265. (goto-char (point-min))
  4266. (unless (or (org-at-heading-p)
  4267. (outline-next-heading))
  4268. (throw 'nextfile t))
  4269. (goto-char (max (point-min) (1- (point))))
  4270. (while (re-search-forward regexp nil t)
  4271. (org-back-to-heading t)
  4272. (while (and (not (zerop org-agenda-search-view-max-outline-level))
  4273. (> (org-reduced-level (org-outline-level))
  4274. org-agenda-search-view-max-outline-level)
  4275. (forward-line -1)
  4276. (org-back-to-heading t)))
  4277. (skip-chars-forward "* ")
  4278. (setq beg (point-at-bol)
  4279. beg1 (point)
  4280. end (progn
  4281. (outline-next-heading)
  4282. (while (and (not (zerop org-agenda-search-view-max-outline-level))
  4283. (> (org-reduced-level (org-outline-level))
  4284. org-agenda-search-view-max-outline-level)
  4285. (forward-line 1)
  4286. (outline-next-heading)))
  4287. (point)))
  4288. (catch :skip
  4289. (goto-char beg)
  4290. (org-agenda-skip)
  4291. (setq str (buffer-substring-no-properties
  4292. (point-at-bol)
  4293. (if hdl-only (point-at-eol) end)))
  4294. (mapc (lambda (wr) (when (string-match wr str)
  4295. (goto-char (1- end))
  4296. (throw :skip t)))
  4297. regexps-)
  4298. (mapc (lambda (wr) (unless (string-match wr str)
  4299. (goto-char (1- end))
  4300. (throw :skip t)))
  4301. (if todo-only
  4302. (cons (concat "^\\*+[ \t]+"
  4303. org-not-done-regexp)
  4304. regexps+)
  4305. regexps+))
  4306. (goto-char beg)
  4307. (setq marker (org-agenda-new-marker (point))
  4308. category (org-get-category)
  4309. level (make-string (org-reduced-level (org-outline-level)) ? )
  4310. inherited-tags
  4311. (or (eq org-agenda-show-inherited-tags 'always)
  4312. (and (listp org-agenda-show-inherited-tags)
  4313. (memq 'todo org-agenda-show-inherited-tags))
  4314. (and (eq org-agenda-show-inherited-tags t)
  4315. (or (eq org-agenda-use-tag-inheritance t)
  4316. (memq 'todo org-agenda-use-tag-inheritance))))
  4317. tags (org-get-tags nil (not inherited-tags))
  4318. txt (org-agenda-format-item
  4319. ""
  4320. (buffer-substring-no-properties
  4321. beg1 (point-at-eol))
  4322. level category tags t))
  4323. (org-add-props txt props
  4324. 'org-marker marker 'org-hd-marker marker
  4325. 'org-todo-regexp org-todo-regexp
  4326. 'level level
  4327. 'org-complex-heading-regexp org-complex-heading-regexp
  4328. 'priority 1000
  4329. 'type "search")
  4330. (push txt ee)
  4331. (goto-char (1- end))))))))))
  4332. (setq rtn (nreverse ee))
  4333. (setq rtnall (append rtnall rtn)))
  4334. (org-agenda--insert-overriding-header
  4335. (with-temp-buffer
  4336. (insert "Search words: ")
  4337. (add-text-properties (point-min) (1- (point))
  4338. (list 'face 'org-agenda-structure))
  4339. (setq pos (point))
  4340. (insert string "\n")
  4341. (add-text-properties pos (1- (point)) (list 'face 'org-warning))
  4342. (setq pos (point))
  4343. (unless org-agenda-multi
  4344. (insert (substitute-command-keys "\\<org-agenda-mode-map>\
  4345. Press `\\[org-agenda-manipulate-query-add]', \
  4346. `\\[org-agenda-manipulate-query-subtract]' to add/sub word, \
  4347. `\\[org-agenda-manipulate-query-add-re]', \
  4348. `\\[org-agenda-manipulate-query-subtract-re]' to add/sub regexp, \
  4349. `\\[universal-argument] \\[org-agenda-redo]' for a fresh search\n"))
  4350. (add-text-properties pos (1- (point))
  4351. (list 'face 'org-agenda-structure)))
  4352. (buffer-string)))
  4353. (org-agenda-mark-header-line (point-min))
  4354. (when rtnall
  4355. (insert (org-agenda-finalize-entries rtnall 'search) "\n"))
  4356. (goto-char (point-min))
  4357. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4358. (add-text-properties (point-min) (point-max)
  4359. `(org-agenda-type search
  4360. org-last-args (,todo-only ,string ,edit-at)
  4361. org-redo-cmd ,org-agenda-redo-command
  4362. org-series-cmd ,org-cmd))
  4363. (org-agenda-finalize)
  4364. (setq buffer-read-only t))))
  4365. ;;; Agenda TODO list
  4366. (defun org-agenda-propertize-selected-todo-keywords (keywords)
  4367. "Use `org-todo-keyword-faces' for the selected todo KEYWORDS."
  4368. (concat
  4369. (if (or (equal keywords "ALL") (not keywords))
  4370. (propertize "ALL" 'face 'warning)
  4371. (mapconcat
  4372. (lambda (kw)
  4373. (propertize kw 'face (org-get-todo-face kw)))
  4374. (org-split-string keywords "|")
  4375. "|"))
  4376. "\n"))
  4377. (defvar org-select-this-todo-keyword nil)
  4378. (defvar org-last-arg nil)
  4379. ;;;###autoload
  4380. (defun org-todo-list (&optional arg)
  4381. "Show all (not done) TODO entries from all agenda file in a single list.
  4382. The prefix arg can be used to select a specific TODO keyword and limit
  4383. the list to these. When using `\\[universal-argument]', you will be prompted
  4384. for a keyword. A numeric prefix directly selects the Nth keyword in
  4385. `org-todo-keywords-1'."
  4386. (interactive "P")
  4387. (when org-agenda-overriding-arguments
  4388. (setq arg org-agenda-overriding-arguments))
  4389. (when (and (stringp arg) (not (string-match "\\S-" arg))) (setq arg nil))
  4390. (let* ((today (org-today))
  4391. (date (calendar-gregorian-from-absolute today))
  4392. (completion-ignore-case t)
  4393. kwds org-select-this-todo-keyword rtn rtnall files file pos)
  4394. (catch 'exit
  4395. (when org-agenda-sticky
  4396. (setq org-agenda-buffer-name
  4397. (if (stringp org-select-this-todo-keyword)
  4398. (format "*Org Agenda(%s:%s)*" (or org-keys "t")
  4399. org-select-this-todo-keyword)
  4400. (format "*Org Agenda(%s)*" (or org-keys "t")))))
  4401. (org-agenda-prepare "TODO")
  4402. (setq kwds org-todo-keywords-for-agenda
  4403. org-select-this-todo-keyword (if (stringp arg) arg
  4404. (and (integerp arg)
  4405. (> arg 0)
  4406. (nth (1- arg) kwds))))
  4407. (when (equal arg '(4))
  4408. (setq org-select-this-todo-keyword
  4409. (mapconcat #'identity
  4410. (let ((crm-separator "|"))
  4411. (completing-read-multiple
  4412. "Keyword (or KWD1|KWD2|...): "
  4413. (mapcar #'list kwds) nil nil))
  4414. "|")))
  4415. (and (equal 0 arg) (setq org-select-this-todo-keyword nil))
  4416. (org-compile-prefix-format 'todo)
  4417. (org-set-sorting-strategy 'todo)
  4418. (setq org-agenda-redo-command
  4419. `(org-todo-list (or (and (numberp current-prefix-arg)
  4420. current-prefix-arg)
  4421. ,org-select-this-todo-keyword
  4422. current-prefix-arg ,arg)))
  4423. (setq files (org-agenda-files nil 'ifmode)
  4424. rtnall nil)
  4425. (while (setq file (pop files))
  4426. (catch 'nextfile
  4427. (org-check-agenda-file file)
  4428. (setq rtn (org-agenda-get-day-entries file date :todo))
  4429. (setq rtnall (append rtnall rtn))))
  4430. (org-agenda--insert-overriding-header
  4431. (with-temp-buffer
  4432. (insert "Global list of TODO items of type: ")
  4433. (add-text-properties (point-min) (1- (point))
  4434. (list 'face 'org-agenda-structure
  4435. 'short-heading
  4436. (concat "ToDo: "
  4437. (or org-select-this-todo-keyword "ALL"))))
  4438. (org-agenda-mark-header-line (point-min))
  4439. (insert (org-agenda-propertize-selected-todo-keywords
  4440. org-select-this-todo-keyword))
  4441. (setq pos (point))
  4442. (unless org-agenda-multi
  4443. (insert (substitute-command-keys "Press \
  4444. \\<org-agenda-mode-map>`N \\[org-agenda-redo]' (e.g. `0 \\[org-agenda-redo]') \
  4445. to search again: (0)[ALL]"))
  4446. (let ((n 0))
  4447. (dolist (k kwds)
  4448. (let ((s (format "(%d)%s" (cl-incf n) k)))
  4449. (when (> (+ (current-column) (string-width s) 1) (window-width))
  4450. (insert "\n "))
  4451. (insert " " s))))
  4452. (insert "\n"))
  4453. (add-text-properties pos (1- (point)) (list 'face 'org-agenda-structure))
  4454. (buffer-string)))
  4455. (org-agenda-mark-header-line (point-min))
  4456. (when rtnall
  4457. (insert (org-agenda-finalize-entries rtnall 'todo) "\n"))
  4458. (goto-char (point-min))
  4459. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4460. (add-text-properties (point-min) (point-max)
  4461. `(org-agenda-type todo
  4462. org-last-args ,arg
  4463. org-redo-cmd ,org-agenda-redo-command
  4464. org-series-cmd ,org-cmd))
  4465. (org-agenda-finalize)
  4466. (setq buffer-read-only t))))
  4467. ;;; Agenda tags match
  4468. ;;;###autoload
  4469. (defun org-tags-view (&optional todo-only match)
  4470. "Show all headlines for all `org-agenda-files' matching a TAGS criterion.
  4471. The prefix arg TODO-ONLY limits the search to TODO entries."
  4472. (interactive "P")
  4473. (when org-agenda-overriding-arguments
  4474. (setq todo-only (car org-agenda-overriding-arguments)
  4475. match (nth 1 org-agenda-overriding-arguments)))
  4476. (let* ((org-tags-match-list-sublevels
  4477. org-tags-match-list-sublevels)
  4478. (completion-ignore-case t)
  4479. (org--matcher-tags-todo-only todo-only)
  4480. rtn rtnall files file pos matcher
  4481. buffer)
  4482. (when (and (stringp match) (not (string-match "\\S-" match)))
  4483. (setq match nil))
  4484. (catch 'exit
  4485. ;; TODO: this code is repeated a lot...
  4486. (when org-agenda-sticky
  4487. (setq org-agenda-buffer-name
  4488. (if (stringp match)
  4489. (format "*Org Agenda(%s:%s)*"
  4490. (or org-keys (or (and todo-only "M") "m")) match)
  4491. (format "*Org Agenda(%s)*" (or (and todo-only "M") "m")))))
  4492. (setq matcher (org-make-tags-matcher match))
  4493. ;; Prepare agendas (and `org-tag-alist-for-agenda') before
  4494. ;; expanding tags within `org-make-tags-matcher'
  4495. (org-agenda-prepare (concat "TAGS " match))
  4496. (setq match (car matcher)
  4497. matcher (cdr matcher))
  4498. (org-compile-prefix-format 'tags)
  4499. (org-set-sorting-strategy 'tags)
  4500. (setq org-agenda-query-string match)
  4501. (setq org-agenda-redo-command
  4502. (list 'org-tags-view
  4503. `(quote ,org--matcher-tags-todo-only)
  4504. `(if current-prefix-arg nil ,org-agenda-query-string)))
  4505. (setq files (org-agenda-files nil 'ifmode)
  4506. rtnall nil)
  4507. (while (setq file (pop files))
  4508. (catch 'nextfile
  4509. (org-check-agenda-file file)
  4510. (setq buffer (if (file-exists-p file)
  4511. (org-get-agenda-file-buffer file)
  4512. (error "No such file %s" file)))
  4513. (if (not buffer)
  4514. ;; If file does not exist, error message to agenda
  4515. (setq rtn (list
  4516. (format "ORG-AGENDA-ERROR: No such org-file %s" file))
  4517. rtnall (append rtnall rtn))
  4518. (with-current-buffer buffer
  4519. (unless (derived-mode-p 'org-mode)
  4520. (error "Agenda file %s is not in Org mode" file))
  4521. (save-excursion
  4522. (save-restriction
  4523. (if (eq buffer org-agenda-restrict)
  4524. (narrow-to-region org-agenda-restrict-begin
  4525. org-agenda-restrict-end)
  4526. (widen))
  4527. (setq rtn (org-scan-tags 'agenda
  4528. matcher
  4529. org--matcher-tags-todo-only))
  4530. (setq rtnall (append rtnall rtn))))))))
  4531. (org-agenda--insert-overriding-header
  4532. (with-temp-buffer
  4533. (insert "Headlines with TAGS match: ")
  4534. (add-text-properties (point-min) (1- (point))
  4535. (list 'face 'org-agenda-structure
  4536. 'short-heading
  4537. (concat "Match: " match)))
  4538. (setq pos (point))
  4539. (insert match "\n")
  4540. (add-text-properties pos (1- (point)) (list 'face 'org-warning))
  4541. (setq pos (point))
  4542. (unless org-agenda-multi
  4543. (insert (substitute-command-keys
  4544. "Press \
  4545. \\<org-agenda-mode-map>`\\[universal-argument] \\[org-agenda-redo]' \
  4546. to search again\n")))
  4547. (add-text-properties pos (1- (point))
  4548. (list 'face 'org-agenda-structure))
  4549. (buffer-string)))
  4550. (org-agenda-mark-header-line (point-min))
  4551. (when rtnall
  4552. (insert (org-agenda-finalize-entries rtnall 'tags) "\n"))
  4553. (goto-char (point-min))
  4554. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4555. (add-text-properties
  4556. (point-min) (point-max)
  4557. `(org-agenda-type tags
  4558. org-last-args (,org--matcher-tags-todo-only ,match)
  4559. org-redo-cmd ,org-agenda-redo-command
  4560. org-series-cmd ,org-cmd))
  4561. (org-agenda-finalize)
  4562. (setq buffer-read-only t))))
  4563. ;;; Agenda Finding stuck projects
  4564. (defvar org-agenda-skip-regexp nil
  4565. "Regular expression used in skipping subtrees for the agenda.
  4566. This is basically a temporary global variable that can be set and then
  4567. used by user-defined selections using `org-agenda-skip-function'.")
  4568. (defvar org-agenda-overriding-header nil
  4569. "When set during agenda, todo and tags searches it replaces the header.
  4570. If an empty string, no header will be inserted. If any other
  4571. string, it will be inserted as a header. If nil, a header will
  4572. be generated automatically according to the command. This
  4573. variable should not be set directly, but custom commands can bind
  4574. it in the options section.")
  4575. (defun org-agenda-skip-entry-if (&rest conditions)
  4576. "Skip entry if any of CONDITIONS is true.
  4577. See `org-agenda-skip-if' for details."
  4578. (org-agenda-skip-if nil conditions))
  4579. (defun org-agenda-skip-subtree-if (&rest conditions)
  4580. "Skip subtree if any of CONDITIONS is true.
  4581. See `org-agenda-skip-if' for details."
  4582. (org-agenda-skip-if t conditions))
  4583. (defun org-agenda-skip-if (subtree conditions)
  4584. "Checks current entity for CONDITIONS.
  4585. If SUBTREE is non-nil, the entire subtree is checked. Otherwise, only
  4586. the entry (i.e. the text before the next heading) is checked.
  4587. CONDITIONS is a list of symbols, boolean OR is used to combine the results
  4588. from different tests. Valid conditions are:
  4589. scheduled Check if there is a scheduled cookie
  4590. notscheduled Check if there is no scheduled cookie
  4591. deadline Check if there is a deadline
  4592. notdeadline Check if there is no deadline
  4593. timestamp Check if there is a timestamp (also deadline or scheduled)
  4594. nottimestamp Check if there is no timestamp (also deadline or scheduled)
  4595. regexp Check if regexp matches
  4596. notregexp Check if regexp does not match.
  4597. todo Check if TODO keyword matches
  4598. nottodo Check if TODO keyword does not match
  4599. The regexp is taken from the conditions list, it must come right after
  4600. the `regexp' or `notregexp' element.
  4601. `todo' and `nottodo' accept as an argument a list of todo
  4602. keywords, which may include \"*\" to match any todo keyword.
  4603. (org-agenda-skip-entry-if \\='todo \\='(\"TODO\" \"WAITING\"))
  4604. would skip all entries with \"TODO\" or \"WAITING\" keywords.
  4605. Instead of a list, a keyword class may be given. For example:
  4606. (org-agenda-skip-entry-if \\='nottodo \\='done)
  4607. would skip entries that haven't been marked with any of \"DONE\"
  4608. keywords. Possible classes are: `todo', `done', `any'.
  4609. If any of these conditions is met, this function returns the end point of
  4610. the entity, causing the search to continue from there. This is a function
  4611. that can be put into `org-agenda-skip-function' for the duration of a command."
  4612. (org-back-to-heading t)
  4613. (let* ((beg (point))
  4614. (end (if subtree (save-excursion (org-end-of-subtree t) (point))
  4615. (org-entry-end-position)))
  4616. (planning-end (if subtree end (line-end-position 2)))
  4617. m)
  4618. (and
  4619. (or (and (memq 'scheduled conditions)
  4620. (re-search-forward org-scheduled-time-regexp planning-end t))
  4621. (and (memq 'notscheduled conditions)
  4622. (not
  4623. (save-excursion
  4624. (re-search-forward org-scheduled-time-regexp planning-end t))))
  4625. (and (memq 'deadline conditions)
  4626. (re-search-forward org-deadline-time-regexp planning-end t))
  4627. (and (memq 'notdeadline conditions)
  4628. (not
  4629. (save-excursion
  4630. (re-search-forward org-deadline-time-regexp planning-end t))))
  4631. (and (memq 'timestamp conditions)
  4632. (re-search-forward org-ts-regexp end t))
  4633. (and (memq 'nottimestamp conditions)
  4634. (not (save-excursion (re-search-forward org-ts-regexp end t))))
  4635. (and (setq m (memq 'regexp conditions))
  4636. (stringp (nth 1 m))
  4637. (re-search-forward (nth 1 m) end t))
  4638. (and (setq m (memq 'notregexp conditions))
  4639. (stringp (nth 1 m))
  4640. (not (save-excursion (re-search-forward (nth 1 m) end t))))
  4641. (and (or
  4642. (setq m (memq 'nottodo conditions))
  4643. (setq m (memq 'todo-unblocked conditions))
  4644. (setq m (memq 'nottodo-unblocked conditions))
  4645. (setq m (memq 'todo conditions)))
  4646. (org-agenda-skip-if-todo m end)))
  4647. end)))
  4648. (defun org-agenda-skip-if-todo (args end)
  4649. "Helper function for `org-agenda-skip-if', do not use it directly.
  4650. ARGS is a list with first element either `todo', `nottodo',
  4651. `todo-unblocked' or `nottodo-unblocked'. The remainder is either
  4652. a list of TODO keywords, or a state symbol `todo' or `done' or
  4653. `any'."
  4654. (let ((todo-re
  4655. (concat "^\\*+[ \t]+"
  4656. (regexp-opt
  4657. (pcase args
  4658. (`(,_ todo)
  4659. (org-delete-all org-done-keywords
  4660. (copy-sequence org-todo-keywords-1)))
  4661. (`(,_ done) org-done-keywords)
  4662. (`(,_ any) org-todo-keywords-1)
  4663. (`(,_ ,(pred atom))
  4664. (error "Invalid TODO class or type: %S" args))
  4665. (`(,_ ,(pred (member "*"))) org-todo-keywords-1)
  4666. (`(,_ ,todo-list) todo-list))
  4667. 'words))))
  4668. (pcase args
  4669. (`(todo . ,_)
  4670. (let (case-fold-search) (re-search-forward todo-re end t)))
  4671. (`(nottodo . ,_)
  4672. (not (let (case-fold-search) (re-search-forward todo-re end t))))
  4673. (`(todo-unblocked . ,_)
  4674. (catch :unblocked
  4675. (while (let (case-fold-search) (re-search-forward todo-re end t))
  4676. (when (org-entry-blocked-p) (throw :unblocked t)))
  4677. nil))
  4678. (`(nottodo-unblocked . ,_)
  4679. (catch :unblocked
  4680. (while (let (case-fold-search) (re-search-forward todo-re end t))
  4681. (when (org-entry-blocked-p) (throw :unblocked nil)))
  4682. t))
  4683. (`(,type . ,_) (error "Unknown TODO skip type: %S" type)))))
  4684. ;;;###autoload
  4685. (defun org-agenda-list-stuck-projects (&rest ignore)
  4686. "Create agenda view for projects that are stuck.
  4687. Stuck projects are project that have no next actions. For the definitions
  4688. of what a project is and how to check if it stuck, customize the variable
  4689. `org-stuck-projects'."
  4690. (interactive)
  4691. (let* ((org-agenda-overriding-header
  4692. (or org-agenda-overriding-header "List of stuck projects: "))
  4693. (matcher (nth 0 org-stuck-projects))
  4694. (todo (nth 1 org-stuck-projects))
  4695. (tags (nth 2 org-stuck-projects))
  4696. (gen-re (org-string-nw-p (nth 3 org-stuck-projects)))
  4697. (todo-wds
  4698. (if (not (member "*" todo)) todo
  4699. (org-agenda-prepare-buffers (org-agenda-files nil 'ifmode))
  4700. (org-delete-all org-done-keywords-for-agenda
  4701. (copy-sequence org-todo-keywords-for-agenda))))
  4702. (todo-re (and todo
  4703. (format "^\\*+[ \t]+\\(%s\\)\\>"
  4704. (mapconcat #'identity todo-wds "\\|"))))
  4705. (tags-re (cond ((null tags) nil)
  4706. ((member "*" tags) org-tag-line-re)
  4707. (tags
  4708. (let ((other-tags (format "\\(?:%s:\\)*" org-tag-re)))
  4709. (concat org-outline-regexp-bol
  4710. ".*?[ \t]:"
  4711. other-tags
  4712. (regexp-opt tags t)
  4713. ":" other-tags "[ \t]*$")))
  4714. (t nil)))
  4715. (re-list (delq nil (list todo-re tags-re gen-re)))
  4716. (skip-re
  4717. (if (null re-list)
  4718. (error "Missing information to identify unstuck projects")
  4719. (mapconcat #'identity re-list "\\|")))
  4720. (org-agenda-skip-function
  4721. ;; Skip entry if `org-agenda-skip-regexp' matches anywhere
  4722. ;; in the subtree.
  4723. `(lambda ()
  4724. (and (save-excursion
  4725. (let ((case-fold-search nil))
  4726. (re-search-forward
  4727. ,skip-re (save-excursion (org-end-of-subtree t)) t)))
  4728. (progn (outline-next-heading) (point))))))
  4729. (org-tags-view nil matcher)
  4730. (setq org-agenda-buffer-name (buffer-name))
  4731. (with-current-buffer org-agenda-buffer-name
  4732. (setq org-agenda-redo-command
  4733. `(org-agenda-list-stuck-projects ,current-prefix-arg))
  4734. (let ((inhibit-read-only t))
  4735. (add-text-properties
  4736. (point-min) (point-max)
  4737. `(org-redo-cmd ,org-agenda-redo-command))))))
  4738. ;;; Diary integration
  4739. (defvar org-disable-agenda-to-diary nil) ;Dynamically-scoped param.
  4740. (defvar diary-list-entries-hook)
  4741. (defvar diary-time-regexp)
  4742. (defun org-get-entries-from-diary (date)
  4743. "Get the (Emacs Calendar) diary entries for DATE."
  4744. (require 'diary-lib)
  4745. (let* ((diary-fancy-buffer "*temporary-fancy-diary-buffer*")
  4746. (diary-display-function 'diary-fancy-display)
  4747. (pop-up-frames nil)
  4748. (diary-list-entries-hook
  4749. (cons 'org-diary-default-entry diary-list-entries-hook))
  4750. (diary-file-name-prefix nil) ; turn this feature off
  4751. (diary-modify-entry-list-string-function 'org-modify-diary-entry-string)
  4752. (diary-time-regexp (concat "^" diary-time-regexp))
  4753. entries
  4754. (org-disable-agenda-to-diary t))
  4755. (save-excursion
  4756. (save-window-excursion
  4757. (funcall (if (fboundp 'diary-list-entries)
  4758. 'diary-list-entries 'list-diary-entries)
  4759. date 1)))
  4760. (if (not (get-buffer diary-fancy-buffer))
  4761. (setq entries nil)
  4762. (with-current-buffer diary-fancy-buffer
  4763. (setq buffer-read-only nil)
  4764. (if (zerop (buffer-size))
  4765. ;; No entries
  4766. (setq entries nil)
  4767. ;; Omit the date and other unnecessary stuff
  4768. (org-agenda-cleanup-fancy-diary)
  4769. ;; Add prefix to each line and extend the text properties
  4770. (if (zerop (buffer-size))
  4771. (setq entries nil)
  4772. (setq entries (buffer-substring (point-min) (- (point-max) 1)))
  4773. (setq entries
  4774. (with-temp-buffer
  4775. (insert entries) (goto-char (point-min))
  4776. (while (re-search-forward "\n[ \t]+\\(.+\\)$" nil t)
  4777. (unless (save-match-data (string-match diary-time-regexp (match-string 1)))
  4778. (replace-match (concat "; " (match-string 1)))))
  4779. (buffer-string)))))
  4780. (set-buffer-modified-p nil)
  4781. (kill-buffer diary-fancy-buffer)))
  4782. (when entries
  4783. (setq entries (org-split-string entries "\n"))
  4784. (setq entries
  4785. (mapcar
  4786. (lambda (x)
  4787. (setq x (org-agenda-format-item "" x nil "Diary" nil 'time))
  4788. ;; Extend the text properties to the beginning of the line
  4789. (org-add-props x (text-properties-at (1- (length x)) x)
  4790. 'type "diary" 'date date 'face 'org-agenda-diary))
  4791. entries)))))
  4792. (defvar org-agenda-cleanup-fancy-diary-hook nil
  4793. "Hook run when the fancy diary buffer is cleaned up.")
  4794. (defun org-agenda-cleanup-fancy-diary ()
  4795. "Remove unwanted stuff in buffer created by `fancy-diary-display'.
  4796. This gets rid of the date, the underline under the date, and the
  4797. dummy entry installed by Org mode to ensure non-empty diary for
  4798. each date. It also removes lines that contain only whitespace."
  4799. (goto-char (point-min))
  4800. (if (looking-at ".*?:[ \t]*")
  4801. (progn
  4802. (replace-match "")
  4803. (re-search-forward "\n=+$" nil t)
  4804. (replace-match "")
  4805. (while (re-search-backward "^ +\n?" nil t) (replace-match "")))
  4806. (re-search-forward "\n=+$" nil t)
  4807. (delete-region (point-min) (min (point-max) (1+ (match-end 0)))))
  4808. (goto-char (point-min))
  4809. (while (re-search-forward "^ +\n" nil t)
  4810. (replace-match ""))
  4811. (goto-char (point-min))
  4812. (when (re-search-forward "^Org mode dummy\n?" nil t)
  4813. (replace-match ""))
  4814. (run-hooks 'org-agenda-cleanup-fancy-diary-hook))
  4815. (defun org-modify-diary-entry-string (string)
  4816. "Add text properties to string, allowing Org to act on it."
  4817. (org-add-props string nil
  4818. 'mouse-face 'highlight
  4819. 'help-echo (if buffer-file-name
  4820. (format "mouse-2 or RET jump to diary file %s"
  4821. (abbreviate-file-name buffer-file-name))
  4822. "")
  4823. 'org-agenda-diary-link t
  4824. 'org-marker (org-agenda-new-marker (point-at-bol))))
  4825. (defun org-diary-default-entry ()
  4826. "Add a dummy entry to the diary.
  4827. Needed to avoid empty dates which mess up holiday display."
  4828. ;; Catch the error if dealing with the new add-to-diary-alist
  4829. (when org-disable-agenda-to-diary
  4830. (condition-case nil
  4831. (org-add-to-diary-list original-date "Org mode dummy" "")
  4832. (error
  4833. (org-add-to-diary-list original-date "Org mode dummy" "" nil)))))
  4834. (defun org-add-to-diary-list (&rest args)
  4835. (if (fboundp 'diary-add-to-list)
  4836. (apply 'diary-add-to-list args)
  4837. (apply 'add-to-diary-list args)))
  4838. (defvar org-diary-last-run-time nil)
  4839. ;;;###autoload
  4840. (defun org-diary (&rest args)
  4841. "Return diary information from org files.
  4842. This function can be used in a \"sexp\" diary entry in the Emacs calendar.
  4843. It accesses org files and extracts information from those files to be
  4844. listed in the diary. The function accepts arguments specifying what
  4845. items should be listed. For a list of arguments allowed here, see the
  4846. variable `org-agenda-entry-types'.
  4847. The call in the diary file should look like this:
  4848. &%%(org-diary) ~/path/to/some/orgfile.org
  4849. Use a separate line for each org file to check. Or, if you omit the file name,
  4850. all files listed in `org-agenda-files' will be checked automatically:
  4851. &%%(org-diary)
  4852. If you don't give any arguments (as in the example above), the default value
  4853. of `org-agenda-entry-types' is used: (:deadline :scheduled :timestamp :sexp).
  4854. So the example above may also be written as
  4855. &%%(org-diary :deadline :timestamp :sexp :scheduled)
  4856. The function expects the lisp variables `entry' and `date' to be provided
  4857. by the caller, because this is how the calendar works. Don't use this
  4858. function from a program - use `org-agenda-get-day-entries' instead."
  4859. (when (> (- (float-time)
  4860. org-agenda-last-marker-time)
  4861. 5)
  4862. ;; I am not sure if this works with sticky agendas, because the marker
  4863. ;; list is then no longer a global variable.
  4864. (org-agenda-reset-markers))
  4865. (org-compile-prefix-format 'agenda)
  4866. (org-set-sorting-strategy 'agenda)
  4867. (setq args (or args org-agenda-entry-types))
  4868. (let* ((files (if (and entry (stringp entry) (string-match "\\S-" entry))
  4869. (list entry)
  4870. (org-agenda-files t)))
  4871. (time (float-time))
  4872. file rtn results)
  4873. (when (or (not org-diary-last-run-time)
  4874. (> (- time
  4875. org-diary-last-run-time)
  4876. 3))
  4877. (org-agenda-prepare-buffers files))
  4878. (setq org-diary-last-run-time time)
  4879. ;; If this is called during org-agenda, don't return any entries to
  4880. ;; the calendar. Org Agenda will list these entries itself.
  4881. (when org-disable-agenda-to-diary (setq files nil))
  4882. (while (setq file (pop files))
  4883. (setq rtn (apply 'org-agenda-get-day-entries file date args))
  4884. (setq results (append results rtn)))
  4885. (when results
  4886. (setq results
  4887. (mapcar (lambda (i) (replace-regexp-in-string
  4888. org-link-bracket-re "\\2" i))
  4889. results))
  4890. (concat (org-agenda-finalize-entries results) "\n"))))
  4891. ;;; Agenda entry finders
  4892. (defun org-agenda--timestamp-to-absolute (&rest args)
  4893. "Call `org-time-string-to-absolute' with ARGS.
  4894. However, throw `:skip' whenever an error is raised."
  4895. (condition-case e
  4896. (apply #'org-time-string-to-absolute args)
  4897. (org-diary-sexp-no-match (throw :skip nil))
  4898. (error
  4899. (message "%s; Skipping entry" (error-message-string e))
  4900. (throw :skip nil))))
  4901. (defun org-agenda-get-day-entries (file date &rest args)
  4902. "Does the work for `org-diary' and `org-agenda'.
  4903. FILE is the path to a file to be checked for entries. DATE is date like
  4904. the one returned by `calendar-current-date'. ARGS are symbols indicating
  4905. which kind of entries should be extracted. For details about these, see
  4906. the documentation of `org-diary'."
  4907. (let* ((org-startup-folded nil)
  4908. (org-startup-align-all-tables nil)
  4909. (buffer (if (file-exists-p file) (org-get-agenda-file-buffer file)
  4910. (error "No such file %s" file))))
  4911. (if (not buffer)
  4912. ;; If file does not exist, signal it in diary nonetheless.
  4913. (list (format "ORG-AGENDA-ERROR: No such org-file %s" file))
  4914. (with-current-buffer buffer
  4915. (unless (derived-mode-p 'org-mode)
  4916. (error "Agenda file %s is not in Org mode" file))
  4917. (setq org-agenda-buffer (or org-agenda-buffer buffer))
  4918. (setf org-agenda-current-date date)
  4919. (save-excursion
  4920. (save-restriction
  4921. (if (eq buffer org-agenda-restrict)
  4922. (narrow-to-region org-agenda-restrict-begin
  4923. org-agenda-restrict-end)
  4924. (widen))
  4925. ;; Rationalize ARGS. Also make sure `:deadline' comes
  4926. ;; first in order to populate DEADLINES before passing it.
  4927. ;;
  4928. ;; We use `delq' since `org-uniquify' duplicates ARGS,
  4929. ;; guarding us from modifying `org-agenda-entry-types'.
  4930. (setf args (org-uniquify (or args org-agenda-entry-types)))
  4931. (when (and (memq :scheduled args) (memq :scheduled* args))
  4932. (setf args (delq :scheduled* args)))
  4933. (cond
  4934. ((memq :deadline args)
  4935. (setf args (cons :deadline
  4936. (delq :deadline (delq :deadline* args)))))
  4937. ((memq :deadline* args)
  4938. (setf args (cons :deadline* (delq :deadline* args)))))
  4939. ;; Collect list of headlines. Return them flattened.
  4940. (let ((case-fold-search nil) results deadlines)
  4941. (dolist (arg args (apply #'nconc (nreverse results)))
  4942. (pcase arg
  4943. ((and :todo (guard (org-agenda-today-p date)))
  4944. (push (org-agenda-get-todos) results))
  4945. (:timestamp
  4946. (push (org-agenda-get-blocks) results)
  4947. (push (org-agenda-get-timestamps deadlines) results))
  4948. (:sexp
  4949. (push (org-agenda-get-sexps) results))
  4950. (:scheduled
  4951. (push (org-agenda-get-scheduled deadlines) results))
  4952. (:scheduled*
  4953. (push (org-agenda-get-scheduled deadlines t) results))
  4954. (:closed
  4955. (push (org-agenda-get-progress) results))
  4956. (:deadline
  4957. (setf deadlines (org-agenda-get-deadlines))
  4958. (push deadlines results))
  4959. (:deadline*
  4960. (setf deadlines (org-agenda-get-deadlines t))
  4961. (push deadlines results)))))))))))
  4962. (defsubst org-em (x y list)
  4963. "Is X or Y a member of LIST?"
  4964. (or (memq x list) (memq y list)))
  4965. (defvar org-heading-keyword-regexp-format) ; defined in org.el
  4966. (defvar org-agenda-sorting-strategy-selected nil)
  4967. (defun org-agenda-entry-get-agenda-timestamp (pom)
  4968. "Retrieve timestamp information for sorting agenda views.
  4969. Given a point or marker POM, returns a cons cell of the timestamp
  4970. and the timestamp type relevant for the sorting strategy in
  4971. `org-agenda-sorting-strategy-selected'."
  4972. (let (ts ts-date-type)
  4973. (save-match-data
  4974. (cond ((org-em 'scheduled-up 'scheduled-down
  4975. org-agenda-sorting-strategy-selected)
  4976. (setq ts (org-entry-get pom "SCHEDULED")
  4977. ts-date-type " scheduled"))
  4978. ((org-em 'deadline-up 'deadline-down
  4979. org-agenda-sorting-strategy-selected)
  4980. (setq ts (org-entry-get pom "DEADLINE")
  4981. ts-date-type " deadline"))
  4982. ((org-em 'ts-up 'ts-down
  4983. org-agenda-sorting-strategy-selected)
  4984. (setq ts (org-entry-get pom "TIMESTAMP")
  4985. ts-date-type " timestamp"))
  4986. ((org-em 'tsia-up 'tsia-down
  4987. org-agenda-sorting-strategy-selected)
  4988. (setq ts (org-entry-get pom "TIMESTAMP_IA")
  4989. ts-date-type " timestamp_ia"))
  4990. ((org-em 'timestamp-up 'timestamp-down
  4991. org-agenda-sorting-strategy-selected)
  4992. (setq ts (or (org-entry-get pom "SCHEDULED")
  4993. (org-entry-get pom "DEADLINE")
  4994. (org-entry-get pom "TIMESTAMP")
  4995. (org-entry-get pom "TIMESTAMP_IA"))
  4996. ts-date-type ""))
  4997. (t (setq ts-date-type "")))
  4998. (cons (when ts (ignore-errors (org-time-string-to-absolute ts)))
  4999. ts-date-type))))
  5000. (defun org-agenda-get-todos ()
  5001. "Return the TODO information for agenda display."
  5002. (let* ((props (list 'face nil
  5003. 'done-face 'org-agenda-done
  5004. 'org-not-done-regexp org-not-done-regexp
  5005. 'org-todo-regexp org-todo-regexp
  5006. 'org-complex-heading-regexp org-complex-heading-regexp
  5007. 'mouse-face 'highlight
  5008. 'help-echo
  5009. (format "mouse-2 or RET jump to org file %s"
  5010. (abbreviate-file-name buffer-file-name))))
  5011. (case-fold-search nil)
  5012. (regexp (format org-heading-keyword-regexp-format
  5013. (cond
  5014. ((and org-select-this-todo-keyword
  5015. (equal org-select-this-todo-keyword "*"))
  5016. org-todo-regexp)
  5017. (org-select-this-todo-keyword
  5018. (concat "\\("
  5019. (mapconcat 'identity
  5020. (org-split-string
  5021. org-select-this-todo-keyword
  5022. "|")
  5023. "\\|") "\\)"))
  5024. (t org-not-done-regexp))))
  5025. marker priority category level tags todo-state
  5026. ts-date ts-date-type ts-date-pair
  5027. ee txt beg end inherited-tags todo-state-end-pos)
  5028. (goto-char (point-min))
  5029. (while (re-search-forward regexp nil t)
  5030. (catch :skip
  5031. (save-match-data
  5032. (beginning-of-line)
  5033. (org-agenda-skip)
  5034. (setq beg (point) end (save-excursion (outline-next-heading) (point)))
  5035. (unless (and (setq todo-state (org-get-todo-state))
  5036. (setq todo-state-end-pos (match-end 2)))
  5037. (goto-char end)
  5038. (throw :skip nil))
  5039. (when (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item end)
  5040. (goto-char (1+ beg))
  5041. (or org-agenda-todo-list-sublevels (org-end-of-subtree 'invisible))
  5042. (throw :skip nil)))
  5043. (goto-char (match-beginning 2))
  5044. (setq marker (org-agenda-new-marker (match-beginning 0))
  5045. category (org-get-category)
  5046. ts-date-pair (org-agenda-entry-get-agenda-timestamp (point))
  5047. ts-date (car ts-date-pair)
  5048. ts-date-type (cdr ts-date-pair)
  5049. txt (org-trim (buffer-substring (match-beginning 2) (match-end 0)))
  5050. inherited-tags
  5051. (or (eq org-agenda-show-inherited-tags 'always)
  5052. (and (listp org-agenda-show-inherited-tags)
  5053. (memq 'todo org-agenda-show-inherited-tags))
  5054. (and (eq org-agenda-show-inherited-tags t)
  5055. (or (eq org-agenda-use-tag-inheritance t)
  5056. (memq 'todo org-agenda-use-tag-inheritance))))
  5057. tags (org-get-tags nil (not inherited-tags))
  5058. level (make-string (org-reduced-level (org-outline-level)) ? )
  5059. txt (org-agenda-format-item "" txt level category tags t)
  5060. priority (1+ (org-get-priority txt)))
  5061. (org-add-props txt props
  5062. 'org-marker marker 'org-hd-marker marker
  5063. 'priority priority
  5064. 'level level
  5065. 'ts-date ts-date
  5066. 'type (concat "todo" ts-date-type) 'todo-state todo-state)
  5067. (push txt ee)
  5068. (if org-agenda-todo-list-sublevels
  5069. (goto-char todo-state-end-pos)
  5070. (org-end-of-subtree 'invisible))))
  5071. (nreverse ee)))
  5072. (defun org-agenda-todo-custom-ignore-p (time n)
  5073. "Check whether timestamp is farther away than n number of days.
  5074. This function is invoked if `org-agenda-todo-ignore-deadlines',
  5075. `org-agenda-todo-ignore-scheduled' or
  5076. `org-agenda-todo-ignore-timestamp' is set to an integer."
  5077. (let ((days (org-time-stamp-to-now
  5078. time org-agenda-todo-ignore-time-comparison-use-seconds)))
  5079. (if (>= n 0)
  5080. (>= days n)
  5081. (<= days n))))
  5082. ;;;###autoload
  5083. (defun org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item
  5084. (&optional end)
  5085. "Do we have a reason to ignore this TODO entry because it has a time stamp?"
  5086. (when (or org-agenda-todo-ignore-with-date
  5087. org-agenda-todo-ignore-scheduled
  5088. org-agenda-todo-ignore-deadlines
  5089. org-agenda-todo-ignore-timestamp)
  5090. (setq end (or end (save-excursion (outline-next-heading) (point))))
  5091. (save-excursion
  5092. (or (and org-agenda-todo-ignore-with-date
  5093. (re-search-forward org-ts-regexp end t))
  5094. (and org-agenda-todo-ignore-scheduled
  5095. (re-search-forward org-scheduled-time-regexp end t)
  5096. (cond
  5097. ((eq org-agenda-todo-ignore-scheduled 'future)
  5098. (> (org-time-stamp-to-now
  5099. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds)
  5100. 0))
  5101. ((eq org-agenda-todo-ignore-scheduled 'past)
  5102. (<= (org-time-stamp-to-now
  5103. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds)
  5104. 0))
  5105. ((numberp org-agenda-todo-ignore-scheduled)
  5106. (org-agenda-todo-custom-ignore-p
  5107. (match-string 1) org-agenda-todo-ignore-scheduled))
  5108. (t)))
  5109. (and org-agenda-todo-ignore-deadlines
  5110. (re-search-forward org-deadline-time-regexp end t)
  5111. (cond
  5112. ((eq org-agenda-todo-ignore-deadlines 'all) t)
  5113. ((eq org-agenda-todo-ignore-deadlines 'far)
  5114. (not (org-deadline-close-p (match-string 1))))
  5115. ((eq org-agenda-todo-ignore-deadlines 'future)
  5116. (> (org-time-stamp-to-now
  5117. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds)
  5118. 0))
  5119. ((eq org-agenda-todo-ignore-deadlines 'past)
  5120. (<= (org-time-stamp-to-now
  5121. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds)
  5122. 0))
  5123. ((numberp org-agenda-todo-ignore-deadlines)
  5124. (org-agenda-todo-custom-ignore-p
  5125. (match-string 1) org-agenda-todo-ignore-deadlines))
  5126. (t (org-deadline-close-p (match-string 1)))))
  5127. (and org-agenda-todo-ignore-timestamp
  5128. (let ((buffer (current-buffer))
  5129. (regexp
  5130. (concat
  5131. org-scheduled-time-regexp "\\|" org-deadline-time-regexp))
  5132. (start (point)))
  5133. ;; Copy current buffer into a temporary one
  5134. (with-temp-buffer
  5135. (insert-buffer-substring buffer start end)
  5136. (goto-char (point-min))
  5137. ;; Delete SCHEDULED and DEADLINE items
  5138. (while (re-search-forward regexp end t)
  5139. (delete-region (match-beginning 0) (match-end 0)))
  5140. (goto-char (point-min))
  5141. ;; No search for timestamp left
  5142. (when (re-search-forward org-ts-regexp nil t)
  5143. (cond
  5144. ((eq org-agenda-todo-ignore-timestamp 'future)
  5145. (> (org-time-stamp-to-now
  5146. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds)
  5147. 0))
  5148. ((eq org-agenda-todo-ignore-timestamp 'past)
  5149. (<= (org-time-stamp-to-now
  5150. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds)
  5151. 0))
  5152. ((numberp org-agenda-todo-ignore-timestamp)
  5153. (org-agenda-todo-custom-ignore-p
  5154. (match-string 1) org-agenda-todo-ignore-timestamp))
  5155. (t))))))))))
  5156. (defun org-agenda-get-timestamps (&optional deadlines)
  5157. "Return the date stamp information for agenda display.
  5158. Optional argument DEADLINES is a list of deadline items to be
  5159. displayed in agenda view."
  5160. (let* ((props (list 'face 'org-agenda-calendar-event
  5161. 'org-not-done-regexp org-not-done-regexp
  5162. 'org-todo-regexp org-todo-regexp
  5163. 'org-complex-heading-regexp org-complex-heading-regexp
  5164. 'mouse-face 'highlight
  5165. 'help-echo
  5166. (format "mouse-2 or RET jump to Org file %s"
  5167. (abbreviate-file-name buffer-file-name))))
  5168. (current (calendar-absolute-from-gregorian date))
  5169. (today (org-today))
  5170. (deadline-position-alist
  5171. (mapcar (lambda (d)
  5172. (let ((m (get-text-property 0 'org-hd-marker d)))
  5173. (and m (marker-position m))))
  5174. deadlines))
  5175. ;; Match time-stamps set to current date, time-stamps with
  5176. ;; a repeater, and S-exp time-stamps.
  5177. (regexp
  5178. (concat
  5179. (if org-agenda-include-inactive-timestamps "[[<]" "<")
  5180. (regexp-quote
  5181. (substring
  5182. (format-time-string
  5183. (car org-time-stamp-formats)
  5184. (encode-time ; DATE bound by calendar
  5185. 0 0 0 (nth 1 date) (car date) (nth 2 date)))
  5186. 1 11))
  5187. "\\|\\(<[0-9]+-[0-9]+-[0-9]+[^>\n]+?\\+[0-9]+[hdwmy]>\\)"
  5188. "\\|\\(<%%\\(([^>\n]+)\\)>\\)"))
  5189. timestamp-items)
  5190. (goto-char (point-min))
  5191. (while (re-search-forward regexp nil t)
  5192. ;; Skip date ranges, scheduled and deadlines, which are handled
  5193. ;; specially. Also skip time-stamps before first headline as
  5194. ;; there would be no entry to add to the agenda. Eventually,
  5195. ;; ignore clock entries.
  5196. (catch :skip
  5197. (save-match-data
  5198. (when (or (org-at-date-range-p)
  5199. (org-at-planning-p)
  5200. (org-before-first-heading-p)
  5201. (and org-agenda-include-inactive-timestamps
  5202. (org-at-clock-log-p)))
  5203. (throw :skip nil))
  5204. (org-agenda-skip))
  5205. (let* ((pos (match-beginning 0))
  5206. (repeat (match-string 1))
  5207. (sexp-entry (match-string 3))
  5208. (time-stamp (if (or repeat sexp-entry) (match-string 0)
  5209. (save-excursion
  5210. (goto-char pos)
  5211. (looking-at org-ts-regexp-both)
  5212. (match-string 0))))
  5213. (todo-state (org-get-todo-state))
  5214. (warntime (get-text-property (point) 'org-appt-warntime))
  5215. (done? (member todo-state org-done-keywords)))
  5216. ;; Possibly skip done tasks.
  5217. (when (and done? org-agenda-skip-timestamp-if-done)
  5218. (throw :skip t))
  5219. ;; S-exp entry doesn't match current day: skip it.
  5220. (when (and sexp-entry (not (org-diary-sexp-entry sexp-entry "" date)))
  5221. (throw :skip nil))
  5222. (when repeat
  5223. (let* ((past
  5224. ;; A repeating time stamp is shown at its base
  5225. ;; date and every repeated date up to TODAY. If
  5226. ;; `org-agenda-prefer-last-repeat' is non-nil,
  5227. ;; however, only the last repeat before today
  5228. ;; (inclusive) is shown.
  5229. (org-agenda--timestamp-to-absolute
  5230. repeat
  5231. (if (or (> current today)
  5232. (eq org-agenda-prefer-last-repeat t)
  5233. (member todo-state org-agenda-prefer-last-repeat))
  5234. today
  5235. current)
  5236. 'past (current-buffer) pos))
  5237. (future
  5238. ;; Display every repeated date past TODAY
  5239. ;; (exclusive) unless
  5240. ;; `org-agenda-show-future-repeats' is nil. If
  5241. ;; this variable is set to `next', only display
  5242. ;; the first repeated date after TODAY
  5243. ;; (exclusive).
  5244. (cond
  5245. ((<= current today) past)
  5246. ((not org-agenda-show-future-repeats) past)
  5247. (t
  5248. (let ((base (if (eq org-agenda-show-future-repeats 'next)
  5249. (1+ today)
  5250. current)))
  5251. (org-agenda--timestamp-to-absolute
  5252. repeat base 'future (current-buffer) pos))))))
  5253. (when (and (/= current past) (/= current future))
  5254. (throw :skip nil))))
  5255. (save-excursion
  5256. (re-search-backward org-outline-regexp-bol nil t)
  5257. ;; Possibly skip time-stamp when a deadline is set.
  5258. (when (and org-agenda-skip-timestamp-if-deadline-is-shown
  5259. (assq (point) deadline-position-alist))
  5260. (throw :skip nil))
  5261. (let* ((category (org-get-category pos))
  5262. (inherited-tags
  5263. (or (eq org-agenda-show-inherited-tags 'always)
  5264. (and (consp org-agenda-show-inherited-tags)
  5265. (memq 'agenda org-agenda-show-inherited-tags))
  5266. (and (eq org-agenda-show-inherited-tags t)
  5267. (or (eq org-agenda-use-tag-inheritance t)
  5268. (memq 'agenda
  5269. org-agenda-use-tag-inheritance)))))
  5270. (tags (org-get-tags nil (not inherited-tags)))
  5271. (level (make-string (org-reduced-level (org-outline-level))
  5272. ?\s))
  5273. (head (and (looking-at "\\*+[ \t]+\\(.*\\)")
  5274. (match-string 1)))
  5275. (inactive? (= (char-after pos) ?\[))
  5276. (habit? (and (fboundp 'org-is-habit-p) (org-is-habit-p)))
  5277. (item
  5278. (org-agenda-format-item
  5279. (and inactive? org-agenda-inactive-leader)
  5280. head level category tags time-stamp org-ts-regexp habit?)))
  5281. (org-add-props item props
  5282. 'priority (if habit?
  5283. (org-habit-get-priority (org-habit-parse-todo))
  5284. (org-get-priority item))
  5285. 'org-marker (org-agenda-new-marker pos)
  5286. 'org-hd-marker (org-agenda-new-marker)
  5287. 'date date
  5288. 'level level
  5289. 'ts-date (if repeat (org-agenda--timestamp-to-absolute repeat)
  5290. current)
  5291. 'todo-state todo-state
  5292. 'warntime warntime
  5293. 'type "timestamp")
  5294. (push item timestamp-items))))
  5295. (when org-agenda-skip-additional-timestamps-same-entry
  5296. (outline-next-heading))))
  5297. (nreverse timestamp-items)))
  5298. (defun org-agenda-get-sexps ()
  5299. "Return the sexp information for agenda display."
  5300. (require 'diary-lib)
  5301. (let* ((props (list 'face 'org-agenda-calendar-sexp
  5302. 'mouse-face 'highlight
  5303. 'help-echo
  5304. (format "mouse-2 or RET jump to org file %s"
  5305. (abbreviate-file-name buffer-file-name))))
  5306. (regexp "^&?%%(")
  5307. marker category extra level ee txt tags entry
  5308. result beg b sexp sexp-entry todo-state warntime inherited-tags)
  5309. (goto-char (point-min))
  5310. (while (re-search-forward regexp nil t)
  5311. (catch :skip
  5312. (org-agenda-skip)
  5313. (setq beg (match-beginning 0))
  5314. (goto-char (1- (match-end 0)))
  5315. (setq b (point))
  5316. (forward-sexp 1)
  5317. (setq sexp (buffer-substring b (point)))
  5318. (setq sexp-entry (if (looking-at "[ \t]*\\(\\S-.*\\)")
  5319. (org-trim (match-string 1))
  5320. ""))
  5321. (setq result (org-diary-sexp-entry sexp sexp-entry date))
  5322. (when result
  5323. (setq marker (org-agenda-new-marker beg)
  5324. level (make-string (org-reduced-level (org-outline-level)) ? )
  5325. category (org-get-category beg)
  5326. inherited-tags
  5327. (or (eq org-agenda-show-inherited-tags 'always)
  5328. (and (listp org-agenda-show-inherited-tags)
  5329. (memq 'agenda org-agenda-show-inherited-tags))
  5330. (and (eq org-agenda-show-inherited-tags t)
  5331. (or (eq org-agenda-use-tag-inheritance t)
  5332. (memq 'agenda org-agenda-use-tag-inheritance))))
  5333. tags (org-get-tags nil (not inherited-tags))
  5334. todo-state (org-get-todo-state)
  5335. warntime (get-text-property (point) 'org-appt-warntime)
  5336. extra nil)
  5337. (dolist (r (if (stringp result)
  5338. (list result)
  5339. result)) ;; we expect a list here
  5340. (when (and org-agenda-diary-sexp-prefix
  5341. (string-match org-agenda-diary-sexp-prefix r))
  5342. (setq extra (match-string 0 r)
  5343. r (replace-match "" nil nil r)))
  5344. (if (string-match "\\S-" r)
  5345. (setq txt r)
  5346. (setq txt "SEXP entry returned empty string"))
  5347. (setq txt (org-agenda-format-item extra txt level category tags 'time))
  5348. (org-add-props txt props 'org-marker marker
  5349. 'date date 'todo-state todo-state
  5350. 'level level 'type "sexp" 'warntime warntime)
  5351. (push txt ee)))))
  5352. (nreverse ee)))
  5353. ;; Calendar sanity: define some functions that are independent of
  5354. ;; `calendar-date-style'.
  5355. (defun org-anniversary (year month day &optional mark)
  5356. "Like `diary-anniversary', but with fixed (ISO) order of arguments."
  5357. (with-no-warnings
  5358. (let ((calendar-date-style 'iso))
  5359. (diary-anniversary year month day mark))))
  5360. (defun org-cyclic (N year month day &optional mark)
  5361. "Like `diary-cyclic', but with fixed (ISO) order of arguments."
  5362. (with-no-warnings
  5363. (let ((calendar-date-style 'iso))
  5364. (diary-cyclic N year month day mark))))
  5365. (defun org-block (Y1 M1 D1 Y2 M2 D2 &optional mark)
  5366. "Like `diary-block', but with fixed (ISO) order of arguments."
  5367. (with-no-warnings
  5368. (let ((calendar-date-style 'iso))
  5369. (diary-block Y1 M1 D1 Y2 M2 D2 mark))))
  5370. (defun org-date (year month day &optional mark)
  5371. "Like `diary-date', but with fixed (ISO) order of arguments."
  5372. (with-no-warnings
  5373. (let ((calendar-date-style 'iso))
  5374. (diary-date year month day mark))))
  5375. ;; Define the `org-class' function
  5376. (defun org-class (y1 m1 d1 y2 m2 d2 dayname &rest skip-weeks)
  5377. "Entry applies if date is between dates on DAYNAME, but skips SKIP-WEEKS.
  5378. DAYNAME is a number between 0 (Sunday) and 6 (Saturday).
  5379. SKIP-WEEKS is any number of ISO weeks in the block period for which the
  5380. item should be skipped. If any of the SKIP-WEEKS arguments is the symbol
  5381. `holidays', then any date that is known by the Emacs calendar to be a
  5382. holiday will also be skipped. If SKIP-WEEKS arguments are holiday strings,
  5383. then those holidays will be skipped."
  5384. (let* ((date1 (calendar-absolute-from-gregorian (list m1 d1 y1)))
  5385. (date2 (calendar-absolute-from-gregorian (list m2 d2 y2)))
  5386. (d (calendar-absolute-from-gregorian date))
  5387. (h (when skip-weeks (calendar-check-holidays date))))
  5388. (and
  5389. (<= date1 d)
  5390. (<= d date2)
  5391. (= (calendar-day-of-week date) dayname)
  5392. (or (not skip-weeks)
  5393. (progn
  5394. (require 'cal-iso)
  5395. (not (member (car (calendar-iso-from-absolute d)) skip-weeks))))
  5396. (not (or (and h (memq 'holidays skip-weeks))
  5397. (delq nil (mapcar (lambda(g) (member g skip-weeks)) h))))
  5398. entry)))
  5399. (defalias 'org-get-closed 'org-agenda-get-progress)
  5400. (defun org-agenda-get-progress ()
  5401. "Return the logged TODO entries for agenda display."
  5402. (let* ((props (list 'mouse-face 'highlight
  5403. 'org-not-done-regexp org-not-done-regexp
  5404. 'org-todo-regexp org-todo-regexp
  5405. 'org-complex-heading-regexp org-complex-heading-regexp
  5406. 'help-echo
  5407. (format "mouse-2 or RET jump to org file %s"
  5408. (abbreviate-file-name buffer-file-name))))
  5409. (items (if (consp org-agenda-show-log-scoped)
  5410. org-agenda-show-log-scoped
  5411. (if (eq org-agenda-show-log-scoped 'clockcheck)
  5412. '(clock)
  5413. org-agenda-log-mode-items)))
  5414. (parts
  5415. (delq nil
  5416. (list
  5417. (when (memq 'closed items) (concat "\\<" org-closed-string))
  5418. (when (memq 'clock items) (concat "\\<" org-clock-string))
  5419. (when (memq 'state items)
  5420. (format "- +State \"%s\".*?" org-todo-regexp)))))
  5421. (parts-re (if parts (mapconcat 'identity parts "\\|")
  5422. (error "`org-agenda-log-mode-items' is empty")))
  5423. (regexp (concat
  5424. "\\(" parts-re "\\)"
  5425. " *\\["
  5426. (regexp-quote
  5427. (substring
  5428. (format-time-string
  5429. (car org-time-stamp-formats)
  5430. (encode-time ; DATE bound by calendar
  5431. 0 0 0 (nth 1 date) (car date) (nth 2 date)))
  5432. 1 11))))
  5433. (org-agenda-search-headline-for-time nil)
  5434. marker hdmarker priority category level tags closedp type
  5435. statep clockp state ee txt extra timestr rest clocked inherited-tags)
  5436. (goto-char (point-min))
  5437. (while (re-search-forward regexp nil t)
  5438. (catch :skip
  5439. (org-agenda-skip)
  5440. (setq marker (org-agenda-new-marker (match-beginning 0))
  5441. closedp (equal (match-string 1) org-closed-string)
  5442. statep (equal (string-to-char (match-string 1)) ?-)
  5443. clockp (not (or closedp statep))
  5444. state (and statep (match-string 2))
  5445. category (org-get-category (match-beginning 0))
  5446. timestr (buffer-substring (match-beginning 0) (point-at-eol)))
  5447. (when (string-match "\\]" timestr)
  5448. ;; substring should only run to end of time stamp
  5449. (setq rest (substring timestr (match-end 0))
  5450. timestr (substring timestr 0 (match-end 0)))
  5451. (if (and (not closedp) (not statep)
  5452. (string-match "\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)\\].*?\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)"
  5453. rest))
  5454. (progn (setq timestr (concat (substring timestr 0 -1)
  5455. "-" (match-string 1 rest) "]"))
  5456. (setq clocked (match-string 2 rest)))
  5457. (setq clocked "-")))
  5458. (save-excursion
  5459. (setq extra
  5460. (cond
  5461. ((not org-agenda-log-mode-add-notes) nil)
  5462. (statep
  5463. (and (looking-at ".*\\\\\n[ \t]*\\([^-\n \t].*?\\)[ \t]*$")
  5464. (match-string 1)))
  5465. (clockp
  5466. (and (looking-at ".*\n[ \t]*-[ \t]+\\([^-\n \t].*?\\)[ \t]*$")
  5467. (match-string 1)))))
  5468. (if (not (re-search-backward org-outline-regexp-bol nil t))
  5469. (throw :skip nil)
  5470. (goto-char (match-beginning 0))
  5471. (setq hdmarker (org-agenda-new-marker)
  5472. inherited-tags
  5473. (or (eq org-agenda-show-inherited-tags 'always)
  5474. (and (listp org-agenda-show-inherited-tags)
  5475. (memq 'todo org-agenda-show-inherited-tags))
  5476. (and (eq org-agenda-show-inherited-tags t)
  5477. (or (eq org-agenda-use-tag-inheritance t)
  5478. (memq 'todo org-agenda-use-tag-inheritance))))
  5479. tags (org-get-tags nil (not inherited-tags))
  5480. level (make-string (org-reduced-level (org-outline-level)) ? ))
  5481. (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
  5482. (setq txt (match-string 1))
  5483. (when extra
  5484. (if (string-match "\\([ \t]+\\)\\(:[^ \n\t]*?:\\)[ \t]*$" txt)
  5485. (setq txt (concat (substring txt 0 (match-beginning 1))
  5486. " - " extra " " (match-string 2 txt)))
  5487. (setq txt (concat txt " - " extra))))
  5488. (setq txt (org-agenda-format-item
  5489. (cond
  5490. (closedp "Closed: ")
  5491. (statep (concat "State: (" state ")"))
  5492. (t (concat "Clocked: (" clocked ")")))
  5493. txt level category tags timestr)))
  5494. (setq type (cond (closedp "closed")
  5495. (statep "state")
  5496. (t "clock")))
  5497. (setq priority 100000)
  5498. (org-add-props txt props
  5499. 'org-marker marker 'org-hd-marker hdmarker 'face 'org-agenda-done
  5500. 'priority priority 'level level
  5501. 'type type 'date date
  5502. 'undone-face 'org-warning 'done-face 'org-agenda-done)
  5503. (push txt ee))
  5504. (goto-char (point-at-eol))))
  5505. (nreverse ee)))
  5506. (defun org-agenda-show-clocking-issues ()
  5507. "Add overlays, showing issues with clocking.
  5508. See also the user option `org-agenda-clock-consistency-checks'."
  5509. (interactive)
  5510. (let* ((pl org-agenda-clock-consistency-checks)
  5511. (re (concat "^[ \t]*"
  5512. org-clock-string
  5513. "[ \t]+"
  5514. "\\(\\[.*?\\]\\)" ; group 1 is first stamp
  5515. "\\(-\\{1,3\\}\\(\\[.*?\\]\\)\\)?")) ; group 3 is second
  5516. (tlstart 0.)
  5517. (tlend 0.)
  5518. (maxtime (org-duration-to-minutes
  5519. (or (plist-get pl :max-duration) "24:00")))
  5520. (mintime (org-duration-to-minutes
  5521. (or (plist-get pl :min-duration) 0)))
  5522. (maxgap (org-duration-to-minutes
  5523. ;; default 30:00 means never complain
  5524. (or (plist-get pl :max-gap) "30:00")))
  5525. (gapok (mapcar #'org-duration-to-minutes
  5526. (plist-get pl :gap-ok-around)))
  5527. (def-face (or (plist-get pl :default-face)
  5528. '((:background "DarkRed") (:foreground "white"))))
  5529. issue face m te ts dt ov)
  5530. (goto-char (point-min))
  5531. (while (re-search-forward " Clocked: +(-\\|\\([0-9]+:[0-9]+\\))" nil t)
  5532. (setq issue nil face def-face)
  5533. (catch 'next
  5534. (setq m (org-get-at-bol 'org-marker)
  5535. te nil ts nil)
  5536. (unless (and m (markerp m))
  5537. (setq issue "No valid clock line") (throw 'next t))
  5538. (org-with-point-at m
  5539. (save-excursion
  5540. (goto-char (point-at-bol))
  5541. (unless (looking-at re)
  5542. (error "No valid Clock line")
  5543. (throw 'next t))
  5544. (unless (match-end 3)
  5545. (setq issue
  5546. (format
  5547. "No end time: (%s)"
  5548. (org-duration-from-minutes
  5549. (floor
  5550. (- (float-time (org-current-time))
  5551. (float-time (org-time-string-to-time (match-string 1))))
  5552. 60)))
  5553. face (or (plist-get pl :no-end-time-face) face))
  5554. (throw 'next t))
  5555. (setq ts (match-string 1)
  5556. te (match-string 3)
  5557. ts (float-time (org-time-string-to-time ts))
  5558. te (float-time (org-time-string-to-time te))
  5559. dt (- te ts))))
  5560. (cond
  5561. ((> dt (* 60 maxtime))
  5562. ;; a very long clocking chunk
  5563. (setq issue (format "Clocking interval is very long: %s"
  5564. (org-duration-from-minutes (floor dt 60)))
  5565. face (or (plist-get pl :long-face) face)))
  5566. ((< dt (* 60 mintime))
  5567. ;; a very short clocking chunk
  5568. (setq issue (format "Clocking interval is very short: %s"
  5569. (org-duration-from-minutes (floor dt 60)))
  5570. face (or (plist-get pl :short-face) face)))
  5571. ((and (> tlend 0) (< ts tlend))
  5572. ;; Two clock entries are overlapping
  5573. (setq issue (format "Clocking overlap: %d minutes"
  5574. (/ (- tlend ts) 60))
  5575. face (or (plist-get pl :overlap-face) face)))
  5576. ((and (> tlend 0) (> ts (+ tlend (* 60 maxgap))))
  5577. ;; There is a gap, lets see if we need to report it
  5578. (unless (org-agenda-check-clock-gap tlend ts gapok)
  5579. (setq issue (format "Clocking gap: %d minutes"
  5580. (/ (- ts tlend) 60))
  5581. face (or (plist-get pl :gap-face) face))))
  5582. (t nil)))
  5583. (setq tlend (or te tlend) tlstart (or ts tlstart))
  5584. (when issue
  5585. ;; OK, there was some issue, add an overlay to show the issue
  5586. (setq ov (make-overlay (point-at-bol) (point-at-eol)))
  5587. (overlay-put ov 'before-string
  5588. (concat
  5589. (org-add-props
  5590. (format "%-43s" (concat " " issue))
  5591. nil
  5592. 'face face)
  5593. "\n"))
  5594. (overlay-put ov 'evaporate t)))))
  5595. (defun org-agenda-check-clock-gap (t1 t2 ok-list)
  5596. "Check if gap T1 -> T2 contains one of the OK-LIST time-of-day values."
  5597. (catch 'exit
  5598. (unless ok-list
  5599. ;; there are no OK times for gaps...
  5600. (throw 'exit nil))
  5601. (when (> (- (/ t2 36000) (/ t1 36000)) 24)
  5602. ;; This is more than 24 hours, so it is OK.
  5603. ;; because we have at least one OK time, that must be in the
  5604. ;; 24 hour interval.
  5605. (throw 'exit t))
  5606. ;; We have a shorter gap.
  5607. ;; Now we have to get the minute of the day when these times are
  5608. (let* ((t1dec (org-decode-time t1))
  5609. (t2dec (org-decode-time t2))
  5610. ;; compute the minute on the day
  5611. (min1 (+ (nth 1 t1dec) (* 60 (nth 2 t1dec))))
  5612. (min2 (+ (nth 1 t2dec) (* 60 (nth 2 t2dec)))))
  5613. (when (< min2 min1)
  5614. ;; if min2 is smaller than min1, this means it is on the next day.
  5615. ;; Wrap it to after midnight.
  5616. (setq min2 (+ min2 1440)))
  5617. ;; Now check if any of the OK times is in the gap
  5618. (mapc (lambda (x)
  5619. ;; Wrap the time to after midnight if necessary
  5620. (when (< x min1) (setq x (+ x 1440)))
  5621. ;; Check if in interval
  5622. (and (<= min1 x) (>= min2 x) (throw 'exit t)))
  5623. ok-list)
  5624. ;; Nope, this gap is not OK
  5625. nil)))
  5626. (defun org-agenda-get-deadlines (&optional with-hour)
  5627. "Return the deadline information for agenda display.
  5628. When WITH-HOUR is non-nil, only return deadlines with an hour
  5629. specification like [h]h:mm."
  5630. (let* ((props (list 'mouse-face 'highlight
  5631. 'org-not-done-regexp org-not-done-regexp
  5632. 'org-todo-regexp org-todo-regexp
  5633. 'org-complex-heading-regexp org-complex-heading-regexp
  5634. 'help-echo
  5635. (format "mouse-2 or RET jump to org file %s"
  5636. (abbreviate-file-name buffer-file-name))))
  5637. (regexp (if with-hour
  5638. org-deadline-time-hour-regexp
  5639. org-deadline-time-regexp))
  5640. (today (org-today))
  5641. (today? (org-agenda-today-p date)) ; DATE bound by calendar.
  5642. (current (calendar-absolute-from-gregorian date))
  5643. deadline-items)
  5644. (goto-char (point-min))
  5645. (while (re-search-forward regexp nil t)
  5646. (catch :skip
  5647. (unless (save-match-data (org-at-planning-p)) (throw :skip nil))
  5648. (org-agenda-skip)
  5649. (let* ((s (match-string 1))
  5650. (pos (1- (match-beginning 1)))
  5651. (todo-state (save-match-data (org-get-todo-state)))
  5652. (done? (member todo-state org-done-keywords))
  5653. (sexp? (string-prefix-p "%%" s))
  5654. ;; DEADLINE is the deadline date for the entry. It is
  5655. ;; either the base date or the last repeat, according
  5656. ;; to `org-agenda-prefer-last-repeat'.
  5657. (deadline
  5658. (cond
  5659. (sexp? (org-agenda--timestamp-to-absolute s current))
  5660. ((or (eq org-agenda-prefer-last-repeat t)
  5661. (member todo-state org-agenda-prefer-last-repeat))
  5662. (org-agenda--timestamp-to-absolute
  5663. s today 'past (current-buffer) pos))
  5664. (t (org-agenda--timestamp-to-absolute s))))
  5665. ;; REPEAT is the future repeat closest from CURRENT,
  5666. ;; according to `org-agenda-show-future-repeats'. If
  5667. ;; the latter is nil, or if the time stamp has no
  5668. ;; repeat part, default to DEADLINE.
  5669. (repeat
  5670. (cond
  5671. (sexp? deadline)
  5672. ((<= current today) deadline)
  5673. ((not org-agenda-show-future-repeats) deadline)
  5674. (t
  5675. (let ((base (if (eq org-agenda-show-future-repeats 'next)
  5676. (1+ today)
  5677. current)))
  5678. (org-agenda--timestamp-to-absolute
  5679. s base 'future (current-buffer) pos)))))
  5680. (diff (- deadline current))
  5681. (suppress-prewarning
  5682. (let ((scheduled
  5683. (and org-agenda-skip-deadline-prewarning-if-scheduled
  5684. (org-entry-get nil "SCHEDULED"))))
  5685. (cond
  5686. ((not scheduled) nil)
  5687. ;; The current item has a scheduled date, so
  5688. ;; evaluate its prewarning lead time.
  5689. ((integerp org-agenda-skip-deadline-prewarning-if-scheduled)
  5690. ;; Use global prewarning-restart lead time.
  5691. org-agenda-skip-deadline-prewarning-if-scheduled)
  5692. ((eq org-agenda-skip-deadline-prewarning-if-scheduled
  5693. 'pre-scheduled)
  5694. ;; Set pre-warning to no earlier than SCHEDULED.
  5695. (min (- deadline
  5696. (org-agenda--timestamp-to-absolute scheduled))
  5697. org-deadline-warning-days))
  5698. ;; Set pre-warning to deadline.
  5699. (t 0))))
  5700. (wdays (or suppress-prewarning (org-get-wdays s))))
  5701. (cond
  5702. ;; Only display deadlines at their base date, at future
  5703. ;; repeat occurrences or in today agenda.
  5704. ((= current deadline) nil)
  5705. ((= current repeat) nil)
  5706. ((not today?) (throw :skip nil))
  5707. ;; Upcoming deadline: display within warning period WDAYS.
  5708. ((> deadline current) (when (> diff wdays) (throw :skip nil)))
  5709. ;; Overdue deadline: warn about it for
  5710. ;; `org-deadline-past-days' duration.
  5711. (t (when (< org-deadline-past-days (- diff)) (throw :skip nil))))
  5712. ;; Possibly skip done tasks.
  5713. (when (and done?
  5714. (or org-agenda-skip-deadline-if-done
  5715. (/= deadline current)))
  5716. (throw :skip nil))
  5717. (save-excursion
  5718. (re-search-backward "^\\*+[ \t]+" nil t)
  5719. (goto-char (match-end 0))
  5720. (let* ((category (org-get-category))
  5721. (level (make-string (org-reduced-level (org-outline-level))
  5722. ?\s))
  5723. (head (buffer-substring (point) (line-end-position)))
  5724. (inherited-tags
  5725. (or (eq org-agenda-show-inherited-tags 'always)
  5726. (and (listp org-agenda-show-inherited-tags)
  5727. (memq 'agenda org-agenda-show-inherited-tags))
  5728. (and (eq org-agenda-show-inherited-tags t)
  5729. (or (eq org-agenda-use-tag-inheritance t)
  5730. (memq 'agenda
  5731. org-agenda-use-tag-inheritance)))))
  5732. (tags (org-get-tags nil (not inherited-tags)))
  5733. (time
  5734. (cond
  5735. ;; No time of day designation if it is only
  5736. ;; a reminder.
  5737. ((and (/= current deadline) (/= current repeat)) nil)
  5738. ((string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
  5739. (concat (substring s (match-beginning 1)) " "))
  5740. (t 'time)))
  5741. (item
  5742. (org-agenda-format-item
  5743. ;; Insert appropriate suffixes before deadlines.
  5744. ;; Those only apply to today agenda.
  5745. (pcase-let ((`(,now ,future ,past)
  5746. org-agenda-deadline-leaders))
  5747. (cond
  5748. ((and today? (< deadline today)) (format past (- diff)))
  5749. ((and today? (> deadline today)) (format future diff))
  5750. (t now)))
  5751. head level category tags time))
  5752. (face (org-agenda-deadline-face
  5753. (- 1 (/ (float diff) (max wdays 1)))))
  5754. (upcoming? (and today? (> deadline today)))
  5755. (warntime (get-text-property (point) 'org-appt-warntime)))
  5756. (org-add-props item props
  5757. 'org-marker (org-agenda-new-marker pos)
  5758. 'org-hd-marker (org-agenda-new-marker (line-beginning-position))
  5759. 'warntime warntime
  5760. 'level level
  5761. 'ts-date deadline
  5762. 'priority
  5763. ;; Adjust priority to today reminders about deadlines.
  5764. ;; Overdue deadlines get the highest priority
  5765. ;; increase, then imminent deadlines and eventually
  5766. ;; more distant deadlines.
  5767. (let ((adjust (if today? (- diff) 0)))
  5768. (+ adjust (org-get-priority item)))
  5769. 'todo-state todo-state
  5770. 'type (if upcoming? "upcoming-deadline" "deadline")
  5771. 'date (if upcoming? date deadline)
  5772. 'face (if done? 'org-agenda-done face)
  5773. 'undone-face face
  5774. 'done-face 'org-agenda-done)
  5775. (push item deadline-items))))))
  5776. (nreverse deadline-items)))
  5777. (defun org-agenda-deadline-face (fraction)
  5778. "Return the face to displaying a deadline item.
  5779. FRACTION is what fraction of the head-warning time has passed."
  5780. (assoc-default fraction org-agenda-deadline-faces #'<=))
  5781. (defun org-agenda-get-scheduled (&optional deadlines with-hour)
  5782. "Return the scheduled information for agenda display.
  5783. Optional argument DEADLINES is a list of deadline items to be
  5784. displayed in agenda view. When WITH-HOUR is non-nil, only return
  5785. scheduled items with an hour specification like [h]h:mm."
  5786. (let* ((props (list 'org-not-done-regexp org-not-done-regexp
  5787. 'org-todo-regexp org-todo-regexp
  5788. 'org-complex-heading-regexp org-complex-heading-regexp
  5789. 'done-face 'org-agenda-done
  5790. 'mouse-face 'highlight
  5791. 'help-echo
  5792. (format "mouse-2 or RET jump to Org file %s"
  5793. (abbreviate-file-name buffer-file-name))))
  5794. (regexp (if with-hour
  5795. org-scheduled-time-hour-regexp
  5796. org-scheduled-time-regexp))
  5797. (today (org-today))
  5798. (todayp (org-agenda-today-p date)) ; DATE bound by calendar.
  5799. (current (calendar-absolute-from-gregorian date))
  5800. (deadline-pos
  5801. (mapcar (lambda (d)
  5802. (let ((m (get-text-property 0 'org-hd-marker d)))
  5803. (and m (marker-position m))))
  5804. deadlines))
  5805. scheduled-items)
  5806. (goto-char (point-min))
  5807. (while (re-search-forward regexp nil t)
  5808. (catch :skip
  5809. (unless (save-match-data (org-at-planning-p)) (throw :skip nil))
  5810. (org-agenda-skip)
  5811. (let* ((s (match-string 1))
  5812. (pos (1- (match-beginning 1)))
  5813. (todo-state (save-match-data (org-get-todo-state)))
  5814. (donep (member todo-state org-done-keywords))
  5815. (sexp? (string-prefix-p "%%" s))
  5816. ;; SCHEDULE is the scheduled date for the entry. It is
  5817. ;; either the bare date or the last repeat, according
  5818. ;; to `org-agenda-prefer-last-repeat'.
  5819. (schedule
  5820. (cond
  5821. (sexp? (org-agenda--timestamp-to-absolute s current))
  5822. ((or (eq org-agenda-prefer-last-repeat t)
  5823. (member todo-state org-agenda-prefer-last-repeat))
  5824. (org-agenda--timestamp-to-absolute
  5825. s today 'past (current-buffer) pos))
  5826. (t (org-agenda--timestamp-to-absolute s))))
  5827. ;; REPEAT is the future repeat closest from CURRENT,
  5828. ;; according to `org-agenda-show-future-repeats'. If
  5829. ;; the latter is nil, or if the time stamp has no
  5830. ;; repeat part, default to SCHEDULE.
  5831. (repeat
  5832. (cond
  5833. (sexp? schedule)
  5834. ((<= current today) schedule)
  5835. ((not org-agenda-show-future-repeats) schedule)
  5836. (t
  5837. (let ((base (if (eq org-agenda-show-future-repeats 'next)
  5838. (1+ today)
  5839. current)))
  5840. (org-agenda--timestamp-to-absolute
  5841. s base 'future (current-buffer) pos)))))
  5842. (diff (- current schedule))
  5843. (warntime (get-text-property (point) 'org-appt-warntime))
  5844. (pastschedp (< schedule today))
  5845. (futureschedp (> schedule today))
  5846. (habitp (and (fboundp 'org-is-habit-p) (org-is-habit-p)))
  5847. (suppress-delay
  5848. (let ((deadline (and org-agenda-skip-scheduled-delay-if-deadline
  5849. (org-entry-get nil "DEADLINE"))))
  5850. (cond
  5851. ((not deadline) nil)
  5852. ;; The current item has a deadline date, so
  5853. ;; evaluate its delay time.
  5854. ((integerp org-agenda-skip-scheduled-delay-if-deadline)
  5855. ;; Use global delay time.
  5856. (- org-agenda-skip-scheduled-delay-if-deadline))
  5857. ((eq org-agenda-skip-scheduled-delay-if-deadline
  5858. 'post-deadline)
  5859. ;; Set delay to no later than DEADLINE.
  5860. (min (- schedule
  5861. (org-agenda--timestamp-to-absolute deadline))
  5862. org-scheduled-delay-days))
  5863. (t 0))))
  5864. (ddays
  5865. (cond
  5866. ;; Nullify delay when a repeater triggered already
  5867. ;; and the delay is of the form --Xd.
  5868. ((and (string-match-p "--[0-9]+[hdwmy]" s)
  5869. (> schedule (org-agenda--timestamp-to-absolute s)))
  5870. 0)
  5871. (suppress-delay
  5872. (let ((org-scheduled-delay-days suppress-delay))
  5873. (org-get-wdays s t t)))
  5874. (t (org-get-wdays s t)))))
  5875. ;; Display scheduled items at base date (SCHEDULE), today if
  5876. ;; scheduled before the current date, and at any repeat past
  5877. ;; today. However, skip delayed items and items that have
  5878. ;; been displayed for more than `org-scheduled-past-days'.
  5879. (unless (and todayp
  5880. habitp
  5881. (bound-and-true-p org-habit-show-all-today))
  5882. (when (or (and (> ddays 0) (< diff ddays))
  5883. (> diff (or (and habitp org-habit-scheduled-past-days)
  5884. org-scheduled-past-days))
  5885. (> schedule current)
  5886. (and (/= current schedule)
  5887. (/= current today)
  5888. (/= current repeat)))
  5889. (throw :skip nil)))
  5890. ;; Possibly skip done tasks.
  5891. (when (and donep
  5892. (or org-agenda-skip-scheduled-if-done
  5893. (/= schedule current)))
  5894. (throw :skip nil))
  5895. ;; Skip entry if it already appears as a deadline, per
  5896. ;; `org-agenda-skip-scheduled-if-deadline-is-shown'. This
  5897. ;; doesn't apply to habits.
  5898. (when (pcase org-agenda-skip-scheduled-if-deadline-is-shown
  5899. ((guard
  5900. (or (not (memq (line-beginning-position 0) deadline-pos))
  5901. habitp))
  5902. nil)
  5903. (`repeated-after-deadline
  5904. (let ((deadline (time-to-days
  5905. (org-get-deadline-time (point)))))
  5906. (and (<= schedule deadline) (> current deadline))))
  5907. (`not-today pastschedp)
  5908. (`t t)
  5909. (_ nil))
  5910. (throw :skip nil))
  5911. ;; Skip habits if `org-habit-show-habits' is nil, or if we
  5912. ;; only show them for today. Also skip done habits.
  5913. (when (and habitp
  5914. (or donep
  5915. (not (bound-and-true-p org-habit-show-habits))
  5916. (and (not todayp)
  5917. (bound-and-true-p
  5918. org-habit-show-habits-only-for-today))))
  5919. (throw :skip nil))
  5920. (save-excursion
  5921. (re-search-backward "^\\*+[ \t]+" nil t)
  5922. (goto-char (match-end 0))
  5923. (let* ((category (org-get-category))
  5924. (inherited-tags
  5925. (or (eq org-agenda-show-inherited-tags 'always)
  5926. (and (listp org-agenda-show-inherited-tags)
  5927. (memq 'agenda org-agenda-show-inherited-tags))
  5928. (and (eq org-agenda-show-inherited-tags t)
  5929. (or (eq org-agenda-use-tag-inheritance t)
  5930. (memq 'agenda
  5931. org-agenda-use-tag-inheritance)))))
  5932. (tags (org-get-tags nil (not inherited-tags)))
  5933. (level (make-string (org-reduced-level (org-outline-level))
  5934. ?\s))
  5935. (head (buffer-substring (point) (line-end-position)))
  5936. (time
  5937. (cond
  5938. ;; No time of day designation if it is only a
  5939. ;; reminder, except for habits, which always show
  5940. ;; the time of day. Habits are an exception
  5941. ;; because if there is a time of day, that is
  5942. ;; interpreted to mean they should usually happen
  5943. ;; then, even if doing the habit was missed.
  5944. ((and
  5945. (not habitp)
  5946. (/= current schedule)
  5947. (/= current repeat))
  5948. nil)
  5949. ((string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
  5950. (concat (substring s (match-beginning 1)) " "))
  5951. (t 'time)))
  5952. (item
  5953. (org-agenda-format-item
  5954. (pcase-let ((`(,first ,past) org-agenda-scheduled-leaders))
  5955. ;; Show a reminder of a past scheduled today.
  5956. (if (and todayp pastschedp)
  5957. (format past diff)
  5958. first))
  5959. head level category tags time nil habitp))
  5960. (face (cond ((and (not habitp) pastschedp)
  5961. 'org-scheduled-previously)
  5962. ((and habitp futureschedp)
  5963. 'org-agenda-done)
  5964. (todayp 'org-scheduled-today)
  5965. (t 'org-scheduled)))
  5966. (habitp (and habitp (org-habit-parse-todo))))
  5967. (org-add-props item props
  5968. 'undone-face face
  5969. 'face (if donep 'org-agenda-done face)
  5970. 'org-marker (org-agenda-new-marker pos)
  5971. 'org-hd-marker (org-agenda-new-marker (line-beginning-position))
  5972. 'type (if pastschedp "past-scheduled" "scheduled")
  5973. 'date (if pastschedp schedule date)
  5974. 'ts-date schedule
  5975. 'warntime warntime
  5976. 'level level
  5977. 'priority (if habitp (org-habit-get-priority habitp)
  5978. (+ 99 diff (org-get-priority item)))
  5979. 'org-habit-p habitp
  5980. 'todo-state todo-state)
  5981. (push item scheduled-items))))))
  5982. (nreverse scheduled-items)))
  5983. (defun org-agenda-get-blocks ()
  5984. "Return the date-range information for agenda display."
  5985. (let* ((props (list 'face nil
  5986. 'org-not-done-regexp org-not-done-regexp
  5987. 'org-todo-regexp org-todo-regexp
  5988. 'org-complex-heading-regexp org-complex-heading-regexp
  5989. 'mouse-face 'highlight
  5990. 'help-echo
  5991. (format "mouse-2 or RET jump to org file %s"
  5992. (abbreviate-file-name buffer-file-name))))
  5993. (regexp org-tr-regexp)
  5994. (d0 (calendar-absolute-from-gregorian date))
  5995. marker hdmarker ee txt d1 d2 s1 s2 category
  5996. level todo-state tags pos head donep inherited-tags)
  5997. (goto-char (point-min))
  5998. (while (re-search-forward regexp nil t)
  5999. (catch :skip
  6000. (org-agenda-skip)
  6001. (setq pos (point))
  6002. (let ((start-time (match-string 1))
  6003. (end-time (match-string 2)))
  6004. (setq s1 (match-string 1)
  6005. s2 (match-string 2)
  6006. d1 (time-to-days
  6007. (condition-case err
  6008. (org-time-string-to-time s1)
  6009. (error
  6010. (error
  6011. "Bad timestamp %S at %d in buffer %S\nError was: %s"
  6012. s1
  6013. pos
  6014. (current-buffer)
  6015. (error-message-string err)))))
  6016. d2 (time-to-days
  6017. (condition-case err
  6018. (org-time-string-to-time s2)
  6019. (error
  6020. (error
  6021. "Bad timestamp %S at %d in buffer %S\nError was: %s"
  6022. s2
  6023. pos
  6024. (current-buffer)
  6025. (error-message-string err))))))
  6026. (when (and (> (- d0 d1) -1) (> (- d2 d0) -1))
  6027. ;; Only allow days between the limits, because the normal
  6028. ;; date stamps will catch the limits.
  6029. (save-excursion
  6030. (setq todo-state (org-get-todo-state))
  6031. (setq donep (member todo-state org-done-keywords))
  6032. (when (and donep org-agenda-skip-timestamp-if-done)
  6033. (throw :skip t))
  6034. (setq marker (org-agenda-new-marker (point))
  6035. category (org-get-category))
  6036. (if (not (re-search-backward org-outline-regexp-bol nil t))
  6037. (throw :skip nil)
  6038. (goto-char (match-beginning 0))
  6039. (setq hdmarker (org-agenda-new-marker (point))
  6040. inherited-tags
  6041. (or (eq org-agenda-show-inherited-tags 'always)
  6042. (and (listp org-agenda-show-inherited-tags)
  6043. (memq 'agenda org-agenda-show-inherited-tags))
  6044. (and (eq org-agenda-show-inherited-tags t)
  6045. (or (eq org-agenda-use-tag-inheritance t)
  6046. (memq 'agenda org-agenda-use-tag-inheritance))))
  6047. tags (org-get-tags nil (not inherited-tags)))
  6048. (setq level (make-string (org-reduced-level (org-outline-level)) ? ))
  6049. (looking-at "\\*+[ \t]+\\(.*\\)")
  6050. (setq head (match-string 1))
  6051. (let ((remove-re
  6052. (if org-agenda-remove-timeranges-from-blocks
  6053. (concat
  6054. "<" (regexp-quote s1) ".*?>"
  6055. "--"
  6056. "<" (regexp-quote s2) ".*?>")
  6057. nil)))
  6058. (setq txt (org-agenda-format-item
  6059. (format
  6060. (nth (if (= d1 d2) 0 1)
  6061. org-agenda-timerange-leaders)
  6062. (1+ (- d0 d1)) (1+ (- d2 d1)))
  6063. head level category tags
  6064. (save-match-data
  6065. (let ((hhmm1 (and (string-match org-ts-regexp1 s1)
  6066. (match-string 6 s1)))
  6067. (hhmm2 (and (string-match org-ts-regexp1 s2)
  6068. (match-string 6 s2))))
  6069. (cond ((string= hhmm1 hhmm2)
  6070. (concat "<" start-time ">--<" end-time ">"))
  6071. ((and (= d1 d0) (= d2 d0))
  6072. (concat "<" start-time ">--<" end-time ">"))
  6073. ((= d1 d0)
  6074. (concat "<" start-time ">"))
  6075. ((= d2 d0)
  6076. (concat "<" end-time ">")))))
  6077. remove-re))))
  6078. (org-add-props txt props
  6079. 'org-marker marker 'org-hd-marker hdmarker
  6080. 'type "block" 'date date
  6081. 'level level
  6082. 'todo-state todo-state
  6083. 'priority (org-get-priority txt))
  6084. (push txt ee))))
  6085. (goto-char pos)))
  6086. ;; Sort the entries by expiration date.
  6087. (nreverse ee)))
  6088. ;;; Agenda presentation and sorting
  6089. (defvar org-prefix-has-time nil
  6090. "A flag, set by `org-compile-prefix-format'.
  6091. The flag is set if the currently compiled format contains a `%t'.")
  6092. (defvar org-prefix-has-tag nil
  6093. "A flag, set by `org-compile-prefix-format'.
  6094. The flag is set if the currently compiled format contains a `%T'.")
  6095. (defvar org-prefix-has-effort nil
  6096. "A flag, set by `org-compile-prefix-format'.
  6097. The flag is set if the currently compiled format contains a `%e'.")
  6098. (defvar org-prefix-has-breadcrumbs nil
  6099. "A flag, set by `org-compile-prefix-format'.
  6100. The flag is set if the currently compiled format contains a `%b'.")
  6101. (defvar org-prefix-category-length nil
  6102. "Used by `org-compile-prefix-format' to remember the category field width.")
  6103. (defvar org-prefix-category-max-length nil
  6104. "Used by `org-compile-prefix-format' to remember the category field width.")
  6105. (defun org-agenda-get-category-icon (category)
  6106. "Return an image for CATEGORY according to `org-agenda-category-icon-alist'."
  6107. (cl-dolist (entry org-agenda-category-icon-alist)
  6108. (when (string-match-p (car entry) category)
  6109. (if (listp (cadr entry))
  6110. (cl-return (cadr entry))
  6111. (cl-return (apply #'create-image (cdr entry)))))))
  6112. (defun org-agenda-format-item (extra txt &optional level category tags dotime
  6113. remove-re habitp)
  6114. "Format TXT to be inserted into the agenda buffer.
  6115. In particular, add the prefix and corresponding text properties.
  6116. EXTRA must be a string to replace the `%s' specifier in the prefix format.
  6117. LEVEL may be a string to replace the `%l' specifier.
  6118. CATEGORY (a string, a symbol or nil) may be used to overrule the default
  6119. category taken from local variable or file name. It will replace the `%c'
  6120. specifier in the format.
  6121. DOTIME, when non-nil, indicates that a time-of-day should be extracted from
  6122. TXT for sorting of this entry, and for the `%t' specifier in the format.
  6123. When DOTIME is a string, this string is searched for a time before TXT is.
  6124. TAGS can be the tags of the headline.
  6125. Any match of REMOVE-RE will be removed from TXT."
  6126. ;; We keep the org-prefix-* variable values along with a compiled
  6127. ;; formatter, so that multiple agendas existing at the same time do
  6128. ;; not step on each other toes.
  6129. ;;
  6130. ;; It was inconvenient to make these variables buffer local in
  6131. ;; Agenda buffers, because this function expects to be called with
  6132. ;; the buffer where item comes from being current, and not agenda
  6133. ;; buffer
  6134. (let* ((bindings (car org-prefix-format-compiled))
  6135. (formatter (cadr org-prefix-format-compiled)))
  6136. (cl-loop for (var value) in bindings
  6137. do (set var value))
  6138. (save-match-data
  6139. ;; Diary entries sometimes have extra whitespace at the beginning
  6140. (setq txt (org-trim txt))
  6141. ;; Fix the tags part in txt
  6142. (setq txt (org-agenda-fix-displayed-tags
  6143. txt tags
  6144. org-agenda-show-inherited-tags
  6145. org-agenda-hide-tags-regexp))
  6146. (let* ((category (or category
  6147. (if buffer-file-name
  6148. (file-name-sans-extension
  6149. (file-name-nondirectory buffer-file-name))
  6150. "")))
  6151. (category-icon (org-agenda-get-category-icon category))
  6152. (category-icon (if category-icon
  6153. (propertize " " 'display category-icon)
  6154. ""))
  6155. (effort (and (not (string= txt ""))
  6156. (get-text-property 1 'effort txt)))
  6157. ;; time, tag, effort are needed for the eval of the prefix format
  6158. (tag (if tags (nth (1- (length tags)) tags) ""))
  6159. (time-grid-trailing-characters (nth 2 org-agenda-time-grid))
  6160. time
  6161. (ts (when dotime (concat
  6162. (if (stringp dotime) dotime "")
  6163. (and org-agenda-search-headline-for-time txt))))
  6164. (time-of-day (and dotime (org-get-time-of-day ts)))
  6165. stamp plain s0 s1 s2 rtn srp l
  6166. duration breadcrumbs)
  6167. (and (derived-mode-p 'org-mode) buffer-file-name
  6168. (add-to-list 'org-agenda-contributing-files buffer-file-name))
  6169. (when (and dotime time-of-day)
  6170. ;; Extract starting and ending time and move them to prefix
  6171. (when (or (setq stamp (string-match org-stamp-time-of-day-regexp ts))
  6172. (setq plain (string-match org-plain-time-of-day-regexp ts)))
  6173. (setq s0 (match-string 0 ts)
  6174. srp (and stamp (match-end 3))
  6175. s1 (match-string (if plain 1 2) ts)
  6176. s2 (match-string (if plain 8 (if srp 4 6)) ts))
  6177. ;; If the times are in TXT (not in DOTIMES), and the prefix will list
  6178. ;; them, we might want to remove them there to avoid duplication.
  6179. ;; The user can turn this off with a variable.
  6180. (when (and org-prefix-has-time
  6181. org-agenda-remove-times-when-in-prefix (or stamp plain)
  6182. (string-match (concat (regexp-quote s0) " *") txt)
  6183. (not (equal ?\] (string-to-char (substring txt (match-end 0)))))
  6184. (if (eq org-agenda-remove-times-when-in-prefix 'beg)
  6185. (= (match-beginning 0) 0)
  6186. t))
  6187. (setq txt (replace-match "" nil nil txt))))
  6188. ;; Normalize the time(s) to 24 hour
  6189. (when s1 (setq s1 (org-get-time-of-day s1 'string t)))
  6190. (when s2 (setq s2 (org-get-time-of-day s2 'string t)))
  6191. ;; Try to set s2 if s1 and
  6192. ;; `org-agenda-default-appointment-duration' are set
  6193. (when (and s1 (not s2) org-agenda-default-appointment-duration)
  6194. (setq s2
  6195. (org-duration-from-minutes
  6196. (+ (org-duration-to-minutes s1 t)
  6197. org-agenda-default-appointment-duration)
  6198. nil t)))
  6199. ;; Compute the duration
  6200. (when s2
  6201. (setq duration (- (org-duration-to-minutes s2)
  6202. (org-duration-to-minutes s1)))))
  6203. (when (string-match org-tag-group-re txt)
  6204. ;; Tags are in the string
  6205. (if (or (eq org-agenda-remove-tags t)
  6206. (and org-agenda-remove-tags
  6207. org-prefix-has-tag))
  6208. (setq txt (replace-match "" t t txt))
  6209. (setq txt (replace-match
  6210. (concat (make-string (max (- 50 (length txt)) 1) ?\ )
  6211. (match-string 1 txt))
  6212. t t txt))))
  6213. (when remove-re
  6214. (while (string-match remove-re txt)
  6215. (setq txt (replace-match "" t t txt))))
  6216. ;; Set org-heading property on `txt' to mark the start of the
  6217. ;; heading.
  6218. (add-text-properties 0 (length txt) '(org-heading t) txt)
  6219. ;; Prepare the variables needed in the eval of the compiled format
  6220. (when org-prefix-has-breadcrumbs
  6221. (setq breadcrumbs (org-with-point-at (org-get-at-bol 'org-marker)
  6222. (let ((s (org-format-outline-path (org-get-outline-path)
  6223. (1- (frame-width))
  6224. nil org-agenda-breadcrumbs-separator)))
  6225. (if (eq "" s) "" (concat s org-agenda-breadcrumbs-separator))))))
  6226. (setq time (cond (s2 (concat
  6227. (org-agenda-time-of-day-to-ampm-maybe s1)
  6228. "-" (org-agenda-time-of-day-to-ampm-maybe s2)
  6229. (when org-agenda-timegrid-use-ampm " ")))
  6230. (s1 (concat
  6231. (org-agenda-time-of-day-to-ampm-maybe s1)
  6232. (if org-agenda-timegrid-use-ampm
  6233. (concat time-grid-trailing-characters " ")
  6234. time-grid-trailing-characters)))
  6235. (t ""))
  6236. extra (or (and (not habitp) extra) "")
  6237. category (if (symbolp category) (symbol-name category) category)
  6238. level (or level ""))
  6239. (if (string-match org-link-bracket-re category)
  6240. (progn
  6241. (setq l (string-width (or (match-string 2) (match-string 1))))
  6242. (when (< l (or org-prefix-category-length 0))
  6243. (setq category (copy-sequence category))
  6244. (org-add-props category nil
  6245. 'extra-space (make-string
  6246. (- org-prefix-category-length l 1) ?\ ))))
  6247. (when (and org-prefix-category-max-length
  6248. (>= (length category) org-prefix-category-max-length))
  6249. (setq category (substring category 0 (1- org-prefix-category-max-length)))))
  6250. ;; Evaluate the compiled format
  6251. (setq rtn (concat (eval formatter) txt))
  6252. ;; And finally add the text properties
  6253. (remove-text-properties 0 (length rtn) '(line-prefix t wrap-prefix t) rtn)
  6254. (org-add-props rtn nil
  6255. 'org-category category
  6256. 'tags (mapcar 'org-downcase-keep-props tags)
  6257. 'org-priority-highest org-priority-highest
  6258. 'org-priority-lowest org-priority-lowest
  6259. 'time-of-day time-of-day
  6260. 'duration duration
  6261. 'breadcrumbs breadcrumbs
  6262. 'txt txt
  6263. 'level level
  6264. 'time time
  6265. 'extra extra
  6266. 'format org-prefix-format-compiled
  6267. 'dotime dotime)))))
  6268. (defun org-agenda-fix-displayed-tags (txt tags add-inherited hide-re)
  6269. "Remove tags string from TXT, and add a modified list of tags.
  6270. The modified list may contain inherited tags, and tags matched by
  6271. `org-agenda-hide-tags-regexp' will be removed."
  6272. (when (or add-inherited hide-re)
  6273. (when (string-match org-tag-group-re txt)
  6274. (setq txt (substring txt 0 (match-beginning 0))))
  6275. (setq tags
  6276. (delq nil
  6277. (mapcar (lambda (tg)
  6278. (if (or (and hide-re (string-match hide-re tg))
  6279. (and (not add-inherited)
  6280. (get-text-property 0 'inherited tg)))
  6281. nil
  6282. tg))
  6283. tags)))
  6284. (when tags
  6285. (let ((have-i (get-text-property 0 'inherited (car tags)))
  6286. i)
  6287. (setq txt (concat txt " :"
  6288. (mapconcat
  6289. (lambda (x)
  6290. (setq i (get-text-property 0 'inherited x))
  6291. (if (and have-i (not i))
  6292. (progn
  6293. (setq have-i nil)
  6294. (concat ":" x))
  6295. x))
  6296. tags ":")
  6297. (if have-i "::" ":"))))))
  6298. txt)
  6299. (defun org-downcase-keep-props (s)
  6300. (let ((props (text-properties-at 0 s)))
  6301. (setq s (downcase s))
  6302. (add-text-properties 0 (length s) props s)
  6303. s))
  6304. (defvar org-agenda-sorting-strategy) ;; because the def is in a let form
  6305. (defun org-agenda-add-time-grid-maybe (list ndays todayp)
  6306. "Add a time-grid for agenda items which need it.
  6307. LIST is the list of agenda items formatted by `org-agenda-list'.
  6308. NDAYS is the span of the current agenda view.
  6309. TODAYP is t when the current agenda view is on today."
  6310. (catch 'exit
  6311. (cond ((not org-agenda-use-time-grid) (throw 'exit list))
  6312. ((and todayp (member 'today (car org-agenda-time-grid))))
  6313. ((and (= ndays 1) (member 'daily (car org-agenda-time-grid))))
  6314. ((member 'weekly (car org-agenda-time-grid)))
  6315. (t (throw 'exit list)))
  6316. (let* ((have (delq nil (mapcar
  6317. (lambda (x) (get-text-property 1 'time-of-day x))
  6318. list)))
  6319. (string (nth 3 org-agenda-time-grid))
  6320. (gridtimes (nth 1 org-agenda-time-grid))
  6321. (req (car org-agenda-time-grid))
  6322. (remove (member 'remove-match req))
  6323. new time)
  6324. (when (and (member 'require-timed req) (not have))
  6325. ;; don't show empty grid
  6326. (throw 'exit list))
  6327. (while (setq time (pop gridtimes))
  6328. (unless (and remove (member time have))
  6329. (setq time (replace-regexp-in-string " " "0" (format "%04s" time)))
  6330. (push (org-agenda-format-item
  6331. nil string nil "" nil
  6332. (concat (substring time 0 -2) ":" (substring time -2)))
  6333. new)
  6334. (put-text-property
  6335. 2 (length (car new)) 'face 'org-time-grid (car new))))
  6336. (when (and todayp org-agenda-show-current-time-in-grid)
  6337. (push (org-agenda-format-item
  6338. nil org-agenda-current-time-string nil "" nil
  6339. (format-time-string "%H:%M "))
  6340. new)
  6341. (put-text-property
  6342. 2 (length (car new)) 'face 'org-agenda-current-time (car new)))
  6343. (if (member 'time-up org-agenda-sorting-strategy-selected)
  6344. (append new list)
  6345. (append list new)))))
  6346. (defun org-compile-prefix-format (key)
  6347. "Compile the prefix format into a Lisp form that can be evaluated.
  6348. The resulting form and associated variable bindings is returned
  6349. and stored in the variable `org-prefix-format-compiled'."
  6350. (setq org-prefix-has-time nil
  6351. org-prefix-has-tag nil
  6352. org-prefix-category-length nil
  6353. org-prefix-has-effort nil
  6354. org-prefix-has-breadcrumbs nil)
  6355. (let ((s (cond
  6356. ((stringp org-agenda-prefix-format)
  6357. org-agenda-prefix-format)
  6358. ((assq key org-agenda-prefix-format)
  6359. (cdr (assq key org-agenda-prefix-format)))
  6360. (t " %-12:c%?-12t% s")))
  6361. (start 0)
  6362. varform vars var e c f opt)
  6363. (while (string-match "%\\(\\?\\)?\\([-+]?[0-9.]*\\)\\([ .;,:!?=|/<>]?\\)\\([cltseib]\\|(.+)\\)"
  6364. s start)
  6365. (setq var (or (cdr (assoc (match-string 4 s)
  6366. '(("c" . category) ("t" . time) ("l" . level) ("s" . extra)
  6367. ("i" . category-icon) ("T" . tag) ("e" . effort) ("b" . breadcrumbs))))
  6368. 'eval)
  6369. c (or (match-string 3 s) "")
  6370. opt (match-beginning 1)
  6371. start (1+ (match-beginning 0)))
  6372. (cl-case var
  6373. (time (setq org-prefix-has-time t))
  6374. (tag (setq org-prefix-has-tag t))
  6375. (effort (setq org-prefix-has-effort t))
  6376. (breadcrumbs (setq org-prefix-has-breadcrumbs t)))
  6377. (setq f (concat "%" (match-string 2 s) "s"))
  6378. (when (eq var 'category)
  6379. (setq org-prefix-category-length
  6380. (floor (abs (string-to-number (match-string 2 s)))))
  6381. (setq org-prefix-category-max-length
  6382. (let ((x (match-string 2 s)))
  6383. (save-match-data
  6384. (and (string-match "\\.[0-9]+" x)
  6385. (string-to-number (substring (match-string 0 x) 1)))))))
  6386. (if (eq var 'eval)
  6387. (setq varform `(format ,f (org-eval ,(read (match-string 4 s)))))
  6388. (if opt
  6389. (setq varform
  6390. `(if (or (equal "" ,var) (equal nil ,var))
  6391. ""
  6392. (format ,f (concat ,var ,c))))
  6393. (setq varform
  6394. `(format ,f (if (or (equal ,var "")
  6395. (equal ,var nil)) ""
  6396. (concat ,var ,c (get-text-property 0 'extra-space ,var)))))))
  6397. (setq s (replace-match "%s" t nil s))
  6398. (push varform vars))
  6399. (setq vars (nreverse vars))
  6400. (with-current-buffer (or org-agenda-buffer (current-buffer))
  6401. (setq org-prefix-format-compiled
  6402. (list
  6403. `((org-prefix-has-time ,org-prefix-has-time)
  6404. (org-prefix-has-tag ,org-prefix-has-tag)
  6405. (org-prefix-category-length ,org-prefix-category-length)
  6406. (org-prefix-has-effort ,org-prefix-has-effort)
  6407. (org-prefix-has-breadcrumbs ,org-prefix-has-breadcrumbs))
  6408. `(format ,s ,@vars))))))
  6409. (defun org-set-sorting-strategy (key)
  6410. (if (symbolp (car org-agenda-sorting-strategy))
  6411. ;; the old format
  6412. (setq org-agenda-sorting-strategy-selected org-agenda-sorting-strategy)
  6413. (setq org-agenda-sorting-strategy-selected
  6414. (or (cdr (assq key org-agenda-sorting-strategy))
  6415. (cdr (assq 'agenda org-agenda-sorting-strategy))
  6416. '(time-up category-keep priority-down)))))
  6417. (defun org-get-time-of-day (s &optional string mod24)
  6418. "Check string S for a time of day.
  6419. If found, return it as a military time number between 0 and 2400.
  6420. If not found, return nil.
  6421. The optional STRING argument forces conversion into a 5 character wide string
  6422. HH:MM."
  6423. (save-match-data
  6424. (when
  6425. (and
  6426. (or (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)\\([AaPp][Mm]\\)?\\> *" s)
  6427. (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?\\([AaPp][Mm]\\)\\> *" s))
  6428. (not (eq (get-text-property 1 'face s) 'org-link)))
  6429. (let* ((h (string-to-number (match-string 1 s)))
  6430. (m (if (match-end 3) (string-to-number (match-string 3 s)) 0))
  6431. (ampm (when (match-end 4) (downcase (match-string 4 s))))
  6432. (am-p (equal ampm "am"))
  6433. (h1 (cond ((not ampm) h)
  6434. ((= h 12) (if am-p 0 12))
  6435. (t (+ h (if am-p 0 12)))))
  6436. (h2 (if (and string mod24 (not (and (= m 0) (= h1 24))))
  6437. (mod h1 24) h1))
  6438. (t0 (+ (* 100 h2) m))
  6439. (t1 (concat (if (>= h1 24) "+" " ")
  6440. (if (and org-agenda-time-leading-zero
  6441. (< t0 1000)) "0" "")
  6442. (if (< t0 100) "0" "")
  6443. (if (< t0 10) "0" "")
  6444. (number-to-string t0))))
  6445. (if string (concat (substring t1 -4 -2) ":" (substring t1 -2)) t0)))))
  6446. (defvar org-agenda-before-sorting-filter-function nil
  6447. "Function to be applied to agenda items prior to sorting.
  6448. Prior to sorting also means just before they are inserted into the agenda.
  6449. To aid sorting, you may revisit the original entries and add more text
  6450. properties which will later be used by the sorting functions.
  6451. The function should take a string argument, an agenda line.
  6452. It has access to the text properties in that line, which contain among
  6453. other things, the property `org-hd-marker' that points to the entry
  6454. where the line comes from. Note that not all lines going into the agenda
  6455. have this property, only most.
  6456. The function should return the modified string. It is probably best
  6457. to ONLY change text properties.
  6458. You can also use this function as a filter, by returning nil for lines
  6459. you don't want to have in the agenda at all. For this application, you
  6460. could bind the variable in the options section of a custom command.")
  6461. (defun org-agenda-finalize-entries (list &optional type)
  6462. "Sort, limit and concatenate the LIST of agenda items.
  6463. The optional argument TYPE tells the agenda type."
  6464. (let ((max-effort (cond ((listp org-agenda-max-effort)
  6465. (cdr (assoc type org-agenda-max-effort)))
  6466. (t org-agenda-max-effort)))
  6467. (max-todo (cond ((listp org-agenda-max-todos)
  6468. (cdr (assoc type org-agenda-max-todos)))
  6469. (t org-agenda-max-todos)))
  6470. (max-tags (cond ((listp org-agenda-max-tags)
  6471. (cdr (assoc type org-agenda-max-tags)))
  6472. (t org-agenda-max-tags)))
  6473. (max-entries (cond ((listp org-agenda-max-entries)
  6474. (cdr (assoc type org-agenda-max-entries)))
  6475. (t org-agenda-max-entries))))
  6476. (when org-agenda-before-sorting-filter-function
  6477. (setq list
  6478. (delq nil
  6479. (mapcar
  6480. org-agenda-before-sorting-filter-function list))))
  6481. (setq list (mapcar 'org-agenda-highlight-todo list)
  6482. list (mapcar 'identity (sort list 'org-entries-lessp)))
  6483. (when max-effort
  6484. (setq list (org-agenda-limit-entries
  6485. list 'effort-minutes max-effort
  6486. (lambda (e) (or e (if org-agenda-sort-noeffort-is-high
  6487. 32767 -1))))))
  6488. (when max-todo
  6489. (setq list (org-agenda-limit-entries list 'todo-state max-todo)))
  6490. (when max-tags
  6491. (setq list (org-agenda-limit-entries list 'tags max-tags)))
  6492. (when max-entries
  6493. (setq list (org-agenda-limit-entries list 'org-hd-marker max-entries)))
  6494. (when (and org-agenda-dim-blocked-tasks org-blocker-hook)
  6495. (setq list (mapcar #'org-agenda--mark-blocked-entry list)))
  6496. (mapconcat 'identity list "\n")))
  6497. (defun org-agenda-limit-entries (list prop limit &optional fn)
  6498. "Limit the number of agenda entries."
  6499. (let ((include (and limit (< limit 0))))
  6500. (if limit
  6501. (let ((fun (or fn (lambda (p) (when p 1))))
  6502. (lim 0))
  6503. (delq nil
  6504. (mapcar
  6505. (lambda (e)
  6506. (let ((pval (funcall
  6507. fun (get-text-property (1- (length e))
  6508. prop e))))
  6509. (when pval (setq lim (+ lim pval)))
  6510. (cond ((and pval (<= lim (abs limit))) e)
  6511. ((and include (not pval)) e))))
  6512. list)))
  6513. list)))
  6514. (defun org-agenda-limit-interactively (remove)
  6515. "In agenda, interactively limit entries to various maximums."
  6516. (interactive "P")
  6517. (if remove
  6518. (progn (setq org-agenda-max-entries nil
  6519. org-agenda-max-todos nil
  6520. org-agenda-max-tags nil
  6521. org-agenda-max-effort nil)
  6522. (org-agenda-redo))
  6523. (let* ((max (read-char "Number of [e]ntries [t]odos [T]ags [E]ffort? "))
  6524. (msg (cond ((= max ?E) "How many minutes? ")
  6525. ((= max ?e) "How many entries? ")
  6526. ((= max ?t) "How many TODO entries? ")
  6527. ((= max ?T) "How many tagged entries? ")
  6528. (t (user-error "Wrong input"))))
  6529. (num (string-to-number (read-from-minibuffer msg))))
  6530. (cond ((equal max ?e)
  6531. (let ((org-agenda-max-entries num)) (org-agenda-redo)))
  6532. ((equal max ?t)
  6533. (let ((org-agenda-max-todos num)) (org-agenda-redo)))
  6534. ((equal max ?T)
  6535. (let ((org-agenda-max-tags num)) (org-agenda-redo)))
  6536. ((equal max ?E)
  6537. (let ((org-agenda-max-effort num)) (org-agenda-redo))))))
  6538. (org-agenda-fit-window-to-buffer))
  6539. (defun org-agenda-highlight-todo (x)
  6540. (let ((org-done-keywords org-done-keywords-for-agenda)
  6541. (case-fold-search nil)
  6542. re)
  6543. (if (eq x 'line)
  6544. (save-excursion
  6545. (beginning-of-line 1)
  6546. (setq re (org-get-at-bol 'org-todo-regexp))
  6547. (goto-char (or (text-property-any (point-at-bol) (point-at-eol) 'org-heading t) (point)))
  6548. (when (looking-at (concat "[ \t]*\\.*\\(" re "\\) +"))
  6549. (add-text-properties (match-beginning 0) (match-end 1)
  6550. (list 'face (org-get-todo-face 1)))
  6551. (let ((s (buffer-substring (match-beginning 1) (match-end 1))))
  6552. (delete-region (match-beginning 1) (1- (match-end 0)))
  6553. (goto-char (match-beginning 1))
  6554. (insert (format org-agenda-todo-keyword-format s)))))
  6555. (let ((pl (text-property-any 0 (length x) 'org-heading t x)))
  6556. (setq re (get-text-property 0 'org-todo-regexp x))
  6557. (when (and re
  6558. ;; Test `pl' because if there's no heading content,
  6559. ;; there's no point matching to highlight. Note
  6560. ;; that if we didn't test `pl' first, and there
  6561. ;; happened to be no keyword from `org-todo-regexp'
  6562. ;; on this heading line, then the `equal' comparison
  6563. ;; afterwards would spuriously succeed in the case
  6564. ;; where `pl' is nil -- causing an args-out-of-range
  6565. ;; error when we try to add text properties to text
  6566. ;; that isn't there.
  6567. pl
  6568. (equal (string-match (concat "\\(\\.*\\)" re "\\( +\\)")
  6569. x pl)
  6570. pl))
  6571. (add-text-properties
  6572. (or (match-end 1) (match-end 0)) (match-end 0)
  6573. (list 'face (org-get-todo-face (match-string 2 x)))
  6574. x)
  6575. (when (match-end 1)
  6576. (setq x
  6577. (concat
  6578. (substring x 0 (match-end 1))
  6579. (format org-agenda-todo-keyword-format
  6580. (match-string 2 x))
  6581. ;; Remove `display' property as the icon could leak
  6582. ;; on the white space.
  6583. (org-add-props " " (org-plist-delete (text-properties-at 0 x)
  6584. 'display))
  6585. (substring x (match-end 3)))))))
  6586. x)))
  6587. (defsubst org-cmp-values (a b property)
  6588. "Compare the numeric value of text PROPERTY for string A and B."
  6589. (let ((pa (or (get-text-property (1- (length a)) property a) 0))
  6590. (pb (or (get-text-property (1- (length b)) property b) 0)))
  6591. (cond ((> pa pb) +1)
  6592. ((< pa pb) -1))))
  6593. (defsubst org-cmp-effort (a b)
  6594. "Compare the effort values of string A and B."
  6595. (let* ((def (if org-agenda-sort-noeffort-is-high 32767 -1))
  6596. ;; `effort-minutes' property is not directly accessible from
  6597. ;; the strings, but is stored as a property in `txt'.
  6598. (ea (or (get-text-property
  6599. 0 'effort-minutes (get-text-property 0 'txt a))
  6600. def))
  6601. (eb (or (get-text-property
  6602. 0 'effort-minutes (get-text-property 0 'txt b))
  6603. def)))
  6604. (cond ((> ea eb) +1)
  6605. ((< ea eb) -1))))
  6606. (defsubst org-cmp-category (a b)
  6607. "Compare the string values of categories of strings A and B."
  6608. (let ((ca (or (get-text-property (1- (length a)) 'org-category a) ""))
  6609. (cb (or (get-text-property (1- (length b)) 'org-category b) "")))
  6610. (cond ((string-lessp ca cb) -1)
  6611. ((string-lessp cb ca) +1))))
  6612. (defsubst org-cmp-todo-state (a b)
  6613. "Compare the todo states of strings A and B."
  6614. (let* ((ma (or (get-text-property 1 'org-marker a)
  6615. (get-text-property 1 'org-hd-marker a)))
  6616. (mb (or (get-text-property 1 'org-marker b)
  6617. (get-text-property 1 'org-hd-marker b)))
  6618. (fa (and ma (marker-buffer ma)))
  6619. (fb (and mb (marker-buffer mb)))
  6620. (todo-kwds
  6621. (or (and fa (with-current-buffer fa org-todo-keywords-1))
  6622. (and fb (with-current-buffer fb org-todo-keywords-1))))
  6623. (ta (or (get-text-property 1 'todo-state a) ""))
  6624. (tb (or (get-text-property 1 'todo-state b) ""))
  6625. (la (- (length (member ta todo-kwds))))
  6626. (lb (- (length (member tb todo-kwds))))
  6627. (donepa (member ta org-done-keywords-for-agenda))
  6628. (donepb (member tb org-done-keywords-for-agenda)))
  6629. (cond ((and donepa (not donepb)) -1)
  6630. ((and (not donepa) donepb) +1)
  6631. ((< la lb) -1)
  6632. ((< lb la) +1))))
  6633. (defsubst org-cmp-alpha (a b)
  6634. "Compare the headlines, alphabetically."
  6635. (let* ((pla (text-property-any 0 (length a) 'org-heading t a))
  6636. (plb (text-property-any 0 (length b) 'org-heading t b))
  6637. (ta (and pla (substring a pla)))
  6638. (tb (and plb (substring b plb)))
  6639. (case-fold-search nil))
  6640. (when pla
  6641. (when (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp a) "")
  6642. "\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *")
  6643. ta)
  6644. (setq ta (substring ta (match-end 0))))
  6645. (setq ta (downcase ta)))
  6646. (when plb
  6647. (when (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp b) "")
  6648. "\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *")
  6649. tb)
  6650. (setq tb (substring tb (match-end 0))))
  6651. (setq tb (downcase tb)))
  6652. (cond ((not (or ta tb)) nil)
  6653. ((not ta) +1)
  6654. ((not tb) -1)
  6655. ((string-lessp ta tb) -1)
  6656. ((string-lessp tb ta) +1))))
  6657. (defsubst org-cmp-tag (a b)
  6658. "Compare the string values of the first tags of A and B."
  6659. (let ((ta (car (last (get-text-property 1 'tags a))))
  6660. (tb (car (last (get-text-property 1 'tags b)))))
  6661. (cond ((not (or ta tb)) nil)
  6662. ((not ta) +1)
  6663. ((not tb) -1)
  6664. ((string-lessp ta tb) -1)
  6665. ((string-lessp tb ta) +1))))
  6666. (defsubst org-cmp-time (a b)
  6667. "Compare the time-of-day values of strings A and B."
  6668. (let* ((def (if org-agenda-sort-notime-is-late 9901 -1))
  6669. (ta (or (get-text-property 1 'time-of-day a) def))
  6670. (tb (or (get-text-property 1 'time-of-day b) def)))
  6671. (cond ((< ta tb) -1)
  6672. ((< tb ta) +1))))
  6673. (defsubst org-cmp-ts (a b type)
  6674. "Compare the timestamps values of entries A and B.
  6675. When TYPE is \"scheduled\", \"deadline\", \"timestamp\" or
  6676. \"timestamp_ia\", compare within each of these type. When TYPE
  6677. is the empty string, compare all timestamps without respect of
  6678. their type."
  6679. (let* ((def (and (not org-agenda-sort-notime-is-late) -1))
  6680. (ta (or (and (string-match type (or (get-text-property 1 'type a) ""))
  6681. (get-text-property 1 'ts-date a))
  6682. def))
  6683. (tb (or (and (string-match type (or (get-text-property 1 'type b) ""))
  6684. (get-text-property 1 'ts-date b))
  6685. def)))
  6686. (cond ((if ta (and tb (< ta tb)) tb) -1)
  6687. ((if tb (and ta (< tb ta)) ta) +1))))
  6688. (defsubst org-cmp-habit-p (a b)
  6689. "Compare the todo states of strings A and B."
  6690. (let ((ha (get-text-property 1 'org-habit-p a))
  6691. (hb (get-text-property 1 'org-habit-p b)))
  6692. (cond ((and ha (not hb)) -1)
  6693. ((and (not ha) hb) +1))))
  6694. (defun org-entries-lessp (a b)
  6695. "Predicate for sorting agenda entries."
  6696. ;; The following variables will be used when the form is evaluated.
  6697. ;; So even though the compiler complains, keep them.
  6698. (let* ((ss org-agenda-sorting-strategy-selected)
  6699. (timestamp-up (and (org-em 'timestamp-up 'timestamp-down ss)
  6700. (org-cmp-ts a b "")))
  6701. (timestamp-down (if timestamp-up (- timestamp-up) nil))
  6702. (scheduled-up (and (org-em 'scheduled-up 'scheduled-down ss)
  6703. (org-cmp-ts a b "scheduled")))
  6704. (scheduled-down (if scheduled-up (- scheduled-up) nil))
  6705. (deadline-up (and (org-em 'deadline-up 'deadline-down ss)
  6706. (org-cmp-ts a b "deadline")))
  6707. (deadline-down (if deadline-up (- deadline-up) nil))
  6708. (tsia-up (and (org-em 'tsia-up 'tsia-down ss)
  6709. (org-cmp-ts a b "timestamp_ia")))
  6710. (tsia-down (if tsia-up (- tsia-up) nil))
  6711. (ts-up (and (org-em 'ts-up 'ts-down ss)
  6712. (org-cmp-ts a b "timestamp")))
  6713. (ts-down (if ts-up (- ts-up) nil))
  6714. (time-up (and (org-em 'time-up 'time-down ss)
  6715. (org-cmp-time a b)))
  6716. (time-down (if time-up (- time-up) nil))
  6717. (stats-up (and (org-em 'stats-up 'stats-down ss)
  6718. (org-cmp-values a b 'org-stats)))
  6719. (stats-down (if stats-up (- stats-up) nil))
  6720. (priority-up (and (org-em 'priority-up 'priority-down ss)
  6721. (org-cmp-values a b 'priority)))
  6722. (priority-down (if priority-up (- priority-up) nil))
  6723. (effort-up (and (org-em 'effort-up 'effort-down ss)
  6724. (org-cmp-effort a b)))
  6725. (effort-down (if effort-up (- effort-up) nil))
  6726. (category-up (and (or (org-em 'category-up 'category-down ss)
  6727. (memq 'category-keep ss))
  6728. (org-cmp-category a b)))
  6729. (category-down (if category-up (- category-up) nil))
  6730. (category-keep (if category-up +1 nil))
  6731. (tag-up (and (org-em 'tag-up 'tag-down ss)
  6732. (org-cmp-tag a b)))
  6733. (tag-down (if tag-up (- tag-up) nil))
  6734. (todo-state-up (and (org-em 'todo-state-up 'todo-state-down ss)
  6735. (org-cmp-todo-state a b)))
  6736. (todo-state-down (if todo-state-up (- todo-state-up) nil))
  6737. (habit-up (and (org-em 'habit-up 'habit-down ss)
  6738. (org-cmp-habit-p a b)))
  6739. (habit-down (if habit-up (- habit-up) nil))
  6740. (alpha-up (and (org-em 'alpha-up 'alpha-down ss)
  6741. (org-cmp-alpha a b)))
  6742. (alpha-down (if alpha-up (- alpha-up) nil))
  6743. (need-user-cmp (org-em 'user-defined-up 'user-defined-down ss))
  6744. user-defined-up user-defined-down)
  6745. (when (and need-user-cmp org-agenda-cmp-user-defined
  6746. (functionp org-agenda-cmp-user-defined))
  6747. (setq user-defined-up
  6748. (funcall org-agenda-cmp-user-defined a b)
  6749. user-defined-down (if user-defined-up (- user-defined-up) nil)))
  6750. (cdr (assoc
  6751. (eval (cons 'or org-agenda-sorting-strategy-selected))
  6752. '((-1 . t) (1 . nil) (nil . nil))))))
  6753. ;;; Agenda restriction lock
  6754. (defvar org-agenda-restriction-lock-overlay (make-overlay 1 1)
  6755. "Overlay to mark the headline to which agenda commands are restricted.")
  6756. (overlay-put org-agenda-restriction-lock-overlay
  6757. 'face 'org-agenda-restriction-lock)
  6758. (overlay-put org-agenda-restriction-lock-overlay
  6759. 'help-echo "Agendas are currently limited to this subtree.")
  6760. (delete-overlay org-agenda-restriction-lock-overlay)
  6761. (defun org-agenda-set-restriction-lock-from-agenda (arg)
  6762. "Set the restriction lock to the agenda item at point from within the agenda.
  6763. When called with a `\\[universal-argument]' prefix, restrict to
  6764. the file which contains the item.
  6765. Argument ARG is the prefix argument."
  6766. (interactive "P")
  6767. (unless (derived-mode-p 'org-agenda-mode)
  6768. (user-error "Not in an Org agenda buffer"))
  6769. (let* ((marker (or (org-get-at-bol 'org-marker)
  6770. (org-agenda-error)))
  6771. (buffer (marker-buffer marker))
  6772. (pos (marker-position marker)))
  6773. (with-current-buffer buffer
  6774. (goto-char pos)
  6775. (org-agenda-set-restriction-lock arg))))
  6776. ;;;###autoload
  6777. (defun org-agenda-set-restriction-lock (&optional type)
  6778. "Set restriction lock for agenda to current subtree or file.
  6779. When in a restricted subtree, remove it.
  6780. The restriction will span over the entire file if TYPE is `file',
  6781. or if type is '(4), or if the cursor is before the first headline
  6782. in the file. Otherwise, only apply the restriction to the current
  6783. subtree."
  6784. (interactive "P")
  6785. (if (and org-agenda-overriding-restriction
  6786. (member org-agenda-restriction-lock-overlay
  6787. (overlays-at (point)))
  6788. (equal (overlay-start org-agenda-restriction-lock-overlay)
  6789. (point)))
  6790. (org-agenda-remove-restriction-lock 'noupdate)
  6791. (org-agenda-remove-restriction-lock 'noupdate)
  6792. (and (equal type '(4)) (setq type 'file))
  6793. (setq type (cond
  6794. (type type)
  6795. ((org-at-heading-p) 'subtree)
  6796. ((condition-case nil (org-back-to-heading t) (error nil))
  6797. 'subtree)
  6798. (t 'file)))
  6799. (if (eq type 'subtree)
  6800. (progn
  6801. (setq org-agenda-restrict (current-buffer))
  6802. (setq org-agenda-overriding-restriction 'subtree)
  6803. (put 'org-agenda-files 'org-restrict
  6804. (list (buffer-file-name (buffer-base-buffer))))
  6805. (org-back-to-heading t)
  6806. (move-overlay org-agenda-restriction-lock-overlay
  6807. (point)
  6808. (if org-agenda-restriction-lock-highlight-subtree
  6809. (save-excursion (org-end-of-subtree t t) (point))
  6810. (point-at-eol)))
  6811. (move-marker org-agenda-restrict-begin (point))
  6812. (move-marker org-agenda-restrict-end
  6813. (save-excursion (org-end-of-subtree t t)))
  6814. (message "Locking agenda restriction to subtree"))
  6815. (put 'org-agenda-files 'org-restrict
  6816. (list (buffer-file-name (buffer-base-buffer))))
  6817. (setq org-agenda-restrict nil)
  6818. (setq org-agenda-overriding-restriction 'file)
  6819. (move-marker org-agenda-restrict-begin nil)
  6820. (move-marker org-agenda-restrict-end nil)
  6821. (message "Locking agenda restriction to file"))
  6822. (setq current-prefix-arg nil))
  6823. (org-agenda-maybe-redo))
  6824. (defun org-agenda-remove-restriction-lock (&optional noupdate)
  6825. "Remove agenda restriction lock."
  6826. (interactive "P")
  6827. (if (not org-agenda-restrict)
  6828. (message "No agenda restriction to remove.")
  6829. (delete-overlay org-agenda-restriction-lock-overlay)
  6830. (delete-overlay org-speedbar-restriction-lock-overlay)
  6831. (setq org-agenda-overriding-restriction nil)
  6832. (setq org-agenda-restrict nil)
  6833. (put 'org-agenda-files 'org-restrict nil)
  6834. (move-marker org-agenda-restrict-begin nil)
  6835. (move-marker org-agenda-restrict-end nil)
  6836. (setq current-prefix-arg nil)
  6837. (message "Agenda restriction lock removed")
  6838. (or noupdate (org-agenda-maybe-redo))))
  6839. (defun org-agenda-maybe-redo ()
  6840. "If there is any window showing the agenda view, update it."
  6841. (let ((w (get-buffer-window (or org-agenda-this-buffer-name
  6842. org-agenda-buffer-name)
  6843. t))
  6844. (w0 (selected-window)))
  6845. (when w
  6846. (select-window w)
  6847. (org-agenda-redo)
  6848. (select-window w0)
  6849. (if org-agenda-overriding-restriction
  6850. (message "Agenda view shifted to new %s restriction"
  6851. org-agenda-overriding-restriction)
  6852. (message "Agenda restriction lock removed")))))
  6853. ;;; Agenda commands
  6854. (defun org-agenda-check-type (error &rest types)
  6855. "Check if agenda buffer or component is of allowed type.
  6856. If ERROR is non-nil, throw an error, otherwise just return nil.
  6857. Allowed types are `agenda' `todo' `tags' `search'."
  6858. (cond ((not org-agenda-type)
  6859. (error "No Org agenda currently displayed"))
  6860. ((memq org-agenda-type types) t)
  6861. (error
  6862. (error "Not allowed in '%s'-type agenda buffer or component" org-agenda-type))
  6863. (t nil)))
  6864. (defun org-agenda-Quit ()
  6865. "Exit the agenda, killing the agenda buffer.
  6866. Like `org-agenda-quit', but kill the buffer even when
  6867. `org-agenda-sticky' is non-nil."
  6868. (interactive)
  6869. (org-agenda--quit))
  6870. (defun org-agenda-quit ()
  6871. "Exit the agenda.
  6872. When `org-agenda-sticky' is non-nil, bury the agenda buffer
  6873. instead of killing it.
  6874. When `org-agenda-restore-windows-after-quit' is non-nil, restore
  6875. the pre-agenda window configuration.
  6876. When column view is active, exit column view instead of the
  6877. agenda."
  6878. (interactive)
  6879. (org-agenda--quit org-agenda-sticky))
  6880. (defun org-agenda--quit (&optional bury)
  6881. (if org-agenda-columns-active
  6882. (org-columns-quit)
  6883. (let ((wconf org-agenda-pre-window-conf)
  6884. (buf (current-buffer))
  6885. (org-agenda-last-indirect-window
  6886. (and (eq org-indirect-buffer-display 'other-window)
  6887. org-agenda-last-indirect-buffer
  6888. (get-buffer-window org-agenda-last-indirect-buffer))))
  6889. (cond
  6890. ((eq org-agenda-window-setup 'other-frame)
  6891. (delete-frame))
  6892. ((eq org-agenda-window-setup 'other-tab)
  6893. (if (fboundp 'tab-bar-close-tab)
  6894. (tab-bar-close-tab)
  6895. (user-error "Your version of Emacs does not have tab bar mode support")))
  6896. ((and org-agenda-restore-windows-after-quit
  6897. wconf)
  6898. ;; Maybe restore the pre-agenda window configuration. Reset
  6899. ;; `org-agenda-pre-window-conf' before running
  6900. ;; `set-window-configuration', which loses the current buffer.
  6901. (setq org-agenda-pre-window-conf nil)
  6902. (set-window-configuration wconf))
  6903. (t
  6904. (when org-agenda-last-indirect-window
  6905. (delete-window org-agenda-last-indirect-window))
  6906. (and (not (eq org-agenda-window-setup 'current-window))
  6907. (not (one-window-p))
  6908. (delete-window))))
  6909. (if bury
  6910. ;; Set the agenda buffer as the current buffer instead of
  6911. ;; passing it as an argument to `bury-buffer' so that
  6912. ;; `bury-buffer' removes it from the window.
  6913. (with-current-buffer buf
  6914. (bury-buffer))
  6915. (kill-buffer buf)
  6916. (setq org-agenda-archives-mode nil
  6917. org-agenda-buffer nil)))))
  6918. (defun org-agenda-exit ()
  6919. "Exit the agenda, killing Org buffers loaded by the agenda.
  6920. Like `org-agenda-Quit', but kill any buffers that were created by
  6921. the agenda. Org buffers visited directly by the user will not be
  6922. touched. Also, exit the agenda even if it is in column view."
  6923. (interactive)
  6924. (when org-agenda-columns-active
  6925. (org-columns-quit))
  6926. (org-release-buffers org-agenda-new-buffers)
  6927. (setq org-agenda-new-buffers nil)
  6928. (org-agenda-Quit))
  6929. (defun org-agenda-kill-all-agenda-buffers ()
  6930. "Kill all buffers in `org-agenda-mode'.
  6931. This is used when toggling sticky agendas."
  6932. (interactive)
  6933. (let (blist)
  6934. (dolist (buf (buffer-list))
  6935. (when (with-current-buffer buf (eq major-mode 'org-agenda-mode))
  6936. (push buf blist)))
  6937. (mapc 'kill-buffer blist)))
  6938. (defun org-agenda-execute (arg)
  6939. "Execute another agenda command, keeping same window.
  6940. So this is just a shortcut for \\<global-map>`\\[org-agenda]', available
  6941. in the agenda."
  6942. (interactive "P")
  6943. (let ((org-agenda-window-setup 'current-window))
  6944. (org-agenda arg)))
  6945. (defun org-agenda-redo (&optional all)
  6946. "Rebuild possibly ALL agenda view(s) in the current buffer."
  6947. (interactive "P")
  6948. (let* ((p (or (and (looking-at "\\'") (1- (point))) (point)))
  6949. (cpa (unless (eq all t) current-prefix-arg))
  6950. (org-agenda-doing-sticky-redo org-agenda-sticky)
  6951. (org-agenda-sticky nil)
  6952. (org-agenda-buffer-name (or org-agenda-this-buffer-name
  6953. org-agenda-buffer-name))
  6954. (org-agenda-keep-modes t)
  6955. (tag-filter org-agenda-tag-filter)
  6956. (tag-preset (get 'org-agenda-tag-filter :preset-filter))
  6957. (top-hl-filter org-agenda-top-headline-filter)
  6958. (cat-filter org-agenda-category-filter)
  6959. (cat-preset (get 'org-agenda-category-filter :preset-filter))
  6960. (re-filter org-agenda-regexp-filter)
  6961. (re-preset (get 'org-agenda-regexp-filter :preset-filter))
  6962. (effort-filter org-agenda-effort-filter)
  6963. (effort-preset (get 'org-agenda-effort-filter :preset-filter))
  6964. (org-agenda-tag-filter-while-redo (or tag-filter tag-preset))
  6965. (cols org-agenda-columns-active)
  6966. (line (org-current-line))
  6967. (window-line (- line (org-current-line (window-start))))
  6968. (lprops (get 'org-agenda-redo-command 'org-lprops))
  6969. (redo-cmd (get-text-property p 'org-redo-cmd))
  6970. (last-args (get-text-property p 'org-last-args))
  6971. (org-agenda-overriding-cmd (get-text-property p 'org-series-cmd))
  6972. (org-agenda-overriding-cmd-arguments
  6973. (unless (eq all t)
  6974. (cond ((listp last-args)
  6975. (cons (or cpa (car last-args)) (cdr last-args)))
  6976. ((stringp last-args)
  6977. last-args))))
  6978. (series-redo-cmd (get-text-property p 'org-series-redo-cmd)))
  6979. (put 'org-agenda-tag-filter :preset-filter nil)
  6980. (put 'org-agenda-category-filter :preset-filter nil)
  6981. (put 'org-agenda-regexp-filter :preset-filter nil)
  6982. (put 'org-agenda-effort-filter :preset-filter nil)
  6983. (and cols (org-columns-quit))
  6984. (message "Rebuilding agenda buffer...")
  6985. (if series-redo-cmd
  6986. (eval series-redo-cmd)
  6987. (org-let lprops redo-cmd))
  6988. (setq org-agenda-undo-list nil
  6989. org-agenda-pending-undo-list nil
  6990. org-agenda-tag-filter tag-filter
  6991. org-agenda-category-filter cat-filter
  6992. org-agenda-regexp-filter re-filter
  6993. org-agenda-effort-filter effort-filter
  6994. org-agenda-top-headline-filter top-hl-filter)
  6995. (message "Rebuilding agenda buffer...done")
  6996. (put 'org-agenda-tag-filter :preset-filter tag-preset)
  6997. (put 'org-agenda-category-filter :preset-filter cat-preset)
  6998. (put 'org-agenda-regexp-filter :preset-filter re-preset)
  6999. (put 'org-agenda-effort-filter :preset-filter effort-preset)
  7000. (let ((tag (or tag-filter tag-preset))
  7001. (cat (or cat-filter cat-preset))
  7002. (effort (or effort-filter effort-preset))
  7003. (re (or re-filter re-preset)))
  7004. (when tag (org-agenda-filter-apply tag 'tag t))
  7005. (when cat (org-agenda-filter-apply cat 'category))
  7006. (when effort (org-agenda-filter-apply effort 'effort))
  7007. (when re (org-agenda-filter-apply re 'regexp)))
  7008. (and top-hl-filter (org-agenda-filter-top-headline-apply top-hl-filter))
  7009. (and cols (called-interactively-p 'any) (org-agenda-columns))
  7010. (org-goto-line line)
  7011. (recenter window-line)))
  7012. (defun org-agenda-redo-all (&optional exhaustive)
  7013. "Rebuild all agenda views in the current buffer.
  7014. With a prefix argument, do so in all agenda buffers."
  7015. (interactive "P")
  7016. (if exhaustive
  7017. (dolist (buffer (buffer-list))
  7018. (with-current-buffer buffer
  7019. (when (derived-mode-p 'org-agenda-mode)
  7020. (org-agenda-redo t))))
  7021. (org-agenda-redo t)))
  7022. (defvar org-global-tags-completion-table nil)
  7023. (defvar org-agenda-filter-form nil)
  7024. (defvar org-agenda-filtered-by-category nil)
  7025. (defsubst org-agenda-get-category ()
  7026. "Return the category of the agenda line."
  7027. (org-get-at-bol 'org-category))
  7028. (defun org-agenda-filter-by-category (strip)
  7029. "Filter lines in the agenda buffer that have a specific category.
  7030. The category is that of the current line.
  7031. With a `\\[universal-argument]' prefix argument, exclude the lines of that category.
  7032. When there is already a category filter in place, this command removes the filter."
  7033. (interactive "P")
  7034. (if (and org-agenda-filtered-by-category
  7035. org-agenda-category-filter)
  7036. (org-agenda-filter-show-all-cat)
  7037. (let ((cat (org-no-properties (org-get-at-eol 'org-category 1))))
  7038. (cond
  7039. ((and cat strip)
  7040. (org-agenda-filter-apply
  7041. (push (concat "-" cat) org-agenda-category-filter) 'category))
  7042. (cat
  7043. (org-agenda-filter-apply
  7044. (setq org-agenda-category-filter
  7045. (list (concat "+" cat)))
  7046. 'category))
  7047. (t (error "No category at point"))))))
  7048. (defun org-find-top-headline (&optional pos)
  7049. "Find the topmost parent headline and return it.
  7050. POS when non-nil is the marker or buffer position to start the
  7051. search from."
  7052. (save-excursion
  7053. (with-current-buffer (if (markerp pos) (marker-buffer pos) (current-buffer))
  7054. (when pos (goto-char pos))
  7055. ;; Skip up to the topmost parent.
  7056. (while (org-up-heading-safe))
  7057. (ignore-errors (nth 4 (org-heading-components))))))
  7058. (defvar org-agenda-filtered-by-top-headline nil)
  7059. (defun org-agenda-filter-by-top-headline (strip)
  7060. "Keep only those lines that are descendants from the same top headline.
  7061. The top headline is that of the current line. With prefix arg STRIP, hide
  7062. all lines of the category at point."
  7063. (interactive "P")
  7064. (if org-agenda-filtered-by-top-headline
  7065. (progn
  7066. (setq org-agenda-filtered-by-top-headline nil
  7067. org-agenda-top-headline-filter nil)
  7068. (org-agenda-filter-show-all-top-filter))
  7069. (let ((toph (org-find-top-headline (org-get-at-bol 'org-hd-marker))))
  7070. (if toph (org-agenda-filter-top-headline-apply toph strip)
  7071. (error "No top-level headline at point")))))
  7072. (defvar org-agenda-regexp-filter nil)
  7073. (defun org-agenda-filter-by-regexp (strip-or-accumulate)
  7074. "Filter agenda entries by a regular expressions.
  7075. You will be prompted for the regular expression, and the agenda
  7076. view will only show entries that are matched by that expression.
  7077. With one `\\[universal-argument]' prefix argument, hide entries matching the regexp.
  7078. When there is already a regexp filter active, this command removed the
  7079. filter. However, with two `\\[universal-argument]' prefix arguments, add a new condition to
  7080. an already existing regexp filter."
  7081. (interactive "P")
  7082. (let* ((strip (equal strip-or-accumulate '(4)))
  7083. (accumulate (equal strip-or-accumulate '(16))))
  7084. (cond
  7085. ((and org-agenda-regexp-filter (not accumulate))
  7086. (org-agenda-filter-show-all-re)
  7087. (message "Regexp filter removed"))
  7088. (t (let ((flt (concat (if strip "-" "+")
  7089. (read-from-minibuffer
  7090. (if strip
  7091. "Hide entries matching regexp: "
  7092. "Narrow to entries matching regexp: ")))))
  7093. (push flt org-agenda-regexp-filter)
  7094. (org-agenda-filter-apply org-agenda-regexp-filter 'regexp))))))
  7095. (defvar org-agenda-effort-filter nil)
  7096. (defun org-agenda-filter-by-effort (strip-or-accumulate)
  7097. "Filter agenda entries by effort.
  7098. With no `\\[universal-argument]' prefix argument, keep entries matching the effort condition.
  7099. With one `\\[universal-argument]' prefix argument, filter out entries matching the condition.
  7100. With two `\\[universal-argument]' prefix arguments, add a second condition to the existing filter.
  7101. This last option is in practice not very useful, but it is available for
  7102. consistency with the other filter commands."
  7103. (interactive "P")
  7104. (let* ((efforts (split-string
  7105. (or (cdr (assoc-string (concat org-effort-property "_ALL")
  7106. org-global-properties
  7107. t))
  7108. "0 0:10 0:30 1:00 2:00 3:00 4:00 5:00 6:00 7:00")))
  7109. ;; XXX: the following handles only up to 10 different
  7110. ;; effort values.
  7111. (allowed-keys (if (null efforts) nil
  7112. (mapcar (lambda (n) (mod n 10)) ;turn 10 into 0
  7113. (number-sequence 1 (length efforts)))))
  7114. (keep (equal strip-or-accumulate '(16)))
  7115. (negative (equal strip-or-accumulate '(4)))
  7116. (current org-agenda-effort-filter)
  7117. (op nil))
  7118. (while (not (memq op '(?< ?> ?= ?_)))
  7119. (setq op (read-char-exclusive
  7120. "Effort operator? (> = or <) or press `_' again to remove filter")))
  7121. ;; Select appropriate duration. Ignore non-digit characters.
  7122. (if (eq op ?_)
  7123. (progn
  7124. (org-agenda-filter-show-all-effort)
  7125. (message "Effort filter removed"))
  7126. (let ((prompt
  7127. (apply #'format
  7128. (concat "Effort %c "
  7129. (mapconcat (lambda (s) (concat "[%d]" s))
  7130. efforts
  7131. " "))
  7132. op allowed-keys))
  7133. (eff -1))
  7134. (while (not (memq eff allowed-keys))
  7135. (message prompt)
  7136. (setq eff (- (read-char-exclusive) 48)))
  7137. (org-agenda-filter-show-all-effort)
  7138. (setq org-agenda-effort-filter
  7139. (append
  7140. (list (concat (if negative "-" "+")
  7141. (char-to-string op)
  7142. ;; Numbering is 1 2 3 ... 9 0, but we want
  7143. ;; 0 1 2 ... 8 9.
  7144. (nth (mod (1- eff) 10) efforts)))
  7145. (if keep current nil)))
  7146. (org-agenda-filter-apply org-agenda-effort-filter 'effort)))))
  7147. (defun org-agenda-filter (&optional strip-or-accumulate)
  7148. "Prompt for a general filter string and apply it to the agenda.
  7149. The string may contain filter elements like
  7150. +category
  7151. +tag
  7152. +<effort > and = are also allowed as effort operators
  7153. +/regexp/
  7154. Instead of `+', `-' is allowed to strip the agenda of matching entries.
  7155. `+' is optional if it is not required to separate two string parts.
  7156. Multiple filter elements can be concatenated without spaces, for example
  7157. +work-John<0:10-/plot/
  7158. selects entries with category `work' and effort estimates below 10 minutes,
  7159. and deselects entries with tag `John' or matching the regexp `plot'.
  7160. During entry of the filter, completion for tags, categories and effort
  7161. values is offered. Since the syntax for categories and tags is identical
  7162. there should be no overlap between categories and tags. If there is, tags
  7163. get priority.
  7164. A single `\\[universal-argument]' prefix arg STRIP-OR-ACCUMULATE will negate the
  7165. entire filter, which can be useful in connection with the prompt history.
  7166. A double `\\[universal-argument] \\[universal-argument]' prefix arg will add the new filter elements to the
  7167. existing ones. A shortcut for this is to add an additional `+' at the
  7168. beginning of the string, like `+-John'.
  7169. With a triple prefix argument, execute the computed filtering defined in
  7170. the variable `org-agenda-auto-exclude-function'."
  7171. (interactive "P")
  7172. (if (equal strip-or-accumulate '(64))
  7173. ;; Execute the auto-exclude action
  7174. (if (not org-agenda-auto-exclude-function)
  7175. (user-error "`org-agenda-auto-exclude-function' is undefined")
  7176. (org-agenda-filter-show-all-tag)
  7177. (setq org-agenda-tag-filter nil)
  7178. (dolist (tag (org-agenda-get-represented-tags))
  7179. (let ((modifier (funcall org-agenda-auto-exclude-function tag)))
  7180. (when modifier
  7181. (push modifier org-agenda-tag-filter))))
  7182. (unless (null org-agenda-tag-filter)
  7183. (org-agenda-filter-apply org-agenda-tag-filter 'tag 'expand)))
  7184. ;; Prompt for a filter and act
  7185. (let* ((tag-list (org-agenda-get-represented-tags))
  7186. (category-list (org-agenda-get-represented-categories))
  7187. (negate (equal strip-or-accumulate '(4)))
  7188. (cf (mapconcat #'identity org-agenda-category-filter ""))
  7189. (tf (mapconcat #'identity org-agenda-tag-filter ""))
  7190. (rpl-fn (lambda (c) (replace-regexp-in-string "^\+" "" (or (car c) ""))))
  7191. (ef (replace-regexp-in-string "^\+" "" (or (car org-agenda-effort-filter) "")))
  7192. (rf (replace-regexp-in-string "^\+" "" (or (car org-agenda-regexp-filter) "")))
  7193. (ff (concat cf tf ef (when (not (equal rf "")) (concat "/" rf "/"))))
  7194. (f-string (completing-read
  7195. (concat
  7196. (if negate "Negative filter" "Filter")
  7197. " [+cat-tag<0:10-/regexp/]: ")
  7198. 'org-agenda-filter-completion-function
  7199. nil nil ff))
  7200. (keep (or (if (string-match "^\\+[+-]" f-string)
  7201. (progn (setq f-string (substring f-string 1)) t))
  7202. (equal strip-or-accumulate '(16))))
  7203. (fc (if keep org-agenda-category-filter))
  7204. (ft (if keep org-agenda-tag-filter))
  7205. (fe (if keep org-agenda-effort-filter))
  7206. (fr (if keep org-agenda-regexp-filter))
  7207. pm s)
  7208. (while (string-match "^[ \t]*\\([-+]\\)?\\(\\([^-+<>=/ \t]+\\)\\|\\([<>=][0-9:]+\\)\\|\\(/\\([^/]+\\)/?\\)\\)" f-string)
  7209. (setq pm (if (match-beginning 1) (match-string 1 f-string) "+"))
  7210. (when negate
  7211. (setq pm (if (equal pm "+") "-" "+")))
  7212. (cond
  7213. ((match-beginning 3)
  7214. ;; category or tag
  7215. (setq s (match-string 3 f-string))
  7216. (cond
  7217. ((member s tag-list)
  7218. (add-to-list 'ft (concat pm s) 'append 'equal))
  7219. ((member s category-list)
  7220. (add-to-list 'fc (concat pm s) 'append 'equal))
  7221. (t (message
  7222. "`%s%s' filter ignored because tag/category is not represented"
  7223. pm s))))
  7224. ((match-beginning 4)
  7225. ;; effort
  7226. (add-to-list 'fe (concat pm (match-string 4 f-string)) t 'equal))
  7227. ((match-beginning 5)
  7228. ;; regexp
  7229. (add-to-list 'fr (concat pm (match-string 6 f-string)) t 'equal)))
  7230. (setq f-string (substring f-string (match-end 0))))
  7231. (org-agenda-filter-remove-all)
  7232. (and fc (org-agenda-filter-apply
  7233. (setq org-agenda-category-filter fc) 'category))
  7234. (and ft (org-agenda-filter-apply
  7235. (setq org-agenda-tag-filter ft) 'tag 'expand))
  7236. (and fe (org-agenda-filter-apply
  7237. (setq org-agenda-effort-filter fe) 'effort))
  7238. (and fr (org-agenda-filter-apply
  7239. (setq org-agenda-regexp-filter fr) 'regexp))
  7240. (run-hooks 'org-agenda-filter-hook))))
  7241. (defun org-agenda-filter-completion-function (string _predicate &optional flag)
  7242. "Complete a complex filter string.
  7243. FLAG specifies the type of completion operation to perform. This
  7244. function is passed as a collection function to `completing-read',
  7245. which see."
  7246. (let ((completion-ignore-case t) ;tags are case-sensitive
  7247. (confirm (lambda (x) (stringp x)))
  7248. (prefix "")
  7249. (operator "")
  7250. table)
  7251. (when (string-match "^\\(.*\\([-+<>=]\\)\\)\\([^-+<>=]*\\)$" string)
  7252. (setq prefix (match-string 1 string)
  7253. operator (match-string 2 string)
  7254. string (match-string 3 string)))
  7255. (cond
  7256. ((member operator '("+" "-" "" nil))
  7257. (setq table (append (org-agenda-get-represented-categories)
  7258. (org-agenda-get-represented-tags))))
  7259. ((member operator '("<" ">" "="))
  7260. (setq table (split-string
  7261. (or (cdr (assoc-string (concat org-effort-property "_ALL")
  7262. org-global-properties
  7263. t))
  7264. "0 0:10 0:30 1:00 2:00 3:00 4:00 5:00 6:00 7:00")
  7265. " +")))
  7266. (t (setq table nil)))
  7267. (pcase flag
  7268. (`t (all-completions string table confirm))
  7269. (`lambda (assoc string table)) ;exact match?
  7270. (`nil
  7271. (pcase (try-completion string table confirm)
  7272. ((and completion (pred stringp))
  7273. (concat prefix completion))
  7274. (completion completion)))
  7275. (_ nil))))
  7276. (defun org-agenda-filter-remove-all ()
  7277. "Remove all filters from the current agenda buffer."
  7278. (interactive)
  7279. (when org-agenda-tag-filter
  7280. (org-agenda-filter-show-all-tag))
  7281. (when org-agenda-category-filter
  7282. (org-agenda-filter-show-all-cat))
  7283. (when org-agenda-regexp-filter
  7284. (org-agenda-filter-show-all-re))
  7285. (when org-agenda-top-headline-filter
  7286. (org-agenda-filter-show-all-top-filter))
  7287. (when org-agenda-effort-filter
  7288. (org-agenda-filter-show-all-effort))
  7289. (org-agenda-finalize)
  7290. (when (called-interactively-p 'interactive)
  7291. (message "All agenda filters removed")))
  7292. (defun org-agenda-filter-by-tag (strip-or-accumulate &optional char exclude)
  7293. "Keep only those lines in the agenda buffer that have a specific tag.
  7294. The tag is selected with its fast selection letter, as configured.
  7295. With a `\\[universal-argument]' prefix, apply the filter negatively, stripping all matches.
  7296. With a `\\[universal-argument] \\[universal-argument]' prefix, add the new tag to the existing filter
  7297. instead of replacing it.
  7298. With a `\\[universal-argument] \\[universal-argument] \\[universal-argument]' prefix, filter the literal tag, \
  7299. i.e. don't
  7300. filter on all its group members.
  7301. A lisp caller can specify CHAR. EXCLUDE means that the new tag
  7302. should be used to exclude the search - the interactive user can
  7303. also press `-' or `+' to switch between filtering and excluding."
  7304. (interactive "P")
  7305. (let* ((alist org-tag-alist-for-agenda)
  7306. (seen-chars nil)
  7307. (tag-chars (mapconcat
  7308. (lambda (x) (if (and (not (symbolp (car x)))
  7309. (cdr x)
  7310. (not (member (cdr x) seen-chars)))
  7311. (progn
  7312. (push (cdr x) seen-chars)
  7313. (char-to-string (cdr x)))
  7314. ""))
  7315. org-tag-alist-for-agenda ""))
  7316. (valid-char-list (append '(?\t ?\r ?\\ ?. ?\s ?q)
  7317. (string-to-list tag-chars)))
  7318. (exclude (or exclude (equal strip-or-accumulate '(4))))
  7319. (accumulate (equal strip-or-accumulate '(16)))
  7320. (expand (not (equal strip-or-accumulate '(64))))
  7321. (inhibit-read-only t)
  7322. (current org-agenda-tag-filter)
  7323. a n tag)
  7324. (unless char
  7325. (while (not (memq char valid-char-list))
  7326. (org-unlogged-message
  7327. "%s by tag%s: [%s ]tag-char [TAB]tag %s[\\]off [q]uit"
  7328. (if exclude "Exclude[+]" "Filter[-]")
  7329. (if expand "" " (no grouptag expand)")
  7330. tag-chars
  7331. (if org-agenda-auto-exclude-function "[RET] " ""))
  7332. (setq char (read-char-exclusive))
  7333. ;; Excluding or filtering down
  7334. (cond ((eq char ?-) (setq exclude t))
  7335. ((eq char ?+) (setq exclude nil)))))
  7336. (when (eq char ?\t)
  7337. (unless (local-variable-p 'org-global-tags-completion-table)
  7338. (setq-local org-global-tags-completion-table
  7339. (org-global-tags-completion-table)))
  7340. (let ((completion-ignore-case t))
  7341. (setq tag (completing-read
  7342. "Tag: " org-global-tags-completion-table nil t))))
  7343. (cond
  7344. ((eq char ?\r)
  7345. (org-agenda-filter-show-all-tag)
  7346. (when org-agenda-auto-exclude-function
  7347. (setq org-agenda-tag-filter nil)
  7348. (dolist (tag (org-agenda-get-represented-tags))
  7349. (let ((modifier (funcall org-agenda-auto-exclude-function tag)))
  7350. (when modifier
  7351. (push modifier org-agenda-tag-filter))))
  7352. (unless (null org-agenda-tag-filter)
  7353. (org-agenda-filter-apply org-agenda-tag-filter 'tag expand))))
  7354. ((eq char ?\\)
  7355. (org-agenda-filter-show-all-tag)
  7356. (when (get 'org-agenda-tag-filter :preset-filter)
  7357. (org-agenda-filter-apply org-agenda-tag-filter 'tag expand)))
  7358. ((eq char ?.)
  7359. (setq org-agenda-tag-filter
  7360. (mapcar (lambda(tag) (concat "+" tag))
  7361. (org-get-at-bol 'tags)))
  7362. (org-agenda-filter-apply org-agenda-tag-filter 'tag expand))
  7363. ((eq char ?q)) ;If q, abort (even if there is a q-key for a tag...)
  7364. ((or (eq char ?\s)
  7365. (setq a (rassoc char alist))
  7366. (and tag (setq a (cons tag nil))))
  7367. (org-agenda-filter-show-all-tag)
  7368. (setq tag (car a))
  7369. (setq org-agenda-tag-filter
  7370. (cons (concat (if exclude "-" "+") tag)
  7371. (if accumulate current nil)))
  7372. (org-agenda-filter-apply org-agenda-tag-filter 'tag expand))
  7373. (t (error "Invalid tag selection character %c" char)))))
  7374. (defun org-agenda-get-represented-categories ()
  7375. "Return a list of all categories used in this agenda buffer."
  7376. (or org-agenda-represented-categories
  7377. (when (derived-mode-p 'org-agenda-mode)
  7378. (let ((pos (point-min)) categories)
  7379. (while (and (< pos (point-max))
  7380. (setq pos (next-single-property-change
  7381. pos 'org-category nil (point-max))))
  7382. (push (get-text-property pos 'org-category) categories))
  7383. (setq org-agenda-represented-categories
  7384. (nreverse (org-uniquify (delq nil categories))))))))
  7385. (defvar org-tag-groups-alist-for-agenda)
  7386. (defun org-agenda-get-represented-tags ()
  7387. "Return a list of all tags used in this agenda buffer.
  7388. These will be lower-case, for filtering."
  7389. (or org-agenda-represented-tags
  7390. (when (derived-mode-p 'org-agenda-mode)
  7391. (let ((pos (point-min)) tags-lists tt)
  7392. (while (and (< pos (point-max))
  7393. (setq pos (next-single-property-change
  7394. pos 'tags nil (point-max))))
  7395. (setq tt (get-text-property pos 'tags))
  7396. (if tt (push tt tags-lists)))
  7397. (setq tags-lists
  7398. (nreverse (org-uniquify
  7399. (delq nil (apply 'append tags-lists)))))
  7400. (dolist (tag tags-lists)
  7401. (mapc
  7402. (lambda (group)
  7403. (when (member tag (mapcar #'downcase group))
  7404. (push (downcase (car group)) tags-lists)))
  7405. org-tag-groups-alist-for-agenda))
  7406. (setq org-agenda-represented-tags tags-lists)))))
  7407. (defun org-agenda-filter-make-matcher (filter type &optional expand)
  7408. "Create the form that tests a line for agenda filter. Optional
  7409. argument EXPAND can be used for the TYPE tag and will expand the
  7410. tags in the FILTER if any of the tags in FILTER are grouptags."
  7411. (let ((multi-pos-cats
  7412. (and (eq type 'category)
  7413. (string-match-p "\\+.*\\+"
  7414. (mapconcat (lambda (cat) (substring cat 0 1))
  7415. filter ""))))
  7416. f f1)
  7417. (cond
  7418. ;; Tag filter
  7419. ((eq type 'tag)
  7420. (setq filter
  7421. (delete-dups
  7422. (append (get 'org-agenda-tag-filter :preset-filter)
  7423. filter)))
  7424. (dolist (x filter)
  7425. (let ((op (string-to-char x)))
  7426. (if expand (setq x (org-agenda-filter-expand-tags (list x) t))
  7427. (setq x (list x)))
  7428. (setq f1 (org-agenda-filter-make-matcher-tag-exp x op))
  7429. (push f1 f))))
  7430. ;; Category filter
  7431. ((eq type 'category)
  7432. (setq filter
  7433. (delete-dups
  7434. (append (get 'org-agenda-category-filter :preset-filter)
  7435. filter)))
  7436. (dolist (x filter)
  7437. (if (equal "-" (substring x 0 1))
  7438. (setq f1 (list 'not (list 'equal (substring x 1) 'cat)))
  7439. (setq f1 (list 'equal (substring x 1) 'cat)))
  7440. (push f1 f)))
  7441. ;; Regexp filter
  7442. ((eq type 'regexp)
  7443. (setq filter
  7444. (delete-dups
  7445. (append (get 'org-agenda-regexp-filter :preset-filter)
  7446. filter)))
  7447. (dolist (x filter)
  7448. (if (equal "-" (substring x 0 1))
  7449. (setq f1 (list 'not (list 'string-match (substring x 1) 'txt)))
  7450. (setq f1 (list 'string-match (substring x 1) 'txt)))
  7451. (push f1 f)))
  7452. ;; Effort filter
  7453. ((eq type 'effort)
  7454. (setq filter
  7455. (delete-dups
  7456. (append (get 'org-agenda-effort-filter :preset-filter)
  7457. filter)))
  7458. (dolist (x filter)
  7459. (push (org-agenda-filter-effort-form x) f))))
  7460. (cons (if multi-pos-cats 'or 'and) (nreverse f))))
  7461. (defun org-agenda-filter-make-matcher-tag-exp (tags op)
  7462. "Return a form associated to tag-expression TAGS.
  7463. Build a form testing a line for agenda filter for
  7464. tag-expressions. OP is an operator of type CHAR that allows the
  7465. function to set the right switches in the returned form."
  7466. (let (form)
  7467. ;; Any of the expressions can match if OP is +, all must match if
  7468. ;; the operator is -.
  7469. (dolist (x tags (cons (if (eq op ?-) 'and 'or) form))
  7470. (let* ((tag (substring x 1))
  7471. (f (cond
  7472. ((string= "" tag) 'tags)
  7473. ((and (string-match-p "\\`{" tag) (string-match-p "}\\'" tag))
  7474. ;; TAG is a regexp.
  7475. (list 'org-match-any-p (substring tag 1 -1) 'tags))
  7476. (t (list 'member (downcase tag) 'tags)))))
  7477. (push (if (eq op ?-) (list 'not f) f) form)))))
  7478. (defun org-agenda-filter-effort-form (e)
  7479. "Return the form to compare the effort of the current line with what E says.
  7480. E looks like \"+<2:25\"."
  7481. (let (op)
  7482. (setq e (substring e 1))
  7483. (setq op (string-to-char e) e (substring e 1))
  7484. (setq op (cond ((equal op ?<) '<=)
  7485. ((equal op ?>) '>=)
  7486. ((equal op ??) op)
  7487. (t '=)))
  7488. (list 'org-agenda-compare-effort (list 'quote op)
  7489. (org-duration-to-minutes e))))
  7490. (defun org-agenda-compare-effort (op value)
  7491. "Compare the effort of the current line with VALUE, using OP.
  7492. If the line does not have an effort defined, return nil."
  7493. ;; `effort-minutes' property cannot be extracted directly from
  7494. ;; current line but is stored as a property in `txt'.
  7495. (let ((effort (get-text-property 0 'effort-minutes (org-get-at-bol 'txt))))
  7496. (funcall op
  7497. (or effort (if org-agenda-sort-noeffort-is-high 32767 -1))
  7498. value)))
  7499. (defun org-agenda-filter-expand-tags (filter &optional no-operator)
  7500. "Expand group tags in FILTER for the agenda.
  7501. When NO-OPERATOR is non-nil, do not add the + operator to
  7502. returned tags."
  7503. (if org-group-tags
  7504. (let ((case-fold-search t) rtn)
  7505. (mapc
  7506. (lambda (f)
  7507. (let (f0 dir)
  7508. (if (string-match "^\\([+-]\\)\\(.+\\)" f)
  7509. (setq dir (match-string 1 f) f0 (match-string 2 f))
  7510. (setq dir (if no-operator "" "+") f0 f))
  7511. (setq rtn (append (mapcar (lambda(f1) (concat dir f1))
  7512. (org-tags-expand f0 t t))
  7513. rtn))))
  7514. filter)
  7515. (reverse rtn))
  7516. filter))
  7517. (defun org-agenda-filter-apply (filter type &optional expand)
  7518. "Set FILTER as the new agenda filter and apply it.
  7519. Optional argument EXPAND can be used for the TYPE tag and will
  7520. expand the tags in the FILTER if any of the tags in FILTER are
  7521. grouptags."
  7522. ;; Deactivate `org-agenda-entry-text-mode' when filtering
  7523. (when org-agenda-entry-text-mode (org-agenda-entry-text-mode))
  7524. (setq org-agenda-filter-form (org-agenda-filter-make-matcher
  7525. filter type expand))
  7526. ;; Only set `org-agenda-filtered-by-category' to t when a unique
  7527. ;; category is used as the filter:
  7528. (setq org-agenda-filtered-by-category
  7529. (and (eq type 'category)
  7530. (not (equal (substring (car filter) 0 1) "-"))))
  7531. (org-agenda-set-mode-name)
  7532. (save-excursion
  7533. (goto-char (point-min))
  7534. (while (not (eobp))
  7535. (when (or (org-get-at-bol 'org-hd-marker)
  7536. (org-get-at-bol 'org-marker))
  7537. (let ((tags (org-get-at-bol 'tags))
  7538. (cat (org-agenda-get-category))
  7539. (txt (or (org-get-at-bol 'txt) "")))
  7540. (unless (eval org-agenda-filter-form)
  7541. (org-agenda-filter-hide-line type))))
  7542. (beginning-of-line 2)))
  7543. (when (get-char-property (point) 'invisible)
  7544. (ignore-errors (org-agenda-previous-line))))
  7545. (defun org-agenda-filter-top-headline-apply (hl &optional negative)
  7546. "Filter by top headline HL."
  7547. (org-agenda-set-mode-name)
  7548. (save-excursion
  7549. (goto-char (point-min))
  7550. (while (not (eobp))
  7551. (let* ((pos (org-get-at-bol 'org-hd-marker))
  7552. (tophl (and pos (org-find-top-headline pos))))
  7553. (when (and tophl (funcall (if negative 'identity 'not)
  7554. (string= hl tophl)))
  7555. (org-agenda-filter-hide-line 'top-headline)))
  7556. (beginning-of-line 2)))
  7557. (when (get-char-property (point) 'invisible)
  7558. (org-agenda-previous-line))
  7559. (setq org-agenda-top-headline-filter hl
  7560. org-agenda-filtered-by-top-headline t))
  7561. (defun org-agenda-filter-hide-line (type)
  7562. "If current line is TYPE, hide it in the agenda buffer."
  7563. (let* (buffer-invisibility-spec
  7564. (beg (max (point-min) (1- (point-at-bol))))
  7565. (end (point-at-eol)))
  7566. (let ((inhibit-read-only t))
  7567. (add-text-properties
  7568. beg end `(invisible org-filtered org-filter-type ,type)))))
  7569. (defun org-agenda-remove-filter (type)
  7570. "Remove filter of type TYPE from the agenda buffer."
  7571. (interactive)
  7572. (save-excursion
  7573. (goto-char (point-min))
  7574. (let ((inhibit-read-only t) pos)
  7575. (while (setq pos (text-property-any (point) (point-max)
  7576. 'org-filter-type type))
  7577. (goto-char pos)
  7578. (remove-text-properties
  7579. (point) (next-single-property-change (point) 'org-filter-type)
  7580. `(invisible org-filtered org-filter-type ,type))))
  7581. (set (intern (format "org-agenda-%s-filter" (intern-soft type))) nil)
  7582. (setq org-agenda-filter-form nil)
  7583. (org-agenda-set-mode-name)
  7584. (org-agenda-finalize)))
  7585. (defun org-agenda-filter-show-all-tag nil
  7586. (org-agenda-remove-filter 'tag))
  7587. (defun org-agenda-filter-show-all-re nil
  7588. (org-agenda-remove-filter 'regexp))
  7589. (defun org-agenda-filter-show-all-effort nil
  7590. (org-agenda-remove-filter 'effort))
  7591. (defun org-agenda-filter-show-all-cat nil
  7592. (org-agenda-remove-filter 'category))
  7593. (defun org-agenda-filter-show-all-top-filter nil
  7594. (org-agenda-remove-filter 'top-headline))
  7595. (defun org-agenda-manipulate-query-add ()
  7596. "Manipulate the query by adding a search term with positive selection.
  7597. Positive selection means the term must be matched for selection of an entry."
  7598. (interactive)
  7599. (org-agenda-manipulate-query ?\[))
  7600. (defun org-agenda-manipulate-query-subtract ()
  7601. "Manipulate the query by adding a search term with negative selection.
  7602. Negative selection means term must not be matched for selection of an entry."
  7603. (interactive)
  7604. (org-agenda-manipulate-query ?\]))
  7605. (defun org-agenda-manipulate-query-add-re ()
  7606. "Manipulate the query by adding a search regexp with positive selection.
  7607. Positive selection means the regexp must match for selection of an entry."
  7608. (interactive)
  7609. (org-agenda-manipulate-query ?\{))
  7610. (defun org-agenda-manipulate-query-subtract-re ()
  7611. "Manipulate the query by adding a search regexp with negative selection.
  7612. Negative selection means regexp must not match for selection of an entry."
  7613. (interactive)
  7614. (org-agenda-manipulate-query ?\}))
  7615. (defun org-agenda-manipulate-query (char)
  7616. (cond
  7617. ((eq org-agenda-type 'agenda)
  7618. (let ((org-agenda-include-inactive-timestamps t))
  7619. (org-agenda-redo))
  7620. (message "Display now includes inactive timestamps as well"))
  7621. ((eq org-agenda-type 'search)
  7622. (org-add-to-string
  7623. 'org-agenda-query-string
  7624. (if org-agenda-last-search-view-search-was-boolean
  7625. (cdr (assoc char '((?\[ . " +") (?\] . " -")
  7626. (?\{ . " +{}") (?\} . " -{}"))))
  7627. " "))
  7628. (setq org-agenda-redo-command
  7629. (list 'org-search-view
  7630. (car (get-text-property (min (1- (point-max)) (point))
  7631. 'org-last-args))
  7632. org-agenda-query-string
  7633. (+ (length org-agenda-query-string)
  7634. (if (member char '(?\{ ?\})) 0 1))))
  7635. (set-register org-agenda-query-register org-agenda-query-string)
  7636. (let ((org-agenda-overriding-arguments
  7637. (cdr org-agenda-redo-command)))
  7638. (org-agenda-redo)))
  7639. (t (error "Cannot manipulate query for %s-type agenda buffers"
  7640. org-agenda-type))))
  7641. (defun org-add-to-string (var string)
  7642. (set var (concat (symbol-value var) string)))
  7643. (defun org-agenda-goto-date (span)
  7644. "Jump to DATE in agenda."
  7645. (interactive "P")
  7646. (let* ((org-read-date-prefer-future
  7647. (eval org-agenda-jump-prefer-future))
  7648. (date (org-read-date))
  7649. (day (time-to-days (org-time-string-to-time date)))
  7650. (org-agenda-sticky-orig org-agenda-sticky)
  7651. (org-agenda-buffer-tmp-name (buffer-name))
  7652. (args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7653. (0-arg (or current-prefix-arg (car args)))
  7654. (2-arg (nth 2 args))
  7655. (with-hour-p (nth 4 org-agenda-redo-command))
  7656. (newcmd (list 'org-agenda-list 0-arg date
  7657. (org-agenda-span-to-ndays
  7658. 2-arg (org-time-string-to-absolute date))
  7659. with-hour-p))
  7660. (newargs (cdr newcmd))
  7661. (inhibit-read-only t)
  7662. org-agenda-sticky)
  7663. (if (not (org-agenda-check-type t 'agenda))
  7664. (error "Not available in non-agenda views")
  7665. (add-text-properties (point-min) (point-max)
  7666. `(org-redo-cmd ,newcmd org-last-args ,newargs))
  7667. (org-agenda-redo)
  7668. (goto-char (point-min))
  7669. (while (not (or (= (or (get-text-property (point) 'day) 0) day)
  7670. (save-excursion (move-beginning-of-line 2) (eobp))))
  7671. (move-beginning-of-line 2))
  7672. (setq org-agenda-sticky org-agenda-sticky-orig
  7673. org-agenda-this-buffer-is-sticky org-agenda-sticky))))
  7674. (defun org-agenda-goto-today ()
  7675. "Go to today."
  7676. (interactive)
  7677. (org-agenda-check-type t 'agenda)
  7678. (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7679. (curspan (nth 2 args))
  7680. (tdpos (text-property-any (point-min) (point-max) 'org-today t)))
  7681. (cond
  7682. (tdpos (goto-char tdpos))
  7683. ((eq org-agenda-type 'agenda)
  7684. (let* ((sd (org-agenda-compute-starting-span
  7685. (org-today) (or curspan org-agenda-span)))
  7686. (org-agenda-overriding-arguments args))
  7687. (setf (nth 1 org-agenda-overriding-arguments) sd)
  7688. (org-agenda-redo)
  7689. (org-agenda-find-same-or-today-or-agenda)))
  7690. (t (error "Cannot find today")))))
  7691. (defun org-agenda-find-same-or-today-or-agenda (&optional cnt)
  7692. (goto-char
  7693. (or (and cnt (text-property-any (point-min) (point-max) 'org-day-cnt cnt))
  7694. (text-property-any (point-min) (point-max) 'org-today t)
  7695. (text-property-any (point-min) (point-max) 'org-agenda-type 'agenda)
  7696. (and (get-text-property (min (1- (point-max)) (point)) 'org-series)
  7697. (org-agenda-backward-block))
  7698. (point-min))))
  7699. (defun org-agenda-backward-block ()
  7700. "Move backward by one agenda block."
  7701. (interactive)
  7702. (org-agenda-forward-block 'backward))
  7703. (defun org-agenda-forward-block (&optional backward)
  7704. "Move forward by one agenda block.
  7705. When optional argument BACKWARD is set, go backward."
  7706. (interactive)
  7707. (cond ((not (derived-mode-p 'org-agenda-mode))
  7708. (user-error
  7709. "Cannot execute this command outside of org-agenda-mode buffers"))
  7710. ((looking-at (if backward "\\`" "\\'"))
  7711. (message "Already at the %s block" (if backward "first" "last")))
  7712. (t (let ((pos (prog1 (point)
  7713. (ignore-errors (if backward (backward-char 1)
  7714. (move-end-of-line 1)))))
  7715. (f (if backward
  7716. 'previous-single-property-change
  7717. 'next-single-property-change))
  7718. moved dest)
  7719. (while (and (setq dest (funcall
  7720. f (point) 'org-agenda-structural-header))
  7721. (not (get-text-property
  7722. (point) 'org-agenda-structural-header)))
  7723. (setq moved t)
  7724. (goto-char dest))
  7725. (if moved (move-beginning-of-line 1)
  7726. (goto-char (if backward (point-min) (point-max)))
  7727. (move-beginning-of-line 1)
  7728. (message "No %s block" (if backward "previous" "further")))))))
  7729. (defun org-agenda-later (arg)
  7730. "Go forward in time by the current span.
  7731. With prefix ARG, go forward that many times the current span."
  7732. (interactive "p")
  7733. (org-agenda-check-type t 'agenda)
  7734. (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7735. (span (or (nth 2 args) org-agenda-current-span))
  7736. (sd (or (nth 1 args) (org-get-at-bol 'day) org-starting-day))
  7737. (greg (calendar-gregorian-from-absolute sd))
  7738. (cnt (org-get-at-bol 'org-day-cnt))
  7739. greg2)
  7740. (cond
  7741. ((numberp span)
  7742. (setq sd (+ (* span arg) sd)))
  7743. ((eq span 'day)
  7744. (setq sd (+ arg sd)))
  7745. ((eq span 'week)
  7746. (setq sd (+ (* 7 arg) sd)))
  7747. ((eq span 'fortnight)
  7748. (setq sd (+ (* 14 arg) sd)))
  7749. ((eq span 'month)
  7750. (setq greg2 (list (+ (car greg) arg) (nth 1 greg) (nth 2 greg))
  7751. sd (calendar-absolute-from-gregorian greg2))
  7752. (setcar greg2 (1+ (car greg2))))
  7753. ((eq span 'year)
  7754. (setq greg2 (list (car greg) (nth 1 greg) (+ arg (nth 2 greg)))
  7755. sd (calendar-absolute-from-gregorian greg2))
  7756. (setcar (nthcdr 2 greg2) (1+ (nth 2 greg2))))
  7757. (t
  7758. (setq sd (+ (* span arg) sd))))
  7759. (let ((org-agenda-overriding-cmd
  7760. ;; `cmd' may have been set by `org-agenda-run-series' which
  7761. ;; uses `org-agenda-overriding-cmd' to decide whether
  7762. ;; overriding is allowed for `cmd'
  7763. (get-text-property (min (1- (point-max)) (point)) 'org-series-cmd))
  7764. (org-agenda-overriding-arguments
  7765. (list (car args) sd span)))
  7766. (org-agenda-redo)
  7767. (org-agenda-find-same-or-today-or-agenda cnt))))
  7768. (defun org-agenda-earlier (arg)
  7769. "Go backward in time by the current span.
  7770. With prefix ARG, go backward that many times the current span."
  7771. (interactive "p")
  7772. (org-agenda-later (- arg)))
  7773. (defun org-agenda-view-mode-dispatch ()
  7774. "Call one of the view mode commands."
  7775. (interactive)
  7776. (org-unlogged-message
  7777. "View: [d]ay [w]eek for[t]night [m]onth [y]ear [SPC]reset [q]uit/abort
  7778. time[G]rid [[]inactive [f]ollow [l]og [L]og-all [c]lockcheck
  7779. [a]rch-trees [A]rch-files clock[R]eport include[D]iary [E]ntryText")
  7780. (pcase (read-char-exclusive)
  7781. (?\ (call-interactively 'org-agenda-reset-view))
  7782. (?d (call-interactively 'org-agenda-day-view))
  7783. (?w (call-interactively 'org-agenda-week-view))
  7784. (?t (call-interactively 'org-agenda-fortnight-view))
  7785. (?m (call-interactively 'org-agenda-month-view))
  7786. (?y (call-interactively 'org-agenda-year-view))
  7787. (?l (call-interactively 'org-agenda-log-mode))
  7788. (?L (org-agenda-log-mode '(4)))
  7789. (?c (org-agenda-log-mode 'clockcheck))
  7790. ((or ?F ?f) (call-interactively 'org-agenda-follow-mode))
  7791. (?a (call-interactively 'org-agenda-archives-mode))
  7792. (?A (org-agenda-archives-mode 'files))
  7793. ((or ?R ?r) (call-interactively 'org-agenda-clockreport-mode))
  7794. ((or ?E ?e) (call-interactively 'org-agenda-entry-text-mode))
  7795. (?G (call-interactively 'org-agenda-toggle-time-grid))
  7796. (?D (call-interactively 'org-agenda-toggle-diary))
  7797. (?\! (call-interactively 'org-agenda-toggle-deadlines))
  7798. (?\[ (let ((org-agenda-include-inactive-timestamps t))
  7799. (org-agenda-check-type t 'agenda)
  7800. (org-agenda-redo))
  7801. (message "Display now includes inactive timestamps as well"))
  7802. (?q (message "Abort"))
  7803. (key (user-error "Invalid key: %s" key))))
  7804. (defun org-agenda-reset-view ()
  7805. "Switch to default view for agenda."
  7806. (interactive)
  7807. (org-agenda-change-time-span org-agenda-span))
  7808. (defun org-agenda-day-view (&optional day-of-month)
  7809. "Switch to daily view for agenda.
  7810. With argument DAY-OF-MONTH, switch to that day of the month."
  7811. (interactive "P")
  7812. (org-agenda-change-time-span 'day day-of-month))
  7813. (defun org-agenda-week-view (&optional iso-week)
  7814. "Switch to weekly view for agenda.
  7815. With argument ISO-WEEK, switch to the corresponding ISO week.
  7816. If ISO-WEEK has more then 2 digits, only the last two encode
  7817. the week. Any digits before this encode a year. So 200712
  7818. means week 12 of year 2007. Years ranging from 70 years ago
  7819. to 30 years in the future can also be written as 2-digit years."
  7820. (interactive "P")
  7821. (org-agenda-change-time-span 'week iso-week))
  7822. (defun org-agenda-fortnight-view (&optional iso-week)
  7823. "Switch to fortnightly view for agenda.
  7824. With argument ISO-WEEK, switch to the corresponding ISO week.
  7825. If ISO-WEEK has more then 2 digits, only the last two encode
  7826. the week. Any digits before this encode a year. So 200712
  7827. means week 12 of year 2007. Years ranging from 70 years ago
  7828. to 30 years in the future can also be written as 2-digit years."
  7829. (interactive "P")
  7830. (org-agenda-change-time-span 'fortnight iso-week))
  7831. (defun org-agenda-month-view (&optional month)
  7832. "Switch to monthly view for agenda.
  7833. With argument MONTH, switch to that month. If MONTH has more
  7834. then 2 digits, only the last two encode the month. Any digits
  7835. before this encode a year. So 200712 means December year 2007.
  7836. Years ranging from 70 years ago to 30 years in the future can
  7837. also be written as 2-digit years."
  7838. (interactive "P")
  7839. (org-agenda-change-time-span 'month month))
  7840. (defun org-agenda-year-view (&optional year)
  7841. "Switch to yearly view for agenda.
  7842. With argument YEAR, switch to that year. Years ranging from 70
  7843. years ago to 30 years in the future can also be written as
  7844. 2-digit years."
  7845. (interactive "P")
  7846. (when year
  7847. (setq year (org-small-year-to-year year)))
  7848. (if (y-or-n-p "Are you sure you want to compute the agenda for an entire year? ")
  7849. (org-agenda-change-time-span 'year year)
  7850. (error "Abort")))
  7851. (defun org-agenda-change-time-span (span &optional n)
  7852. "Change the agenda view to SPAN.
  7853. SPAN may be `day', `week', `fortnight', `month', `year'."
  7854. (org-agenda-check-type t 'agenda)
  7855. (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7856. (curspan (nth 2 args)))
  7857. (when (and (not n) (equal curspan span))
  7858. (error "Viewing span is already \"%s\"" span))
  7859. (let* ((sd (or (org-get-at-bol 'day)
  7860. (nth 1 args)
  7861. org-starting-day))
  7862. (sd (org-agenda-compute-starting-span sd span n))
  7863. (org-agenda-overriding-cmd
  7864. (get-text-property (min (1- (point-max)) (point)) 'org-series-cmd))
  7865. (org-agenda-overriding-arguments
  7866. (list (car args) sd span)))
  7867. (org-agenda-redo)
  7868. (org-agenda-find-same-or-today-or-agenda))
  7869. (org-agenda-set-mode-name)
  7870. (message "Switched to %s view" span)))
  7871. (defun org-agenda-compute-starting-span (sd span &optional n)
  7872. "Compute starting date for agenda.
  7873. SPAN may be `day', `week', `fortnight', `month', `year'. The return value
  7874. is a cons cell with the starting date and the number of days,
  7875. so that the date SD will be in that range."
  7876. (let* ((greg (calendar-gregorian-from-absolute sd))
  7877. (dg (nth 1 greg))
  7878. (mg (car greg))
  7879. (yg (nth 2 greg)))
  7880. (cond
  7881. ((eq span 'day)
  7882. (when n
  7883. (setq sd (+ (calendar-absolute-from-gregorian
  7884. (list mg 1 yg))
  7885. n -1))))
  7886. ((or (eq span 'week) (eq span 'fortnight))
  7887. (let* ((nt (calendar-day-of-week
  7888. (calendar-gregorian-from-absolute sd)))
  7889. (d (if org-agenda-start-on-weekday
  7890. (- nt org-agenda-start-on-weekday)
  7891. 0))
  7892. y1)
  7893. (setq sd (- sd (+ (if (< d 0) 7 0) d)))
  7894. (when n
  7895. (require 'cal-iso)
  7896. (when (> n 99)
  7897. (setq y1 (org-small-year-to-year (/ n 100))
  7898. n (mod n 100)))
  7899. (setq sd
  7900. (calendar-iso-to-absolute
  7901. (list n 1
  7902. (or y1 (nth 2 (calendar-iso-from-absolute sd)))))))))
  7903. ((eq span 'month)
  7904. (let (y1)
  7905. (when (and n (> n 99))
  7906. (setq y1 (org-small-year-to-year (/ n 100))
  7907. n (mod n 100)))
  7908. (setq sd (calendar-absolute-from-gregorian
  7909. (list (or n mg) 1 (or y1 yg))))))
  7910. ((eq span 'year)
  7911. (setq sd (calendar-absolute-from-gregorian
  7912. (list 1 1 (or n yg))))))
  7913. sd))
  7914. (defun org-agenda-next-date-line (&optional arg)
  7915. "Jump to the next line indicating a date in agenda buffer."
  7916. (interactive "p")
  7917. (org-agenda-check-type t 'agenda)
  7918. (beginning-of-line 1)
  7919. ;; This does not work if user makes date format that starts with a blank
  7920. (when (looking-at-p "^\\S-") (forward-char 1))
  7921. (unless (re-search-forward "^\\S-" nil t arg)
  7922. (backward-char 1)
  7923. (error "No next date after this line in this buffer"))
  7924. (goto-char (match-beginning 0)))
  7925. (defun org-agenda-previous-date-line (&optional arg)
  7926. "Jump to the previous line indicating a date in agenda buffer."
  7927. (interactive "p")
  7928. (org-agenda-check-type t 'agenda)
  7929. (beginning-of-line 1)
  7930. (unless (re-search-backward "^\\S-" nil t arg)
  7931. (error "No previous date before this line in this buffer")))
  7932. ;; Initialize the highlight
  7933. (defvar org-hl (make-overlay 1 1))
  7934. (overlay-put org-hl 'face 'highlight)
  7935. (defun org-highlight (begin end &optional buffer)
  7936. "Highlight a region with overlay."
  7937. (move-overlay org-hl begin end (or buffer (current-buffer))))
  7938. (defun org-unhighlight ()
  7939. "Detach overlay INDEX."
  7940. (delete-overlay org-hl))
  7941. (defun org-unhighlight-once ()
  7942. "Remove the highlight from its position, and this function from the hook."
  7943. (remove-hook 'pre-command-hook 'org-unhighlight-once)
  7944. (org-unhighlight))
  7945. (defvar org-agenda-pre-follow-window-conf nil)
  7946. (defun org-agenda-follow-mode ()
  7947. "Toggle follow mode in an agenda buffer."
  7948. (interactive)
  7949. (unless org-agenda-follow-mode
  7950. (setq org-agenda-pre-follow-window-conf
  7951. (current-window-configuration)))
  7952. (setq org-agenda-follow-mode (not org-agenda-follow-mode))
  7953. (unless org-agenda-follow-mode
  7954. (set-window-configuration org-agenda-pre-follow-window-conf))
  7955. (org-agenda-set-mode-name)
  7956. (org-agenda-do-context-action)
  7957. (message "Follow mode is %s"
  7958. (if org-agenda-follow-mode "on" "off")))
  7959. (defun org-agenda-entry-text-mode (&optional arg)
  7960. "Toggle entry text mode in an agenda buffer."
  7961. (interactive "P")
  7962. (if (or org-agenda-tag-filter
  7963. org-agenda-category-filter
  7964. org-agenda-regexp-filter
  7965. org-agenda-top-headline-filter)
  7966. (user-error "Can't show entry text in filtered views")
  7967. (setq org-agenda-entry-text-mode (or (integerp arg)
  7968. (not org-agenda-entry-text-mode)))
  7969. (org-agenda-entry-text-hide)
  7970. (and org-agenda-entry-text-mode
  7971. (let ((org-agenda-entry-text-maxlines
  7972. (if (integerp arg) arg org-agenda-entry-text-maxlines)))
  7973. (org-agenda-entry-text-show)))
  7974. (org-agenda-set-mode-name)
  7975. (message "Entry text mode is %s%s"
  7976. (if org-agenda-entry-text-mode "on" "off")
  7977. (if (not org-agenda-entry-text-mode) ""
  7978. (format " (maximum number of lines is %d)"
  7979. (if (integerp arg) arg org-agenda-entry-text-maxlines))))))
  7980. (defun org-agenda-clockreport-mode ()
  7981. "Toggle clocktable mode in an agenda buffer."
  7982. (interactive)
  7983. (org-agenda-check-type t 'agenda)
  7984. (setq org-agenda-clockreport-mode (not org-agenda-clockreport-mode))
  7985. (org-agenda-set-mode-name)
  7986. (org-agenda-redo)
  7987. (message "Clocktable mode is %s"
  7988. (if org-agenda-clockreport-mode "on" "off")))
  7989. (defun org-agenda-log-mode (&optional special)
  7990. "Toggle log mode in an agenda buffer.
  7991. With argument SPECIAL, show all possible log items, not only the ones
  7992. configured in `org-agenda-log-mode-items'.
  7993. With a `\\[universal-argument] \\[universal-argument]' prefix, show *only* \
  7994. log items, nothing else."
  7995. (interactive "P")
  7996. (org-agenda-check-type t 'agenda)
  7997. (setq org-agenda-show-log
  7998. (cond
  7999. ((equal special '(16)) 'only)
  8000. ((eq special 'clockcheck)
  8001. (if (eq org-agenda-show-log 'clockcheck)
  8002. nil 'clockcheck))
  8003. (special '(closed clock state))
  8004. (t (not org-agenda-show-log))))
  8005. (org-agenda-set-mode-name)
  8006. (org-agenda-redo)
  8007. (message "Log mode is %s" (if org-agenda-show-log "on" "off")))
  8008. (defun org-agenda-archives-mode (&optional with-files)
  8009. "Toggle inclusion of items in trees marked with :ARCHIVE:.
  8010. When called with a prefix argument, include all archive files as well."
  8011. (interactive "P")
  8012. (setq org-agenda-archives-mode
  8013. (if with-files t (if org-agenda-archives-mode nil 'trees)))
  8014. (org-agenda-set-mode-name)
  8015. (org-agenda-redo)
  8016. (message
  8017. "%s"
  8018. (cond
  8019. ((eq org-agenda-archives-mode nil)
  8020. "No archives are included")
  8021. ((eq org-agenda-archives-mode 'trees)
  8022. (format "Trees with :%s: tag are included" org-archive-tag))
  8023. ((eq org-agenda-archives-mode t)
  8024. (format "Trees with :%s: tag and all active archive files are included"
  8025. org-archive-tag)))))
  8026. (defun org-agenda-toggle-diary ()
  8027. "Toggle diary inclusion in an agenda buffer."
  8028. (interactive)
  8029. (org-agenda-check-type t 'agenda)
  8030. (setq org-agenda-include-diary (not org-agenda-include-diary))
  8031. (org-agenda-redo)
  8032. (org-agenda-set-mode-name)
  8033. (message "Diary inclusion turned %s"
  8034. (if org-agenda-include-diary "on" "off")))
  8035. (defun org-agenda-toggle-deadlines ()
  8036. "Toggle inclusion of entries with a deadline in an agenda buffer."
  8037. (interactive)
  8038. (org-agenda-check-type t 'agenda)
  8039. (setq org-agenda-include-deadlines (not org-agenda-include-deadlines))
  8040. (org-agenda-redo)
  8041. (org-agenda-set-mode-name)
  8042. (message "Deadlines inclusion turned %s"
  8043. (if org-agenda-include-deadlines "on" "off")))
  8044. (defun org-agenda-toggle-time-grid ()
  8045. "Toggle time grid in an agenda buffer."
  8046. (interactive)
  8047. (org-agenda-check-type t 'agenda)
  8048. (setq org-agenda-use-time-grid (not org-agenda-use-time-grid))
  8049. (org-agenda-redo)
  8050. (org-agenda-set-mode-name)
  8051. (message "Time-grid turned %s"
  8052. (if org-agenda-use-time-grid "on" "off")))
  8053. (defun org-agenda-set-mode-name ()
  8054. "Set the mode name to indicate all the small mode settings."
  8055. (setq mode-name
  8056. (list "Org-Agenda"
  8057. (if (get 'org-agenda-files 'org-restrict) " []" "")
  8058. " "
  8059. '(:eval (org-agenda-span-name org-agenda-current-span))
  8060. (if org-agenda-follow-mode " Follow" "")
  8061. (if org-agenda-entry-text-mode " ETxt" "")
  8062. (if org-agenda-include-diary " Diary" "")
  8063. (if org-agenda-include-deadlines " Ddl" "")
  8064. (if org-agenda-use-time-grid " Grid" "")
  8065. (if (and (boundp 'org-habit-show-habits)
  8066. org-habit-show-habits) " Habit" "")
  8067. (cond
  8068. ((consp org-agenda-show-log) " LogAll")
  8069. ((eq org-agenda-show-log 'clockcheck) " ClkCk")
  8070. (org-agenda-show-log " Log")
  8071. (t ""))
  8072. (if (org-agenda-filter-any) " " "")
  8073. (if (or org-agenda-category-filter
  8074. (get 'org-agenda-category-filter :preset-filter))
  8075. '(:eval (propertize
  8076. (concat "["
  8077. (mapconcat
  8078. 'identity
  8079. (append
  8080. (get 'org-agenda-category-filter :preset-filter)
  8081. org-agenda-category-filter)
  8082. "")
  8083. "]")
  8084. 'face 'org-agenda-filter-category
  8085. 'help-echo "Category used in filtering")) "")
  8086. (if (or org-agenda-tag-filter
  8087. (get 'org-agenda-tag-filter :preset-filter))
  8088. '(:eval (propertize
  8089. (concat (mapconcat
  8090. 'identity
  8091. (append
  8092. (get 'org-agenda-tag-filter :preset-filter)
  8093. org-agenda-tag-filter)
  8094. ""))
  8095. 'face 'org-agenda-filter-tags
  8096. 'help-echo "Tags used in filtering")) "")
  8097. (if (or org-agenda-effort-filter
  8098. (get 'org-agenda-effort-filter :preset-filter))
  8099. '(:eval (propertize
  8100. (concat (mapconcat
  8101. 'identity
  8102. (append
  8103. (get 'org-agenda-effort-filter :preset-filter)
  8104. org-agenda-effort-filter)
  8105. ""))
  8106. 'face 'org-agenda-filter-effort
  8107. 'help-echo "Effort conditions used in filtering")) "")
  8108. (if (or org-agenda-regexp-filter
  8109. (get 'org-agenda-regexp-filter :preset-filter))
  8110. '(:eval (propertize
  8111. (concat (mapconcat
  8112. (lambda (x) (concat (substring x 0 1) "/" (substring x 1) "/"))
  8113. (append
  8114. (get 'org-agenda-regexp-filter :preset-filter)
  8115. org-agenda-regexp-filter)
  8116. ""))
  8117. 'face 'org-agenda-filter-regexp
  8118. 'help-echo "Regexp used in filtering")) "")
  8119. (if org-agenda-archives-mode
  8120. (if (eq org-agenda-archives-mode t)
  8121. " Archives"
  8122. (format " :%s:" org-archive-tag))
  8123. "")
  8124. (if org-agenda-clockreport-mode " Clock" "")))
  8125. (force-mode-line-update))
  8126. (defun org-agenda-update-agenda-type ()
  8127. "Update the agenda type after each command."
  8128. (setq org-agenda-type
  8129. (or (get-text-property (point) 'org-agenda-type)
  8130. (get-text-property (max (point-min) (1- (point))) 'org-agenda-type))))
  8131. (defun org-agenda-next-line ()
  8132. "Move cursor to the next line, and show if follow mode is active."
  8133. (interactive)
  8134. (call-interactively 'next-line)
  8135. (org-agenda-do-context-action))
  8136. (defun org-agenda-previous-line ()
  8137. "Move cursor to the previous line, and show if follow-mode is active."
  8138. (interactive)
  8139. (call-interactively 'previous-line)
  8140. (org-agenda-do-context-action))
  8141. (defun org-agenda-next-item (n)
  8142. "Move cursor to next agenda item."
  8143. (interactive "p")
  8144. (let ((col (current-column)))
  8145. (dotimes (c n)
  8146. (when (next-single-property-change (point-at-eol) 'org-marker)
  8147. (move-end-of-line 1)
  8148. (goto-char (next-single-property-change (point) 'org-marker))))
  8149. (org-move-to-column col))
  8150. (org-agenda-do-context-action))
  8151. (defun org-agenda-previous-item (n)
  8152. "Move cursor to next agenda item."
  8153. (interactive "p")
  8154. (dotimes (c n)
  8155. (let ((col (current-column))
  8156. (goto (save-excursion
  8157. (move-end-of-line 0)
  8158. (previous-single-property-change (point) 'org-marker))))
  8159. (when goto (goto-char goto))
  8160. (org-move-to-column col)))
  8161. (org-agenda-do-context-action))
  8162. (defun org-agenda-do-context-action ()
  8163. "Show outline path and, maybe, follow mode window."
  8164. (let ((m (org-get-at-bol 'org-marker)))
  8165. (when (and (markerp m) (marker-buffer m))
  8166. (and org-agenda-follow-mode
  8167. (if org-agenda-follow-indirect
  8168. (org-agenda-tree-to-indirect-buffer nil)
  8169. (org-agenda-show)))
  8170. (and org-agenda-show-outline-path
  8171. (org-with-point-at m (org-display-outline-path t))))))
  8172. (defun org-agenda-show-tags ()
  8173. "Show the tags applicable to the current item."
  8174. (interactive)
  8175. (let* ((tags (org-get-at-bol 'tags)))
  8176. (if tags
  8177. (message "Tags are :%s:"
  8178. (org-no-properties (mapconcat 'identity tags ":")))
  8179. (message "No tags associated with this line"))))
  8180. (defun org-agenda-goto (&optional highlight)
  8181. "Go to the entry at point in the corresponding Org file."
  8182. (interactive)
  8183. (let* ((marker (or (org-get-at-bol 'org-marker)
  8184. (org-agenda-error)))
  8185. (buffer (marker-buffer marker))
  8186. (pos (marker-position marker)))
  8187. ;; FIXME: use `org-switch-to-buffer-other-window'?
  8188. (switch-to-buffer-other-window buffer)
  8189. (widen)
  8190. (push-mark)
  8191. (goto-char pos)
  8192. (when (derived-mode-p 'org-mode)
  8193. (org-show-context 'agenda)
  8194. (recenter (/ (window-height) 2))
  8195. (org-back-to-heading t)
  8196. (let ((case-fold-search nil))
  8197. (when (re-search-forward org-complex-heading-regexp nil t)
  8198. (goto-char (match-beginning 4)))))
  8199. (run-hooks 'org-agenda-after-show-hook)
  8200. (and highlight (org-highlight (point-at-bol) (point-at-eol)))))
  8201. (defvar org-agenda-after-show-hook nil
  8202. "Normal hook run after an item has been shown from the agenda.
  8203. Point is in the buffer where the item originated.")
  8204. ;; Defined later in org-agenda.el
  8205. (defvar org-agenda-loop-over-headlines-in-active-region nil)
  8206. (defun org-agenda-do-in-region (beg end cmd &optional arg force-arg delete)
  8207. "Between region BEG and END, call agenda command CMD.
  8208. When optional argument ARG is non-nil or FORCE-ARG is `t', pass
  8209. ARG to CMD. When optional argument DELETE is non-nil, assume CMD
  8210. deletes the agenda entry and don't move to the next entry."
  8211. (save-excursion
  8212. (goto-char beg)
  8213. (let ((mend (move-marker (make-marker) end))
  8214. (all (eq org-agenda-loop-over-headlines-in-active-region t))
  8215. (match (and (stringp org-agenda-loop-over-headlines-in-active-region)
  8216. org-agenda-loop-over-headlines-in-active-region))
  8217. (level (and (eq org-agenda-loop-over-headlines-in-active-region 'start-level)
  8218. (org-get-at-bol 'level))))
  8219. (while (< (point) mend)
  8220. (let ((ov (make-overlay (point) (point-at-eol))))
  8221. (if (not (or all
  8222. (and match (looking-at-p match))
  8223. (eq level (org-get-at-bol 'level))))
  8224. (org-agenda-next-item 1)
  8225. (overlay-put ov 'face 'region)
  8226. (if (or arg force-arg) (funcall cmd arg) (funcall cmd))
  8227. (when (not delete) (org-agenda-next-item 1))
  8228. (delete-overlay ov)))))))
  8229. ;; org-agenda-[schedule,deadline,date-prompt,todo,[toggle]archive*,
  8230. ;; kill,set-property,set-effort] commands may loop over agenda
  8231. ;; entries. Commands `org-agenda-set-tags' and `org-agenda-bulk-mark'
  8232. ;; use their own mechanisms on active regions.
  8233. (defmacro org-agenda-maybe-loop (cmd arg force-arg delete &rest body)
  8234. "Maybe loop over agenda entries and perform CMD.
  8235. Pass ARG, FORCE-ARG, DELETE and BODY to `org-agenda-do-in-region'."
  8236. (declare (debug t))
  8237. `(if (and (called-interactively-p 'any)
  8238. org-agenda-loop-over-headlines-in-active-region
  8239. (org-region-active-p))
  8240. (org-agenda-do-in-region
  8241. (region-beginning) (region-end) ,cmd ,arg ,force-arg ,delete)
  8242. ,@body))
  8243. (defun org-agenda-kill ()
  8244. "Kill the entry or subtree belonging to the current agenda entry."
  8245. (interactive)
  8246. (or (eq major-mode 'org-agenda-mode) (user-error "Not in agenda"))
  8247. (org-agenda-maybe-loop
  8248. #'org-agenda-kill nil nil t
  8249. (let* ((bufname-orig (buffer-name))
  8250. (marker (or (org-get-at-bol 'org-marker)
  8251. (org-agenda-error)))
  8252. (buffer (marker-buffer marker))
  8253. (pos (marker-position marker))
  8254. (type (org-get-at-bol 'type))
  8255. dbeg dend (n 0))
  8256. (org-with-remote-undo buffer
  8257. (with-current-buffer buffer
  8258. (save-excursion
  8259. (goto-char pos)
  8260. (if (and (derived-mode-p 'org-mode) (not (member type '("sexp"))))
  8261. (setq dbeg (progn (org-back-to-heading t) (point))
  8262. dend (org-end-of-subtree t t))
  8263. (setq dbeg (point-at-bol)
  8264. dend (min (point-max) (1+ (point-at-eol)))))
  8265. (goto-char dbeg)
  8266. (while (re-search-forward "^[ \t]*\\S-" dend t) (setq n (1+ n)))))
  8267. (when (or (eq t org-agenda-confirm-kill)
  8268. (and (numberp org-agenda-confirm-kill)
  8269. (> n org-agenda-confirm-kill)))
  8270. (let ((win-conf (current-window-configuration)))
  8271. (unwind-protect
  8272. (and
  8273. (prog2
  8274. (org-agenda-tree-to-indirect-buffer nil)
  8275. (not (y-or-n-p
  8276. (format "Delete entry with %d lines in buffer \"%s\"? "
  8277. n (buffer-name buffer))))
  8278. (kill-buffer org-last-indirect-buffer))
  8279. (error "Abort"))
  8280. (set-window-configuration win-conf))))
  8281. (let ((org-agenda-buffer-name bufname-orig))
  8282. (org-remove-subtree-entries-from-agenda buffer dbeg dend))
  8283. (with-current-buffer buffer (delete-region dbeg dend))
  8284. (message "Agenda item and source killed")))))
  8285. (defvar org-archive-default-command) ; defined in org-archive.el
  8286. (defun org-agenda-archive-default ()
  8287. "Archive the entry or subtree belonging to the current agenda entry."
  8288. (interactive)
  8289. (require 'org-archive)
  8290. (funcall-interactively
  8291. #'org-agenda-archive-with org-archive-default-command))
  8292. (defun org-agenda-archive-default-with-confirmation ()
  8293. "Archive the entry or subtree belonging to the current agenda entry."
  8294. (interactive)
  8295. (require 'org-archive)
  8296. (funcall-interactively
  8297. #'org-agenda-archive-with org-archive-default-command 'confirm))
  8298. (defun org-agenda-archive ()
  8299. "Archive the entry or subtree belonging to the current agenda entry."
  8300. (interactive)
  8301. (funcall-interactively
  8302. #'org-agenda-archive-with 'org-archive-subtree))
  8303. (defun org-agenda-archive-to-archive-sibling ()
  8304. "Move the entry to the archive sibling."
  8305. (interactive)
  8306. (funcall-interactively
  8307. #'org-agenda-archive-with 'org-archive-to-archive-sibling))
  8308. (defun org-agenda-archive-with (cmd &optional confirm)
  8309. "Move the entry to the archive sibling."
  8310. (interactive)
  8311. (or (eq major-mode 'org-agenda-mode) (user-error "Not in agenda"))
  8312. (org-agenda-maybe-loop
  8313. #'org-agenda-archive-with cmd nil t
  8314. (let* ((bufname-orig (buffer-name))
  8315. (marker (or (org-get-at-bol 'org-marker)
  8316. (org-agenda-error)))
  8317. (buffer (marker-buffer marker))
  8318. (pos (marker-position marker)))
  8319. (org-with-remote-undo buffer
  8320. (with-current-buffer buffer
  8321. (if (derived-mode-p 'org-mode)
  8322. (if (and confirm
  8323. (not (y-or-n-p "Archive this subtree or entry? ")))
  8324. (error "Abort")
  8325. (save-window-excursion
  8326. (goto-char pos)
  8327. (let ((org-agenda-buffer-name bufname-orig))
  8328. (org-remove-subtree-entries-from-agenda))
  8329. (org-back-to-heading t)
  8330. (let ((org-archive-from-agenda t))
  8331. (funcall cmd))))
  8332. (error "Archiving works only in Org files")))))))
  8333. (defun org-remove-subtree-entries-from-agenda (&optional buf beg end)
  8334. "Remove all lines in the agenda that correspond to a given subtree.
  8335. The subtree is the one in buffer BUF, starting at BEG and ending at END.
  8336. If this information is not given, the function uses the tree at point."
  8337. (let ((buf (or buf (current-buffer))) m p)
  8338. (save-excursion
  8339. (unless (and beg end)
  8340. (org-back-to-heading t)
  8341. (setq beg (point))
  8342. (org-end-of-subtree t)
  8343. (setq end (point)))
  8344. (set-buffer (get-buffer org-agenda-buffer-name))
  8345. (save-excursion
  8346. (goto-char (point-max))
  8347. (beginning-of-line 1)
  8348. (while (not (bobp))
  8349. (when (and (setq m (org-get-at-bol 'org-marker))
  8350. (equal buf (marker-buffer m))
  8351. (setq p (marker-position m))
  8352. (>= p beg)
  8353. (< p end))
  8354. (let ((inhibit-read-only t))
  8355. (delete-region (point-at-bol) (1+ (point-at-eol)))))
  8356. (beginning-of-line 0))))))
  8357. (defun org-agenda-refile (&optional goto rfloc no-update)
  8358. "Refile the item at point.
  8359. When called with `\\[universal-argument] \\[universal-argument]', \
  8360. go to the location of the last
  8361. refiled item.
  8362. When called with `\\[universal-argument] \\[universal-argument] \
  8363. \\[universal-argument]' prefix or when GOTO is 0, clear
  8364. the refile cache.
  8365. RFLOC can be a refile location obtained in a different way.
  8366. When NO-UPDATE is non-nil, don't redo the agenda buffer."
  8367. (interactive "P")
  8368. (cond
  8369. ((member goto '(0 (64)))
  8370. (org-refile-cache-clear))
  8371. ((equal goto '(16))
  8372. (org-refile-goto-last-stored))
  8373. (t
  8374. (let* ((buffer-orig (buffer-name))
  8375. (marker (or (org-get-at-bol 'org-hd-marker)
  8376. (org-agenda-error)))
  8377. (buffer (marker-buffer marker))
  8378. (pos (marker-position marker))
  8379. (rfloc (or rfloc
  8380. (org-refile-get-location
  8381. (if goto "Goto" "Refile to") buffer
  8382. org-refile-allow-creating-parent-nodes))))
  8383. (with-current-buffer buffer
  8384. (org-with-wide-buffer
  8385. (goto-char marker)
  8386. (let ((org-agenda-buffer-name buffer-orig))
  8387. (org-remove-subtree-entries-from-agenda))
  8388. (org-refile goto buffer rfloc))))
  8389. (unless no-update (org-agenda-redo)))))
  8390. (defun org-agenda-open-link (&optional arg)
  8391. "Open the link(s) in the current entry, if any.
  8392. This looks for a link in the displayed line in the agenda.
  8393. It also looks at the text of the entry itself."
  8394. (interactive "P")
  8395. (let* ((marker (or (org-get-at-bol 'org-hd-marker)
  8396. (org-get-at-bol 'org-marker)))
  8397. (buffer (and marker (marker-buffer marker)))
  8398. (prefix (buffer-substring (point-at-bol) (point-at-eol)))
  8399. (lkall (and buffer (org-offer-links-in-entry
  8400. buffer marker arg prefix)))
  8401. (lk0 (car lkall))
  8402. (lk (if (stringp lk0) (list lk0) lk0))
  8403. (lkend (cdr lkall))
  8404. trg)
  8405. (cond
  8406. ((and buffer lk)
  8407. (mapcar (lambda(l)
  8408. (with-current-buffer buffer
  8409. (setq trg (and (string-match org-link-bracket-re l)
  8410. (match-string 1 l)))
  8411. (if (or (not trg) (string-match org-link-any-re trg))
  8412. ;; Don't use `org-with-wide-buffer' here as
  8413. ;; opening the link may result in moving the point
  8414. (save-restriction
  8415. (widen)
  8416. (goto-char marker)
  8417. (when (search-forward l nil lkend)
  8418. (goto-char (match-beginning 0))
  8419. (org-open-at-point)))
  8420. ;; This is an internal link, widen the buffer
  8421. ;; FIXME: use `org-switch-to-buffer-other-window'?
  8422. (switch-to-buffer-other-window buffer)
  8423. (widen)
  8424. (goto-char marker)
  8425. (when (search-forward l nil lkend)
  8426. (goto-char (match-beginning 0))
  8427. (org-open-at-point)))))
  8428. lk))
  8429. ((or (org-in-regexp (concat "\\(" org-link-bracket-re "\\)"))
  8430. (save-excursion
  8431. (beginning-of-line 1)
  8432. (looking-at (concat ".*?\\(" org-link-bracket-re "\\)"))))
  8433. (org-link-open-from-string (match-string 1)))
  8434. (t (message "No link to open here")))))
  8435. (defun org-agenda-copy-local-variable (var)
  8436. "Get a variable from a referenced buffer and install it here."
  8437. (let ((m (org-get-at-bol 'org-marker)))
  8438. (when (and m (buffer-live-p (marker-buffer m)))
  8439. (set (make-local-variable var)
  8440. (with-current-buffer (marker-buffer m)
  8441. (symbol-value var))))))
  8442. (defun org-agenda-switch-to (&optional delete-other-windows)
  8443. "Go to the Org mode file which contains the item at point.
  8444. When optional argument DELETE-OTHER-WINDOWS is non-nil, the
  8445. displayed Org file fills the frame."
  8446. (interactive)
  8447. (if (and org-return-follows-link
  8448. (not (org-get-at-bol 'org-marker))
  8449. (org-in-regexp org-link-bracket-re))
  8450. (org-link-open-from-string (match-string 0))
  8451. (let* ((marker (or (org-get-at-bol 'org-marker)
  8452. (org-agenda-error)))
  8453. (buffer (marker-buffer marker))
  8454. (pos (marker-position marker)))
  8455. (unless buffer (user-error "Trying to switch to non-existent buffer"))
  8456. (pop-to-buffer-same-window buffer)
  8457. (when delete-other-windows (delete-other-windows))
  8458. (widen)
  8459. (goto-char pos)
  8460. (when (derived-mode-p 'org-mode)
  8461. (org-show-context 'agenda)
  8462. (run-hooks 'org-agenda-after-show-hook)))))
  8463. (defun org-agenda-goto-mouse (ev)
  8464. "Go to the Org file which contains the item at the mouse click."
  8465. (interactive "e")
  8466. (mouse-set-point ev)
  8467. (org-agenda-goto))
  8468. (defun org-agenda-show (&optional full-entry)
  8469. "Display the Org file which contains the item at point.
  8470. With prefix argument FULL-ENTRY, make the entire entry visible
  8471. if it was hidden in the outline."
  8472. (interactive "P")
  8473. (let ((win (selected-window)))
  8474. (org-agenda-goto t)
  8475. (when full-entry (org-show-entry))
  8476. (select-window win)))
  8477. (defvar org-agenda-show-window nil)
  8478. (defun org-agenda-show-and-scroll-up (&optional arg)
  8479. "Display the Org file which contains the item at point.
  8480. When called repeatedly, scroll the window that is displaying the buffer.
  8481. With a `\\[universal-argument]' prefix argument, display the item, but \
  8482. fold drawers."
  8483. (interactive "P")
  8484. (let ((win (selected-window)))
  8485. (if (and (window-live-p org-agenda-show-window)
  8486. (eq this-command last-command))
  8487. (progn
  8488. (select-window org-agenda-show-window)
  8489. (ignore-errors (scroll-up)))
  8490. (org-agenda-goto t)
  8491. (org-show-entry)
  8492. (if arg (org-cycle-hide-drawers 'children)
  8493. (org-with-wide-buffer
  8494. (narrow-to-region (org-entry-beginning-position)
  8495. (org-entry-end-position))
  8496. (org-show-all '(drawers))))
  8497. (setq org-agenda-show-window (selected-window)))
  8498. (select-window win)))
  8499. (defun org-agenda-show-scroll-down ()
  8500. "Scroll down the window showing the agenda."
  8501. (interactive)
  8502. (let ((win (selected-window)))
  8503. (when (window-live-p org-agenda-show-window)
  8504. (select-window org-agenda-show-window)
  8505. (ignore-errors (scroll-down))
  8506. (select-window win))))
  8507. (defun org-agenda-show-1 (&optional more)
  8508. "Display the Org file which contains the item at point.
  8509. The prefix arg selects the amount of information to display:
  8510. 0 hide the subtree
  8511. 1 just show the entry according to defaults.
  8512. 2 show the children view
  8513. 3 show the subtree view
  8514. 4 show the entire subtree and any drawers
  8515. With prefix argument FULL-ENTRY, make the entire entry visible
  8516. if it was hidden in the outline."
  8517. (interactive "p")
  8518. (let ((win (selected-window)))
  8519. (org-agenda-goto t)
  8520. (org-back-to-heading)
  8521. (set-window-start (selected-window) (point-at-bol))
  8522. (cond
  8523. ((= more 0)
  8524. (org-flag-subtree t)
  8525. (save-excursion
  8526. (org-back-to-heading)
  8527. (run-hook-with-args 'org-cycle-hook 'folded))
  8528. (message "Remote: FOLDED"))
  8529. ((and (called-interactively-p 'any) (= more 1))
  8530. (message "Remote: show with default settings"))
  8531. ((= more 2)
  8532. (outline-show-entry)
  8533. (org-show-children)
  8534. (save-excursion
  8535. (org-back-to-heading)
  8536. (run-hook-with-args 'org-cycle-hook 'children))
  8537. (message "Remote: CHILDREN"))
  8538. ((= more 3)
  8539. (outline-show-subtree)
  8540. (save-excursion
  8541. (org-back-to-heading)
  8542. (run-hook-with-args 'org-cycle-hook 'subtree))
  8543. (message "Remote: SUBTREE"))
  8544. ((> more 3)
  8545. (outline-show-subtree)
  8546. (message "Remote: SUBTREE AND ALL DRAWERS")))
  8547. (select-window win)))
  8548. (defvar org-agenda-cycle-counter nil)
  8549. (defun org-agenda-cycle-show (&optional n)
  8550. "Show the current entry in another window, with default settings.
  8551. Default settings are taken from `org-show-context-detail'. When
  8552. use repeatedly in immediate succession, the remote entry will
  8553. cycle through visibility
  8554. children -> subtree -> folded
  8555. When called with a numeric prefix arg, that arg will be passed through to
  8556. `org-agenda-show-1'. For the interpretation of that argument, see the
  8557. docstring of `org-agenda-show-1'."
  8558. (interactive "P")
  8559. (if (integerp n)
  8560. (setq org-agenda-cycle-counter n)
  8561. (if (not (eq last-command this-command))
  8562. (setq org-agenda-cycle-counter 1)
  8563. (if (equal org-agenda-cycle-counter 0)
  8564. (setq org-agenda-cycle-counter 2)
  8565. (setq org-agenda-cycle-counter (1+ org-agenda-cycle-counter))
  8566. (when (> org-agenda-cycle-counter 3)
  8567. (setq org-agenda-cycle-counter 0)))))
  8568. (org-agenda-show-1 org-agenda-cycle-counter))
  8569. (defun org-agenda-recenter (arg)
  8570. "Display the Org file which contains the item at point and recenter."
  8571. (interactive "P")
  8572. (let ((win (selected-window)))
  8573. (org-agenda-goto t)
  8574. (recenter arg)
  8575. (select-window win)))
  8576. (defun org-agenda-show-mouse (ev)
  8577. "Display the Org file which contains the item at the mouse click."
  8578. (interactive "e")
  8579. (mouse-set-point ev)
  8580. (org-agenda-show))
  8581. (defun org-agenda-check-no-diary ()
  8582. "Check if the entry is a diary link and abort if yes."
  8583. (when (org-get-at-bol 'org-agenda-diary-link)
  8584. (org-agenda-error)))
  8585. (defun org-agenda-error ()
  8586. "Throw an error when a command is not allowed in the agenda."
  8587. (user-error "Command not allowed in this line"))
  8588. (defun org-agenda-tree-to-indirect-buffer (arg)
  8589. "Show the subtree corresponding to the current entry in an indirect buffer.
  8590. This calls the command `org-tree-to-indirect-buffer' from the original buffer.
  8591. With a numerical prefix ARG, go up to this level and then take that tree.
  8592. With a negative numeric ARG, go up by this number of levels.
  8593. With a `\\[universal-argument]' prefix, make a separate frame for this tree, \
  8594. i.e. don't use
  8595. the dedicated frame."
  8596. (interactive "P")
  8597. (if current-prefix-arg
  8598. (org-agenda-do-tree-to-indirect-buffer arg)
  8599. (let ((agenda-buffer (buffer-name))
  8600. (agenda-window (selected-window))
  8601. (indirect-window
  8602. (and org-last-indirect-buffer
  8603. (get-buffer-window org-last-indirect-buffer))))
  8604. (save-window-excursion (org-agenda-do-tree-to-indirect-buffer arg))
  8605. (unless (or (eq org-indirect-buffer-display 'new-frame)
  8606. (eq org-indirect-buffer-display 'dedicated-frame))
  8607. (unwind-protect
  8608. (unless (and indirect-window (window-live-p indirect-window))
  8609. (setq indirect-window (split-window agenda-window)))
  8610. (and indirect-window (select-window indirect-window))
  8611. (switch-to-buffer org-last-indirect-buffer :norecord)
  8612. (fit-window-to-buffer indirect-window)))
  8613. (select-window (get-buffer-window agenda-buffer))
  8614. (setq org-agenda-last-indirect-buffer org-last-indirect-buffer))))
  8615. (defun org-agenda-do-tree-to-indirect-buffer (arg)
  8616. "Same as `org-agenda-tree-to-indirect-buffer' without saving window."
  8617. (org-agenda-check-no-diary)
  8618. (let* ((marker (or (org-get-at-bol 'org-marker)
  8619. (org-agenda-error)))
  8620. (buffer (marker-buffer marker))
  8621. (pos (marker-position marker)))
  8622. (with-current-buffer buffer
  8623. (save-excursion
  8624. (goto-char pos)
  8625. (org-tree-to-indirect-buffer arg)))))
  8626. (defvar org-last-heading-marker (make-marker)
  8627. "Marker pointing to the headline that last changed its TODO state
  8628. by a remote command from the agenda.")
  8629. (defun org-agenda-todo-nextset ()
  8630. "Switch TODO entry to next sequence."
  8631. (interactive)
  8632. (org-agenda-todo 'nextset))
  8633. (defun org-agenda-todo-previousset ()
  8634. "Switch TODO entry to previous sequence."
  8635. (interactive)
  8636. (org-agenda-todo 'previousset))
  8637. (defun org-agenda-todo (&optional arg)
  8638. "Cycle TODO state of line at point, also in Org file.
  8639. This changes the line at point, all other lines in the agenda referring to
  8640. the same tree node, and the headline of the tree node in the Org file."
  8641. (interactive "P")
  8642. (org-agenda-check-no-diary)
  8643. (org-agenda-maybe-loop
  8644. #'org-agenda-todo arg nil nil
  8645. (let* ((col (current-column))
  8646. (marker (or (org-get-at-bol 'org-marker)
  8647. (org-agenda-error)))
  8648. (buffer (marker-buffer marker))
  8649. (pos (marker-position marker))
  8650. (hdmarker (org-get-at-bol 'org-hd-marker))
  8651. (todayp (org-agenda-today-p (org-get-at-bol 'day)))
  8652. (inhibit-read-only t)
  8653. org-loop-over-headlines-in-active-region
  8654. org-agenda-headline-snapshot-before-repeat newhead just-one)
  8655. (org-with-remote-undo buffer
  8656. (with-current-buffer buffer
  8657. (widen)
  8658. (goto-char pos)
  8659. (org-show-context 'agenda)
  8660. (let ((current-prefix-arg arg))
  8661. (call-interactively 'org-todo))
  8662. (and (bolp) (forward-char 1))
  8663. (setq newhead (org-get-heading))
  8664. (when (and (bound-and-true-p
  8665. org-agenda-headline-snapshot-before-repeat)
  8666. (not (equal org-agenda-headline-snapshot-before-repeat
  8667. newhead))
  8668. todayp)
  8669. (setq newhead org-agenda-headline-snapshot-before-repeat
  8670. just-one t))
  8671. (save-excursion
  8672. (org-back-to-heading)
  8673. (move-marker org-last-heading-marker (point))))
  8674. (beginning-of-line 1)
  8675. (save-window-excursion
  8676. (org-agenda-change-all-lines newhead hdmarker 'fixface just-one))
  8677. (when (bound-and-true-p org-clock-out-when-done)
  8678. (string-match (concat "^" (regexp-opt org-done-keywords-for-agenda))
  8679. newhead)
  8680. (org-agenda-unmark-clocking-task))
  8681. (org-move-to-column col)
  8682. (org-agenda-mark-clocking-task)))))
  8683. (defun org-agenda-add-note (&optional arg)
  8684. "Add a time-stamped note to the entry at point."
  8685. (interactive "P")
  8686. (org-agenda-check-no-diary)
  8687. (let* ((marker (or (org-get-at-bol 'org-marker)
  8688. (org-agenda-error)))
  8689. (buffer (marker-buffer marker))
  8690. (pos (marker-position marker))
  8691. (hdmarker (org-get-at-bol 'org-hd-marker))
  8692. (inhibit-read-only t))
  8693. (with-current-buffer buffer
  8694. (widen)
  8695. (goto-char pos)
  8696. (org-show-context 'agenda)
  8697. (org-add-note))))
  8698. (defun org-agenda-change-all-lines (newhead hdmarker
  8699. &optional fixface just-this)
  8700. "Change all lines in the agenda buffer which match HDMARKER.
  8701. The new content of the line will be NEWHEAD (as modified by
  8702. `org-agenda-format-item'). HDMARKER is checked with
  8703. `equal' against all `org-hd-marker' text properties in the file.
  8704. If FIXFACE is non-nil, the face of each item is modified according to
  8705. the new TODO state.
  8706. If JUST-THIS is non-nil, change just the current line, not all.
  8707. If FORCE-TAGS is non-nil, the car of it returns the new tags."
  8708. (let* ((inhibit-read-only t)
  8709. (line (org-current-line))
  8710. (org-agenda-buffer (current-buffer))
  8711. (thetags (with-current-buffer (marker-buffer hdmarker)
  8712. (org-get-tags hdmarker)))
  8713. props m pl undone-face done-face finish new dotime level cat tags)
  8714. (save-excursion
  8715. (goto-char (point-max))
  8716. (beginning-of-line 1)
  8717. (while (not finish)
  8718. (setq finish (bobp))
  8719. (when (and (setq m (org-get-at-bol 'org-hd-marker))
  8720. (or (not just-this) (= (org-current-line) line))
  8721. (equal m hdmarker))
  8722. (setq props (text-properties-at (point))
  8723. dotime (org-get-at-bol 'dotime)
  8724. cat (org-agenda-get-category)
  8725. level (org-get-at-bol 'level)
  8726. tags thetags
  8727. new
  8728. (let ((org-prefix-format-compiled
  8729. (or (get-text-property (min (1- (point-max)) (point)) 'format)
  8730. org-prefix-format-compiled))
  8731. (extra (org-get-at-bol 'extra)))
  8732. (with-current-buffer (marker-buffer hdmarker)
  8733. (org-with-wide-buffer
  8734. (org-agenda-format-item extra newhead level cat tags dotime))))
  8735. pl (text-property-any (point-at-bol) (point-at-eol) 'org-heading t)
  8736. undone-face (org-get-at-bol 'undone-face)
  8737. done-face (org-get-at-bol 'done-face))
  8738. (beginning-of-line 1)
  8739. (cond
  8740. ((equal new "") (delete-region (point) (line-beginning-position 2)))
  8741. ((looking-at ".*")
  8742. ;; When replacing the whole line, preserve bulk mark
  8743. ;; overlay, if any.
  8744. (let ((mark (catch :overlay
  8745. (dolist (o (overlays-in (point) (+ 2 (point))))
  8746. (when (eq (overlay-get o 'type)
  8747. 'org-marked-entry-overlay)
  8748. (throw :overlay o))))))
  8749. (replace-match new t t)
  8750. (beginning-of-line)
  8751. (when mark (move-overlay mark (point) (+ 2 (point)))))
  8752. (add-text-properties (point-at-bol) (point-at-eol) props)
  8753. (when fixface
  8754. (add-text-properties
  8755. (point-at-bol) (point-at-eol)
  8756. (list 'face
  8757. (if org-last-todo-state-is-todo
  8758. undone-face done-face))))
  8759. (org-agenda-highlight-todo 'line)
  8760. (beginning-of-line 1))
  8761. (t (error "Line update did not work")))
  8762. (save-restriction
  8763. (narrow-to-region (point-at-bol) (point-at-eol))
  8764. (org-agenda-finalize)))
  8765. (beginning-of-line 0)))))
  8766. (defun org-agenda-align-tags (&optional line)
  8767. "Align all tags in agenda items to `org-agenda-tags-column'.
  8768. When optional argument LINE is non-nil, align tags only on the
  8769. current line."
  8770. (let ((inhibit-read-only t)
  8771. (org-agenda-tags-column (if (eq 'auto org-agenda-tags-column)
  8772. (- (window-text-width))
  8773. org-agenda-tags-column))
  8774. (end (and line (line-end-position)))
  8775. l c)
  8776. (save-excursion
  8777. (goto-char (if line (line-beginning-position) (point-min)))
  8778. (while (re-search-forward org-tag-group-re end t)
  8779. (add-text-properties
  8780. (match-beginning 1) (match-end 1)
  8781. (list 'face (delq nil (let ((prop (get-text-property
  8782. (match-beginning 1) 'face)))
  8783. (or (listp prop) (setq prop (list prop)))
  8784. (if (memq 'org-tag prop)
  8785. prop
  8786. (cons 'org-tag prop))))))
  8787. (setq l (string-width (match-string 1))
  8788. c (if (< org-agenda-tags-column 0)
  8789. (- (abs org-agenda-tags-column) l)
  8790. org-agenda-tags-column))
  8791. (goto-char (match-beginning 1))
  8792. (delete-region (save-excursion (skip-chars-backward " \t") (point))
  8793. (point))
  8794. (insert (org-add-props
  8795. (make-string (max 1 (- c (current-column))) ?\s)
  8796. (plist-put (copy-sequence (text-properties-at (point)))
  8797. 'face nil))))
  8798. (goto-char (point-min))
  8799. (org-font-lock-add-tag-faces (point-max)))))
  8800. (defun org-agenda-priority-up ()
  8801. "Increase the priority of line at point, also in Org file."
  8802. (interactive)
  8803. (org-agenda-priority 'up))
  8804. (defun org-agenda-priority-down ()
  8805. "Decrease the priority of line at point, also in Org file."
  8806. (interactive)
  8807. (org-agenda-priority 'down))
  8808. (defun org-agenda-priority (&optional force-direction)
  8809. "Set the priority of line at point, also in Org file.
  8810. This changes the line at point, all other lines in the agenda referring to
  8811. the same tree node, and the headline of the tree node in the Org file.
  8812. Called with a universal prefix arg, show the priority instead of setting it."
  8813. (interactive "P")
  8814. (if (equal force-direction '(4))
  8815. (org-priority-show)
  8816. (unless org-priority-enable-commands
  8817. (user-error "Priority commands are disabled"))
  8818. (org-agenda-check-no-diary)
  8819. (let* ((col (current-column))
  8820. (marker (or (org-get-at-bol 'org-marker)
  8821. (org-agenda-error)))
  8822. (hdmarker (org-get-at-bol 'org-hd-marker))
  8823. (buffer (marker-buffer hdmarker))
  8824. (pos (marker-position hdmarker))
  8825. (inhibit-read-only t)
  8826. newhead)
  8827. (org-with-remote-undo buffer
  8828. (with-current-buffer buffer
  8829. (widen)
  8830. (goto-char pos)
  8831. (org-show-context 'agenda)
  8832. (org-priority force-direction)
  8833. (end-of-line 1)
  8834. (setq newhead (org-get-heading)))
  8835. (org-agenda-change-all-lines newhead hdmarker)
  8836. (org-move-to-column col)))))
  8837. ;; FIXME: should fix the tags property of the agenda line.
  8838. (defun org-agenda-set-tags (&optional tag onoff)
  8839. "Set tags for the current headline."
  8840. (interactive)
  8841. (org-agenda-check-no-diary)
  8842. (if (and (org-region-active-p) (called-interactively-p 'any))
  8843. (call-interactively 'org-change-tag-in-region)
  8844. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8845. (org-agenda-error)))
  8846. (buffer (marker-buffer hdmarker))
  8847. (pos (marker-position hdmarker))
  8848. (inhibit-read-only t)
  8849. newhead)
  8850. (org-with-remote-undo buffer
  8851. (with-current-buffer buffer
  8852. (widen)
  8853. (goto-char pos)
  8854. (org-show-context 'agenda)
  8855. (if tag
  8856. (org-toggle-tag tag onoff)
  8857. (call-interactively #'org-set-tags-command))
  8858. (end-of-line 1)
  8859. (setq newhead (org-get-heading)))
  8860. (org-agenda-change-all-lines newhead hdmarker)
  8861. (beginning-of-line 1)))))
  8862. (defun org-agenda-set-property ()
  8863. "Set a property for the current headline."
  8864. (interactive)
  8865. (org-agenda-check-no-diary)
  8866. (org-agenda-maybe-loop
  8867. #'org-agenda-set-property nil nil nil
  8868. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8869. (org-agenda-error)))
  8870. (buffer (marker-buffer hdmarker))
  8871. (pos (marker-position hdmarker))
  8872. (inhibit-read-only t)
  8873. newhead)
  8874. (org-with-remote-undo buffer
  8875. (with-current-buffer buffer
  8876. (widen)
  8877. (goto-char pos)
  8878. (org-show-context 'agenda)
  8879. (call-interactively 'org-set-property))))))
  8880. (defun org-agenda-set-effort ()
  8881. "Set the effort property for the current headline."
  8882. (interactive)
  8883. (org-agenda-check-no-diary)
  8884. (org-agenda-maybe-loop
  8885. #'org-agenda-set-effort nil nil nil
  8886. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8887. (org-agenda-error)))
  8888. (buffer (marker-buffer hdmarker))
  8889. (pos (marker-position hdmarker))
  8890. (inhibit-read-only t)
  8891. newhead)
  8892. (org-with-remote-undo buffer
  8893. (with-current-buffer buffer
  8894. (widen)
  8895. (goto-char pos)
  8896. (org-show-context 'agenda)
  8897. (call-interactively 'org-set-effort)
  8898. (end-of-line 1)
  8899. (setq newhead (org-get-heading)))
  8900. (org-agenda-change-all-lines newhead hdmarker)))))
  8901. (defun org-agenda-toggle-archive-tag ()
  8902. "Toggle the archive tag for the current entry."
  8903. (interactive)
  8904. (org-agenda-check-no-diary)
  8905. (org-agenda-maybe-loop
  8906. #'org-agenda-toggle-archive-tag nil nil nil
  8907. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8908. (org-agenda-error)))
  8909. (buffer (marker-buffer hdmarker))
  8910. (pos (marker-position hdmarker))
  8911. (inhibit-read-only t)
  8912. newhead)
  8913. (org-with-remote-undo buffer
  8914. (with-current-buffer buffer
  8915. (widen)
  8916. (goto-char pos)
  8917. (org-show-context 'agenda)
  8918. (call-interactively 'org-toggle-archive-tag)
  8919. (end-of-line 1)
  8920. (setq newhead (org-get-heading)))
  8921. (org-agenda-change-all-lines newhead hdmarker)
  8922. (beginning-of-line 1)))))
  8923. (defun org-agenda-do-date-later (arg)
  8924. (interactive "P")
  8925. (cond
  8926. ((or (equal arg '(16))
  8927. (memq last-command
  8928. '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
  8929. (setq this-command 'org-agenda-date-later-minutes)
  8930. (org-agenda-date-later-minutes 1))
  8931. ((or (equal arg '(4))
  8932. (memq last-command
  8933. '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
  8934. (setq this-command 'org-agenda-date-later-hours)
  8935. (org-agenda-date-later-hours 1))
  8936. (t
  8937. (org-agenda-date-later (prefix-numeric-value arg)))))
  8938. (defun org-agenda-do-date-earlier (arg)
  8939. (interactive "P")
  8940. (cond
  8941. ((or (equal arg '(16))
  8942. (memq last-command
  8943. '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
  8944. (setq this-command 'org-agenda-date-earlier-minutes)
  8945. (org-agenda-date-earlier-minutes 1))
  8946. ((or (equal arg '(4))
  8947. (memq last-command
  8948. '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
  8949. (setq this-command 'org-agenda-date-earlier-hours)
  8950. (org-agenda-date-earlier-hours 1))
  8951. (t
  8952. (org-agenda-date-earlier (prefix-numeric-value arg)))))
  8953. (defun org-agenda-date-later (arg &optional what)
  8954. "Change the date of this item to ARG day(s) later."
  8955. (interactive "p")
  8956. (org-agenda-check-type t 'agenda)
  8957. (org-agenda-check-no-diary)
  8958. (let* ((marker (or (org-get-at-bol 'org-marker)
  8959. (org-agenda-error)))
  8960. (buffer (marker-buffer marker))
  8961. (pos (marker-position marker))
  8962. cdate today)
  8963. (org-with-remote-undo buffer
  8964. (with-current-buffer buffer
  8965. (widen)
  8966. (goto-char pos)
  8967. (unless (org-at-timestamp-p 'lax) (error "Cannot find time stamp"))
  8968. (when (and org-agenda-move-date-from-past-immediately-to-today
  8969. (equal arg 1)
  8970. (or (not what) (eq what 'day))
  8971. (not (save-match-data (org-at-date-range-p))))
  8972. (setq cdate (org-parse-time-string (match-string 0) 'nodefault)
  8973. cdate (calendar-absolute-from-gregorian
  8974. (list (nth 4 cdate) (nth 3 cdate) (nth 5 cdate)))
  8975. today (org-today))
  8976. (when (> today cdate)
  8977. ;; immediately shift to today
  8978. (setq arg (- today cdate))))
  8979. (org-timestamp-change arg (or what 'day))
  8980. (when (and (org-at-date-range-p)
  8981. (re-search-backward org-tr-regexp-both (point-at-bol)))
  8982. (let ((end org-last-changed-timestamp))
  8983. (org-timestamp-change arg (or what 'day))
  8984. (setq org-last-changed-timestamp
  8985. (concat org-last-changed-timestamp "--" end)))))
  8986. (org-agenda-show-new-time marker org-last-changed-timestamp))
  8987. (message "Time stamp changed to %s" org-last-changed-timestamp)))
  8988. (defun org-agenda-date-earlier (arg &optional what)
  8989. "Change the date of this item to ARG day(s) earlier."
  8990. (interactive "p")
  8991. (org-agenda-date-later (- arg) what))
  8992. (defun org-agenda-date-later-minutes (arg)
  8993. "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
  8994. (interactive "p")
  8995. (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
  8996. (org-agenda-date-later arg 'minute))
  8997. (defun org-agenda-date-earlier-minutes (arg)
  8998. "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
  8999. (interactive "p")
  9000. (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
  9001. (org-agenda-date-earlier arg 'minute))
  9002. (defun org-agenda-date-later-hours (arg)
  9003. "Change the time of this item, in hour steps."
  9004. (interactive "p")
  9005. (org-agenda-date-later arg 'hour))
  9006. (defun org-agenda-date-earlier-hours (arg)
  9007. "Change the time of this item, in hour steps."
  9008. (interactive "p")
  9009. (org-agenda-date-earlier arg 'hour))
  9010. (defun org-agenda-show-new-time (marker stamp &optional prefix)
  9011. "Show new date stamp via text properties."
  9012. ;; We use text properties to make this undoable
  9013. (let ((inhibit-read-only t))
  9014. (setq stamp (concat prefix " => " stamp " "))
  9015. (save-excursion
  9016. (goto-char (point-max))
  9017. (while (not (bobp))
  9018. (when (equal marker (org-get-at-bol 'org-marker))
  9019. (remove-text-properties (line-beginning-position)
  9020. (line-end-position)
  9021. '(display nil))
  9022. (org-move-to-column
  9023. (- (/ (window-width nil t) (window-font-width)) (length stamp)) t)
  9024. (add-text-properties
  9025. (1- (point)) (point-at-eol)
  9026. (list 'display (org-add-props stamp nil
  9027. 'face '(secondary-selection default))))
  9028. (beginning-of-line 1))
  9029. (beginning-of-line 0)))))
  9030. (defun org-agenda-date-prompt (arg)
  9031. "Change the date of this item. Date is prompted for, with default today.
  9032. The prefix ARG is passed to the `org-time-stamp' command and can therefore
  9033. be used to request time specification in the time stamp."
  9034. (interactive "P")
  9035. (org-agenda-check-type t 'agenda)
  9036. (org-agenda-check-no-diary)
  9037. (org-agenda-maybe-loop
  9038. #'org-agenda-date-prompt arg t nil
  9039. (let* ((marker (or (org-get-at-bol 'org-marker)
  9040. (org-agenda-error)))
  9041. (buffer (marker-buffer marker))
  9042. (pos (marker-position marker)))
  9043. (org-with-remote-undo buffer
  9044. (with-current-buffer buffer
  9045. (widen)
  9046. (goto-char pos)
  9047. (unless (org-at-timestamp-p 'lax) (error "Cannot find time stamp"))
  9048. (org-time-stamp arg (equal (char-after (match-beginning 0)) ?\[)))
  9049. (org-agenda-show-new-time marker org-last-changed-timestamp))
  9050. (message "Time stamp changed to %s" org-last-changed-timestamp))))
  9051. (defun org-agenda-schedule (arg &optional time)
  9052. "Schedule the item at point.
  9053. ARG is passed through to `org-schedule'."
  9054. (interactive "P")
  9055. (org-agenda-check-type t 'agenda 'todo 'tags 'search)
  9056. (org-agenda-check-no-diary)
  9057. (org-agenda-maybe-loop
  9058. #'org-agenda-schedule arg t nil
  9059. (let* ((marker (or (org-get-at-bol 'org-marker)
  9060. (org-agenda-error)))
  9061. (type (marker-insertion-type marker))
  9062. (buffer (marker-buffer marker))
  9063. (pos (marker-position marker))
  9064. ts)
  9065. (set-marker-insertion-type marker t)
  9066. (org-with-remote-undo buffer
  9067. (with-current-buffer buffer
  9068. (widen)
  9069. (goto-char pos)
  9070. (setq ts (org-schedule arg time)))
  9071. (org-agenda-show-new-time marker ts " S"))
  9072. (message "%s" ts))))
  9073. (defun org-agenda-deadline (arg &optional time)
  9074. "Schedule the item at point.
  9075. ARG is passed through to `org-deadline'."
  9076. (interactive "P")
  9077. (org-agenda-check-type t 'agenda 'todo 'tags 'search)
  9078. (org-agenda-check-no-diary)
  9079. (org-agenda-maybe-loop
  9080. #'org-agenda-deadline arg t nil
  9081. (let* ((marker (or (org-get-at-bol 'org-marker)
  9082. (org-agenda-error)))
  9083. (buffer (marker-buffer marker))
  9084. (pos (marker-position marker))
  9085. ts)
  9086. (org-with-remote-undo buffer
  9087. (with-current-buffer buffer
  9088. (widen)
  9089. (goto-char pos)
  9090. (setq ts (org-deadline arg time)))
  9091. (org-agenda-show-new-time marker ts " D"))
  9092. (message "%s" ts))))
  9093. (defun org-agenda-clock-in (&optional arg)
  9094. "Start the clock on the currently selected item."
  9095. (interactive "P")
  9096. (org-agenda-check-no-diary)
  9097. (if (equal arg '(4))
  9098. (org-clock-in arg)
  9099. (let* ((marker (or (org-get-at-bol 'org-marker)
  9100. (org-agenda-error)))
  9101. (hdmarker (or (org-get-at-bol 'org-hd-marker) marker))
  9102. (pos (marker-position marker))
  9103. (col (current-column))
  9104. newhead)
  9105. (org-with-remote-undo (marker-buffer marker)
  9106. (with-current-buffer (marker-buffer marker)
  9107. (widen)
  9108. (goto-char pos)
  9109. (org-show-context 'agenda)
  9110. (org-clock-in arg)
  9111. (setq newhead (org-get-heading)))
  9112. (org-agenda-change-all-lines newhead hdmarker))
  9113. (org-move-to-column col))))
  9114. (defun org-agenda-clock-out ()
  9115. "Stop the currently running clock."
  9116. (interactive)
  9117. (unless (marker-buffer org-clock-marker)
  9118. (user-error "No running clock"))
  9119. (let ((marker (make-marker)) (col (current-column)) newhead)
  9120. (org-with-remote-undo (marker-buffer org-clock-marker)
  9121. (with-current-buffer (marker-buffer org-clock-marker)
  9122. (org-with-wide-buffer
  9123. (goto-char org-clock-marker)
  9124. (org-back-to-heading t)
  9125. (move-marker marker (point))
  9126. (org-clock-out)
  9127. (setq newhead (org-get-heading)))))
  9128. (org-agenda-change-all-lines newhead marker)
  9129. (move-marker marker nil)
  9130. (org-move-to-column col)
  9131. (org-agenda-unmark-clocking-task)))
  9132. (defun org-agenda-clock-cancel (&optional arg)
  9133. "Cancel the currently running clock."
  9134. (interactive "P")
  9135. (unless (marker-buffer org-clock-marker)
  9136. (user-error "No running clock"))
  9137. (org-with-remote-undo (marker-buffer org-clock-marker)
  9138. (org-clock-cancel)))
  9139. (defun org-agenda-clock-goto ()
  9140. "Jump to the currently clocked in task within the agenda.
  9141. If the currently clocked in task is not listed in the agenda
  9142. buffer, display it in another window."
  9143. (interactive)
  9144. (let (pos)
  9145. (mapc (lambda (o)
  9146. (when (eq (overlay-get o 'type) 'org-agenda-clocking)
  9147. (setq pos (overlay-start o))))
  9148. (overlays-in (point-min) (point-max)))
  9149. (cond (pos (goto-char pos))
  9150. ;; If the currently clocked entry is not in the agenda
  9151. ;; buffer, we visit it in another window:
  9152. ((bound-and-true-p org-clock-current-task)
  9153. (org-switch-to-buffer-other-window (org-clock-goto)))
  9154. (t (message "No running clock, use `C-c C-x C-j' to jump to the most recent one")))))
  9155. (defun org-agenda-diary-entry-in-org-file ()
  9156. "Make a diary entry in the file `org-agenda-diary-file'."
  9157. (let (d1 d2 char (text "") dp1 dp2)
  9158. (if (equal (buffer-name) "*Calendar*")
  9159. (setq d1 (calendar-cursor-to-date t)
  9160. d2 (car calendar-mark-ring))
  9161. (setq dp1 (get-text-property (point-at-bol) 'day))
  9162. (unless dp1 (user-error "No date defined in current line"))
  9163. (setq d1 (calendar-gregorian-from-absolute dp1)
  9164. d2 (and (ignore-errors (mark))
  9165. (save-excursion
  9166. (goto-char (mark))
  9167. (setq dp2 (get-text-property (point-at-bol) 'day)))
  9168. (calendar-gregorian-from-absolute dp2))))
  9169. (message "Diary entry: [d]ay [a]nniversary [b]lock [j]ump to date tree")
  9170. (setq char (read-char-exclusive))
  9171. (cond
  9172. ((equal char ?d)
  9173. (setq text (read-string "Day entry: "))
  9174. (org-agenda-add-entry-to-org-agenda-diary-file 'day text d1)
  9175. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  9176. ((equal char ?a)
  9177. (setq d1 (list (car d1) (nth 1 d1)
  9178. (read-number (format "Reference year [%d]: " (nth 2 d1))
  9179. (nth 2 d1))))
  9180. (setq text (read-string "Anniversary (use %d to show years): "))
  9181. (org-agenda-add-entry-to-org-agenda-diary-file 'anniversary text d1)
  9182. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  9183. ((equal char ?b)
  9184. (setq text (read-string "Block entry: "))
  9185. (unless (and d1 d2 (not (equal d1 d2)))
  9186. (user-error "No block of days selected"))
  9187. (org-agenda-add-entry-to-org-agenda-diary-file 'block text d1 d2)
  9188. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  9189. ((equal char ?j)
  9190. (org-switch-to-buffer-other-window
  9191. (find-file-noselect org-agenda-diary-file))
  9192. (require 'org-datetree)
  9193. (org-datetree-find-date-create d1)
  9194. (org-reveal t))
  9195. (t (user-error "Invalid selection character `%c'" char)))))
  9196. (defcustom org-agenda-insert-diary-strategy 'date-tree
  9197. "Where in `org-agenda-diary-file' should new entries be added?
  9198. Valid values:
  9199. date-tree in the date tree, as first child of the date
  9200. date-tree-last in the date tree, as last child of the date
  9201. top-level as top-level entries at the end of the file."
  9202. :group 'org-agenda
  9203. :type '(choice
  9204. (const :tag "first in a date tree" date-tree)
  9205. (const :tag "last in a date tree" date-tree-last)
  9206. (const :tag "as top level at end of file" top-level)))
  9207. (defcustom org-agenda-insert-diary-extract-time nil
  9208. "Non-nil means extract any time specification from the diary entry."
  9209. :group 'org-agenda
  9210. :version "24.1"
  9211. :type 'boolean)
  9212. (defcustom org-agenda-bulk-mark-char ">"
  9213. "A single-character string to be used as the bulk mark."
  9214. :group 'org-agenda
  9215. :version "24.1"
  9216. :type 'string)
  9217. (defun org-agenda-add-entry-to-org-agenda-diary-file (type text &optional d1 d2)
  9218. "Add a diary entry with TYPE to `org-agenda-diary-file'.
  9219. If TEXT is not empty, it will become the headline of the new entry, and
  9220. the resulting entry will not be shown. When TEXT is empty, switch to
  9221. `org-agenda-diary-file' and let the user finish the entry there."
  9222. (let ((cw (current-window-configuration)))
  9223. (org-switch-to-buffer-other-window
  9224. (find-file-noselect org-agenda-diary-file))
  9225. (widen)
  9226. (goto-char (point-min))
  9227. (cl-case type
  9228. (anniversary
  9229. (or (re-search-forward "^\\*[ \t]+Anniversaries" nil t)
  9230. (progn
  9231. (or (org-at-heading-p t)
  9232. (progn
  9233. (outline-next-heading)
  9234. (insert "* Anniversaries\n\n")
  9235. (beginning-of-line -1)))))
  9236. (outline-next-heading)
  9237. (org-back-over-empty-lines)
  9238. (backward-char 1)
  9239. (insert "\n")
  9240. (insert (format "%%%%(org-anniversary %d %2d %2d) %s"
  9241. (nth 2 d1) (car d1) (nth 1 d1) text)))
  9242. (day
  9243. (let ((org-prefix-has-time t)
  9244. (org-agenda-time-leading-zero t)
  9245. fmt time time2)
  9246. (when org-agenda-insert-diary-extract-time
  9247. ;; Use org-agenda-format-item to parse text for a time-range and
  9248. ;; remove it. FIXME: This is a hack, we should refactor
  9249. ;; that function to make time extraction available separately
  9250. (setq fmt (org-agenda-format-item nil text nil nil nil t)
  9251. time (get-text-property 0 'time fmt)
  9252. time2 (if (> (length time) 0)
  9253. ;; split-string removes trailing ...... if
  9254. ;; no end time given. First space
  9255. ;; separates time from date.
  9256. (concat " " (car (split-string time "\\.")))
  9257. nil)
  9258. text (get-text-property 0 'txt fmt)))
  9259. (if (eq org-agenda-insert-diary-strategy 'top-level)
  9260. (org-agenda-insert-diary-as-top-level text)
  9261. (require 'org-datetree)
  9262. (org-datetree-find-date-create d1)
  9263. (org-agenda-insert-diary-make-new-entry text))
  9264. (org-insert-time-stamp (org-time-from-absolute
  9265. (calendar-absolute-from-gregorian d1))
  9266. nil nil nil nil time2))
  9267. (end-of-line 0))
  9268. ((block) ;; Wrap this in (strictly unnecessary) parens because
  9269. ;; otherwise the indentation gets confused by the
  9270. ;; special meaning of 'block
  9271. (when (> (calendar-absolute-from-gregorian d1)
  9272. (calendar-absolute-from-gregorian d2))
  9273. (setq d1 (prog1 d2 (setq d2 d1))))
  9274. (if (eq org-agenda-insert-diary-strategy 'top-level)
  9275. (org-agenda-insert-diary-as-top-level text)
  9276. (require 'org-datetree)
  9277. (org-datetree-find-date-create d1)
  9278. (org-agenda-insert-diary-make-new-entry text))
  9279. (org-insert-time-stamp (org-time-from-absolute
  9280. (calendar-absolute-from-gregorian d1)))
  9281. (insert "--")
  9282. (org-insert-time-stamp (org-time-from-absolute
  9283. (calendar-absolute-from-gregorian d2)))
  9284. (end-of-line 0)))
  9285. (if (string-match "\\S-" text)
  9286. (progn
  9287. (set-window-configuration cw)
  9288. (message "%s entry added to %s"
  9289. (capitalize (symbol-name type))
  9290. (abbreviate-file-name org-agenda-diary-file)))
  9291. (org-reveal t)
  9292. (message "Please finish entry here"))))
  9293. (defun org-agenda-insert-diary-as-top-level (text)
  9294. "Make new entry as a top-level entry at the end of the file.
  9295. Add TEXT as headline, and position the cursor in the second line so that
  9296. a timestamp can be added there."
  9297. (widen)
  9298. (goto-char (point-max))
  9299. (unless (bolp) (insert "\n"))
  9300. (org-insert-heading nil t t)
  9301. (insert text)
  9302. (org-end-of-meta-data)
  9303. (unless (bolp) (insert "\n"))
  9304. (when org-adapt-indentation (indent-to-column 2)))
  9305. (defun org-agenda-insert-diary-make-new-entry (text)
  9306. "Make a new entry with TEXT as a child of the current subtree.
  9307. Position the point in the heading's first body line so that
  9308. a timestamp can be added there."
  9309. (cond
  9310. ((eq org-agenda-insert-diary-strategy 'date-tree-last)
  9311. (end-of-line)
  9312. (org-insert-heading '(4) t)
  9313. (org-do-demote))
  9314. (t
  9315. (outline-next-heading)
  9316. (org-back-over-empty-lines)
  9317. (unless (looking-at "[ \t]*$") (save-excursion (insert "\n")))
  9318. (org-insert-heading nil t)
  9319. (org-do-demote)))
  9320. (let ((col (current-column)))
  9321. (insert text)
  9322. (org-end-of-meta-data)
  9323. ;; Ensure point is left on a blank line, at proper indentation.
  9324. (unless (bolp) (insert "\n"))
  9325. (unless (looking-at-p "^[ \t]*$") (save-excursion (insert "\n")))
  9326. (when org-adapt-indentation (indent-to-column col)))
  9327. (org-show-set-visibility 'lineage))
  9328. (defun org-agenda-diary-entry ()
  9329. "Make a diary entry, like the `i' command from the calendar.
  9330. All the standard commands work: block, weekly etc.
  9331. When `org-agenda-diary-file' points to a file,
  9332. `org-agenda-diary-entry-in-org-file' is called instead to create
  9333. entries in that Org file."
  9334. (interactive)
  9335. (if (not (eq org-agenda-diary-file 'diary-file))
  9336. (org-agenda-diary-entry-in-org-file)
  9337. (require 'diary-lib)
  9338. (let* ((char (read-char-exclusive
  9339. "Diary entry: [d]ay [w]eekly [m]onthly [y]early\
  9340. [a]nniversary [b]lock [c]yclic"))
  9341. (cmd (cdr (assoc char
  9342. '((?d . diary-insert-entry)
  9343. (?w . diary-insert-weekly-entry)
  9344. (?m . diary-insert-monthly-entry)
  9345. (?y . diary-insert-yearly-entry)
  9346. (?a . diary-insert-anniversary-entry)
  9347. (?b . diary-insert-block-entry)
  9348. (?c . diary-insert-cyclic-entry)))))
  9349. (oldf (symbol-function 'calendar-cursor-to-date))
  9350. ;; (buf (get-file-buffer (substitute-in-file-name diary-file)))
  9351. (point (point))
  9352. (mark (or (mark t) (point))))
  9353. (unless cmd
  9354. (user-error "No command associated with <%c>" char))
  9355. (unless (and (get-text-property point 'day)
  9356. (or (not (equal ?b char))
  9357. (get-text-property mark 'day)))
  9358. (user-error "Don't know which date to use for diary entry"))
  9359. ;; We implement this by hacking the `calendar-cursor-to-date' function
  9360. ;; and the `calendar-mark-ring' variable. Saves a lot of code.
  9361. (let ((calendar-mark-ring
  9362. (list (calendar-gregorian-from-absolute
  9363. (or (get-text-property mark 'day)
  9364. (get-text-property point 'day))))))
  9365. (unwind-protect
  9366. (progn
  9367. (fset 'calendar-cursor-to-date
  9368. (lambda (&optional error dummy)
  9369. (calendar-gregorian-from-absolute
  9370. (get-text-property point 'day))))
  9371. (call-interactively cmd))
  9372. (fset 'calendar-cursor-to-date oldf))))))
  9373. (defun org-agenda-execute-calendar-command (cmd)
  9374. "Execute a calendar command from the agenda with date from cursor."
  9375. (org-agenda-check-type t 'agenda)
  9376. (require 'diary-lib)
  9377. (unless (get-text-property (min (1- (point-max)) (point)) 'day)
  9378. (user-error "Don't know which date to use for the calendar command"))
  9379. (let* ((oldf (symbol-function 'calendar-cursor-to-date))
  9380. (point (point))
  9381. (date (calendar-gregorian-from-absolute
  9382. (get-text-property point 'day)))
  9383. ;; the following 2 vars are needed in the calendar
  9384. (displayed-month (car date))
  9385. (displayed-year (nth 2 date)))
  9386. (unwind-protect
  9387. (progn
  9388. (fset 'calendar-cursor-to-date
  9389. (lambda (&optional error dummy)
  9390. (calendar-gregorian-from-absolute
  9391. (get-text-property point 'day))))
  9392. (call-interactively cmd))
  9393. (fset 'calendar-cursor-to-date oldf))))
  9394. (defun org-agenda-phases-of-moon ()
  9395. "Display the phases of the moon for the 3 months around the cursor date."
  9396. (interactive)
  9397. (org-agenda-execute-calendar-command 'calendar-lunar-phases))
  9398. (defun org-agenda-holidays ()
  9399. "Display the holidays for the 3 months around the cursor date."
  9400. (interactive)
  9401. (org-agenda-execute-calendar-command 'calendar-list-holidays))
  9402. (defvar calendar-longitude) ; defined in calendar.el
  9403. (defvar calendar-latitude) ; defined in calendar.el
  9404. (defvar calendar-location-name) ; defined in calendar.el
  9405. (defun org-agenda-sunrise-sunset (arg)
  9406. "Display sunrise and sunset for the cursor date.
  9407. Latitude and longitude can be specified with the variables
  9408. `calendar-latitude' and `calendar-longitude'. When called with prefix
  9409. argument, latitude and longitude will be prompted for."
  9410. (interactive "P")
  9411. (require 'solar)
  9412. (let ((calendar-longitude (if arg nil calendar-longitude))
  9413. (calendar-latitude (if arg nil calendar-latitude))
  9414. (calendar-location-name
  9415. (if arg "the given coordinates" calendar-location-name)))
  9416. (org-agenda-execute-calendar-command 'calendar-sunrise-sunset)))
  9417. (defun org-agenda-goto-calendar ()
  9418. "Open the Emacs calendar with the date at the cursor."
  9419. (interactive)
  9420. (org-agenda-check-type t 'agenda)
  9421. (let* ((day (or (get-text-property (min (1- (point-max)) (point)) 'day)
  9422. (user-error "Don't know which date to open in calendar")))
  9423. (date (calendar-gregorian-from-absolute day))
  9424. (calendar-move-hook nil)
  9425. (calendar-view-holidays-initially-flag nil)
  9426. (calendar-view-diary-initially-flag nil))
  9427. (calendar)
  9428. (calendar-goto-date date)))
  9429. ;;;###autoload
  9430. (defun org-calendar-goto-agenda ()
  9431. "Compute the Org agenda for the calendar date displayed at the cursor.
  9432. This is a command that has to be installed in `calendar-mode-map'."
  9433. (interactive)
  9434. ;; Temporarily disable sticky agenda since user clearly wants to
  9435. ;; refresh view anyway.
  9436. (let ((org-agenda-buffer-tmp-name "*Org Agenda(a)*")
  9437. (org-agenda-sticky nil))
  9438. (org-agenda-list nil (calendar-absolute-from-gregorian
  9439. (calendar-cursor-to-date))
  9440. nil)))
  9441. (defun org-agenda-convert-date ()
  9442. (interactive)
  9443. (org-agenda-check-type t 'agenda)
  9444. (let ((day (get-text-property (min (1- (point-max)) (point)) 'day))
  9445. date s)
  9446. (unless day
  9447. (user-error "Don't know which date to convert"))
  9448. (setq date (calendar-gregorian-from-absolute day))
  9449. (setq s (concat
  9450. "Gregorian: " (calendar-date-string date) "\n"
  9451. "ISO: " (calendar-iso-date-string date) "\n"
  9452. "Day of Yr: " (calendar-day-of-year-string date) "\n"
  9453. "Julian: " (calendar-julian-date-string date) "\n"
  9454. "Astron. JD: " (calendar-astro-date-string date)
  9455. " (Julian date number at noon UTC)\n"
  9456. "Hebrew: " (calendar-hebrew-date-string date) " (until sunset)\n"
  9457. "Islamic: " (calendar-islamic-date-string date) " (until sunset)\n"
  9458. "French: " (calendar-french-date-string date) "\n"
  9459. "Bahá’í: " (calendar-bahai-date-string date) " (until sunset)\n"
  9460. "Mayan: " (calendar-mayan-date-string date) "\n"
  9461. "Coptic: " (calendar-coptic-date-string date) "\n"
  9462. "Ethiopic: " (calendar-ethiopic-date-string date) "\n"
  9463. "Persian: " (calendar-persian-date-string date) "\n"
  9464. "Chinese: " (calendar-chinese-date-string date) "\n"))
  9465. (with-output-to-temp-buffer "*Dates*"
  9466. (princ s))
  9467. (org-fit-window-to-buffer (get-buffer-window "*Dates*"))))
  9468. ;;; Bulk commands
  9469. (defun org-agenda-bulk-marked-p ()
  9470. "Non-nil when current entry is marked for bulk action."
  9471. (eq (get-char-property (point-at-bol) 'type)
  9472. 'org-marked-entry-overlay))
  9473. (defun org-agenda-bulk-mark (&optional arg)
  9474. "Mark entries for future bulk action.
  9475. When ARG is nil or one and region is not active then mark the
  9476. entry at point.
  9477. When ARG is nil or one and region is active then mark the entries
  9478. in the region.
  9479. When ARG is greater than one mark ARG lines."
  9480. (interactive "p")
  9481. (when (and (or (not arg) (= arg 1)) (use-region-p))
  9482. (setq arg (count-lines (region-beginning) (region-end)))
  9483. (goto-char (region-beginning))
  9484. (deactivate-mark))
  9485. (dotimes (i (or arg 1))
  9486. (unless (org-get-at-bol 'org-agenda-diary-link)
  9487. (let* ((m (org-get-at-bol 'org-hd-marker))
  9488. ov)
  9489. (unless (org-agenda-bulk-marked-p)
  9490. (unless m (user-error "Nothing to mark at point"))
  9491. (push m org-agenda-bulk-marked-entries)
  9492. (setq ov (make-overlay (point-at-bol) (+ 2 (point-at-bol))))
  9493. (org-overlay-display ov (concat org-agenda-bulk-mark-char " ")
  9494. (org-get-todo-face "TODO")
  9495. 'evaporate)
  9496. (overlay-put ov 'type 'org-marked-entry-overlay))
  9497. (end-of-line 1)
  9498. (or (ignore-errors
  9499. (goto-char (next-single-property-change (point) 'org-hd-marker)))
  9500. (beginning-of-line 2))
  9501. (while (and (get-char-property (point) 'invisible) (not (eobp)))
  9502. (beginning-of-line 2)))))
  9503. (message "%d entries marked for bulk action"
  9504. (length org-agenda-bulk-marked-entries)))
  9505. (defun org-agenda-bulk-mark-all ()
  9506. "Mark all entries for future agenda bulk action."
  9507. (interactive)
  9508. (org-agenda-bulk-mark-regexp "."))
  9509. (defun org-agenda-bulk-mark-regexp (regexp)
  9510. "Mark entries matching REGEXP for future agenda bulk action."
  9511. (interactive "sMark entries matching regexp: ")
  9512. (let ((entries-marked 0) txt-at-point)
  9513. (save-excursion
  9514. (goto-char (point-min))
  9515. (goto-char (next-single-property-change (point) 'org-hd-marker))
  9516. (while (and (re-search-forward regexp nil t)
  9517. (setq txt-at-point
  9518. (get-text-property (match-beginning 0) 'txt)))
  9519. (if (get-char-property (point) 'invisible)
  9520. (beginning-of-line 2)
  9521. (when (string-match-p regexp txt-at-point)
  9522. (setq entries-marked (1+ entries-marked))
  9523. (call-interactively 'org-agenda-bulk-mark)))))
  9524. (unless entries-marked
  9525. (message "No entry matching this regexp."))))
  9526. (defun org-agenda-bulk-unmark (&optional arg)
  9527. "Unmark the entry at point for future bulk action."
  9528. (interactive "P")
  9529. (if arg
  9530. (org-agenda-bulk-unmark-all)
  9531. (cond ((org-agenda-bulk-marked-p)
  9532. (org-agenda-bulk-remove-overlays
  9533. (point-at-bol) (+ 2 (point-at-bol)))
  9534. (setq org-agenda-bulk-marked-entries
  9535. (delete (org-get-at-bol 'org-hd-marker)
  9536. org-agenda-bulk-marked-entries))
  9537. (end-of-line 1)
  9538. (or (ignore-errors
  9539. (goto-char (next-single-property-change (point) 'txt)))
  9540. (beginning-of-line 2))
  9541. (while (and (get-char-property (point) 'invisible) (not (eobp)))
  9542. (beginning-of-line 2))
  9543. (message "%d entries left marked for bulk action"
  9544. (length org-agenda-bulk-marked-entries)))
  9545. (t (message "No entry to unmark here")))))
  9546. (defun org-agenda-bulk-toggle-all ()
  9547. "Toggle all marks for bulk action."
  9548. (interactive)
  9549. (save-excursion
  9550. (goto-char (point-min))
  9551. (while (ignore-errors
  9552. (goto-char (next-single-property-change (point) 'org-hd-marker)))
  9553. (org-agenda-bulk-toggle))))
  9554. (defun org-agenda-bulk-toggle ()
  9555. "Toggle the mark at point for bulk action."
  9556. (interactive)
  9557. (if (org-agenda-bulk-marked-p)
  9558. (org-agenda-bulk-unmark)
  9559. (org-agenda-bulk-mark)))
  9560. (defun org-agenda-bulk-remove-overlays (&optional beg end)
  9561. "Remove the mark overlays between BEG and END in the agenda buffer.
  9562. BEG and END default to the buffer limits.
  9563. This only removes the overlays, it does not remove the markers
  9564. from the list in `org-agenda-bulk-marked-entries'."
  9565. (interactive)
  9566. (mapc (lambda (ov)
  9567. (and (eq (overlay-get ov 'type) 'org-marked-entry-overlay)
  9568. (delete-overlay ov)))
  9569. (overlays-in (or beg (point-min)) (or end (point-max)))))
  9570. (defun org-agenda-bulk-unmark-all ()
  9571. "Remove all marks in the agenda buffer.
  9572. This will remove the markers and the overlays."
  9573. (interactive)
  9574. (if (null org-agenda-bulk-marked-entries)
  9575. (message "No entry to unmark")
  9576. (setq org-agenda-bulk-marked-entries nil)
  9577. (org-agenda-bulk-remove-overlays (point-min) (point-max))))
  9578. (defcustom org-agenda-persistent-marks nil
  9579. "Non-nil means marked items will stay marked after a bulk action.
  9580. You can toggle this interactively by typing `p' when prompted for a
  9581. bulk action."
  9582. :group 'org-agenda
  9583. :version "24.1"
  9584. :type 'boolean)
  9585. (defcustom org-agenda-loop-over-headlines-in-active-region t
  9586. "Shall some commands act upon headlines in the active region?
  9587. When set to t, some commands will be performed in all headlines
  9588. within the active region.
  9589. When set to `start-level', some commands will be performed in all
  9590. headlines within the active region, provided that these headlines
  9591. are of the same level than the first one.
  9592. When set to a regular expression, those commands will be
  9593. performed on the matching headlines within the active region.
  9594. The list of commands is: `org-agenda-schedule',
  9595. `org-agenda-deadline', `org-agenda-date-prompt',
  9596. `org-agenda-todo', `org-agenda-archive*', `org-agenda-kill'.
  9597. See `org-loop-over-headlines-in-active-region' for the equivalent
  9598. option for Org buffers."
  9599. :type '(choice (const :tag "Don't loop" nil)
  9600. (const :tag "All headlines in active region" t)
  9601. (const :tag "In active region, headlines at the same level than the first one" start-level)
  9602. (regexp :tag "Regular expression matcher"))
  9603. :version "27.1"
  9604. :package-version '(Org . "9.4")
  9605. :group 'org-agenda)
  9606. (defun org-agenda-bulk-action (&optional arg)
  9607. "Execute an remote-editing action on all marked entries.
  9608. The prefix arg is passed through to the command if possible."
  9609. (interactive "P")
  9610. ;; When there is no mark, act on the agenda entry at point.
  9611. (if (not org-agenda-bulk-marked-entries)
  9612. (save-excursion (org-agenda-bulk-mark)))
  9613. (dolist (m org-agenda-bulk-marked-entries)
  9614. (unless (and (markerp m)
  9615. (marker-buffer m)
  9616. (buffer-live-p (marker-buffer m))
  9617. (marker-position m))
  9618. (user-error "Marker %s for bulk command is invalid" m)))
  9619. ;; Prompt for the bulk command.
  9620. (org-unlogged-message
  9621. (concat "Bulk (" (if org-agenda-persistent-marks "" "don't ") "[p]ersist marks): "
  9622. "[$]arch [A]rch->sib [t]odo [+/-]tag [s]chd [d]eadline [r]efile "
  9623. "[S]catter [f]unction "
  9624. (and org-agenda-bulk-custom-functions
  9625. (format " Custom: [%s]"
  9626. (mapconcat (lambda (f) (char-to-string (car f)))
  9627. org-agenda-bulk-custom-functions
  9628. "")))))
  9629. (catch 'exit
  9630. (let* ((org-log-refile (if org-log-refile 'time nil))
  9631. (entries (reverse org-agenda-bulk-marked-entries))
  9632. (org-overriding-default-time
  9633. (and (get-text-property (point) 'org-agenda-date-header)
  9634. (org-get-cursor-date)))
  9635. redo-at-end
  9636. cmd)
  9637. (pcase (read-char-exclusive)
  9638. (?p
  9639. (let ((org-agenda-persistent-marks
  9640. (not org-agenda-persistent-marks)))
  9641. (org-agenda-bulk-action)
  9642. (throw 'exit nil)))
  9643. (?$
  9644. (setq cmd #'org-agenda-archive))
  9645. (?A
  9646. (setq cmd #'org-agenda-archive-to-archive-sibling))
  9647. ((or ?r ?w)
  9648. (let ((refile-location
  9649. (org-refile-get-location
  9650. "Refile to"
  9651. (marker-buffer (car entries))
  9652. org-refile-allow-creating-parent-nodes)))
  9653. (when (nth 3 refile-location)
  9654. (setcar (nthcdr 3 refile-location)
  9655. (move-marker
  9656. (make-marker)
  9657. (nth 3 refile-location)
  9658. (or (get-file-buffer (nth 1 refile-location))
  9659. (find-buffer-visiting (nth 1 refile-location))
  9660. (error "This should not happen")))))
  9661. (setq cmd `(lambda () (org-agenda-refile nil ',refile-location t)))
  9662. (setq redo-at-end t)))
  9663. (?t
  9664. (let ((state (completing-read
  9665. "Todo state: "
  9666. (with-current-buffer (marker-buffer (car entries))
  9667. (mapcar #'list org-todo-keywords-1)))))
  9668. (setq cmd `(lambda ()
  9669. (let ((org-inhibit-blocking t)
  9670. (org-inhibit-logging 'note))
  9671. (org-agenda-todo ,state))))))
  9672. ((and (or ?- ?+) action)
  9673. (let ((tag (completing-read
  9674. (format "Tag to %s: " (if (eq action ?+) "add" "remove"))
  9675. (with-current-buffer (marker-buffer (car entries))
  9676. (delq nil
  9677. (mapcar (lambda (x) (and (stringp (car x)) x))
  9678. org-current-tag-alist))))))
  9679. (setq cmd
  9680. `(lambda ()
  9681. (org-agenda-set-tags ,tag
  9682. ,(if (eq action ?+) ''on ''off))))))
  9683. ((and (or ?s ?d) c)
  9684. (let* ((schedule? (eq c ?s))
  9685. (prompt (if schedule? "(Re)Schedule to" "(Re)Set Deadline to"))
  9686. (time
  9687. (and (not arg)
  9688. (let ((new (org-read-date
  9689. nil nil nil prompt org-overriding-default-time)))
  9690. ;; A "double plus" answer applies to every
  9691. ;; scheduled time. Do not turn it into
  9692. ;; a fixed date yet.
  9693. (if (string-match-p "\\`[ \t]*\\+\\+"
  9694. org-read-date-final-answer)
  9695. org-read-date-final-answer
  9696. new)))))
  9697. ;; Make sure to not prompt for a note when bulk
  9698. ;; rescheduling/resetting deadline as Org cannot cope with
  9699. ;; simultaneous notes. Besides, it could be annoying
  9700. ;; depending on the number of marked items.
  9701. (setq cmd
  9702. (if schedule?
  9703. `(lambda ()
  9704. (let ((org-log-reschedule
  9705. (and org-log-reschedule 'time)))
  9706. (org-agenda-schedule arg ,time)))
  9707. `(lambda ()
  9708. (let ((org-log-redeadline (and org-log-redeadline 'time)))
  9709. (org-agenda-deadline arg ,time)))))))
  9710. (?S
  9711. (unless (org-agenda-check-type nil 'agenda 'todo)
  9712. (user-error "Can't scatter tasks in \"%s\" agenda view" org-agenda-type))
  9713. (let ((days (read-number
  9714. (format "Scatter tasks across how many %sdays: "
  9715. (if arg "week" ""))
  9716. 7)))
  9717. (setq cmd
  9718. `(lambda ()
  9719. (let ((distance (1+ (random ,days))))
  9720. (when arg
  9721. (let ((dist distance)
  9722. (day-of-week
  9723. (calendar-day-of-week
  9724. (calendar-gregorian-from-absolute (org-today)))))
  9725. (dotimes (i (1+ dist))
  9726. (while (member day-of-week org-agenda-weekend-days)
  9727. (cl-incf distance)
  9728. (cl-incf day-of-week)
  9729. (when (= day-of-week 7)
  9730. (setq day-of-week 0)))
  9731. (cl-incf day-of-week)
  9732. (when (= day-of-week 7)
  9733. (setq day-of-week 0)))))
  9734. ;; Silently fail when try to replan a sexp entry.
  9735. (ignore-errors
  9736. (let* ((date (calendar-gregorian-from-absolute
  9737. (+ (org-today) distance)))
  9738. (time (encode-time 0 0 0 (nth 1 date) (nth 0 date)
  9739. (nth 2 date))))
  9740. (org-agenda-schedule nil time))))))))
  9741. (?f
  9742. (setq cmd
  9743. (intern
  9744. (completing-read "Function: " obarray #'fboundp t nil nil))))
  9745. (action
  9746. (pcase (assoc action org-agenda-bulk-custom-functions)
  9747. (`(,_ ,f) (setq cmd f) (setq redo-at-end t))
  9748. (_ (user-error "Invalid bulk action: %c" action)))))
  9749. ;; Sort the markers, to make sure that parents are handled
  9750. ;; before children.
  9751. (setq entries (sort entries
  9752. (lambda (a b)
  9753. (cond
  9754. ((eq (marker-buffer a) (marker-buffer b))
  9755. (< (marker-position a) (marker-position b)))
  9756. (t
  9757. (string< (buffer-name (marker-buffer a))
  9758. (buffer-name (marker-buffer b))))))))
  9759. ;; Now loop over all markers and apply CMD.
  9760. (let ((processed 0)
  9761. (skipped 0))
  9762. (dolist (e entries)
  9763. (let ((pos (text-property-any (point-min) (point-max) 'org-hd-marker e)))
  9764. (if (not pos)
  9765. (progn (message "Skipping removed entry at %s" e)
  9766. (cl-incf skipped))
  9767. (goto-char pos)
  9768. (let (org-loop-over-headlines-in-active-region) (funcall cmd))
  9769. ;; `post-command-hook' is not run yet. We make sure any
  9770. ;; pending log note is processed.
  9771. (when (or (memq 'org-add-log-note (default-value 'post-command-hook))
  9772. (memq 'org-add-log-note post-command-hook))
  9773. (org-add-log-note))
  9774. (cl-incf processed))))
  9775. (when redo-at-end (org-agenda-redo))
  9776. (unless org-agenda-persistent-marks (org-agenda-bulk-unmark-all))
  9777. (message "Acted on %d entries%s%s"
  9778. processed
  9779. (if (= skipped 0)
  9780. ""
  9781. (format ", skipped %d (disappeared before their turn)"
  9782. skipped))
  9783. (if (not org-agenda-persistent-marks) "" " (kept marked)"))))))
  9784. (defun org-agenda-capture (&optional with-time)
  9785. "Call `org-capture' with the date at point.
  9786. With a `C-1' prefix, use the HH:MM value at point (if any) or the
  9787. current HH:MM time."
  9788. (interactive "P")
  9789. (if (not (eq major-mode 'org-agenda-mode))
  9790. (user-error "You cannot do this outside of agenda buffers")
  9791. (let ((org-overriding-default-time
  9792. (org-get-cursor-date (equal with-time 1))))
  9793. (call-interactively 'org-capture))))
  9794. ;;; Dragging agenda lines forward/backward
  9795. (defun org-agenda-reapply-filters ()
  9796. "Re-apply all agenda filters."
  9797. (mapcar
  9798. (lambda(f) (when (car f) (org-agenda-filter-apply (car f) (cadr f) t)))
  9799. `((,org-agenda-tag-filter tag)
  9800. (,org-agenda-category-filter category)
  9801. (,org-agenda-regexp-filter regexp)
  9802. (,org-agenda-effort-filter effort)
  9803. (,(get 'org-agenda-tag-filter :preset-filter) tag)
  9804. (,(get 'org-agenda-category-filter :preset-filter) category)
  9805. (,(get 'org-agenda-effort-filter :preset-filter) effort)
  9806. (,(get 'org-agenda-regexp-filter :preset-filter) regexp))))
  9807. (defun org-agenda-drag-line-forward (arg &optional backward)
  9808. "Drag an agenda line forward by ARG lines.
  9809. When the optional argument `backward' is non-nil, move backward."
  9810. (interactive "p")
  9811. (let ((inhibit-read-only t) lst line)
  9812. (if (or (not (get-text-property (point) 'txt))
  9813. (save-excursion
  9814. (dotimes (n arg)
  9815. (move-beginning-of-line (if backward 0 2))
  9816. (push (not (get-text-property (point) 'txt)) lst))
  9817. (delq nil lst)))
  9818. (message "Cannot move line forward")
  9819. (let ((end (save-excursion (move-beginning-of-line 2) (point))))
  9820. (move-beginning-of-line 1)
  9821. (setq line (buffer-substring (point) end))
  9822. (delete-region (point) end)
  9823. (move-beginning-of-line (funcall (if backward '1- '1+) arg))
  9824. (insert line)
  9825. (org-agenda-reapply-filters)
  9826. (org-agenda-mark-clocking-task)
  9827. (move-beginning-of-line 0)))))
  9828. (defun org-agenda-drag-line-backward (arg)
  9829. "Drag an agenda line backward by ARG lines."
  9830. (interactive "p")
  9831. (org-agenda-drag-line-forward arg t))
  9832. ;;; Flagging notes
  9833. (defun org-agenda-show-the-flagging-note ()
  9834. "Display the flagging note in the other window.
  9835. When called a second time in direct sequence, offer to remove the FLAGGING
  9836. tag and (if present) the flagging note."
  9837. (interactive)
  9838. (let ((hdmarker (org-get-at-bol 'org-hd-marker))
  9839. (win (selected-window))
  9840. note heading newhead)
  9841. (unless hdmarker
  9842. (user-error "No linked entry at point"))
  9843. (if (and (eq this-command last-command)
  9844. (y-or-n-p "Unflag and remove any flagging note? "))
  9845. (progn
  9846. (org-agenda-remove-flag hdmarker)
  9847. (let ((win (get-buffer-window "*Flagging Note*")))
  9848. (and win (delete-window win)))
  9849. (message "Entry unflagged"))
  9850. (setq note (org-entry-get hdmarker "THEFLAGGINGNOTE"))
  9851. (unless note
  9852. (user-error "No flagging note"))
  9853. (org-kill-new note)
  9854. (org-switch-to-buffer-other-window "*Flagging Note*")
  9855. (erase-buffer)
  9856. (insert note)
  9857. (goto-char (point-min))
  9858. (while (re-search-forward "\\\\n" nil t)
  9859. (replace-match "\n" t t))
  9860. (goto-char (point-min))
  9861. (select-window win)
  9862. (message "%s" (substitute-command-keys "Flagging note pushed to \
  9863. kill ring. Press `\\[org-agenda-show-the-flagging-note]' again to remove \
  9864. tag and note")))))
  9865. (defun org-agenda-remove-flag (marker)
  9866. "Remove the FLAGGED tag and any flagging note in the entry."
  9867. (let (newhead)
  9868. (org-with-point-at marker
  9869. (org-toggle-tag "FLAGGED" 'off)
  9870. (org-entry-delete nil "THEFLAGGINGNOTE")
  9871. (setq newhead (org-get-heading)))
  9872. (org-agenda-change-all-lines newhead marker)
  9873. (message "Entry unflagged")))
  9874. (defun org-agenda-get-any-marker (&optional pos)
  9875. (or (get-text-property (or pos (point-at-bol)) 'org-hd-marker)
  9876. (get-text-property (or pos (point-at-bol)) 'org-marker)))
  9877. ;;; Appointment reminders
  9878. (defvar appt-time-msg-list) ; defined in appt.el
  9879. ;;;###autoload
  9880. (defun org-agenda-to-appt (&optional refresh filter &rest args)
  9881. "Activate appointments found in `org-agenda-files'.
  9882. With a `\\[universal-argument]' prefix, refresh the list of \
  9883. appointments.
  9884. If FILTER is t, interactively prompt the user for a regular
  9885. expression, and filter out entries that don't match it.
  9886. If FILTER is a string, use this string as a regular expression
  9887. for filtering entries out.
  9888. If FILTER is a function, filter out entries against which
  9889. calling the function returns nil. This function takes one
  9890. argument: an entry from `org-agenda-get-day-entries'.
  9891. FILTER can also be an alist with the car of each cell being
  9892. either `headline' or `category'. For example:
  9893. \\='((headline \"IMPORTANT\")
  9894. (category \"Work\"))
  9895. will only add headlines containing IMPORTANT or headlines
  9896. belonging to the \"Work\" category.
  9897. ARGS are symbols indicating what kind of entries to consider.
  9898. By default `org-agenda-to-appt' will use :deadline*, :scheduled*
  9899. \(i.e., deadlines and scheduled items with a hh:mm specification)
  9900. and :timestamp entries. See the docstring of `org-diary' for
  9901. details and examples.
  9902. If an entry has a APPT_WARNTIME property, its value will be used
  9903. to override `appt-message-warning-time'."
  9904. (interactive "P")
  9905. (when refresh (setq appt-time-msg-list nil))
  9906. (when (eq filter t)
  9907. (setq filter (read-from-minibuffer "Regexp filter: ")))
  9908. (let* ((cnt 0) ; count added events
  9909. (scope (or args '(:deadline* :scheduled* :timestamp)))
  9910. (org-agenda-new-buffers nil)
  9911. (org-deadline-warning-days 0)
  9912. ;; Do not use `org-today' here because appt only takes
  9913. ;; time and without date as argument, so it may pass wrong
  9914. ;; information otherwise
  9915. (today (org-date-to-gregorian
  9916. (time-to-days nil)))
  9917. (org-agenda-restrict nil)
  9918. (files (org-agenda-files 'unrestricted)) entries file
  9919. (org-agenda-buffer nil))
  9920. ;; Get all entries which may contain an appt
  9921. (org-agenda-prepare-buffers files)
  9922. (while (setq file (pop files))
  9923. (setq entries
  9924. (delq nil
  9925. (append entries
  9926. (apply 'org-agenda-get-day-entries
  9927. file today scope)))))
  9928. ;; Map through entries and find if we should filter them out
  9929. (mapc
  9930. (lambda (x)
  9931. (let* ((evt (org-trim
  9932. (replace-regexp-in-string
  9933. org-link-bracket-re "\\2"
  9934. (or (get-text-property 1 'txt x) ""))))
  9935. (cat (get-text-property (1- (length x)) 'org-category x))
  9936. (tod (get-text-property 1 'time-of-day x))
  9937. (ok (or (null filter)
  9938. (and (stringp filter) (string-match filter evt))
  9939. (and (functionp filter) (funcall filter x))
  9940. (and (listp filter)
  9941. (let ((cat-filter (cadr (assq 'category filter)))
  9942. (evt-filter (cadr (assq 'headline filter))))
  9943. (or (and (stringp cat-filter)
  9944. (string-match cat-filter cat))
  9945. (and (stringp evt-filter)
  9946. (string-match evt-filter evt)))))))
  9947. (wrn (get-text-property 1 'warntime x)))
  9948. ;; FIXME: Shall we remove text-properties for the appt text?
  9949. ;; (setq evt (set-text-properties 0 (length evt) nil evt))
  9950. (when (and ok tod (not (string-match "\\`DONE\\|CANCELLED" evt)))
  9951. (setq tod (concat "00" (number-to-string tod)))
  9952. (setq tod (when (string-match
  9953. "\\([0-9]\\{1,2\\}\\)\\([0-9]\\{2\\}\\)\\'" tod)
  9954. (concat (match-string 1 tod) ":"
  9955. (match-string 2 tod))))
  9956. (when (appt-add tod evt wrn)
  9957. (setq cnt (1+ cnt))))))
  9958. entries)
  9959. (org-release-buffers org-agenda-new-buffers)
  9960. (if (eq cnt 0)
  9961. (message "No event to add")
  9962. (message "Added %d event%s for today" cnt (if (> cnt 1) "s" "")))))
  9963. (defun org-agenda-today-p (date)
  9964. "Non-nil when DATE means today.
  9965. DATE is either a list of the form (month day year) or a number of
  9966. days as returned by `calendar-absolute-from-gregorian' or
  9967. `org-today'. This function considers `org-extend-today-until'
  9968. when defining today."
  9969. (eq (org-today)
  9970. (if (consp date) (calendar-absolute-from-gregorian date) date)))
  9971. (defun org-agenda-todo-yesterday (&optional arg)
  9972. "Like `org-agenda-todo' but the time of change will be 23:59 of yesterday."
  9973. (interactive "P")
  9974. (let* ((org-use-effective-time t)
  9975. (hour (nth 2 (decode-time (org-current-time))))
  9976. (org-extend-today-until (1+ hour)))
  9977. (org-agenda-todo arg)))
  9978. (defun org-agenda-ctrl-c-ctrl-c ()
  9979. "Set tags in agenda buffer."
  9980. (interactive)
  9981. (org-agenda-set-tags))
  9982. (provide 'org-agenda)
  9983. ;; Local variables:
  9984. ;; generated-autoload-file: "org-loaddefs.el"
  9985. ;; End:
  9986. ;;; org-agenda.el ends here