org-agenda.el 395 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266
  1. ;;; org-agenda.el --- Dynamic task and appointment lists for Org
  2. ;; Copyright (C) 2004-2018 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 'org)
  43. (require 'org-macs)
  44. (declare-function diary-add-to-list "diary-lib"
  45. (date string specifier &optional marker globcolor literal))
  46. (declare-function calendar-iso-to-absolute "cal-iso" (date))
  47. (declare-function calendar-astro-date-string "cal-julian" (&optional date))
  48. (declare-function calendar-bahai-date-string "cal-bahai" (&optional date))
  49. (declare-function calendar-chinese-date-string "cal-china" (&optional date))
  50. (declare-function calendar-coptic-date-string "cal-coptic" (&optional date))
  51. (declare-function calendar-ethiopic-date-string "cal-coptic" (&optional date))
  52. (declare-function calendar-french-date-string "cal-french" (&optional date))
  53. (declare-function calendar-goto-date "cal-move" (date))
  54. (declare-function calendar-hebrew-date-string "cal-hebrew" (&optional date))
  55. (declare-function calendar-islamic-date-string "cal-islam" (&optional date))
  56. (declare-function calendar-iso-date-string "cal-iso" (&optional date))
  57. (declare-function calendar-iso-from-absolute "cal-iso" (date))
  58. (declare-function calendar-julian-date-string "cal-julian" (&optional date))
  59. (declare-function calendar-mayan-date-string "cal-mayan" (&optional date))
  60. (declare-function calendar-persian-date-string "cal-persia" (&optional date))
  61. (declare-function calendar-check-holidays "holidays" (date))
  62. (declare-function org-columns-remove-overlays "org-colview" ())
  63. (declare-function org-datetree-find-date-create "org-datetree"
  64. (date &optional keep-restriction))
  65. (declare-function org-columns-quit "org-colview" ())
  66. (declare-function diary-date-display-form "diary-lib" (&optional type))
  67. (declare-function org-mobile-write-agenda-for-mobile "org-mobile" (file))
  68. (declare-function org-habit-insert-consistency-graphs
  69. "org-habit" (&optional line))
  70. (declare-function org-is-habit-p "org-habit" (&optional pom))
  71. (declare-function org-habit-parse-todo "org-habit" (&optional pom))
  72. (declare-function org-habit-get-priority "org-habit" (habit &optional moment))
  73. (declare-function org-agenda-columns "org-colview" ())
  74. (declare-function org-add-archive-files "org-archive" (files))
  75. (declare-function org-capture "org-capture" (&optional goto keys))
  76. (defvar calendar-mode-map)
  77. (defvar org-clock-current-task)
  78. (defvar org-current-tag-alist)
  79. (defvar org-mobile-force-id-on-agenda-items)
  80. (defvar org-habit-show-habits)
  81. (defvar org-habit-show-habits-only-for-today)
  82. (defvar org-habit-show-all-today)
  83. ;; Defined somewhere in this file, but used before definition.
  84. (defvar org-agenda-buffer-name "*Org Agenda*")
  85. (defvar org-agenda-overriding-header nil)
  86. (defvar org-agenda-title-append nil)
  87. (with-no-warnings (defvar entry)) ;; unprefixed, from calendar.el
  88. (with-no-warnings (defvar date)) ;; unprefixed, from calendar.el
  89. (defvar original-date) ; dynamically scoped, calendar.el does scope this
  90. (defvar org-agenda-undo-list nil
  91. "List of undoable operations in the agenda since last refresh.")
  92. (defvar org-agenda-pending-undo-list nil
  93. "In a series of undo commands, this is the list of remaining undo items.")
  94. (defcustom org-agenda-confirm-kill 1
  95. "When set, remote killing from the agenda buffer needs confirmation.
  96. When t, a confirmation is always needed. When a number N, confirmation is
  97. only needed when the text to be killed contains more than N non-white lines."
  98. :group 'org-agenda
  99. :type '(choice
  100. (const :tag "Never" nil)
  101. (const :tag "Always" t)
  102. (integer :tag "When more than N lines")))
  103. (defcustom org-agenda-compact-blocks nil
  104. "Non-nil means make the block agenda more compact.
  105. This is done globally by leaving out lines like the agenda span
  106. name and week number or the separator lines."
  107. :group 'org-agenda
  108. :type 'boolean)
  109. (defcustom org-agenda-block-separator ?=
  110. "The separator between blocks in the agenda.
  111. If this is a string, it will be used as the separator, with a newline added.
  112. If it is a character, it will be repeated to fill the window width.
  113. If nil the separator is disabled. In `org-agenda-custom-commands' this
  114. addresses the separator between the current and the previous block."
  115. :group 'org-agenda
  116. :type '(choice
  117. (const :tag "Disabled" nil)
  118. (character)
  119. (string)))
  120. (defgroup org-agenda-export nil
  121. "Options concerning exporting agenda views in Org mode."
  122. :tag "Org Agenda Export"
  123. :group 'org-agenda)
  124. (defcustom org-agenda-with-colors t
  125. "Non-nil means use colors in agenda views."
  126. :group 'org-agenda-export
  127. :type 'boolean)
  128. (defcustom org-agenda-exporter-settings nil
  129. "Alist of variable/value pairs that should be active during agenda export.
  130. This is a good place to set options for ps-print and for htmlize.
  131. Note that the way this is implemented, the values will be evaluated
  132. before assigned to the variables. So make sure to quote values you do
  133. *not* want evaluated, for example
  134. (setq org-agenda-exporter-settings
  135. \\='((ps-print-color-p \\='black-white)))"
  136. :group 'org-agenda-export
  137. :type '(repeat
  138. (list
  139. (variable)
  140. (sexp :tag "Value"))))
  141. (defcustom org-agenda-before-write-hook '(org-agenda-add-entry-text)
  142. "Hook run in a temporary buffer before writing the agenda to an export file.
  143. A useful function for this hook is `org-agenda-add-entry-text'."
  144. :group 'org-agenda-export
  145. :type 'hook
  146. :options '(org-agenda-add-entry-text))
  147. (defcustom org-agenda-add-entry-text-maxlines 0
  148. "Maximum number of entry text lines to be added to agenda.
  149. This is only relevant when `org-agenda-add-entry-text' is part of
  150. `org-agenda-before-write-hook', which is the default.
  151. When this is 0, nothing will happen. When it is greater than 0, it
  152. specifies the maximum number of lines that will be added for each entry
  153. that is listed in the agenda view.
  154. Note that this variable is not used during display, only when exporting
  155. the agenda. For agenda display, see the variables `org-agenda-entry-text-mode'
  156. and `org-agenda-entry-text-maxlines'."
  157. :group 'org-agenda
  158. :type 'integer)
  159. (defcustom org-agenda-add-entry-text-descriptive-links t
  160. "Non-nil means export org-links as descriptive links in agenda added text.
  161. This variable applies to the text added to the agenda when
  162. `org-agenda-add-entry-text-maxlines' is larger than 0.
  163. When this variable nil, the URL will (also) be shown."
  164. :group 'org-agenda
  165. :type 'boolean)
  166. (defcustom org-agenda-export-html-style nil
  167. "The style specification for exported HTML Agenda files.
  168. If this variable contains a string, it will replace the default <style>
  169. section as produced by `htmlize'.
  170. Since there are different ways of setting style information, this variable
  171. needs to contain the full HTML structure to provide a style, including the
  172. surrounding HTML tags. The style specifications should include definitions
  173. the fonts used by the agenda, here is an example:
  174. <style type=\"text/css\">
  175. p { font-weight: normal; color: gray; }
  176. .org-agenda-structure {
  177. font-size: 110%;
  178. color: #003399;
  179. font-weight: 600;
  180. }
  181. .org-todo {
  182. color: #cc6666;
  183. font-weight: bold;
  184. }
  185. .org-agenda-done {
  186. color: #339933;
  187. }
  188. .org-done {
  189. color: #339933;
  190. }
  191. .title { text-align: center; }
  192. .todo, .deadline { color: red; }
  193. .done { color: green; }
  194. </style>
  195. or, if you want to keep the style in a file,
  196. <link rel=\"stylesheet\" type=\"text/css\" href=\"mystyles.css\">
  197. As the value of this option simply gets inserted into the HTML <head> header,
  198. you can \"misuse\" it to also add other text to the header."
  199. :group 'org-agenda-export
  200. :group 'org-export-html
  201. :type '(choice
  202. (const nil)
  203. (string)))
  204. (defcustom org-agenda-persistent-filter nil
  205. "When set, keep filters from one agenda view to the next."
  206. :group 'org-agenda
  207. :type 'boolean)
  208. (defgroup org-agenda-custom-commands nil
  209. "Options concerning agenda views in Org mode."
  210. :tag "Org Agenda Custom Commands"
  211. :group 'org-agenda)
  212. (defconst org-sorting-choice
  213. '(choice
  214. (const time-up) (const time-down)
  215. (const timestamp-up) (const timestamp-down)
  216. (const scheduled-up) (const scheduled-down)
  217. (const deadline-up) (const deadline-down)
  218. (const ts-up) (const ts-down)
  219. (const tsia-up) (const tsia-down)
  220. (const category-keep) (const category-up) (const category-down)
  221. (const tag-down) (const tag-up)
  222. (const priority-up) (const priority-down)
  223. (const todo-state-up) (const todo-state-down)
  224. (const effort-up) (const effort-down)
  225. (const habit-up) (const habit-down)
  226. (const alpha-up) (const alpha-down)
  227. (const user-defined-up) (const user-defined-down))
  228. "Sorting choices.")
  229. ;; Keep custom values for `org-agenda-filter-preset' compatible with
  230. ;; the new variable `org-agenda-tag-filter-preset'.
  231. (defvaralias 'org-agenda-filter-preset 'org-agenda-tag-filter-preset)
  232. (defvaralias 'org-agenda-filter 'org-agenda-tag-filter)
  233. (defvar org-agenda-entry-types '(:deadline :scheduled :timestamp :sexp)
  234. "List of types searched for when creating the daily/weekly agenda.
  235. This variable is a list of symbols that controls the types of
  236. items that appear in the daily/weekly agenda. Allowed symbols in this
  237. list are are
  238. :timestamp List items containing a date stamp or date range matching
  239. the selected date. This includes sexp entries in angular
  240. brackets.
  241. :sexp List entries resulting from plain diary-like sexps.
  242. :deadline List deadline due on that date. When the date is today,
  243. also list any deadlines past due, or due within
  244. `org-deadline-warning-days'.
  245. :deadline* Same as above, but only include the deadline if it has an
  246. hour specification as [h]h:mm.
  247. :scheduled List all items which are scheduled for the given date.
  248. The diary for *today* also contains items which were
  249. scheduled earlier and are not yet marked DONE.
  250. :scheduled* Same as above, but only include the scheduled item if it
  251. has an hour specification as [h]h:mm.
  252. By default, all four non-starred types are turned on.
  253. When :scheduled* or :deadline* are included, :schedule or :deadline
  254. will be ignored.
  255. Never set this variable globally using `setq', because then it
  256. will apply to all future agenda commands. Instead, bind it with
  257. `let' to scope it dynamically into the agenda-constructing
  258. command. A good way to set it is through options in
  259. `org-agenda-custom-commands'. For a more flexible (though
  260. somewhat less efficient) way of determining what is included in
  261. the daily/weekly agenda, see `org-agenda-skip-function'.")
  262. (defconst org-agenda-custom-commands-local-options
  263. `(repeat :tag "Local settings for this command. Remember to quote values"
  264. (choice :tag "Setting"
  265. (list :tag "Heading for this block"
  266. (const org-agenda-overriding-header)
  267. (string :tag "Headline"))
  268. (list :tag "Files to be searched"
  269. (const org-agenda-files)
  270. (list
  271. (const :format "" quote)
  272. (repeat (file))))
  273. (list :tag "Sorting strategy"
  274. (const org-agenda-sorting-strategy)
  275. (list
  276. (const :format "" quote)
  277. (repeat
  278. ,org-sorting-choice)))
  279. (list :tag "Prefix format"
  280. (const org-agenda-prefix-format :value " %-12:c%?-12t% s")
  281. (string))
  282. (list :tag "Number of days in agenda"
  283. (const org-agenda-span)
  284. (list
  285. (const :format "" quote)
  286. (choice (const :tag "Day" day)
  287. (const :tag "Week" week)
  288. (const :tag "Fortnight" fortnight)
  289. (const :tag "Month" month)
  290. (const :tag "Year" year)
  291. (integer :tag "Custom"))))
  292. (list :tag "Fixed starting date"
  293. (const org-agenda-start-day)
  294. (string :value "2007-11-01"))
  295. (list :tag "Start on day of week"
  296. (const org-agenda-start-on-weekday)
  297. (choice :value 1
  298. (const :tag "Today" nil)
  299. (integer :tag "Weekday No.")))
  300. (list :tag "Include data from diary"
  301. (const org-agenda-include-diary)
  302. (boolean))
  303. (list :tag "Deadline Warning days"
  304. (const org-deadline-warning-days)
  305. (integer :value 1))
  306. (list :tag "Category filter preset"
  307. (const org-agenda-category-filter-preset)
  308. (list
  309. (const :format "" quote)
  310. (repeat
  311. (string :tag "+category or -category"))))
  312. (list :tag "Tags filter preset"
  313. (const org-agenda-tag-filter-preset)
  314. (list
  315. (const :format "" quote)
  316. (repeat
  317. (string :tag "+tag or -tag"))))
  318. (list :tag "Effort filter preset"
  319. (const org-agenda-effort-filter-preset)
  320. (list
  321. (const :format "" quote)
  322. (repeat
  323. (string :tag "+=10 or -=10 or +<10 or ->10"))))
  324. (list :tag "Regexp filter preset"
  325. (const org-agenda-regexp-filter-preset)
  326. (list
  327. (const :format "" quote)
  328. (repeat
  329. (string :tag "+regexp or -regexp"))))
  330. (list :tag "Set daily/weekly entry types"
  331. (const org-agenda-entry-types)
  332. (list
  333. (const :format "" quote)
  334. (set :greedy t :value ,org-agenda-entry-types
  335. (const :deadline)
  336. (const :scheduled)
  337. (const :deadline*)
  338. (const :scheduled*)
  339. (const :timestamp)
  340. (const :sexp))))
  341. (list :tag "Standard skipping condition"
  342. :value (org-agenda-skip-function '(org-agenda-skip-entry-if))
  343. (const org-agenda-skip-function)
  344. (list
  345. (const :format "" quote)
  346. (list
  347. (choice
  348. :tag "Skipping range"
  349. (const :tag "Skip entry" org-agenda-skip-entry-if)
  350. (const :tag "Skip subtree" org-agenda-skip-subtree-if))
  351. (repeat :inline t :tag "Conditions for skipping"
  352. (choice
  353. :tag "Condition type"
  354. (list :tag "Regexp matches" :inline t
  355. (const :format "" regexp)
  356. (regexp))
  357. (list :tag "Regexp does not match" :inline t
  358. (const :format "" notregexp)
  359. (regexp))
  360. (list :tag "TODO state is" :inline t
  361. (const todo)
  362. (choice
  363. (const :tag "Any not-done state" todo)
  364. (const :tag "Any done state" done)
  365. (const :tag "Any state" any)
  366. (list :tag "Keyword list"
  367. (const :format "" quote)
  368. (repeat (string :tag "Keyword")))))
  369. (list :tag "TODO state is not" :inline t
  370. (const nottodo)
  371. (choice
  372. (const :tag "Any not-done state" todo)
  373. (const :tag "Any done state" done)
  374. (const :tag "Any state" any)
  375. (list :tag "Keyword list"
  376. (const :format "" quote)
  377. (repeat (string :tag "Keyword")))))
  378. (const :tag "scheduled" scheduled)
  379. (const :tag "not scheduled" notscheduled)
  380. (const :tag "deadline" deadline)
  381. (const :tag "no deadline" notdeadline)
  382. (const :tag "timestamp" timestamp)
  383. (const :tag "no timestamp" nottimestamp))))))
  384. (list :tag "Non-standard skipping condition"
  385. :value (org-agenda-skip-function)
  386. (const org-agenda-skip-function)
  387. (sexp :tag "Function or form (quoted!)"))
  388. (list :tag "Any variable"
  389. (variable :tag "Variable")
  390. (sexp :tag "Value (sexp)"))))
  391. "Selection of examples for agenda command settings.
  392. This will be spliced into the custom type of
  393. `org-agenda-custom-commands'.")
  394. (defcustom org-agenda-custom-commands
  395. '(("n" "Agenda and all TODOs" ((agenda "") (alltodo ""))))
  396. "Custom commands for the agenda.
  397. \\<org-mode-map>
  398. These commands will be offered on the splash screen displayed by the
  399. agenda dispatcher `\\[org-agenda]'. Each entry is a list like this:
  400. (key desc type match settings files)
  401. key The key (one or more characters as a string) to be associated
  402. with the command.
  403. desc A description of the command, when omitted or nil, a default
  404. description is built using MATCH.
  405. type The command type, any of the following symbols:
  406. agenda The daily/weekly agenda.
  407. todo Entries with a specific TODO keyword, in all agenda files.
  408. search Entries containing search words entry or headline.
  409. tags Tags/Property/TODO match in all agenda files.
  410. tags-todo Tags/P/T match in all agenda files, TODO entries only.
  411. todo-tree Sparse tree of specific TODO keyword in *current* file.
  412. tags-tree Sparse tree with all tags matches in *current* file.
  413. occur-tree Occur sparse tree for *current* file.
  414. ... A user-defined function.
  415. match What to search for:
  416. - a single keyword for TODO keyword searches
  417. - a tags match expression for tags searches
  418. - a word search expression for text searches.
  419. - a regular expression for occur searches
  420. For all other commands, this should be the empty string.
  421. settings A list of option settings, similar to that in a let form, so like
  422. this: ((opt1 val1) (opt2 val2) ...). The values will be
  423. evaluated at the moment of execution, so quote them when needed.
  424. files A list of files to write the produced agenda buffer to with
  425. the command `org-store-agenda-views'.
  426. If a file name ends in \".html\", an HTML version of the buffer
  427. is written out. If it ends in \".ps\", a postscript version is
  428. produced. Otherwise, only the plain text is written to the file.
  429. You can also define a set of commands, to create a composite agenda buffer.
  430. In this case, an entry looks like this:
  431. (key desc (cmd1 cmd2 ...) general-settings-for-whole-set files)
  432. where
  433. desc A description string to be displayed in the dispatcher menu.
  434. cmd An agenda command, similar to the above. However, tree commands
  435. are not allowed, but instead you can get agenda and global todo list.
  436. So valid commands for a set are:
  437. (agenda \"\" settings)
  438. (alltodo \"\" settings)
  439. (stuck \"\" settings)
  440. (todo \"match\" settings files)
  441. (search \"match\" settings files)
  442. (tags \"match\" settings files)
  443. (tags-todo \"match\" settings files)
  444. Each command can carry a list of options, and another set of options can be
  445. given for the whole set of commands. Individual command options take
  446. precedence over the general options.
  447. When using several characters as key to a command, the first characters
  448. are prefix commands. For the dispatcher to display useful information, you
  449. should provide a description for the prefix, like
  450. (setq org-agenda-custom-commands
  451. \\='((\"h\" . \"HOME + Name tag searches\") ; describe prefix \"h\"
  452. (\"hl\" tags \"+HOME+Lisa\")
  453. (\"hp\" tags \"+HOME+Peter\")
  454. (\"hk\" tags \"+HOME+Kim\")))"
  455. :group 'org-agenda-custom-commands
  456. :type `(repeat
  457. (choice :value ("x" "Describe command here" tags "" nil)
  458. (list :tag "Single command"
  459. (string :tag "Access Key(s) ")
  460. (option (string :tag "Description"))
  461. (choice
  462. (const :tag "Agenda" agenda)
  463. (const :tag "TODO list" alltodo)
  464. (const :tag "Search words" search)
  465. (const :tag "Stuck projects" stuck)
  466. (const :tag "Tags/Property match (all agenda files)" tags)
  467. (const :tag "Tags/Property match of TODO entries (all agenda files)" tags-todo)
  468. (const :tag "TODO keyword search (all agenda files)" todo)
  469. (const :tag "Tags sparse tree (current buffer)" tags-tree)
  470. (const :tag "TODO keyword tree (current buffer)" todo-tree)
  471. (const :tag "Occur tree (current buffer)" occur-tree)
  472. (sexp :tag "Other, user-defined function"))
  473. (string :tag "Match (only for some commands)")
  474. ,org-agenda-custom-commands-local-options
  475. (option (repeat :tag "Export" (file :tag "Export to"))))
  476. (list :tag "Command series, all agenda files"
  477. (string :tag "Access Key(s)")
  478. (string :tag "Description ")
  479. (repeat :tag "Component"
  480. (choice
  481. (list :tag "Agenda"
  482. (const :format "" agenda)
  483. (const :tag "" :format "" "")
  484. ,org-agenda-custom-commands-local-options)
  485. (list :tag "TODO list (all keywords)"
  486. (const :format "" alltodo)
  487. (const :tag "" :format "" "")
  488. ,org-agenda-custom-commands-local-options)
  489. (list :tag "Search words"
  490. (const :format "" search)
  491. (string :tag "Match")
  492. ,org-agenda-custom-commands-local-options)
  493. (list :tag "Stuck projects"
  494. (const :format "" stuck)
  495. (const :tag "" :format "" "")
  496. ,org-agenda-custom-commands-local-options)
  497. (list :tag "Tags search"
  498. (const :format "" tags)
  499. (string :tag "Match")
  500. ,org-agenda-custom-commands-local-options)
  501. (list :tag "Tags search, TODO entries only"
  502. (const :format "" tags-todo)
  503. (string :tag "Match")
  504. ,org-agenda-custom-commands-local-options)
  505. (list :tag "TODO keyword search"
  506. (const :format "" todo)
  507. (string :tag "Match")
  508. ,org-agenda-custom-commands-local-options)
  509. (list :tag "Other, user-defined function"
  510. (symbol :tag "function")
  511. (string :tag "Match")
  512. ,org-agenda-custom-commands-local-options)))
  513. (repeat :tag "Settings for entire command set"
  514. (list (variable :tag "Any variable")
  515. (sexp :tag "Value")))
  516. (option (repeat :tag "Export" (file :tag "Export to"))))
  517. (cons :tag "Prefix key documentation"
  518. (string :tag "Access Key(s)")
  519. (string :tag "Description ")))))
  520. (defcustom org-agenda-query-register ?o
  521. "The register holding the current query string.
  522. The purpose of this is that if you construct a query string interactively,
  523. you can then use it to define a custom command."
  524. :group 'org-agenda-custom-commands
  525. :type 'character)
  526. (defcustom org-stuck-projects
  527. '("+LEVEL=2/-DONE" ("TODO" "NEXT" "NEXTACTION") nil "")
  528. "How to identify stuck projects.
  529. This is a list of four items:
  530. 1. A tags/todo/property matcher string that is used to identify a project.
  531. See the manual for a description of tag and property searches.
  532. The entire tree below a headline matched by this is considered one project.
  533. 2. A list of TODO keywords identifying non-stuck projects.
  534. If the project subtree contains any headline with one of these todo
  535. keywords, the project is considered to be not stuck. If you specify
  536. \"*\" as a keyword, any TODO keyword will mark the project unstuck.
  537. 3. A list of tags identifying non-stuck projects.
  538. If the project subtree contains any headline with one of these tags,
  539. the project is considered to be not stuck. If you specify \"*\" as
  540. a tag, any tag will mark the project unstuck. Note that this is about
  541. the explicit presence of a tag somewhere in the subtree, inherited
  542. tags do not count here. If inherited tags make a project not stuck,
  543. use \"-TAG\" in the tags part of the matcher under (1.) above.
  544. 4. An arbitrary regular expression matching non-stuck projects.
  545. If the project turns out to be not stuck, search continues also in the
  546. subtree to see if any of the subtasks have project status.
  547. See also the variable `org-tags-match-list-sublevels' which applies
  548. to projects matched by this search as well.
  549. After defining this variable, you may use `org-agenda-list-stuck-projects'
  550. \(bound to `\\[org-agenda] #') to produce the list."
  551. :group 'org-agenda-custom-commands
  552. :type '(list
  553. (string :tag "Tags/TODO match to identify a project")
  554. (repeat :tag "Projects are *not* stuck if they have an entry with \
  555. TODO keyword any of" (string))
  556. (repeat :tag "Projects are *not* stuck if they have an entry with \
  557. TAG being any of" (string))
  558. (regexp :tag "Projects are *not* stuck if this regexp matches inside \
  559. the subtree")))
  560. (defgroup org-agenda-skip nil
  561. "Options concerning skipping parts of agenda files."
  562. :tag "Org Agenda Skip"
  563. :group 'org-agenda)
  564. (defcustom org-agenda-skip-function-global nil
  565. "Function to be called at each match during agenda construction.
  566. If this function returns nil, the current match should not be skipped.
  567. If the function decided to skip an agenda match, is must return the
  568. buffer position from which the search should be continued.
  569. This may also be a Lisp form, which will be evaluated.
  570. This variable will be applied to every agenda match, including
  571. tags/property searches and TODO lists. So try to make the test function
  572. do its checking as efficiently as possible. To implement a skipping
  573. condition just for specific agenda commands, use the variable
  574. `org-agenda-skip-function' which can be set in the options section
  575. of custom agenda commands."
  576. :group 'org-agenda-skip
  577. :type 'sexp)
  578. (defgroup org-agenda-daily/weekly nil
  579. "Options concerning the daily/weekly agenda."
  580. :tag "Org Agenda Daily/Weekly"
  581. :group 'org-agenda)
  582. (defgroup org-agenda-todo-list nil
  583. "Options concerning the global todo list agenda view."
  584. :tag "Org Agenda Todo List"
  585. :group 'org-agenda)
  586. (defgroup org-agenda-match-view nil
  587. "Options concerning the general tags/property/todo match agenda view."
  588. :tag "Org Agenda Match View"
  589. :group 'org-agenda)
  590. (defgroup org-agenda-search-view nil
  591. "Options concerning the search agenda view."
  592. :tag "Org Agenda Search View"
  593. :group 'org-agenda)
  594. (defvar org-agenda-archives-mode nil
  595. "Non-nil means the agenda will include archived items.
  596. If this is the symbol `trees', trees in the selected agenda scope
  597. that are marked with the ARCHIVE tag will be included anyway. When this is
  598. t, also all archive files associated with the current selection of agenda
  599. files will be included.")
  600. (defcustom org-agenda-restriction-lock-highlight-subtree t
  601. "Non-nil means highlight the whole subtree when restriction is active.
  602. Otherwise only highlight the headline. Highlighting the whole subtree is
  603. useful to ensure no edits happen beyond the restricted region."
  604. :group 'org-agenda
  605. :type 'boolean)
  606. (defcustom org-agenda-skip-comment-trees t
  607. "Non-nil means skip trees that start with the COMMENT keyword.
  608. When nil, these trees are also scanned by agenda commands."
  609. :group 'org-agenda-skip
  610. :type 'boolean)
  611. (defcustom org-agenda-todo-list-sublevels t
  612. "Non-nil means check also the sublevels of a TODO entry for TODO entries.
  613. When nil, the sublevels of a TODO entry are not checked, resulting in
  614. potentially much shorter TODO lists."
  615. :group 'org-agenda-skip
  616. :group 'org-agenda-todo-list
  617. :type 'boolean)
  618. (defcustom org-agenda-todo-ignore-with-date nil
  619. "Non-nil means don't show entries with a date in the global todo list.
  620. You can use this if you prefer to mark mere appointments with a TODO keyword,
  621. but don't want them to show up in the TODO list.
  622. When this is set, it also covers deadlines and scheduled items, the settings
  623. of `org-agenda-todo-ignore-scheduled' and `org-agenda-todo-ignore-deadlines'
  624. will be ignored.
  625. See also the variable `org-agenda-tags-todo-honor-ignore-options'."
  626. :group 'org-agenda-skip
  627. :group 'org-agenda-todo-list
  628. :type 'boolean)
  629. (defcustom org-agenda-todo-ignore-timestamp nil
  630. "Non-nil means don't show entries with a timestamp.
  631. This applies when creating the global todo list.
  632. Valid values are:
  633. past Don't show entries for today or in the past.
  634. future Don't show entries with a timestamp in the future.
  635. The idea behind this is that if it has a future
  636. timestamp, you don't want to think about it until the
  637. date.
  638. all Don't show any entries with a timestamp in the global todo list.
  639. The idea behind this is that by setting a timestamp, you
  640. have already \"taken care\" of this item.
  641. This variable can also have an integer as a value. If positive (N),
  642. todos with a timestamp N or more days in the future will be ignored. If
  643. negative (-N), todos with a timestamp N or more days in the past will be
  644. ignored. If 0, todos with a timestamp either today or in the future will
  645. be ignored. For example, a value of -1 will exclude todos with a
  646. timestamp in the past (yesterday or earlier), while a value of 7 will
  647. exclude todos with a timestamp a week or more in the future.
  648. See also `org-agenda-todo-ignore-with-date'.
  649. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  650. to make his option also apply to the tags-todo list."
  651. :group 'org-agenda-skip
  652. :group 'org-agenda-todo-list
  653. :version "24.1"
  654. :type '(choice
  655. (const :tag "Ignore future timestamp todos" future)
  656. (const :tag "Ignore past or present timestamp todos" past)
  657. (const :tag "Ignore all timestamp todos" all)
  658. (const :tag "Show timestamp todos" nil)
  659. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  660. (defcustom org-agenda-todo-ignore-scheduled nil
  661. "Non-nil means, ignore some scheduled TODO items when making TODO list.
  662. This applies when creating the global todo list.
  663. Valid values are:
  664. past Don't show entries scheduled today or in the past.
  665. future Don't show entries scheduled in the future.
  666. The idea behind this is that by scheduling it, you don't want to
  667. think about it until the scheduled date.
  668. all Don't show any scheduled entries in the global todo list.
  669. The idea behind this is that by scheduling it, you have already
  670. \"taken care\" of this item.
  671. t Same as `all', for backward compatibility.
  672. This variable can also have an integer as a value. See
  673. `org-agenda-todo-ignore-timestamp' for more details.
  674. See also `org-agenda-todo-ignore-with-date'.
  675. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  676. to make his option also apply to the tags-todo list."
  677. :group 'org-agenda-skip
  678. :group 'org-agenda-todo-list
  679. :type '(choice
  680. (const :tag "Ignore future-scheduled todos" future)
  681. (const :tag "Ignore past- or present-scheduled todos" past)
  682. (const :tag "Ignore all scheduled todos" all)
  683. (const :tag "Ignore all scheduled todos (compatibility)" t)
  684. (const :tag "Show scheduled todos" nil)
  685. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  686. (defcustom org-agenda-todo-ignore-deadlines nil
  687. "Non-nil means ignore some deadline TODO items when making TODO list.
  688. There are different motivations for using different values, please think
  689. carefully when configuring this variable.
  690. This applies when creating the global TODO list.
  691. Valid values are:
  692. near Don't show near deadline entries. A deadline is near when it is
  693. closer than `org-deadline-warning-days' days. The idea behind this
  694. is that such items will appear in the agenda anyway.
  695. far Don't show TODO entries where a deadline has been defined, but
  696. is not going to happen anytime soon. This is useful if you want to use
  697. the TODO list to figure out what to do now.
  698. past Don't show entries with a deadline timestamp for today or in the past.
  699. future Don't show entries with a deadline timestamp in the future, not even
  700. when they become `near' ones. Use it with caution.
  701. all Ignore all TODO entries that do have a deadline.
  702. t Same as `near', for backward compatibility.
  703. This variable can also have an integer as a value. See
  704. `org-agenda-todo-ignore-timestamp' for more details.
  705. See also `org-agenda-todo-ignore-with-date'.
  706. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  707. to make his option also apply to the tags-todo list."
  708. :group 'org-agenda-skip
  709. :group 'org-agenda-todo-list
  710. :type '(choice
  711. (const :tag "Ignore near deadlines" near)
  712. (const :tag "Ignore near deadlines (compatibility)" t)
  713. (const :tag "Ignore far deadlines" far)
  714. (const :tag "Ignore all TODOs with a deadlines" all)
  715. (const :tag "Show all TODOs, even if they have a deadline" nil)
  716. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  717. (defcustom org-agenda-todo-ignore-time-comparison-use-seconds nil
  718. "Time unit to use when possibly ignoring an agenda item.
  719. See the docstring of various `org-agenda-todo-ignore-*' options.
  720. The default is to compare time stamps using days. An item is thus
  721. considered to be in the future if it is at least one day after today.
  722. Non-nil means to compare time stamps using seconds. An item is then
  723. considered future if it has a time value later than current time."
  724. :group 'org-agenda-skip
  725. :group 'org-agenda-todo-list
  726. :version "24.4"
  727. :package-version '(Org . "8.0")
  728. :type '(choice
  729. (const :tag "Compare time with days" nil)
  730. (const :tag "Compare time with seconds" t)))
  731. (defcustom org-agenda-tags-todo-honor-ignore-options nil
  732. "Non-nil means honor todo-list ignores options also in tags-todo search.
  733. The variables
  734. `org-agenda-todo-ignore-with-date',
  735. `org-agenda-todo-ignore-timestamp',
  736. `org-agenda-todo-ignore-scheduled',
  737. `org-agenda-todo-ignore-deadlines'
  738. make the global TODO list skip entries that have time stamps of certain
  739. kinds. If this option is set, the same options will also apply for the
  740. tags-todo search, which is the general tags/property matcher
  741. restricted to unfinished TODO entries only."
  742. :group 'org-agenda-skip
  743. :group 'org-agenda-todo-list
  744. :group 'org-agenda-match-view
  745. :type 'boolean)
  746. (defcustom org-agenda-skip-scheduled-if-done nil
  747. "Non-nil means don't show scheduled items in agenda when they are done.
  748. This is relevant for the daily/weekly agenda, not for the TODO list. It
  749. applies only to the actual date of the scheduling. Warnings about an item
  750. with a past scheduling dates are always turned off when the item is DONE."
  751. :group 'org-agenda-skip
  752. :group 'org-agenda-daily/weekly
  753. :type 'boolean)
  754. (defcustom org-agenda-skip-scheduled-if-deadline-is-shown nil
  755. "Non-nil means skip scheduling line if same entry shows because of deadline.
  756. In the agenda of today, an entry can show up multiple times
  757. because it is both scheduled and has a nearby deadline, and maybe
  758. a plain time stamp as well.
  759. When this variable is nil, the entry will be shown several times.
  760. When set to t, then only the deadline is shown and the fact that
  761. the entry is scheduled today or was scheduled previously is not
  762. shown.
  763. When set to the symbol `not-today', skip scheduled previously,
  764. but not scheduled today.
  765. When set to the symbol `repeated-after-deadline', skip scheduled
  766. items if they are repeated beyond the current deadline."
  767. :group 'org-agenda-skip
  768. :group 'org-agenda-daily/weekly
  769. :type '(choice
  770. (const :tag "Never" nil)
  771. (const :tag "Always" t)
  772. (const :tag "Not when scheduled today" not-today)
  773. (const :tag "When repeated past deadline" repeated-after-deadline)))
  774. (defcustom org-agenda-skip-timestamp-if-deadline-is-shown nil
  775. "Non-nil means skip timestamp line if same entry shows because of deadline.
  776. In the agenda of today, an entry can show up multiple times
  777. because it has both a plain timestamp and has a nearby deadline.
  778. When this variable is t, then only the deadline is shown and the
  779. fact that the entry has a timestamp for or including today is not
  780. shown. When this variable is nil, the entry will be shown
  781. several times."
  782. :group 'org-agenda-skip
  783. :group 'org-agenda-daily/weekly
  784. :version "24.1"
  785. :type '(choice
  786. (const :tag "Never" nil)
  787. (const :tag "Always" t)))
  788. (defcustom org-agenda-skip-deadline-if-done nil
  789. "Non-nil means don't show deadlines when the corresponding item is done.
  790. When nil, the deadline is still shown and should give you a happy feeling.
  791. This is relevant for the daily/weekly agenda. It applies only to the
  792. actual date of the deadline. Warnings about approaching and past-due
  793. deadlines are always turned off when the item is DONE."
  794. :group 'org-agenda-skip
  795. :group 'org-agenda-daily/weekly
  796. :type 'boolean)
  797. (defcustom org-agenda-skip-deadline-prewarning-if-scheduled nil
  798. "Non-nil means skip deadline prewarning when entry is also scheduled.
  799. This will apply on all days where a prewarning for the deadline would
  800. be shown, but not at the day when the entry is actually due. On that day,
  801. the deadline will be shown anyway.
  802. This variable may be set to nil, t, the symbol `pre-scheduled',
  803. or a number which will then give the number of days before the actual
  804. deadline when the prewarnings should resume. The symbol `pre-scheduled'
  805. eliminates the deadline prewarning only prior to the scheduled date.
  806. This can be used in a workflow where the first showing of the deadline will
  807. trigger you to schedule it, and then you don't want to be reminded of it
  808. because you will take care of it on the day when scheduled."
  809. :group 'org-agenda-skip
  810. :group 'org-agenda-daily/weekly
  811. :version "24.1"
  812. :type '(choice
  813. (const :tag "Always show prewarning" nil)
  814. (const :tag "Remove prewarning prior to scheduled date" pre-scheduled)
  815. (const :tag "Remove prewarning if entry is scheduled" t)
  816. (integer :tag "Restart prewarning N days before deadline")))
  817. (defcustom org-agenda-skip-scheduled-delay-if-deadline nil
  818. "Non-nil means skip scheduled delay when entry also has a deadline.
  819. This variable may be set to nil, t, the symbol `post-deadline',
  820. or a number which will then give the number of days after the actual
  821. scheduled date when the delay should expire. The symbol `post-deadline'
  822. eliminates the schedule delay when the date is posterior to the deadline."
  823. :group 'org-agenda-skip
  824. :group 'org-agenda-daily/weekly
  825. :version "24.4"
  826. :package-version '(Org . "8.0")
  827. :type '(choice
  828. (const :tag "Always honor delay" nil)
  829. (const :tag "Ignore delay if posterior to the deadline" post-deadline)
  830. (const :tag "Ignore delay if entry has a deadline" t)
  831. (integer :tag "Honor delay up until N days after the scheduled date")))
  832. (defcustom org-agenda-skip-additional-timestamps-same-entry nil
  833. "When nil, multiple same-day timestamps in entry make multiple agenda lines.
  834. When non-nil, after the search for timestamps has matched once in an
  835. entry, the rest of the entry will not be searched."
  836. :group 'org-agenda-skip
  837. :type 'boolean)
  838. (defcustom org-agenda-skip-timestamp-if-done nil
  839. "Non-nil means don't select item by timestamp or -range if it is DONE."
  840. :group 'org-agenda-skip
  841. :group 'org-agenda-daily/weekly
  842. :type 'boolean)
  843. (defcustom org-agenda-dim-blocked-tasks t
  844. "Non-nil means dim blocked tasks in the agenda display.
  845. This causes some overhead during agenda construction, but if you
  846. have turned on `org-enforce-todo-dependencies',
  847. `org-enforce-todo-checkbox-dependencies', or any other blocking
  848. mechanism, this will create useful feedback in the agenda.
  849. Instead of t, this variable can also have the value `invisible'.
  850. Then blocked tasks will be invisible and only become visible when
  851. they become unblocked. An exemption to this behavior is when a task is
  852. blocked because of unchecked checkboxes below it. Since checkboxes do
  853. not show up in the agenda views, making this task invisible you remove any
  854. trace from agenda views that there is something to do. Therefore, a task
  855. that is blocked because of checkboxes will never be made invisible, it
  856. will only be dimmed."
  857. :group 'org-agenda-daily/weekly
  858. :group 'org-agenda-todo-list
  859. :version "24.3"
  860. :type '(choice
  861. (const :tag "Do not dim" nil)
  862. (const :tag "Dim to a gray face" t)
  863. (const :tag "Make invisible" invisible)))
  864. (defgroup org-agenda-startup nil
  865. "Options concerning initial settings in the Agenda in Org Mode."
  866. :tag "Org Agenda Startup"
  867. :group 'org-agenda)
  868. (defcustom org-agenda-menu-show-matcher t
  869. "Non-nil means show the match string in the agenda dispatcher menu.
  870. When nil, the matcher string is not shown, but is put into the help-echo
  871. property so than moving the mouse over the command shows it.
  872. Setting it to nil is good if matcher strings are very long and/or if
  873. you want to use two-columns display (see `org-agenda-menu-two-columns')."
  874. :group 'org-agenda
  875. :version "24.1"
  876. :type 'boolean)
  877. (defcustom org-agenda-menu-two-columns nil
  878. "Non-nil means, use two columns to show custom commands in the dispatcher.
  879. If you use this, you probably want to set `org-agenda-menu-show-matcher'
  880. to nil."
  881. :group 'org-agenda
  882. :version "24.1"
  883. :type 'boolean)
  884. (defcustom org-agenda-finalize-hook nil
  885. "Hook run just before displaying an agenda buffer.
  886. The buffer is still writable when the hook is called.
  887. You can modify some of the buffer substrings but you should be
  888. extra careful not to modify the text properties of the agenda
  889. headlines as the agenda display heavily relies on them."
  890. :group 'org-agenda-startup
  891. :type 'hook)
  892. (defcustom org-agenda-mouse-1-follows-link nil
  893. "Non-nil means mouse-1 on a link will follow the link in the agenda.
  894. A longer mouse click will still set point. Needs to be set
  895. before org.el is loaded."
  896. :group 'org-agenda-startup
  897. :type 'boolean)
  898. (defcustom org-agenda-start-with-follow-mode nil
  899. "The initial value of follow mode in a newly created agenda window."
  900. :group 'org-agenda-startup
  901. :type 'boolean)
  902. (defcustom org-agenda-follow-indirect nil
  903. "Non-nil means `org-agenda-follow-mode' displays only the
  904. current item's tree, in an indirect buffer."
  905. :group 'org-agenda
  906. :version "24.1"
  907. :type 'boolean)
  908. (defcustom org-agenda-show-outline-path t
  909. "Non-nil means show outline path in echo area after line motion."
  910. :group 'org-agenda-startup
  911. :type 'boolean)
  912. (defcustom org-agenda-start-with-entry-text-mode nil
  913. "The initial value of entry-text-mode in a newly created agenda window."
  914. :group 'org-agenda-startup
  915. :type 'boolean)
  916. (defcustom org-agenda-entry-text-maxlines 5
  917. "Number of text lines to be added when `E' is pressed in the agenda.
  918. Note that this variable only used during agenda display. To add entry text
  919. when exporting the agenda, configure the variable
  920. `org-agenda-add-entry-text-maxlines'."
  921. :group 'org-agenda
  922. :type 'integer)
  923. (defcustom org-agenda-entry-text-exclude-regexps nil
  924. "List of regular expressions to clean up entry text.
  925. The complete matches of all regular expressions in this list will be
  926. removed from entry text before it is shown in the agenda."
  927. :group 'org-agenda
  928. :type '(repeat (regexp)))
  929. (defcustom org-agenda-entry-text-leaders " > "
  930. "Text prepended to the entry text in agenda buffers."
  931. :version "24.4"
  932. :package-version '(Org . "8.0")
  933. :group 'org-agenda
  934. :type 'string)
  935. (defvar org-agenda-entry-text-cleanup-hook nil
  936. "Hook that is run after basic cleanup of entry text to be shown in agenda.
  937. This cleanup is done in a temporary buffer, so the function may inspect and
  938. change the entire buffer.
  939. Some default stuff like drawers and scheduling/deadline dates will already
  940. have been removed when this is called, as will any matches for regular
  941. expressions listed in `org-agenda-entry-text-exclude-regexps'.")
  942. (defvar org-agenda-include-inactive-timestamps nil
  943. "Non-nil means include inactive time stamps in agenda.
  944. Dynamically scoped.")
  945. (defgroup org-agenda-windows nil
  946. "Options concerning the windows used by the Agenda in Org Mode."
  947. :tag "Org Agenda Windows"
  948. :group 'org-agenda)
  949. (defcustom org-agenda-window-setup 'reorganize-frame
  950. "How the agenda buffer should be displayed.
  951. Possible values for this option are:
  952. current-window Show agenda in the current window, keeping all other windows.
  953. other-window Use `switch-to-buffer-other-window' to display agenda.
  954. only-window Show agenda, deleting all other windows.
  955. reorganize-frame Show only two windows on the current frame, the current
  956. window and the agenda.
  957. other-frame Use `switch-to-buffer-other-frame' to display agenda.
  958. Also, when exiting the agenda, kill that frame.
  959. See also the variable `org-agenda-restore-windows-after-quit'."
  960. :group 'org-agenda-windows
  961. :type '(choice
  962. (const current-window)
  963. (const other-frame)
  964. (const other-window)
  965. (const only-window)
  966. (const reorganize-frame)))
  967. (defcustom org-agenda-window-frame-fractions '(0.5 . 0.75)
  968. "The min and max height of the agenda window as a fraction of frame height.
  969. The value of the variable is a cons cell with two numbers between 0 and 1.
  970. It only matters if `org-agenda-window-setup' is `reorganize-frame'."
  971. :group 'org-agenda-windows
  972. :type '(cons (number :tag "Minimum") (number :tag "Maximum")))
  973. (defcustom org-agenda-restore-windows-after-quit nil
  974. "Non-nil means restore window configuration upon exiting agenda.
  975. Before the window configuration is changed for displaying the agenda,
  976. the current status is recorded. When the agenda is exited with
  977. `q' or `x' and this option is set, the old state is restored. If
  978. `org-agenda-window-setup' is `other-frame', the value of this
  979. option will be ignored."
  980. :group 'org-agenda-windows
  981. :type 'boolean)
  982. (defcustom org-agenda-span 'week
  983. "Number of days to include in overview display.
  984. Can be day, week, month, year, or any number of days.
  985. Custom commands can set this variable in the options section."
  986. :group 'org-agenda-daily/weekly
  987. :type '(choice (const :tag "Day" day)
  988. (const :tag "Week" week)
  989. (const :tag "Fortnight" fortnight)
  990. (const :tag "Month" month)
  991. (const :tag "Year" year)
  992. (integer :tag "Custom")))
  993. (defcustom org-agenda-start-on-weekday 1
  994. "Non-nil means start the overview always on the specified weekday.
  995. 0 denotes Sunday, 1 denotes Monday, etc.
  996. When nil, always start on the current day.
  997. Custom commands can set this variable in the options section."
  998. :group 'org-agenda-daily/weekly
  999. :type '(choice (const :tag "Today" nil)
  1000. (integer :tag "Weekday No.")))
  1001. (defcustom org-agenda-show-all-dates t
  1002. "Non-nil means `org-agenda' shows every day in the selected range.
  1003. When nil, only the days which actually have entries are shown."
  1004. :group 'org-agenda-daily/weekly
  1005. :type 'boolean)
  1006. (defcustom org-agenda-format-date 'org-agenda-format-date-aligned
  1007. "Format string for displaying dates in the agenda.
  1008. Used by the daily/weekly agenda. This should be a format string
  1009. understood by `format-time-string', or a function returning the
  1010. formatted date as a string. The function must take a single
  1011. argument, a calendar-style date list like (month day year)."
  1012. :group 'org-agenda-daily/weekly
  1013. :type '(choice
  1014. (string :tag "Format string")
  1015. (function :tag "Function")))
  1016. (defun org-agenda-format-date-aligned (date)
  1017. "Format a DATE string for display in the daily/weekly agenda.
  1018. This function makes sure that dates are aligned for easy reading."
  1019. (require 'cal-iso)
  1020. (let* ((dayname (calendar-day-name date))
  1021. (day (cadr date))
  1022. (day-of-week (calendar-day-of-week date))
  1023. (month (car date))
  1024. (monthname (calendar-month-name month))
  1025. (year (nth 2 date))
  1026. (iso-week (org-days-to-iso-week
  1027. (calendar-absolute-from-gregorian date)))
  1028. (weekyear (cond ((and (= month 1) (>= iso-week 52))
  1029. (1- year))
  1030. ((and (= month 12) (<= iso-week 1))
  1031. (1+ year))
  1032. (t year)))
  1033. (weekstring (if (= day-of-week 1)
  1034. (format " W%02d" iso-week)
  1035. "")))
  1036. (format "%-10s %2d %s %4d%s"
  1037. dayname day monthname year weekstring)))
  1038. (defcustom org-agenda-time-leading-zero nil
  1039. "Non-nil means use leading zero for military times in agenda.
  1040. For example, 9:30am would become 09:30 rather than 9:30."
  1041. :group 'org-agenda-daily/weekly
  1042. :version "24.1"
  1043. :type 'boolean)
  1044. (defcustom org-agenda-timegrid-use-ampm nil
  1045. "When set, show AM/PM style timestamps on the timegrid."
  1046. :group 'org-agenda
  1047. :version "24.1"
  1048. :type 'boolean)
  1049. (defun org-agenda-time-of-day-to-ampm (time)
  1050. "Convert TIME of a string like \"13:45\" to an AM/PM style time string."
  1051. (let* ((hour-number (string-to-number (substring time 0 -3)))
  1052. (minute (substring time -2))
  1053. (ampm "am"))
  1054. (cond
  1055. ((equal hour-number 12)
  1056. (setq ampm "pm"))
  1057. ((> hour-number 12)
  1058. (setq ampm "pm")
  1059. (setq hour-number (- hour-number 12))))
  1060. (concat
  1061. (if org-agenda-time-leading-zero
  1062. (format "%02d" hour-number)
  1063. (format "%02s" (number-to-string hour-number)))
  1064. ":" minute ampm)))
  1065. (defun org-agenda-time-of-day-to-ampm-maybe (time)
  1066. "Conditionally convert TIME to AM/PM format based on `org-agenda-timegrid-use-ampm'."
  1067. (if org-agenda-timegrid-use-ampm
  1068. (org-agenda-time-of-day-to-ampm time)
  1069. time))
  1070. (defcustom org-agenda-weekend-days '(6 0)
  1071. "Which days are weekend?
  1072. These days get the special face `org-agenda-date-weekend' in the agenda."
  1073. :group 'org-agenda-daily/weekly
  1074. :type '(set :greedy t
  1075. (const :tag "Monday" 1)
  1076. (const :tag "Tuesday" 2)
  1077. (const :tag "Wednesday" 3)
  1078. (const :tag "Thursday" 4)
  1079. (const :tag "Friday" 5)
  1080. (const :tag "Saturday" 6)
  1081. (const :tag "Sunday" 0)))
  1082. (defcustom org-agenda-move-date-from-past-immediately-to-today t
  1083. "Non-nil means jump to today when moving a past date forward in time.
  1084. When using S-right in the agenda to move a a date forward, and the date
  1085. stamp currently points to the past, the first key press will move it
  1086. to today. WHen nil, just move one day forward even if the date stays
  1087. in the past."
  1088. :group 'org-agenda-daily/weekly
  1089. :version "24.1"
  1090. :type 'boolean)
  1091. (defcustom org-agenda-include-diary nil
  1092. "If non-nil, include in the agenda entries from the Emacs Calendar's diary.
  1093. Custom commands can set this variable in the options section."
  1094. :group 'org-agenda-daily/weekly
  1095. :type 'boolean)
  1096. (defcustom org-agenda-include-deadlines t
  1097. "If non-nil, include entries within their deadline warning period.
  1098. Custom commands can set this variable in the options section."
  1099. :group 'org-agenda-daily/weekly
  1100. :version "24.1"
  1101. :type 'boolean)
  1102. (defcustom org-agenda-show-future-repeats t
  1103. "Non-nil shows repeated entries in the future part of the agenda.
  1104. When set to the symbol `next' only the first future repeat is shown."
  1105. :group 'org-agenda-daily/weekly
  1106. :type '(choice
  1107. (const :tag "Show all repeated entries" t)
  1108. (const :tag "Show next repeated entry" next)
  1109. (const :tag "Do not show repeated entries" nil))
  1110. :version "26.1"
  1111. :package-version '(Org . "9.1")
  1112. :safe #'symbolp)
  1113. (defcustom org-agenda-prefer-last-repeat nil
  1114. "Non-nil sets date for repeated entries to their last repeat.
  1115. When nil, display SCHEDULED and DEADLINE dates at their base
  1116. date, and in today's agenda, as a reminder. Display plain
  1117. time-stamps, on the other hand, at every repeat date in the past
  1118. in addition to the base date.
  1119. When non-nil, show a repeated entry at its latest repeat date,
  1120. possibly being today even if it wasn't marked as done. This
  1121. setting is useful if you do not always mark repeated entries as
  1122. done and, yet, consider that reaching repeat date starts the task
  1123. anew.
  1124. When set to a list of strings, prefer last repeats only for
  1125. entries with these TODO keywords."
  1126. :group 'org-agenda-daily/weekly
  1127. :type '(choice
  1128. (const :tag "Prefer last repeat" t)
  1129. (const :tag "Prefer base date" nil)
  1130. (repeat :tag "Prefer last repeat for entries with these TODO keywords"
  1131. (string :tag "TODO keyword")))
  1132. :version "26.1"
  1133. :package-version '(Org . "9.1")
  1134. :safe (lambda (x) (or (booleanp x) (consp x))))
  1135. (defcustom org-scheduled-past-days 10000
  1136. "Number of days to continue listing scheduled items not marked DONE.
  1137. When an item is scheduled on a date, it shows up in the agenda on
  1138. this day and will be listed until it is marked done or for the
  1139. number of days given here."
  1140. :group 'org-agenda-daily/weekly
  1141. :type 'integer
  1142. :safe 'integerp)
  1143. (defcustom org-deadline-past-days 10000
  1144. "Number of days to warn about missed deadlines.
  1145. When an item has deadline on a date, it shows up in the agenda on
  1146. this day and will appear as a reminder until it is marked DONE or
  1147. for the number of days given here."
  1148. :group 'org-agenda-daily/weekly
  1149. :type 'integer
  1150. :version "26.1"
  1151. :package-version '(Org . "9.1")
  1152. :safe 'integerp)
  1153. (defcustom org-agenda-log-mode-items '(closed clock)
  1154. "List of items that should be shown in agenda log mode.
  1155. \\<org-agenda-mode-map>\
  1156. This list may contain the following symbols:
  1157. closed Show entries that have been closed on that day.
  1158. clock Show entries that have received clocked time on that day.
  1159. state Show all logged state changes.
  1160. Note that instead of changing this variable, you can also press \
  1161. `\\[universal-argument] \\[org-agenda-log-mode]' in
  1162. the agenda to display all available LOG items temporarily."
  1163. :group 'org-agenda-daily/weekly
  1164. :type '(set :greedy t (const closed) (const clock) (const state)))
  1165. (defcustom org-agenda-clock-consistency-checks
  1166. '(:max-duration "10:00" :min-duration 0 :max-gap "0:05"
  1167. :gap-ok-around ("4:00")
  1168. :default-face ((:background "DarkRed") (:foreground "white"))
  1169. :overlap-face nil :gap-face nil :no-end-time-face nil
  1170. :long-face nil :short-face nil)
  1171. "This is a property list, with the following keys:
  1172. :max-duration Mark clocking chunks that are longer than this time.
  1173. This is a time string like \"HH:MM\", or the number
  1174. of minutes as an integer.
  1175. :min-duration Mark clocking chunks that are shorter that this.
  1176. This is a time string like \"HH:MM\", or the number
  1177. of minutes as an integer.
  1178. :max-gap Mark gaps between clocking chunks that are longer than
  1179. this duration. A number of minutes, or a string
  1180. like \"HH:MM\".
  1181. :gap-ok-around List of times during the day which are usually not working
  1182. times. When a gap is detected, but the gap contains any
  1183. of these times, the gap is *not* reported. For example,
  1184. if this is (\"4:00\" \"13:00\") then gaps that contain
  1185. 4:00 in the morning (i.e. the night) and 13:00
  1186. (i.e. a typical lunch time) do not cause a warning.
  1187. You should have at least one time during the night in this
  1188. list, or otherwise the first task each morning will trigger
  1189. a warning because it follows a long gap.
  1190. Furthermore, the following properties can be used to define faces for
  1191. issue display.
  1192. :default-face the default face, if the specific face is undefined
  1193. :overlap-face face for overlapping clocks
  1194. :gap-face face for gaps between clocks
  1195. :no-end-time-face face for incomplete clocks
  1196. :long-face face for clock intervals that are too long
  1197. :short-face face for clock intervals that are too short"
  1198. :group 'org-agenda-daily/weekly
  1199. :group 'org-clock
  1200. :version "24.1"
  1201. :type 'plist)
  1202. (defcustom org-agenda-log-mode-add-notes t
  1203. "Non-nil means add first line of notes to log entries in agenda views.
  1204. If a log item like a state change or a clock entry is associated with
  1205. notes, the first line of these notes will be added to the entry in the
  1206. agenda display."
  1207. :group 'org-agenda-daily/weekly
  1208. :type 'boolean)
  1209. (defcustom org-agenda-start-with-log-mode nil
  1210. "The initial value of log-mode in a newly created agenda window.
  1211. See `org-agenda-log-mode' and `org-agenda-log-mode-items' for further
  1212. explanations on the possible values."
  1213. :group 'org-agenda-startup
  1214. :group 'org-agenda-daily/weekly
  1215. :type '(choice (const :tag "Don't show log items" nil)
  1216. (const :tag "Show only log items" only)
  1217. (const :tag "Show all possible log items" clockcheck)
  1218. (repeat :tag "Choose among possible values for `org-agenda-log-mode-items'"
  1219. (choice (const :tag "Show closed log items" closed)
  1220. (const :tag "Show clocked log items" clock)
  1221. (const :tag "Show all logged state changes" state)))))
  1222. (defcustom org-agenda-start-with-clockreport-mode nil
  1223. "The initial value of clockreport-mode in a newly created agenda window."
  1224. :group 'org-agenda-startup
  1225. :group 'org-agenda-daily/weekly
  1226. :type 'boolean)
  1227. (defcustom org-agenda-clockreport-parameter-plist '(:link t :maxlevel 2)
  1228. "Property list with parameters for the clocktable in clockreport mode.
  1229. This is the display mode that shows a clock table in the daily/weekly
  1230. agenda, the properties for this dynamic block can be set here.
  1231. The usual clocktable parameters are allowed here, but you cannot set
  1232. the properties :name, :tstart, :tend, :block, and :scope - these will
  1233. be overwritten to make sure the content accurately reflects the
  1234. current display in the agenda."
  1235. :group 'org-agenda-daily/weekly
  1236. :type 'plist)
  1237. (defcustom org-agenda-search-view-always-boolean nil
  1238. "Non-nil means the search string is interpreted as individual parts.
  1239. The search string for search view can either be interpreted as a phrase,
  1240. or as a list of snippets that define a boolean search for a number of
  1241. strings.
  1242. When this is non-nil, the string will be split on whitespace, and each
  1243. snippet will be searched individually, and all must match in order to
  1244. select an entry. A snippet is then a single string of non-white
  1245. characters, or a string in double quotes, or a regexp in {} braces.
  1246. If a snippet is preceded by \"-\", the snippet must *not* match.
  1247. \"+\" is syntactic sugar for positive selection. Each snippet may
  1248. be found as a full word or a partial word, but see the variable
  1249. `org-agenda-search-view-force-full-words'.
  1250. When this is nil, search will look for the entire search phrase as one,
  1251. with each space character matching any amount of whitespace, including
  1252. line breaks.
  1253. Even when this is nil, you can still switch to Boolean search dynamically
  1254. by preceding the first snippet with \"+\" or \"-\". If the first snippet
  1255. is a regexp marked with braces like \"{abc}\", this will also switch to
  1256. boolean search."
  1257. :group 'org-agenda-search-view
  1258. :version "24.1"
  1259. :type 'boolean)
  1260. (defvaralias 'org-agenda-search-view-search-words-only
  1261. 'org-agenda-search-view-always-boolean)
  1262. (defcustom org-agenda-search-view-force-full-words nil
  1263. "Non-nil means, search words must be matches as complete words.
  1264. When nil, they may also match part of a word."
  1265. :group 'org-agenda-search-view
  1266. :version "24.1"
  1267. :type 'boolean)
  1268. (defcustom org-agenda-search-view-max-outline-level 0
  1269. "Maximum outline level to display in search view.
  1270. E.g. when this is set to 1, the search view will only
  1271. show headlines of level 1. When set to 0, the default
  1272. value, don't limit agenda view by outline level."
  1273. :group 'org-agenda-search-view
  1274. :version "26.1"
  1275. :package-version '(Org . "8.3")
  1276. :type 'integer)
  1277. (defgroup org-agenda-time-grid nil
  1278. "Options concerning the time grid in the Org Agenda."
  1279. :tag "Org Agenda Time Grid"
  1280. :group 'org-agenda)
  1281. (defcustom org-agenda-search-headline-for-time t
  1282. "Non-nil means search headline for a time-of-day.
  1283. If the headline contains a time-of-day in one format or another, it will
  1284. be used to sort the entry into the time sequence of items for a day.
  1285. Some people have time stamps in the headline that refer to the creation
  1286. time or so, and then this produces an unwanted side effect. If this is
  1287. the case for your, use this variable to turn off searching the headline
  1288. for a time."
  1289. :group 'org-agenda-time-grid
  1290. :type 'boolean)
  1291. (defcustom org-agenda-use-time-grid t
  1292. "Non-nil means show a time grid in the agenda schedule.
  1293. A time grid is a set of lines for specific times (like every two hours between
  1294. 8:00 and 20:00). The items scheduled for a day at specific times are
  1295. sorted in between these lines.
  1296. For details about when the grid will be shown, and what it will look like, see
  1297. the variable `org-agenda-time-grid'."
  1298. :group 'org-agenda-time-grid
  1299. :type 'boolean)
  1300. (defcustom org-agenda-time-grid
  1301. '((daily today require-timed)
  1302. (800 1000 1200 1400 1600 1800 2000)
  1303. "......"
  1304. "----------------")
  1305. "The settings for time grid for agenda display.
  1306. This is a list of four items. The first item is again a list. It contains
  1307. symbols specifying conditions when the grid should be displayed:
  1308. daily if the agenda shows a single day
  1309. weekly if the agenda shows an entire week
  1310. today show grid on current date, independent of daily/weekly display
  1311. require-timed show grid only if at least one item has a time specification
  1312. remove-match skip grid times already present in an entry
  1313. The second item is a list of integers, indicating the times that
  1314. should have a grid line.
  1315. The third item is a string which will be placed right after the
  1316. times that have a grid line.
  1317. The fourth item is a string placed after the grid times. This
  1318. will align with agenda items"
  1319. :group 'org-agenda-time-grid
  1320. :type
  1321. '(list
  1322. (set :greedy t :tag "Grid Display Options"
  1323. (const :tag "Show grid in single day agenda display" daily)
  1324. (const :tag "Show grid in weekly agenda display" weekly)
  1325. (const :tag "Always show grid for today" today)
  1326. (const :tag "Show grid only if any timed entries are present"
  1327. require-timed)
  1328. (const :tag "Skip grid times already present in an entry"
  1329. remove-match))
  1330. (repeat :tag "Grid Times" (integer :tag "Time"))
  1331. (string :tag "Grid String (after agenda times)")
  1332. (string :tag "Grid String (aligns with agenda items)")))
  1333. (defcustom org-agenda-show-current-time-in-grid t
  1334. "Non-nil means show the current time in the time grid."
  1335. :group 'org-agenda-time-grid
  1336. :version "24.1"
  1337. :type 'boolean)
  1338. (defcustom org-agenda-current-time-string
  1339. "now - - - - - - - - - - - - - - - - - - - - - - - - -"
  1340. "The string for the current time marker in the agenda."
  1341. :group 'org-agenda-time-grid
  1342. :version "24.1"
  1343. :type 'string)
  1344. (defgroup org-agenda-sorting nil
  1345. "Options concerning sorting in the Org Agenda."
  1346. :tag "Org Agenda Sorting"
  1347. :group 'org-agenda)
  1348. (defcustom org-agenda-sorting-strategy
  1349. '((agenda habit-down time-up priority-down category-keep)
  1350. (todo priority-down category-keep)
  1351. (tags priority-down category-keep)
  1352. (search category-keep))
  1353. "Sorting structure for the agenda items of a single day.
  1354. This is a list of symbols which will be used in sequence to determine
  1355. if an entry should be listed before another entry. The following
  1356. symbols are recognized:
  1357. time-up Put entries with time-of-day indications first, early first
  1358. time-down Put entries with time-of-day indications first, late first
  1359. timestamp-up Sort by any timestamp, early first
  1360. timestamp-down Sort by any timestamp, late first
  1361. scheduled-up Sort by scheduled timestamp, early first
  1362. scheduled-down Sort by scheduled timestamp, late first
  1363. deadline-up Sort by deadline timestamp, early first
  1364. deadline-down Sort by deadline timestamp, late first
  1365. ts-up Sort by active timestamp, early first
  1366. ts-down Sort by active timestamp, late first
  1367. tsia-up Sort by inactive timestamp, early first
  1368. tsia-down Sort by inactive timestamp, late first
  1369. category-keep Keep the default order of categories, corresponding to the
  1370. sequence in `org-agenda-files'.
  1371. category-up Sort alphabetically by category, A-Z.
  1372. category-down Sort alphabetically by category, Z-A.
  1373. tag-up Sort alphabetically by last tag, A-Z.
  1374. tag-down Sort alphabetically by last tag, Z-A.
  1375. priority-up Sort numerically by priority, high priority last.
  1376. priority-down Sort numerically by priority, high priority first.
  1377. todo-state-up Sort by todo state, tasks that are done last.
  1378. todo-state-down Sort by todo state, tasks that are done first.
  1379. effort-up Sort numerically by estimated effort, high effort last.
  1380. effort-down Sort numerically by estimated effort, high effort first.
  1381. user-defined-up Sort according to `org-agenda-cmp-user-defined', high last.
  1382. user-defined-down Sort according to `org-agenda-cmp-user-defined', high first.
  1383. habit-up Put entries that are habits first
  1384. habit-down Put entries that are habits last
  1385. alpha-up Sort headlines alphabetically
  1386. alpha-down Sort headlines alphabetically, reversed
  1387. The different possibilities will be tried in sequence, and testing stops
  1388. if one comparison returns a \"not-equal\". For example, the default
  1389. '(time-up category-keep priority-down)
  1390. means: Pull out all entries having a specified time of day and sort them,
  1391. in order to make a time schedule for the current day the first thing in the
  1392. agenda listing for the day. Of the entries without a time indication, keep
  1393. the grouped in categories, don't sort the categories, but keep them in
  1394. the sequence given in `org-agenda-files'. Within each category sort by
  1395. priority.
  1396. Leaving out `category-keep' would mean that items will be sorted across
  1397. categories by priority.
  1398. Instead of a single list, this can also be a set of list for specific
  1399. contents, with a context symbol in the car of the list, any of
  1400. `agenda', `todo', `tags', `search' for the corresponding agenda views.
  1401. Custom commands can bind this variable in the options section."
  1402. :group 'org-agenda-sorting
  1403. :type `(choice
  1404. (repeat :tag "General" ,org-sorting-choice)
  1405. (list :tag "Individually"
  1406. (cons (const :tag "Strategy for Weekly/Daily agenda" agenda)
  1407. (repeat ,org-sorting-choice))
  1408. (cons (const :tag "Strategy for TODO lists" todo)
  1409. (repeat ,org-sorting-choice))
  1410. (cons (const :tag "Strategy for Tags matches" tags)
  1411. (repeat ,org-sorting-choice))
  1412. (cons (const :tag "Strategy for search matches" search)
  1413. (repeat ,org-sorting-choice)))))
  1414. (defcustom org-agenda-cmp-user-defined nil
  1415. "A function to define the comparison `user-defined'.
  1416. This function must receive two arguments, agenda entry a and b.
  1417. If a>b, return +1. If a<b, return -1. If they are equal as seen by
  1418. the user comparison, return nil.
  1419. When this is defined, you can make `user-defined-up' and `user-defined-down'
  1420. part of an agenda sorting strategy."
  1421. :group 'org-agenda-sorting
  1422. :type 'symbol)
  1423. (defcustom org-sort-agenda-notime-is-late t
  1424. "Non-nil means items without time are considered late.
  1425. This is only relevant for sorting. When t, items which have no explicit
  1426. time like 15:30 will be considered as 99:01, i.e. later than any items which
  1427. do have a time. When nil, the default time is before 0:00. You can use this
  1428. option to decide if the schedule for today should come before or after timeless
  1429. agenda entries."
  1430. :group 'org-agenda-sorting
  1431. :type 'boolean)
  1432. (defcustom org-sort-agenda-noeffort-is-high t
  1433. "Non-nil means items without effort estimate are sorted as high effort.
  1434. This also applies when filtering an agenda view with respect to the
  1435. < or > effort operator. Then, tasks with no effort defined will be treated
  1436. as tasks with high effort.
  1437. When nil, such items are sorted as 0 minutes effort."
  1438. :group 'org-agenda-sorting
  1439. :type 'boolean)
  1440. (defgroup org-agenda-line-format nil
  1441. "Options concerning the entry prefix in the Org agenda display."
  1442. :tag "Org Agenda Line Format"
  1443. :group 'org-agenda)
  1444. (defcustom org-agenda-prefix-format
  1445. '((agenda . " %i %-12:c%?-12t% s")
  1446. (todo . " %i %-12:c")
  1447. (tags . " %i %-12:c")
  1448. (search . " %i %-12:c"))
  1449. "Format specifications for the prefix of items in the agenda views.
  1450. An alist with one entry per agenda type. The keys of the
  1451. sublists are `agenda', `todo', `search' and `tags'. The values
  1452. are format strings.
  1453. This format works similar to a printf format, with the following meaning:
  1454. %c the category of the item, \"Diary\" for entries from the diary,
  1455. or as given by the CATEGORY keyword or derived from the file name
  1456. %e the effort required by the item
  1457. %l the level of the item (insert X space(s) if item is of level X)
  1458. %i the icon category of the item, see `org-agenda-category-icon-alist'
  1459. %T the last tag of the item (ignore inherited tags, which come first)
  1460. %t the HH:MM time-of-day specification if one applies to the entry
  1461. %s Scheduling/Deadline information, a short string
  1462. %b show breadcrumbs, i.e., the names of the higher levels
  1463. %(expression) Eval EXPRESSION and replace the control string
  1464. by the result
  1465. All specifiers work basically like the standard `%s' of printf, but may
  1466. contain two additional characters: a question mark just after the `%'
  1467. and a whitespace/punctuation character just before the final letter.
  1468. If the first character after `%' is a question mark, the entire field
  1469. will only be included if the corresponding value applies to the current
  1470. entry. This is useful for fields which should have fixed width when
  1471. present, but zero width when absent. For example, \"%?-12t\" will
  1472. result in a 12 character time field if a time of the day is specified,
  1473. but will completely disappear in entries which do not contain a time.
  1474. If there is punctuation or whitespace character just before the
  1475. final format letter, this character will be appended to the field
  1476. value if the value is not empty. For example, the format
  1477. \"%-12:c\" leads to \"Diary: \" if the category is \"Diary\". If
  1478. the category is empty, no additional colon is inserted.
  1479. The default value for the agenda sublist is \" %-12:c%?-12t% s\",
  1480. which means:
  1481. - Indent the line with two space characters
  1482. - Give the category a 12 chars wide field, padded with whitespace on
  1483. the right (because of `-'). Append a colon if there is a category
  1484. (because of `:').
  1485. - If there is a time-of-day, put it into a 12 chars wide field. If no
  1486. time, don't put in an empty field, just skip it (because of '?').
  1487. - Finally, put the scheduling information.
  1488. See also the variables `org-agenda-remove-times-when-in-prefix' and
  1489. `org-agenda-remove-tags'.
  1490. Custom commands can set this variable in the options section."
  1491. :type '(choice
  1492. (string :tag "General format")
  1493. (list :greedy t :tag "View dependent"
  1494. (cons (const agenda) (string :tag "Format"))
  1495. (cons (const todo) (string :tag "Format"))
  1496. (cons (const tags) (string :tag "Format"))
  1497. (cons (const search) (string :tag "Format"))))
  1498. :group 'org-agenda-line-format
  1499. :version "26.1"
  1500. :package-version '(Org . "9.1"))
  1501. (defvar org-prefix-format-compiled nil
  1502. "The compiled prefix format and associated variables.
  1503. This is a list where first element is a list of variable bindings, and second
  1504. element is the compiled format expression. See the variable
  1505. `org-agenda-prefix-format'.")
  1506. (defcustom org-agenda-todo-keyword-format "%-1s"
  1507. "Format for the TODO keyword in agenda lines.
  1508. Set this to something like \"%-12s\" if you want all TODO keywords
  1509. to occupy a fixed space in the agenda display."
  1510. :group 'org-agenda-line-format
  1511. :type 'string)
  1512. (defcustom org-agenda-diary-sexp-prefix nil
  1513. "A regexp that matches part of a diary sexp entry
  1514. which should be treated as scheduling/deadline information in
  1515. `org-agenda'.
  1516. For example, you can use this to extract the `diary-remind-message' from
  1517. `diary-remind' entries."
  1518. :group 'org-agenda-line-format
  1519. :type '(choice (const :tag "None" nil) (regexp :tag "Regexp")))
  1520. (defcustom org-agenda-timerange-leaders '("" "(%d/%d): ")
  1521. "Text preceding timerange entries in the agenda view.
  1522. This is a list with two strings. The first applies when the range
  1523. is entirely on one day. The second applies if the range spans several days.
  1524. The strings may have two \"%d\" format specifiers which will be filled
  1525. with the sequence number of the days, and the total number of days in the
  1526. range, respectively."
  1527. :group 'org-agenda-line-format
  1528. :type '(list
  1529. (string :tag "Deadline today ")
  1530. (choice :tag "Deadline relative"
  1531. (string :tag "Format string")
  1532. (function))))
  1533. (defcustom org-agenda-scheduled-leaders '("Scheduled: " "Sched.%2dx: ")
  1534. "Text preceding scheduled items in the agenda view.
  1535. This is a list with two strings. The first applies when the item is
  1536. scheduled on the current day. The second applies when it has been scheduled
  1537. previously, it may contain a %d indicating that this is the nth time that
  1538. this item is scheduled, due to automatic rescheduling of unfinished items
  1539. for the following day. So this number is one larger than the number of days
  1540. that passed since this item was scheduled first."
  1541. :group 'org-agenda-line-format
  1542. :version "24.4"
  1543. :package-version '(Org . "8.0")
  1544. :type '(list
  1545. (string :tag "Scheduled today ")
  1546. (string :tag "Scheduled previously")))
  1547. (defcustom org-agenda-inactive-leader "["
  1548. "Text preceding item pulled into the agenda by inactive time stamps.
  1549. These entries are added to the agenda when pressing \"[\"."
  1550. :group 'org-agenda-line-format
  1551. :version "24.1"
  1552. :type 'string)
  1553. (defcustom org-agenda-deadline-leaders '("Deadline: " "In %3d d.: " "%2d d. ago: ")
  1554. "Text preceding deadline items in the agenda view.
  1555. This is a list with three strings. The first applies when the item has its
  1556. deadline on the current day. The second applies when the deadline is in the
  1557. future, the third one when it is in the past. The strings may contain %d
  1558. to capture the number of days."
  1559. :group 'org-agenda-line-format
  1560. :version "24.4"
  1561. :package-version '(Org . "8.0")
  1562. :type '(list
  1563. (string :tag "Deadline today ")
  1564. (string :tag "Deadline in the future ")
  1565. (string :tag "Deadline in the past ")))
  1566. (defcustom org-agenda-remove-times-when-in-prefix t
  1567. "Non-nil means remove duplicate time specifications in agenda items.
  1568. When the format `org-agenda-prefix-format' contains a `%t' specifier, a
  1569. time-of-day specification in a headline or diary entry is extracted and
  1570. placed into the prefix. If this option is non-nil, the original specification
  1571. \(a timestamp or -range, or just a plain time(range) specification like
  1572. 11:30-4pm) will be removed for agenda display. This makes the agenda less
  1573. cluttered.
  1574. The option can be t or nil. It may also be the symbol `beg', indicating
  1575. that the time should only be removed when it is located at the beginning of
  1576. the headline/diary entry."
  1577. :group 'org-agenda-line-format
  1578. :type '(choice
  1579. (const :tag "Always" t)
  1580. (const :tag "Never" nil)
  1581. (const :tag "When at beginning of entry" beg)))
  1582. (defcustom org-agenda-remove-timeranges-from-blocks nil
  1583. "Non-nil means remove time ranges specifications in agenda
  1584. items that span on several days."
  1585. :group 'org-agenda-line-format
  1586. :version "24.1"
  1587. :type 'boolean)
  1588. (defcustom org-agenda-default-appointment-duration nil
  1589. "Default duration for appointments that only have a starting time.
  1590. When nil, no duration is specified in such cases.
  1591. When non-nil, this must be the number of minutes, e.g. 60 for one hour."
  1592. :group 'org-agenda-line-format
  1593. :type '(choice
  1594. (integer :tag "Minutes")
  1595. (const :tag "No default duration")))
  1596. (defcustom org-agenda-show-inherited-tags t
  1597. "Non-nil means show inherited tags in each agenda line.
  1598. When this option is set to `always', it takes precedence over
  1599. `org-agenda-use-tag-inheritance' and inherited tags are shown
  1600. in every agenda.
  1601. When this option is set to t (the default), inherited tags are
  1602. shown when they are available, i.e. when the value of
  1603. `org-agenda-use-tag-inheritance' enables tag inheritance for the
  1604. given agenda type.
  1605. This can be set to a list of agenda types in which the agenda
  1606. must display the inherited tags. Available types are `todo',
  1607. `agenda' and `search'.
  1608. When set to nil, never show inherited tags in agenda lines."
  1609. :group 'org-agenda-line-format
  1610. :group 'org-agenda
  1611. :version "24.3"
  1612. :type '(choice
  1613. (const :tag "Show inherited tags when available" t)
  1614. (const :tag "Always show inherited tags" always)
  1615. (repeat :tag "Show inherited tags only in selected agenda types"
  1616. (symbol :tag "Agenda type"))))
  1617. (defcustom org-agenda-use-tag-inheritance '(todo search agenda)
  1618. "List of agenda view types where to use tag inheritance.
  1619. In tags/tags-todo/tags-tree agenda views, tag inheritance is
  1620. controlled by `org-use-tag-inheritance'. In other agenda types,
  1621. `org-use-tag-inheritance' is not used for the selection of the
  1622. agenda entries. Still, you may want the agenda to be aware of
  1623. the inherited tags anyway, e.g. for later tag filtering.
  1624. Allowed value are `todo', `search' and `agenda'.
  1625. This variable has no effect if `org-agenda-show-inherited-tags'
  1626. is set to `always'. In that case, the agenda is aware of those
  1627. tags.
  1628. The default value sets tags in every agenda type. Setting this
  1629. option to nil will speed up non-tags agenda view a lot."
  1630. :group 'org-agenda
  1631. :version "26.1"
  1632. :package-version '(Org . "9.1")
  1633. :type '(choice
  1634. (const :tag "Use tag inheritance in all agenda types" t)
  1635. (repeat :tag "Use tag inheritance in selected agenda types"
  1636. (symbol :tag "Agenda type"))))
  1637. (defcustom org-agenda-hide-tags-regexp nil
  1638. "Regular expression used to filter away specific tags in agenda views.
  1639. This means that these tags will be present, but not be shown in the agenda
  1640. line. Secondary filtering will still work on the hidden tags.
  1641. Nil means don't hide any tags."
  1642. :group 'org-agenda-line-format
  1643. :type '(choice
  1644. (const :tag "Hide none" nil)
  1645. (string :tag "Regexp ")))
  1646. (defcustom org-agenda-remove-tags nil
  1647. "Non-nil means remove the tags from the headline copy in the agenda.
  1648. When this is the symbol `prefix', only remove tags when
  1649. `org-agenda-prefix-format' contains a `%T' specifier."
  1650. :group 'org-agenda-line-format
  1651. :type '(choice
  1652. (const :tag "Always" t)
  1653. (const :tag "Never" nil)
  1654. (const :tag "When prefix format contains %T" prefix)))
  1655. (defvaralias 'org-agenda-remove-tags-when-in-prefix
  1656. 'org-agenda-remove-tags)
  1657. (defcustom org-agenda-tags-column 'auto
  1658. "Shift tags in agenda items to this column.
  1659. If set to `auto', tags will be automatically aligned to the right
  1660. edge of the window.
  1661. If set to a positive number, tags will be left-aligned to that
  1662. column. If set to a negative number, tags will be right-aligned
  1663. to that column. For example, -80 works well for a normal 80
  1664. character screen."
  1665. :group 'org-agenda-line-format
  1666. :type '(choice
  1667. (const :tag "Automatically align to right edge of window" auto)
  1668. (integer :tag "Specific column" -80))
  1669. :package-version '(Org . "9.1")
  1670. :version "26.1")
  1671. (defvaralias 'org-agenda-align-tags-to-column 'org-agenda-tags-column)
  1672. (defcustom org-agenda-fontify-priorities 'cookies
  1673. "Non-nil means highlight low and high priorities in agenda.
  1674. When t, the highest priority entries are bold, lowest priority italic.
  1675. However, settings in `org-priority-faces' will overrule these faces.
  1676. When this variable is the symbol `cookies', only fontify the
  1677. cookies, not the entire task.
  1678. This may also be an association list of priority faces, whose
  1679. keys are the character values of `org-highest-priority',
  1680. `org-default-priority', and `org-lowest-priority' (the default values
  1681. are ?A, ?B, and ?C, respectively). The face may be a named face, a
  1682. color as a string, or a list like `(:background \"Red\")'.
  1683. If it is a color, the variable `org-faces-easy-properties'
  1684. determines if it is a foreground or a background color."
  1685. :group 'org-agenda-line-format
  1686. :type '(choice
  1687. (const :tag "Never" nil)
  1688. (const :tag "Defaults" t)
  1689. (const :tag "Cookies only" cookies)
  1690. (repeat :tag "Specify"
  1691. (list (character :tag "Priority" :value ?A)
  1692. (choice :tag "Face "
  1693. (string :tag "Color")
  1694. (sexp :tag "Face"))))))
  1695. (defcustom org-agenda-day-face-function nil
  1696. "Function called to determine what face should be used to display a day.
  1697. The only argument passed to that function is the day. It should
  1698. returns a face, or nil if does not want to specify a face and let
  1699. the normal rules apply."
  1700. :group 'org-agenda-line-format
  1701. :version "24.1"
  1702. :type '(choice (const nil) (function)))
  1703. (defcustom org-agenda-category-icon-alist nil
  1704. "Alist of category icon to be displayed in agenda views.
  1705. Each entry should have the following format:
  1706. (CATEGORY-REGEXP FILE-OR-DATA TYPE DATA-P PROPS)
  1707. Where CATEGORY-REGEXP is a regexp matching the categories where
  1708. the icon should be displayed.
  1709. FILE-OR-DATA either a file path or a string containing image data.
  1710. The other fields can be omitted safely if not needed:
  1711. TYPE indicates the image type.
  1712. DATA-P is a boolean indicating whether the FILE-OR-DATA string is
  1713. image data.
  1714. PROPS are additional image attributes to assign to the image,
  1715. like, e.g. `:ascent center'.
  1716. (\"Org\" \"/path/to/icon.png\" nil nil :ascent center)
  1717. If you want to set the display properties yourself, just put a
  1718. list as second element:
  1719. (CATEGORY-REGEXP (MY PROPERTY LIST))
  1720. For example, to display a 16px horizontal space for Emacs
  1721. category, you can use:
  1722. (\"Emacs\" \\='(space . (:width (16))))"
  1723. :group 'org-agenda-line-format
  1724. :version "24.1"
  1725. :type '(alist :key-type (string :tag "Regexp matching category")
  1726. :value-type (choice (list :tag "Icon"
  1727. (string :tag "File or data")
  1728. (symbol :tag "Type")
  1729. (boolean :tag "Data?")
  1730. (repeat :tag "Extra image properties" :inline t symbol))
  1731. (list :tag "Display properties" sexp))))
  1732. (defgroup org-agenda-column-view nil
  1733. "Options concerning column view in the agenda."
  1734. :tag "Org Agenda Column View"
  1735. :group 'org-agenda)
  1736. (defcustom org-agenda-view-columns-initially nil
  1737. "When non-nil, switch to columns view right after creating the agenda."
  1738. :group 'org-agenda-column-view
  1739. :type 'boolean
  1740. :version "26.1"
  1741. :package-version '(Org . "9.0")
  1742. :safe #'booleanp)
  1743. (defcustom org-agenda-columns-show-summaries t
  1744. "Non-nil means show summaries for columns displayed in the agenda view."
  1745. :group 'org-agenda-column-view
  1746. :type 'boolean)
  1747. (defcustom org-agenda-columns-compute-summary-properties t
  1748. "Non-nil means recompute all summary properties before column view.
  1749. When column view in the agenda is listing properties that have a summary
  1750. operator, it can go to all relevant buffers and recompute the summaries
  1751. there. This can mean overhead for the agenda column view, but is necessary
  1752. to have thing up to date.
  1753. As a special case, a CLOCKSUM property also makes sure that the clock
  1754. computations are current."
  1755. :group 'org-agenda-column-view
  1756. :type 'boolean)
  1757. (defcustom org-agenda-columns-add-appointments-to-effort-sum nil
  1758. "Non-nil means the duration of an appointment will add to day effort.
  1759. The property to which appointment durations will be added is the one given
  1760. in the option `org-effort-property'. If an appointment does not have
  1761. an end time, `org-agenda-default-appointment-duration' will be used. If that
  1762. is not set, an appointment without end time will not contribute to the time
  1763. estimate."
  1764. :group 'org-agenda-column-view
  1765. :type 'boolean)
  1766. (defcustom org-agenda-auto-exclude-function nil
  1767. "A function called with a tag to decide if it is filtered on \
  1768. \\<org-agenda-mode-map>`\\[org-agenda-filter-by-tag] RET'.
  1769. The sole argument to the function, which is called once for each
  1770. possible tag, is a string giving the name of the tag. The
  1771. function should return either nil if the tag should be included
  1772. as normal, or \"-<TAG>\" to exclude the tag.
  1773. Note that for the purpose of tag filtering, only the lower-case version of
  1774. all tags will be considered, so that this function will only ever see
  1775. the lower-case version of all tags."
  1776. :group 'org-agenda
  1777. :type '(choice (const nil) (function)))
  1778. (defcustom org-agenda-bulk-custom-functions nil
  1779. "Alist of characters and custom functions for bulk actions.
  1780. For example, this value makes those two functions available:
  1781. \\='((?R set-category)
  1782. (?C bulk-cut))
  1783. With selected entries in an agenda buffer, `B R' will call
  1784. the custom function `set-category' on the selected entries.
  1785. Note that functions in this alist don't need to be quoted."
  1786. :type '(alist :key-type character :value-type (group function))
  1787. :version "24.1"
  1788. :group 'org-agenda)
  1789. (defmacro org-agenda-with-point-at-orig-entry (string &rest body)
  1790. "Execute BODY with point at location given by `org-hd-marker' property.
  1791. If STRING is non-nil, the text property will be fetched from position 0
  1792. in that string. If STRING is nil, it will be fetched from the beginning
  1793. of the current line."
  1794. (org-with-gensyms (marker)
  1795. `(let ((,marker (get-text-property (if ,string 0 (point-at-bol))
  1796. 'org-hd-marker ,string)))
  1797. (with-current-buffer (marker-buffer ,marker)
  1798. (save-excursion
  1799. (goto-char ,marker)
  1800. ,@body)))))
  1801. (def-edebug-spec org-agenda-with-point-at-orig-entry (form body))
  1802. (defun org-add-agenda-custom-command (entry)
  1803. "Replace or add a command in `org-agenda-custom-commands'.
  1804. This is mostly for hacking and trying a new command - once the command
  1805. works you probably want to add it to `org-agenda-custom-commands' for good."
  1806. (let ((ass (assoc (car entry) org-agenda-custom-commands)))
  1807. (if ass
  1808. (setcdr ass (cdr entry))
  1809. (push entry org-agenda-custom-commands))))
  1810. (defmacro org-agenda--insert-overriding-header (default)
  1811. "Insert header into agenda view.
  1812. The inserted header depends on `org-agenda-overriding-header'.
  1813. If the empty string, don't insert a header. If any other string,
  1814. insert it as a header. If nil, insert DEFAULT, which should
  1815. evaluate to a string."
  1816. (declare (debug (form)) (indent defun))
  1817. `(cond
  1818. ((not org-agenda-overriding-header) (insert ,default))
  1819. ((equal org-agenda-overriding-header "") nil)
  1820. ((stringp org-agenda-overriding-header)
  1821. (insert (propertize org-agenda-overriding-header
  1822. 'face 'org-agenda-structure)
  1823. "\n"))
  1824. (t (user-error "Invalid value for `org-agenda-overriding-header': %S"
  1825. org-agenda-overriding-header))))
  1826. ;;; Define the org-agenda-mode
  1827. (defvar org-agenda-mode-map (make-sparse-keymap)
  1828. "Keymap for `org-agenda-mode'.")
  1829. (defvaralias 'org-agenda-keymap 'org-agenda-mode-map)
  1830. (defvar org-agenda-menu) ; defined later in this file.
  1831. (defvar org-agenda-restrict nil) ; defined later in this file.
  1832. (defvar org-agenda-follow-mode nil)
  1833. (defvar org-agenda-entry-text-mode nil)
  1834. (defvar org-agenda-clockreport-mode nil)
  1835. (defvar org-agenda-show-log nil
  1836. "When non-nil, show the log in the agenda.
  1837. Do not set this directly; instead use
  1838. `org-agenda-start-with-log-mode', which see.")
  1839. (defvar org-agenda-redo-command nil)
  1840. (defvar org-agenda-query-string nil)
  1841. (defvar org-agenda-mode-hook nil
  1842. "Hook run after `org-agenda-mode' is turned on.
  1843. The buffer is still writable when this hook is called.")
  1844. (defvar org-agenda-type nil)
  1845. (defvar org-agenda-force-single-file nil)
  1846. (defvar org-agenda-bulk-marked-entries nil
  1847. "List of markers that refer to marked entries in the agenda.")
  1848. (defvar org-agenda-current-date nil
  1849. "Active date when building the agenda.")
  1850. ;;; Multiple agenda buffers support
  1851. (defcustom org-agenda-sticky nil
  1852. "Non-nil means agenda q key will bury agenda buffers.
  1853. Agenda commands will then show existing buffer instead of generating new ones.
  1854. When nil, `q' will kill the single agenda buffer."
  1855. :group 'org-agenda
  1856. :version "24.3"
  1857. :type 'boolean)
  1858. ;;;###autoload
  1859. (defun org-toggle-sticky-agenda (&optional arg)
  1860. "Toggle `org-agenda-sticky'."
  1861. (interactive "P")
  1862. (let ((new-value (if arg
  1863. (> (prefix-numeric-value arg) 0)
  1864. (not org-agenda-sticky))))
  1865. (if (equal new-value org-agenda-sticky)
  1866. (and (called-interactively-p 'interactive)
  1867. (message "Sticky agenda was already %s"
  1868. (if org-agenda-sticky "enabled" "disabled")))
  1869. (setq org-agenda-sticky new-value)
  1870. (org-agenda-kill-all-agenda-buffers)
  1871. (and (called-interactively-p 'interactive)
  1872. (message "Sticky agenda %s"
  1873. (if org-agenda-sticky "enabled" "disabled"))))))
  1874. (defvar org-agenda-buffer nil
  1875. "Agenda buffer currently being generated.")
  1876. (defvar org-agenda-last-prefix-arg nil)
  1877. (defvar org-agenda-this-buffer-name nil)
  1878. (defvar org-agenda-doing-sticky-redo nil)
  1879. (defvar org-agenda-this-buffer-is-sticky nil)
  1880. (defvar org-agenda-last-indirect-buffer nil
  1881. "Last buffer loaded by `org-agenda-tree-to-indirect-buffer'.")
  1882. (defconst org-agenda-local-vars
  1883. '(org-agenda-this-buffer-name
  1884. org-agenda-undo-list
  1885. org-agenda-pending-undo-list
  1886. org-agenda-follow-mode
  1887. org-agenda-entry-text-mode
  1888. org-agenda-clockreport-mode
  1889. org-agenda-show-log
  1890. org-agenda-redo-command
  1891. org-agenda-query-string
  1892. org-agenda-type
  1893. org-agenda-bulk-marked-entries
  1894. org-agenda-undo-has-started-in
  1895. org-agenda-info
  1896. org-agenda-pre-window-conf
  1897. org-agenda-columns-active
  1898. org-agenda-tag-filter
  1899. org-agenda-category-filter
  1900. org-agenda-top-headline-filter
  1901. org-agenda-regexp-filter
  1902. org-agenda-effort-filter
  1903. org-agenda-markers
  1904. org-agenda-last-search-view-search-was-boolean
  1905. org-agenda-last-indirect-buffer
  1906. org-agenda-filtered-by-category
  1907. org-agenda-filter-form
  1908. org-agenda-cycle-counter
  1909. org-agenda-last-prefix-arg)
  1910. "Variables that must be local in agenda buffers to allow multiple buffers.")
  1911. (defun org-agenda-mode ()
  1912. "Mode for time-sorted view on action items in Org files.
  1913. The following commands are available:
  1914. \\{org-agenda-mode-map}"
  1915. (interactive)
  1916. (cond (org-agenda-doing-sticky-redo
  1917. ;; Refreshing sticky agenda-buffer
  1918. ;;
  1919. ;; Preserve the value of `org-agenda-local-vars' variables,
  1920. ;; while letting `kill-all-local-variables' kill the rest
  1921. (let ((save (buffer-local-variables)))
  1922. (kill-all-local-variables)
  1923. (mapc #'make-local-variable org-agenda-local-vars)
  1924. (dolist (elem save)
  1925. (pcase elem
  1926. (`(,var . ,val) ;ignore unbound variables
  1927. (when (and val (memq var org-agenda-local-vars))
  1928. (set var val))))))
  1929. (setq-local org-agenda-this-buffer-is-sticky t))
  1930. (org-agenda-sticky
  1931. ;; Creating a sticky Agenda buffer for the first time
  1932. (kill-all-local-variables)
  1933. (mapc 'make-local-variable org-agenda-local-vars)
  1934. (setq-local org-agenda-this-buffer-is-sticky t))
  1935. (t
  1936. ;; Creating a non-sticky agenda buffer
  1937. (kill-all-local-variables)
  1938. (setq-local org-agenda-this-buffer-is-sticky nil)))
  1939. (setq org-agenda-undo-list nil
  1940. org-agenda-pending-undo-list nil
  1941. org-agenda-bulk-marked-entries nil)
  1942. (setq major-mode 'org-agenda-mode)
  1943. ;; Keep global-font-lock-mode from turning on font-lock-mode
  1944. (setq-local font-lock-global-modes (list 'not major-mode))
  1945. (setq mode-name "Org-Agenda")
  1946. (setq indent-tabs-mode nil)
  1947. (use-local-map org-agenda-mode-map)
  1948. (easy-menu-add org-agenda-menu)
  1949. (if org-startup-truncated (setq truncate-lines t))
  1950. (setq-local line-move-visual nil)
  1951. (add-hook 'post-command-hook 'org-agenda-update-agenda-type nil 'local)
  1952. (add-hook 'pre-command-hook 'org-unhighlight nil 'local)
  1953. ;; Make sure properties are removed when copying text
  1954. (add-hook 'filter-buffer-substring-functions
  1955. (lambda (fun start end delete)
  1956. (substring-no-properties (funcall fun start end delete)))
  1957. nil t)
  1958. (unless org-agenda-keep-modes
  1959. (setq org-agenda-follow-mode org-agenda-start-with-follow-mode
  1960. org-agenda-entry-text-mode org-agenda-start-with-entry-text-mode
  1961. org-agenda-show-log org-agenda-start-with-log-mode
  1962. org-agenda-clockreport-mode org-agenda-start-with-clockreport-mode))
  1963. (add-to-invisibility-spec '(org-filtered))
  1964. (add-to-invisibility-spec '(org-link))
  1965. (easy-menu-change
  1966. '("Agenda") "Agenda Files"
  1967. (append
  1968. (list
  1969. (vector
  1970. (if (get 'org-agenda-files 'org-restrict)
  1971. "Restricted to single file"
  1972. "Edit File List")
  1973. '(org-edit-agenda-file-list)
  1974. (not (get 'org-agenda-files 'org-restrict)))
  1975. "--")
  1976. (mapcar 'org-file-menu-entry (org-agenda-files))))
  1977. (org-agenda-set-mode-name)
  1978. (apply
  1979. (if (fboundp 'run-mode-hooks) 'run-mode-hooks 'run-hooks)
  1980. (list 'org-agenda-mode-hook)))
  1981. (substitute-key-definition 'undo 'org-agenda-undo
  1982. org-agenda-mode-map global-map)
  1983. (org-defkey org-agenda-mode-map "\C-i" 'org-agenda-goto)
  1984. (org-defkey org-agenda-mode-map [(tab)] 'org-agenda-goto)
  1985. (org-defkey org-agenda-mode-map "\C-m" 'org-agenda-switch-to)
  1986. (org-defkey org-agenda-mode-map "\C-k" 'org-agenda-kill)
  1987. (org-defkey org-agenda-mode-map "\C-c\C-w" 'org-agenda-refile)
  1988. (org-defkey org-agenda-mode-map [(meta down)] 'org-agenda-drag-line-forward)
  1989. (org-defkey org-agenda-mode-map [(meta up)] 'org-agenda-drag-line-backward)
  1990. (org-defkey org-agenda-mode-map "m" 'org-agenda-bulk-mark)
  1991. (org-defkey org-agenda-mode-map "\M-m" 'org-agenda-bulk-toggle)
  1992. (org-defkey org-agenda-mode-map "*" 'org-agenda-bulk-mark-all)
  1993. (org-defkey org-agenda-mode-map "\M-*" 'org-agenda-bulk-toggle-all)
  1994. (org-defkey org-agenda-mode-map "#" 'org-agenda-dim-blocked-tasks)
  1995. (org-defkey org-agenda-mode-map "%" 'org-agenda-bulk-mark-regexp)
  1996. (org-defkey org-agenda-mode-map "u" 'org-agenda-bulk-unmark)
  1997. (org-defkey org-agenda-mode-map "U" 'org-agenda-bulk-unmark-all)
  1998. (org-defkey org-agenda-mode-map "B" 'org-agenda-bulk-action)
  1999. (org-defkey org-agenda-mode-map "k" 'org-agenda-capture)
  2000. (org-defkey org-agenda-mode-map "A" 'org-agenda-append-agenda)
  2001. (org-defkey org-agenda-mode-map "\C-c\C-x!" 'org-reload)
  2002. (org-defkey org-agenda-mode-map "\C-c\C-x\C-a" 'org-agenda-archive-default)
  2003. (org-defkey org-agenda-mode-map "\C-c\C-xa" 'org-agenda-toggle-archive-tag)
  2004. (org-defkey org-agenda-mode-map "\C-c\C-xA" 'org-agenda-archive-to-archive-sibling)
  2005. (org-defkey org-agenda-mode-map "\C-c\C-x\C-s" 'org-agenda-archive)
  2006. (org-defkey org-agenda-mode-map "\C-c$" 'org-agenda-archive)
  2007. (org-defkey org-agenda-mode-map "$" 'org-agenda-archive)
  2008. (org-defkey org-agenda-mode-map "\C-c\C-o" 'org-agenda-open-link)
  2009. (org-defkey org-agenda-mode-map " " 'org-agenda-show-and-scroll-up)
  2010. (org-defkey org-agenda-mode-map [backspace] 'org-agenda-show-scroll-down)
  2011. (org-defkey org-agenda-mode-map "\d" 'org-agenda-show-scroll-down)
  2012. (org-defkey org-agenda-mode-map [(control shift right)] 'org-agenda-todo-nextset)
  2013. (org-defkey org-agenda-mode-map [(control shift left)] 'org-agenda-todo-previousset)
  2014. (org-defkey org-agenda-mode-map "\C-c\C-xb" 'org-agenda-tree-to-indirect-buffer)
  2015. (org-defkey org-agenda-mode-map "o" 'delete-other-windows)
  2016. (org-defkey org-agenda-mode-map "L" 'org-agenda-recenter)
  2017. (org-defkey org-agenda-mode-map "\C-c\C-t" 'org-agenda-todo)
  2018. (org-defkey org-agenda-mode-map "t" 'org-agenda-todo)
  2019. (org-defkey org-agenda-mode-map "a" 'org-agenda-archive-default-with-confirmation)
  2020. (org-defkey org-agenda-mode-map ":" 'org-agenda-set-tags)
  2021. (org-defkey org-agenda-mode-map "\C-c\C-q" 'org-agenda-set-tags)
  2022. (org-defkey org-agenda-mode-map "." 'org-agenda-goto-today)
  2023. (org-defkey org-agenda-mode-map "j" 'org-agenda-goto-date)
  2024. (org-defkey org-agenda-mode-map "d" 'org-agenda-day-view)
  2025. (org-defkey org-agenda-mode-map "w" 'org-agenda-week-view)
  2026. (org-defkey org-agenda-mode-map "y" 'org-agenda-year-view)
  2027. (org-defkey org-agenda-mode-map "\C-c\C-z" 'org-agenda-add-note)
  2028. (org-defkey org-agenda-mode-map "z" 'org-agenda-add-note)
  2029. (org-defkey org-agenda-mode-map [(shift right)] 'org-agenda-do-date-later)
  2030. (org-defkey org-agenda-mode-map [(shift left)] 'org-agenda-do-date-earlier)
  2031. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (right)] 'org-agenda-do-date-later)
  2032. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (left)] 'org-agenda-do-date-earlier)
  2033. (org-defkey org-agenda-mode-map ">" 'org-agenda-date-prompt)
  2034. (org-defkey org-agenda-mode-map "\C-c\C-s" 'org-agenda-schedule)
  2035. (org-defkey org-agenda-mode-map "\C-c\C-d" 'org-agenda-deadline)
  2036. (let ((l '(1 2 3 4 5 6 7 8 9 0)))
  2037. (while l (org-defkey org-agenda-mode-map
  2038. (int-to-string (pop l)) 'digit-argument)))
  2039. (org-defkey org-agenda-mode-map "F" 'org-agenda-follow-mode)
  2040. (org-defkey org-agenda-mode-map "R" 'org-agenda-clockreport-mode)
  2041. (org-defkey org-agenda-mode-map "E" 'org-agenda-entry-text-mode)
  2042. (org-defkey org-agenda-mode-map "l" 'org-agenda-log-mode)
  2043. (org-defkey org-agenda-mode-map "v" 'org-agenda-view-mode-dispatch)
  2044. (org-defkey org-agenda-mode-map "D" 'org-agenda-toggle-diary)
  2045. (org-defkey org-agenda-mode-map "!" 'org-agenda-toggle-deadlines)
  2046. (org-defkey org-agenda-mode-map "G" 'org-agenda-toggle-time-grid)
  2047. (org-defkey org-agenda-mode-map "r" 'org-agenda-redo)
  2048. (org-defkey org-agenda-mode-map "g" 'org-agenda-redo-all)
  2049. (org-defkey org-agenda-mode-map "e" 'org-agenda-set-effort)
  2050. (org-defkey org-agenda-mode-map "\C-c\C-xe" 'org-agenda-set-effort)
  2051. (org-defkey org-agenda-mode-map "\C-c\C-x\C-e"
  2052. 'org-clock-modify-effort-estimate)
  2053. (org-defkey org-agenda-mode-map "\C-c\C-xp" 'org-agenda-set-property)
  2054. (org-defkey org-agenda-mode-map "q" 'org-agenda-quit)
  2055. (org-defkey org-agenda-mode-map "Q" 'org-agenda-Quit)
  2056. (org-defkey org-agenda-mode-map "x" 'org-agenda-exit)
  2057. (org-defkey org-agenda-mode-map "\C-x\C-w" 'org-agenda-write)
  2058. (org-defkey org-agenda-mode-map "\C-x\C-s" 'org-save-all-org-buffers)
  2059. (org-defkey org-agenda-mode-map "s" 'org-save-all-org-buffers)
  2060. (org-defkey org-agenda-mode-map "T" 'org-agenda-show-tags)
  2061. (org-defkey org-agenda-mode-map "n" 'org-agenda-next-line)
  2062. (org-defkey org-agenda-mode-map "p" 'org-agenda-previous-line)
  2063. (org-defkey org-agenda-mode-map "N" 'org-agenda-next-item)
  2064. (org-defkey org-agenda-mode-map "P" 'org-agenda-previous-item)
  2065. (substitute-key-definition 'next-line 'org-agenda-next-line
  2066. org-agenda-mode-map global-map)
  2067. (substitute-key-definition 'previous-line 'org-agenda-previous-line
  2068. org-agenda-mode-map global-map)
  2069. (org-defkey org-agenda-mode-map "\C-c\C-a" 'org-attach)
  2070. (org-defkey org-agenda-mode-map "\C-c\C-n" 'org-agenda-next-date-line)
  2071. (org-defkey org-agenda-mode-map "\C-c\C-p" 'org-agenda-previous-date-line)
  2072. (org-defkey org-agenda-mode-map "\C-c," 'org-agenda-priority)
  2073. (org-defkey org-agenda-mode-map "," 'org-agenda-priority)
  2074. (org-defkey org-agenda-mode-map "i" 'org-agenda-diary-entry)
  2075. (org-defkey org-agenda-mode-map "c" 'org-agenda-goto-calendar)
  2076. (org-defkey org-agenda-mode-map "C" 'org-agenda-convert-date)
  2077. (org-defkey org-agenda-mode-map "M" 'org-agenda-phases-of-moon)
  2078. (org-defkey org-agenda-mode-map "S" 'org-agenda-sunrise-sunset)
  2079. (org-defkey org-agenda-mode-map "h" 'org-agenda-holidays)
  2080. (org-defkey org-agenda-mode-map "H" 'org-agenda-holidays)
  2081. (org-defkey org-agenda-mode-map "\C-c\C-x\C-i" 'org-agenda-clock-in)
  2082. (org-defkey org-agenda-mode-map "I" 'org-agenda-clock-in)
  2083. (org-defkey org-agenda-mode-map "\C-c\C-x\C-o" 'org-agenda-clock-out)
  2084. (org-defkey org-agenda-mode-map "O" 'org-agenda-clock-out)
  2085. (org-defkey org-agenda-mode-map "\C-c\C-x\C-x" 'org-agenda-clock-cancel)
  2086. (org-defkey org-agenda-mode-map "X" 'org-agenda-clock-cancel)
  2087. (org-defkey org-agenda-mode-map "\C-c\C-x\C-j" 'org-clock-goto)
  2088. (org-defkey org-agenda-mode-map "J" 'org-agenda-clock-goto)
  2089. (org-defkey org-agenda-mode-map "+" 'org-agenda-priority-up)
  2090. (org-defkey org-agenda-mode-map "-" 'org-agenda-priority-down)
  2091. (org-defkey org-agenda-mode-map [(shift up)] 'org-agenda-priority-up)
  2092. (org-defkey org-agenda-mode-map [(shift down)] 'org-agenda-priority-down)
  2093. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (up)] 'org-agenda-priority-up)
  2094. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (down)] 'org-agenda-priority-down)
  2095. (org-defkey org-agenda-mode-map "f" 'org-agenda-later)
  2096. (org-defkey org-agenda-mode-map "b" 'org-agenda-earlier)
  2097. (org-defkey org-agenda-mode-map "\C-c\C-x\C-c" 'org-agenda-columns)
  2098. (org-defkey org-agenda-mode-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
  2099. (org-defkey org-agenda-mode-map "\C-c\C-x<" 'org-agenda-set-restriction-lock-from-agenda)
  2100. (org-defkey org-agenda-mode-map "[" 'org-agenda-manipulate-query-add)
  2101. (org-defkey org-agenda-mode-map "]" 'org-agenda-manipulate-query-subtract)
  2102. (org-defkey org-agenda-mode-map "{" 'org-agenda-manipulate-query-add-re)
  2103. (org-defkey org-agenda-mode-map "}" 'org-agenda-manipulate-query-subtract-re)
  2104. (org-defkey org-agenda-mode-map "/" 'org-agenda-filter-by-tag)
  2105. (org-defkey org-agenda-mode-map "_" 'org-agenda-filter-by-effort)
  2106. (org-defkey org-agenda-mode-map "=" 'org-agenda-filter-by-regexp)
  2107. (org-defkey org-agenda-mode-map "|" 'org-agenda-filter-remove-all)
  2108. (org-defkey org-agenda-mode-map "~" 'org-agenda-limit-interactively)
  2109. (org-defkey org-agenda-mode-map "<" 'org-agenda-filter-by-category)
  2110. (org-defkey org-agenda-mode-map "^" 'org-agenda-filter-by-top-headline)
  2111. (org-defkey org-agenda-mode-map ";" 'org-timer-set-timer)
  2112. (org-defkey org-agenda-mode-map "\C-c\C-x_" 'org-timer-stop)
  2113. (define-key org-agenda-mode-map "?" 'org-agenda-show-the-flagging-note)
  2114. (org-defkey org-agenda-mode-map "\C-c\C-x\C-mg" 'org-mobile-pull)
  2115. (org-defkey org-agenda-mode-map "\C-c\C-x\C-mp" 'org-mobile-push)
  2116. (org-defkey org-agenda-mode-map [mouse-2] 'org-agenda-goto-mouse)
  2117. (org-defkey org-agenda-mode-map [mouse-3] 'org-agenda-show-mouse)
  2118. (define-key org-agenda-mode-map [remap forward-paragraph] 'org-agenda-forward-block)
  2119. (define-key org-agenda-mode-map [remap backward-paragraph] 'org-agenda-backward-block)
  2120. (when org-agenda-mouse-1-follows-link
  2121. (org-defkey org-agenda-mode-map [follow-link] 'mouse-face))
  2122. (easy-menu-define org-agenda-menu org-agenda-mode-map "Agenda menu"
  2123. '("Agenda"
  2124. ("Agenda Files")
  2125. "--"
  2126. ("Agenda Dates"
  2127. ["Goto Today" org-agenda-goto-today (org-agenda-check-type nil 'agenda)]
  2128. ["Next Dates" org-agenda-later (org-agenda-check-type nil 'agenda)]
  2129. ["Previous Dates" org-agenda-earlier (org-agenda-check-type nil 'agenda)]
  2130. ["Jump to date" org-agenda-goto-date (org-agenda-check-type nil 'agenda)])
  2131. "--"
  2132. ("View"
  2133. ["Day View" org-agenda-day-view
  2134. :active (org-agenda-check-type nil 'agenda)
  2135. :style radio :selected (eq org-agenda-current-span 'day)
  2136. :keys "v d (or just d)"]
  2137. ["Week View" org-agenda-week-view
  2138. :active (org-agenda-check-type nil 'agenda)
  2139. :style radio :selected (eq org-agenda-current-span 'week)
  2140. :keys "v w"]
  2141. ["Fortnight View" org-agenda-fortnight-view
  2142. :active (org-agenda-check-type nil 'agenda)
  2143. :style radio :selected (eq org-agenda-current-span 'fortnight)
  2144. :keys "v t"]
  2145. ["Month View" org-agenda-month-view
  2146. :active (org-agenda-check-type nil 'agenda)
  2147. :style radio :selected (eq org-agenda-current-span 'month)
  2148. :keys "v m"]
  2149. ["Year View" org-agenda-year-view
  2150. :active (org-agenda-check-type nil 'agenda)
  2151. :style radio :selected (eq org-agenda-current-span 'year)
  2152. :keys "v y"]
  2153. "--"
  2154. ["Include Diary" org-agenda-toggle-diary
  2155. :style toggle :selected org-agenda-include-diary
  2156. :active (org-agenda-check-type nil 'agenda)]
  2157. ["Include Deadlines" org-agenda-toggle-deadlines
  2158. :style toggle :selected org-agenda-include-deadlines
  2159. :active (org-agenda-check-type nil 'agenda)]
  2160. ["Use Time Grid" org-agenda-toggle-time-grid
  2161. :style toggle :selected org-agenda-use-time-grid
  2162. :active (org-agenda-check-type nil 'agenda)]
  2163. "--"
  2164. ["Show clock report" org-agenda-clockreport-mode
  2165. :style toggle :selected org-agenda-clockreport-mode
  2166. :active (org-agenda-check-type nil 'agenda)]
  2167. ["Show some entry text" org-agenda-entry-text-mode
  2168. :style toggle :selected org-agenda-entry-text-mode
  2169. :active t]
  2170. "--"
  2171. ["Show Logbook entries" org-agenda-log-mode
  2172. :style toggle :selected org-agenda-show-log
  2173. :active (org-agenda-check-type nil 'agenda)
  2174. :keys "v l (or just l)"]
  2175. ["Include archived trees" org-agenda-archives-mode
  2176. :style toggle :selected org-agenda-archives-mode :active t
  2177. :keys "v a"]
  2178. ["Include archive files" (org-agenda-archives-mode t)
  2179. :style toggle :selected (eq org-agenda-archives-mode t) :active t
  2180. :keys "v A"]
  2181. "--"
  2182. ["Remove Restriction" org-agenda-remove-restriction-lock org-agenda-restrict])
  2183. ["Write view to file" org-agenda-write t]
  2184. ["Rebuild buffer" org-agenda-redo t]
  2185. ["Save all Org buffers" org-save-all-org-buffers t]
  2186. "--"
  2187. ["Show original entry" org-agenda-show t]
  2188. ["Go To (other window)" org-agenda-goto t]
  2189. ["Go To (this window)" org-agenda-switch-to t]
  2190. ["Capture with cursor date" org-agenda-capture t]
  2191. ["Follow Mode" org-agenda-follow-mode
  2192. :style toggle :selected org-agenda-follow-mode :active t]
  2193. ;; ["Tree to indirect frame" org-agenda-tree-to-indirect-buffer t]
  2194. "--"
  2195. ("TODO"
  2196. ["Cycle TODO" org-agenda-todo t]
  2197. ["Next TODO set" org-agenda-todo-nextset t]
  2198. ["Previous TODO set" org-agenda-todo-previousset t]
  2199. ["Add note" org-agenda-add-note t])
  2200. ("Archive/Refile/Delete"
  2201. ["Archive default" org-agenda-archive-default t]
  2202. ["Archive default" org-agenda-archive-default-with-confirmation t]
  2203. ["Toggle ARCHIVE tag" org-agenda-toggle-archive-tag t]
  2204. ["Move to archive sibling" org-agenda-archive-to-archive-sibling t]
  2205. ["Archive subtree" org-agenda-archive t]
  2206. "--"
  2207. ["Refile" org-agenda-refile t]
  2208. "--"
  2209. ["Delete subtree" org-agenda-kill t])
  2210. ("Bulk action"
  2211. ["Mark entry" org-agenda-bulk-mark t]
  2212. ["Mark all" org-agenda-bulk-mark-all t]
  2213. ["Unmark entry" org-agenda-bulk-unmark t]
  2214. ["Unmark all" org-agenda-bulk-unmark-all :active t :keys "U"]
  2215. ["Toggle mark" org-agenda-bulk-toggle t]
  2216. ["Toggle all" org-agenda-bulk-toggle-all t]
  2217. ["Mark regexp" org-agenda-bulk-mark-regexp t])
  2218. ["Act on all marked" org-agenda-bulk-action t]
  2219. "--"
  2220. ("Tags and Properties"
  2221. ["Show all Tags" org-agenda-show-tags t]
  2222. ["Set Tags current line" org-agenda-set-tags (not (org-region-active-p))]
  2223. ["Change tag in region" org-agenda-set-tags (org-region-active-p)]
  2224. "--"
  2225. ["Column View" org-columns t])
  2226. ("Deadline/Schedule"
  2227. ["Schedule" org-agenda-schedule t]
  2228. ["Set Deadline" org-agenda-deadline t]
  2229. "--"
  2230. ["Change Date +1 day" org-agenda-date-later (org-agenda-check-type nil 'agenda)]
  2231. ["Change Date -1 day" org-agenda-date-earlier (org-agenda-check-type nil 'agenda)]
  2232. ["Change Time +1 hour" org-agenda-do-date-later :active (org-agenda-check-type nil 'agenda) :keys "C-u S-right"]
  2233. ["Change Time -1 hour" org-agenda-do-date-earlier :active (org-agenda-check-type nil 'agenda) :keys "C-u S-left"]
  2234. ["Change Time + min" org-agenda-date-later :active (org-agenda-check-type nil 'agenda) :keys "C-u C-u S-right"]
  2235. ["Change Time - min" org-agenda-date-earlier :active (org-agenda-check-type nil 'agenda) :keys "C-u C-u S-left"]
  2236. ["Change Date to ..." org-agenda-date-prompt (org-agenda-check-type nil 'agenda)])
  2237. ("Clock and Effort"
  2238. ["Clock in" org-agenda-clock-in t]
  2239. ["Clock out" org-agenda-clock-out t]
  2240. ["Clock cancel" org-agenda-clock-cancel t]
  2241. ["Goto running clock" org-clock-goto t]
  2242. "--"
  2243. ["Set Effort" org-agenda-set-effort t]
  2244. ["Change clocked effort" org-clock-modify-effort-estimate
  2245. (org-clock-is-active)])
  2246. ("Priority"
  2247. ["Set Priority" org-agenda-priority t]
  2248. ["Increase Priority" org-agenda-priority-up t]
  2249. ["Decrease Priority" org-agenda-priority-down t]
  2250. ["Show Priority" org-show-priority t])
  2251. ("Calendar/Diary"
  2252. ["New Diary Entry" org-agenda-diary-entry (org-agenda-check-type nil 'agenda)]
  2253. ["Goto Calendar" org-agenda-goto-calendar (org-agenda-check-type nil 'agenda)]
  2254. ["Phases of the Moon" org-agenda-phases-of-moon (org-agenda-check-type nil 'agenda)]
  2255. ["Sunrise/Sunset" org-agenda-sunrise-sunset (org-agenda-check-type nil 'agenda)]
  2256. ["Holidays" org-agenda-holidays (org-agenda-check-type nil 'agenda)]
  2257. ["Convert" org-agenda-convert-date (org-agenda-check-type nil 'agenda)]
  2258. "--"
  2259. ["Create iCalendar File" org-icalendar-combine-agenda-files t])
  2260. "--"
  2261. ["Undo Remote Editing" org-agenda-undo org-agenda-undo-list]
  2262. "--"
  2263. ("MobileOrg"
  2264. ["Push Files and Views" org-mobile-push t]
  2265. ["Get Captured and Flagged" org-mobile-pull t]
  2266. ["Find FLAGGED Tasks" (org-agenda nil "?") :active t :keys "\\[org-agenda] ?"]
  2267. ["Show note / unflag" org-agenda-show-the-flagging-note t]
  2268. "--"
  2269. ["Setup" (progn (require 'org-mobile) (customize-group 'org-mobile)) t])
  2270. "--"
  2271. ["Quit" org-agenda-quit t]
  2272. ["Exit and Release Buffers" org-agenda-exit t]
  2273. ))
  2274. ;;; Agenda undo
  2275. (defvar org-agenda-allow-remote-undo t
  2276. "Non-nil means allow remote undo from the agenda buffer.")
  2277. (defvar org-agenda-undo-has-started-in nil
  2278. "Buffers that have already seen `undo-start' in the current undo sequence.")
  2279. (defun org-agenda-undo ()
  2280. "Undo a remote editing step in the agenda.
  2281. This undoes changes both in the agenda buffer and in the remote buffer
  2282. that have been changed along."
  2283. (interactive)
  2284. (or org-agenda-allow-remote-undo
  2285. (user-error "Check the variable `org-agenda-allow-remote-undo' to activate remote undo"))
  2286. (if (not (eq this-command last-command))
  2287. (setq org-agenda-undo-has-started-in nil
  2288. org-agenda-pending-undo-list org-agenda-undo-list))
  2289. (if (not org-agenda-pending-undo-list)
  2290. (user-error "No further undo information"))
  2291. (let* ((entry (pop org-agenda-pending-undo-list))
  2292. buf line cmd rembuf)
  2293. (setq cmd (pop entry) line (pop entry))
  2294. (setq rembuf (nth 2 entry))
  2295. (org-with-remote-undo rembuf
  2296. (while (bufferp (setq buf (pop entry)))
  2297. (if (pop entry)
  2298. (with-current-buffer buf
  2299. (let ((last-undo-buffer buf)
  2300. (inhibit-read-only t))
  2301. (unless (memq buf org-agenda-undo-has-started-in)
  2302. (push buf org-agenda-undo-has-started-in)
  2303. (make-local-variable 'pending-undo-list)
  2304. (undo-start))
  2305. (while (and pending-undo-list
  2306. (listp pending-undo-list)
  2307. (not (car pending-undo-list)))
  2308. (pop pending-undo-list))
  2309. (undo-more 1))))))
  2310. (org-goto-line line)
  2311. (message "`%s' undone (buffer %s)" cmd (buffer-name rembuf))))
  2312. (defun org-verify-change-for-undo (l1 l2)
  2313. "Verify that a real change occurred between the undo lists L1 and L2."
  2314. (while (and l1 (listp l1) (null (car l1))) (pop l1))
  2315. (while (and l2 (listp l2) (null (car l2))) (pop l2))
  2316. (not (eq l1 l2)))
  2317. ;;; Agenda dispatch
  2318. (defvar org-agenda-restrict-begin (make-marker))
  2319. (defvar org-agenda-restrict-end (make-marker))
  2320. (defvar org-agenda-last-dispatch-buffer nil)
  2321. (defvar org-agenda-overriding-restriction nil)
  2322. (defcustom org-agenda-custom-commands-contexts nil
  2323. "Alist of custom agenda keys and contextual rules.
  2324. For example, if you have a custom agenda command \"p\" and you
  2325. want this command to be accessible only from plain text files,
  2326. use this:
  2327. \\='((\"p\" ((in-file . \"\\\\.txt\\\\'\"))))
  2328. Here are the available contexts definitions:
  2329. in-file: command displayed only in matching files
  2330. in-mode: command displayed only in matching modes
  2331. not-in-file: command not displayed in matching files
  2332. not-in-mode: command not displayed in matching modes
  2333. in-buffer: command displayed only in matching buffers
  2334. not-in-buffer: command not displayed in matching buffers
  2335. [function]: a custom function taking no argument
  2336. If you define several checks, the agenda command will be
  2337. accessible if there is at least one valid check.
  2338. You can also bind a key to another agenda custom command
  2339. depending on contextual rules.
  2340. \\='((\"p\" \"q\" ((in-file . \"\\\\.txt\\\\'\"))))
  2341. Here it means: in .txt files, use \"p\" as the key for the
  2342. agenda command otherwise associated with \"q\". (The command
  2343. originally associated with \"q\" is not displayed to avoid
  2344. duplicates.)"
  2345. :version "24.3"
  2346. :group 'org-agenda-custom-commands
  2347. :type '(repeat (list :tag "Rule"
  2348. (string :tag " Agenda key")
  2349. (string :tag "Replace by command")
  2350. (repeat :tag "Available when"
  2351. (choice
  2352. (cons :tag "Condition"
  2353. (choice
  2354. (const :tag "In file" in-file)
  2355. (const :tag "Not in file" not-in-file)
  2356. (const :tag "In buffer" in-buffer)
  2357. (const :tag "Not in buffer" not-in-buffer)
  2358. (const :tag "In mode" in-mode)
  2359. (const :tag "Not in mode" not-in-mode))
  2360. (regexp))
  2361. (function :tag "Custom function"))))))
  2362. (defcustom org-agenda-max-entries nil
  2363. "Maximum number of entries to display in an agenda.
  2364. This can be nil (no limit) or an integer or an alist of agenda
  2365. types with an associated number of entries to display in this
  2366. type."
  2367. :version "24.4"
  2368. :package-version '(Org . "8.0")
  2369. :group 'org-agenda-custom-commands
  2370. :type '(choice (symbol :tag "No limit" nil)
  2371. (integer :tag "Max number of entries")
  2372. (repeat
  2373. (cons (choice :tag "Agenda type"
  2374. (const agenda)
  2375. (const todo)
  2376. (const tags)
  2377. (const search))
  2378. (integer :tag "Max number of entries")))))
  2379. (defcustom org-agenda-max-todos nil
  2380. "Maximum number of TODOs to display in an agenda.
  2381. This can be nil (no limit) or an integer or an alist of agenda
  2382. types with an associated number of entries to display in this
  2383. type."
  2384. :version "24.4"
  2385. :package-version '(Org . "8.0")
  2386. :group 'org-agenda-custom-commands
  2387. :type '(choice (symbol :tag "No limit" nil)
  2388. (integer :tag "Max number of TODOs")
  2389. (repeat
  2390. (cons (choice :tag "Agenda type"
  2391. (const agenda)
  2392. (const todo)
  2393. (const tags)
  2394. (const search))
  2395. (integer :tag "Max number of TODOs")))))
  2396. (defcustom org-agenda-max-tags nil
  2397. "Maximum number of tagged entries to display in an agenda.
  2398. This can be nil (no limit) or an integer or an alist of agenda
  2399. types with an associated number of entries to display in this
  2400. type."
  2401. :version "24.4"
  2402. :package-version '(Org . "8.0")
  2403. :group 'org-agenda-custom-commands
  2404. :type '(choice (symbol :tag "No limit" nil)
  2405. (integer :tag "Max number of tagged entries")
  2406. (repeat
  2407. (cons (choice :tag "Agenda type"
  2408. (const agenda)
  2409. (const todo)
  2410. (const tags)
  2411. (const search))
  2412. (integer :tag "Max number of tagged entries")))))
  2413. (defcustom org-agenda-max-effort nil
  2414. "Maximum cumulated effort duration for the agenda.
  2415. This can be nil (no limit) or a number of minutes (as an integer)
  2416. or an alist of agenda types with an associated number of minutes
  2417. to limit entries to in this type."
  2418. :version "24.4"
  2419. :package-version '(Org . "8.0")
  2420. :group 'org-agenda-custom-commands
  2421. :type '(choice (symbol :tag "No limit" nil)
  2422. (integer :tag "Max number of minutes")
  2423. (repeat
  2424. (cons (choice :tag "Agenda type"
  2425. (const agenda)
  2426. (const todo)
  2427. (const tags)
  2428. (const search))
  2429. (integer :tag "Max number of minutes")))))
  2430. (defvar org-agenda-keep-restricted-file-list nil)
  2431. (defvar org-keys nil)
  2432. (defvar org-match nil)
  2433. ;;;###autoload
  2434. (defun org-agenda (&optional arg org-keys restriction)
  2435. "Dispatch agenda commands to collect entries to the agenda buffer.
  2436. Prompts for a command to execute. Any prefix arg will be passed
  2437. on to the selected command. The default selections are:
  2438. a Call `org-agenda-list' to display the agenda for current day or week.
  2439. t Call `org-todo-list' to display the global todo list.
  2440. T Call `org-todo-list' to display the global todo list, select only
  2441. entries with a specific TODO keyword (the user gets a prompt).
  2442. m Call `org-tags-view' to display headlines with tags matching
  2443. a condition (the user is prompted for the condition).
  2444. M Like `m', but select only TODO entries, no ordinary headlines.
  2445. e Export views to associated files.
  2446. s Search entries for keywords.
  2447. S Search entries for keywords, only with TODO keywords.
  2448. / Multi occur across all agenda files and also files listed
  2449. in `org-agenda-text-search-extra-files'.
  2450. < Restrict agenda commands to buffer, subtree, or region.
  2451. Press several times to get the desired effect.
  2452. > Remove a previous restriction.
  2453. # List \"stuck\" projects.
  2454. ! Configure what \"stuck\" means.
  2455. C Configure custom agenda commands.
  2456. More commands can be added by configuring the variable
  2457. `org-agenda-custom-commands'. In particular, specific tags and TODO keyword
  2458. searches can be pre-defined in this way.
  2459. If the current buffer is in Org mode and visiting a file, you can also
  2460. first press `<' once to indicate that the agenda should be temporarily
  2461. \(until the next use of `\\[org-agenda]') restricted to the current file.
  2462. Pressing `<' twice means to restrict to the current subtree or region
  2463. \(if active)."
  2464. (interactive "P")
  2465. (catch 'exit
  2466. (let* ((prefix-descriptions nil)
  2467. (org-agenda-buffer-name org-agenda-buffer-name)
  2468. (org-agenda-window-setup (if (equal (buffer-name)
  2469. org-agenda-buffer-name)
  2470. 'current-window
  2471. org-agenda-window-setup))
  2472. (org-agenda-custom-commands-orig org-agenda-custom-commands)
  2473. (org-agenda-custom-commands
  2474. ;; normalize different versions
  2475. (delq nil
  2476. (mapcar
  2477. (lambda (x)
  2478. (cond ((stringp (cdr x))
  2479. (push x prefix-descriptions)
  2480. nil)
  2481. ((stringp (nth 1 x)) x)
  2482. ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
  2483. (t (cons (car x) (cons "" (cdr x))))))
  2484. org-agenda-custom-commands)))
  2485. (org-agenda-custom-commands
  2486. (org-contextualize-keys
  2487. org-agenda-custom-commands org-agenda-custom-commands-contexts))
  2488. (buf (current-buffer))
  2489. (bfn (buffer-file-name (buffer-base-buffer)))
  2490. entry key type org-match lprops ans)
  2491. ;; Turn off restriction unless there is an overriding one,
  2492. (unless org-agenda-overriding-restriction
  2493. (unless org-agenda-keep-restricted-file-list
  2494. ;; There is a request to keep the file list in place
  2495. (put 'org-agenda-files 'org-restrict nil))
  2496. (setq org-agenda-restrict nil)
  2497. (move-marker org-agenda-restrict-begin nil)
  2498. (move-marker org-agenda-restrict-end nil))
  2499. ;; Delete old local properties
  2500. (put 'org-agenda-redo-command 'org-lprops nil)
  2501. ;; Delete previously set last-arguments
  2502. (put 'org-agenda-redo-command 'last-args nil)
  2503. ;; Remember where this call originated
  2504. (setq org-agenda-last-dispatch-buffer (current-buffer))
  2505. (unless org-keys
  2506. (setq ans (org-agenda-get-restriction-and-command prefix-descriptions)
  2507. org-keys (car ans)
  2508. restriction (cdr ans)))
  2509. ;; If we have sticky agenda buffers, set a name for the buffer,
  2510. ;; depending on the invoking keys. The user may still set this
  2511. ;; as a command option, which will overwrite what we do here.
  2512. (if org-agenda-sticky
  2513. (setq org-agenda-buffer-name
  2514. (format "*Org Agenda(%s)*" org-keys)))
  2515. ;; Establish the restriction, if any
  2516. (when (and (not org-agenda-overriding-restriction) restriction)
  2517. (put 'org-agenda-files 'org-restrict (list bfn))
  2518. (cond
  2519. ((eq restriction 'region)
  2520. (setq org-agenda-restrict (current-buffer))
  2521. (move-marker org-agenda-restrict-begin (region-beginning))
  2522. (move-marker org-agenda-restrict-end (region-end)))
  2523. ((eq restriction 'subtree)
  2524. (save-excursion
  2525. (setq org-agenda-restrict (current-buffer))
  2526. (org-back-to-heading t)
  2527. (move-marker org-agenda-restrict-begin (point))
  2528. (move-marker org-agenda-restrict-end
  2529. (progn (org-end-of-subtree t)))))))
  2530. ;; For example the todo list should not need it (but does...)
  2531. (cond
  2532. ((setq entry (assoc org-keys org-agenda-custom-commands))
  2533. (if (or (symbolp (nth 2 entry)) (functionp (nth 2 entry)))
  2534. (progn
  2535. (setq type (nth 2 entry) org-match (eval (nth 3 entry))
  2536. lprops (nth 4 entry))
  2537. (if org-agenda-sticky
  2538. (setq org-agenda-buffer-name
  2539. (or (and (stringp org-match) (format "*Org Agenda(%s:%s)*" org-keys org-match))
  2540. (format "*Org Agenda(%s)*" org-keys))))
  2541. (put 'org-agenda-redo-command 'org-lprops lprops)
  2542. (cond
  2543. ((eq type 'agenda)
  2544. (org-let lprops '(org-agenda-list current-prefix-arg)))
  2545. ((eq type 'agenda*)
  2546. (org-let lprops '(org-agenda-list current-prefix-arg nil nil t)))
  2547. ((eq type 'alltodo)
  2548. (org-let lprops '(org-todo-list current-prefix-arg)))
  2549. ((eq type 'search)
  2550. (org-let lprops '(org-search-view current-prefix-arg org-match nil)))
  2551. ((eq type 'stuck)
  2552. (org-let lprops '(org-agenda-list-stuck-projects
  2553. current-prefix-arg)))
  2554. ((eq type 'tags)
  2555. (org-let lprops '(org-tags-view current-prefix-arg org-match)))
  2556. ((eq type 'tags-todo)
  2557. (org-let lprops '(org-tags-view '(4) org-match)))
  2558. ((eq type 'todo)
  2559. (org-let lprops '(org-todo-list org-match)))
  2560. ((eq type 'tags-tree)
  2561. (org-check-for-org-mode)
  2562. (org-let lprops '(org-match-sparse-tree current-prefix-arg org-match)))
  2563. ((eq type 'todo-tree)
  2564. (org-check-for-org-mode)
  2565. (org-let lprops
  2566. '(org-occur (concat "^" org-outline-regexp "[ \t]*"
  2567. (regexp-quote org-match) "\\>"))))
  2568. ((eq type 'occur-tree)
  2569. (org-check-for-org-mode)
  2570. (org-let lprops '(org-occur org-match)))
  2571. ((functionp type)
  2572. (org-let lprops '(funcall type org-match)))
  2573. ((fboundp type)
  2574. (org-let lprops '(funcall type org-match)))
  2575. (t (user-error "Invalid custom agenda command type %s" type))))
  2576. (org-agenda-run-series (nth 1 entry) (cddr entry))))
  2577. ((equal org-keys "C")
  2578. (setq org-agenda-custom-commands org-agenda-custom-commands-orig)
  2579. (customize-variable 'org-agenda-custom-commands))
  2580. ((equal org-keys "a") (call-interactively 'org-agenda-list))
  2581. ((equal org-keys "s") (call-interactively 'org-search-view))
  2582. ((equal org-keys "S") (org-call-with-arg 'org-search-view (or arg '(4))))
  2583. ((equal org-keys "t") (call-interactively 'org-todo-list))
  2584. ((equal org-keys "T") (org-call-with-arg 'org-todo-list (or arg '(4))))
  2585. ((equal org-keys "m") (call-interactively 'org-tags-view))
  2586. ((equal org-keys "M") (org-call-with-arg 'org-tags-view (or arg '(4))))
  2587. ((equal org-keys "e") (call-interactively 'org-store-agenda-views))
  2588. ((equal org-keys "?") (org-tags-view nil "+FLAGGED")
  2589. (add-hook
  2590. 'post-command-hook
  2591. (lambda ()
  2592. (unless (current-message)
  2593. (let* ((m (org-agenda-get-any-marker))
  2594. (note (and m (org-entry-get m "THEFLAGGINGNOTE"))))
  2595. (when note
  2596. (message (concat
  2597. "FLAGGING-NOTE ([?] for more info): "
  2598. (org-add-props
  2599. (replace-regexp-in-string
  2600. "\\\\n" "//"
  2601. (copy-sequence note))
  2602. nil 'face 'org-warning)))))))
  2603. t t))
  2604. ((equal org-keys "#") (call-interactively 'org-agenda-list-stuck-projects))
  2605. ((equal org-keys "/") (call-interactively 'org-occur-in-agenda-files))
  2606. ((equal org-keys "!") (customize-variable 'org-stuck-projects))
  2607. (t (user-error "Invalid agenda key"))))))
  2608. (defvar org-agenda-multi)
  2609. (defun org-agenda-append-agenda ()
  2610. "Append another agenda view to the current one.
  2611. This function allows interactive building of block agendas.
  2612. Agenda views are separated by `org-agenda-block-separator'."
  2613. (interactive)
  2614. (unless (derived-mode-p 'org-agenda-mode)
  2615. (user-error "Can only append from within agenda buffer"))
  2616. (let ((org-agenda-multi t))
  2617. (org-agenda)
  2618. (widen)
  2619. (org-agenda-finalize)
  2620. (setq buffer-read-only t)
  2621. (org-agenda-fit-window-to-buffer)))
  2622. (defun org-agenda-normalize-custom-commands (cmds)
  2623. "Normalize custom commands CMDS."
  2624. (delq nil
  2625. (mapcar
  2626. (lambda (x)
  2627. (cond ((stringp (cdr x)) nil)
  2628. ((stringp (nth 1 x)) x)
  2629. ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
  2630. (t (cons (car x) (cons "" (cdr x))))))
  2631. cmds)))
  2632. (defun org-agenda-get-restriction-and-command (prefix-descriptions)
  2633. "The user interface for selecting an agenda command."
  2634. (catch 'exit
  2635. (let* ((bfn (buffer-file-name (buffer-base-buffer)))
  2636. (restrict-ok (and bfn (derived-mode-p 'org-mode)))
  2637. (region-p (org-region-active-p))
  2638. (custom org-agenda-custom-commands)
  2639. (selstring "")
  2640. restriction second-time
  2641. c entry key type match prefixes rmheader header-end custom1 desc
  2642. line lines left right n n1)
  2643. (save-window-excursion
  2644. (delete-other-windows)
  2645. (org-switch-to-buffer-other-window " *Agenda Commands*")
  2646. (erase-buffer)
  2647. (insert (eval-when-compile
  2648. (let ((header
  2649. "Press key for an agenda command:
  2650. -------------------------------- < Buffer, subtree/region restriction
  2651. a Agenda for current week or day > Remove restriction
  2652. t List of all TODO entries e Export agenda views
  2653. m Match a TAGS/PROP/TODO query T Entries with special TODO kwd
  2654. s Search for keywords M Like m, but only TODO entries
  2655. / Multi-occur S Like s, but only TODO entries
  2656. ? Find :FLAGGED: entries C Configure custom agenda commands
  2657. * Toggle sticky agenda views # List stuck projects (!=configure)
  2658. ")
  2659. (start 0))
  2660. (while (string-match
  2661. "\\(^\\| \\|(\\)\\(\\S-\\)\\( \\|=\\)"
  2662. header start)
  2663. (setq start (match-end 0))
  2664. (add-text-properties (match-beginning 2) (match-end 2)
  2665. '(face bold) header))
  2666. header)))
  2667. (setq header-end (point-marker))
  2668. (while t
  2669. (setq custom1 custom)
  2670. (when (eq rmheader t)
  2671. (org-goto-line 1)
  2672. (re-search-forward ":" nil t)
  2673. (delete-region (match-end 0) (point-at-eol))
  2674. (forward-char 1)
  2675. (looking-at "-+")
  2676. (delete-region (match-end 0) (point-at-eol))
  2677. (move-marker header-end (match-end 0)))
  2678. (goto-char header-end)
  2679. (delete-region (point) (point-max))
  2680. ;; Produce all the lines that describe custom commands and prefixes
  2681. (setq lines nil)
  2682. (while (setq entry (pop custom1))
  2683. (setq key (car entry) desc (nth 1 entry)
  2684. type (nth 2 entry)
  2685. match (nth 3 entry))
  2686. (if (> (length key) 1)
  2687. (cl-pushnew (string-to-char key) prefixes :test #'equal)
  2688. (setq line
  2689. (format
  2690. "%-4s%-14s"
  2691. (org-add-props (copy-sequence key)
  2692. '(face bold))
  2693. (cond
  2694. ((string-match "\\S-" desc) desc)
  2695. ((eq type 'agenda) "Agenda for current week or day")
  2696. ((eq type 'agenda*) "Appointments for current week or day")
  2697. ((eq type 'alltodo) "List of all TODO entries")
  2698. ((eq type 'search) "Word search")
  2699. ((eq type 'stuck) "List of stuck projects")
  2700. ((eq type 'todo) "TODO keyword")
  2701. ((eq type 'tags) "Tags query")
  2702. ((eq type 'tags-todo) "Tags (TODO)")
  2703. ((eq type 'tags-tree) "Tags tree")
  2704. ((eq type 'todo-tree) "TODO kwd tree")
  2705. ((eq type 'occur-tree) "Occur tree")
  2706. ((functionp type) (if (symbolp type)
  2707. (symbol-name type)
  2708. "Lambda expression"))
  2709. (t "???"))))
  2710. (if org-agenda-menu-show-matcher
  2711. (setq line
  2712. (concat line ": "
  2713. (cond
  2714. ((stringp match)
  2715. (setq match (copy-sequence match))
  2716. (org-add-props match nil 'face 'org-warning))
  2717. ((listp type)
  2718. (format "set of %d commands" (length type))))))
  2719. (if (org-string-nw-p match)
  2720. (add-text-properties
  2721. 0 (length line) (list 'help-echo
  2722. (concat "Matcher: " match)) line)))
  2723. (push line lines)))
  2724. (setq lines (nreverse lines))
  2725. (when prefixes
  2726. (mapc (lambda (x)
  2727. (push
  2728. (format "%s %s"
  2729. (org-add-props (char-to-string x)
  2730. nil 'face 'bold)
  2731. (or (cdr (assoc (concat selstring
  2732. (char-to-string x))
  2733. prefix-descriptions))
  2734. "Prefix key"))
  2735. lines))
  2736. prefixes))
  2737. ;; Check if we should display in two columns
  2738. (if org-agenda-menu-two-columns
  2739. (progn
  2740. (setq n (length lines)
  2741. n1 (+ (/ n 2) (mod n 2))
  2742. right (nthcdr n1 lines)
  2743. left (copy-sequence lines))
  2744. (setcdr (nthcdr (1- n1) left) nil))
  2745. (setq left lines right nil))
  2746. (while left
  2747. (insert "\n" (pop left))
  2748. (when right
  2749. (if (< (current-column) 40)
  2750. (move-to-column 40 t)
  2751. (insert " "))
  2752. (insert (pop right))))
  2753. ;; Make the window the right size
  2754. (goto-char (point-min))
  2755. (if second-time
  2756. (if (not (pos-visible-in-window-p (point-max)))
  2757. (org-fit-window-to-buffer))
  2758. (setq second-time t)
  2759. (org-fit-window-to-buffer))
  2760. ;; Ask for selection
  2761. (message "Press key for agenda command%s:"
  2762. (if (or restrict-ok org-agenda-overriding-restriction)
  2763. (if org-agenda-overriding-restriction
  2764. " (restriction lock active)"
  2765. (if restriction
  2766. (format " (restricted to %s)" restriction)
  2767. " (unrestricted)"))
  2768. ""))
  2769. (setq c (read-char-exclusive))
  2770. (message "")
  2771. (cond
  2772. ((assoc (char-to-string c) custom)
  2773. (setq selstring (concat selstring (char-to-string c)))
  2774. (throw 'exit (cons selstring restriction)))
  2775. ((memq c prefixes)
  2776. (setq selstring (concat selstring (char-to-string c))
  2777. prefixes nil
  2778. rmheader (or rmheader t)
  2779. custom (delq nil (mapcar
  2780. (lambda (x)
  2781. (if (or (= (length (car x)) 1)
  2782. (/= (string-to-char (car x)) c))
  2783. nil
  2784. (cons (substring (car x) 1) (cdr x))))
  2785. custom))))
  2786. ((eq c ?*)
  2787. (call-interactively 'org-toggle-sticky-agenda)
  2788. (sit-for 2))
  2789. ((and (not restrict-ok) (memq c '(?1 ?0 ?<)))
  2790. (message "Restriction is only possible in Org buffers")
  2791. (ding) (sit-for 1))
  2792. ((eq c ?1)
  2793. (org-agenda-remove-restriction-lock 'noupdate)
  2794. (setq restriction 'buffer))
  2795. ((eq c ?0)
  2796. (org-agenda-remove-restriction-lock 'noupdate)
  2797. (setq restriction (if region-p 'region 'subtree)))
  2798. ((eq c ?<)
  2799. (org-agenda-remove-restriction-lock 'noupdate)
  2800. (setq restriction
  2801. (cond
  2802. ((eq restriction 'buffer)
  2803. (if region-p 'region 'subtree))
  2804. ((memq restriction '(subtree region))
  2805. nil)
  2806. (t 'buffer))))
  2807. ((eq c ?>)
  2808. (org-agenda-remove-restriction-lock 'noupdate)
  2809. (setq restriction nil))
  2810. ((and (equal selstring "") (memq c '(?s ?S ?a ?t ?m ?L ?C ?e ?T ?M ?# ?! ?/ ??)))
  2811. (throw 'exit (cons (setq selstring (char-to-string c)) restriction)))
  2812. ((and (> (length selstring) 0) (eq c ?\d))
  2813. (delete-window)
  2814. (org-agenda-get-restriction-and-command prefix-descriptions))
  2815. ((equal c ?q) (error "Abort"))
  2816. (t (user-error "Invalid key %c" c))))))))
  2817. (defun org-agenda-fit-window-to-buffer ()
  2818. "Fit the window to the buffer size."
  2819. (and (memq org-agenda-window-setup '(reorganize-frame))
  2820. (fboundp 'fit-window-to-buffer)
  2821. (if (and (= (cdr org-agenda-window-frame-fractions) 1.0)
  2822. (= (car org-agenda-window-frame-fractions) 1.0))
  2823. (delete-other-windows)
  2824. (org-fit-window-to-buffer
  2825. nil
  2826. (floor (* (frame-height) (cdr org-agenda-window-frame-fractions)))
  2827. (floor (* (frame-height) (car org-agenda-window-frame-fractions)))))))
  2828. (defvar org-cmd nil)
  2829. (defvar org-agenda-overriding-cmd nil)
  2830. (defvar org-agenda-overriding-arguments nil)
  2831. (defvar org-agenda-overriding-cmd-arguments nil)
  2832. (defun org-agenda-run-series (name series)
  2833. "Run agenda NAME as a SERIES of agenda commands."
  2834. (org-let (nth 1 series) '(org-agenda-prepare name))
  2835. ;; We need to reset agenda markers here, because when constructing a
  2836. ;; block agenda, the individual blocks do not do that.
  2837. (org-agenda-reset-markers)
  2838. (let* ((org-agenda-multi t)
  2839. (redo (list 'org-agenda-run-series name (list 'quote series)))
  2840. (cmds (car series))
  2841. (gprops (nth 1 series))
  2842. match ;; The byte compiler incorrectly complains about this. Keep it!
  2843. org-cmd type lprops)
  2844. (while (setq org-cmd (pop cmds))
  2845. (setq type (car org-cmd))
  2846. (setq match (eval (nth 1 org-cmd)))
  2847. (setq lprops (nth 2 org-cmd))
  2848. (let ((org-agenda-overriding-arguments
  2849. (if (eq org-agenda-overriding-cmd org-cmd)
  2850. (or org-agenda-overriding-arguments
  2851. org-agenda-overriding-cmd-arguments))))
  2852. (cond
  2853. ((eq type 'agenda)
  2854. (org-let2 gprops lprops
  2855. '(call-interactively 'org-agenda-list)))
  2856. ((eq type 'agenda*)
  2857. (org-let2 gprops lprops
  2858. '(funcall 'org-agenda-list nil nil t)))
  2859. ((eq type 'alltodo)
  2860. (org-let2 gprops lprops
  2861. '(call-interactively 'org-todo-list)))
  2862. ((eq type 'search)
  2863. (org-let2 gprops lprops
  2864. '(org-search-view current-prefix-arg match nil)))
  2865. ((eq type 'stuck)
  2866. (org-let2 gprops lprops
  2867. '(call-interactively 'org-agenda-list-stuck-projects)))
  2868. ((eq type 'tags)
  2869. (org-let2 gprops lprops
  2870. '(org-tags-view current-prefix-arg match)))
  2871. ((eq type 'tags-todo)
  2872. (org-let2 gprops lprops
  2873. '(org-tags-view '(4) match)))
  2874. ((eq type 'todo)
  2875. (org-let2 gprops lprops
  2876. '(org-todo-list match)))
  2877. ((fboundp type)
  2878. (org-let2 gprops lprops
  2879. '(funcall type match)))
  2880. (t (error "Invalid type in command series")))))
  2881. (widen)
  2882. (let ((inhibit-read-only t))
  2883. (add-text-properties (point-min) (point-max)
  2884. `(org-series t org-series-redo-cmd ,redo)))
  2885. (setq org-agenda-redo-command redo)
  2886. (goto-char (point-min)))
  2887. (org-agenda-fit-window-to-buffer)
  2888. (org-let (nth 1 series) '(org-agenda-finalize)))
  2889. ;;;###autoload
  2890. (defmacro org-batch-agenda (cmd-key &rest parameters)
  2891. "Run an agenda command in batch mode and send the result to STDOUT.
  2892. If CMD-KEY is a string of length 1, it is used as a key in
  2893. `org-agenda-custom-commands' and triggers this command. If it is a
  2894. longer string it is used as a tags/todo match string.
  2895. Parameters are alternating variable names and values that will be bound
  2896. before running the agenda command."
  2897. (org-eval-in-environment (org-make-parameter-alist parameters)
  2898. (let (org-agenda-sticky)
  2899. (if (> (length cmd-key) 1)
  2900. (org-tags-view nil cmd-key)
  2901. (org-agenda nil cmd-key))))
  2902. (set-buffer org-agenda-buffer-name)
  2903. (princ (buffer-string)))
  2904. (defvar org-agenda-info nil)
  2905. ;;;###autoload
  2906. (defmacro org-batch-agenda-csv (cmd-key &rest parameters)
  2907. "Run an agenda command in batch mode and send the result to STDOUT.
  2908. If CMD-KEY is a string of length 1, it is used as a key in
  2909. `org-agenda-custom-commands' and triggers this command. If it is a
  2910. longer string it is used as a tags/todo match string.
  2911. Parameters are alternating variable names and values that will be bound
  2912. before running the agenda command.
  2913. The output gives a line for each selected agenda item. Each
  2914. item is a list of comma-separated values, like this:
  2915. category,head,type,todo,tags,date,time,extra,priority-l,priority-n
  2916. category The category of the item
  2917. head The headline, without TODO kwd, TAGS and PRIORITY
  2918. type The type of the agenda entry, can be
  2919. todo selected in TODO match
  2920. tagsmatch selected in tags match
  2921. diary imported from diary
  2922. deadline a deadline on given date
  2923. scheduled scheduled on given date
  2924. timestamp entry has timestamp on given date
  2925. closed entry was closed on given date
  2926. upcoming-deadline warning about deadline
  2927. past-scheduled forwarded scheduled item
  2928. block entry has date block including g. date
  2929. todo The todo keyword, if any
  2930. tags All tags including inherited ones, separated by colons
  2931. date The relevant date, like 2007-2-14
  2932. time The time, like 15:00-16:50
  2933. extra Sting with extra planning info
  2934. priority-l The priority letter if any was given
  2935. priority-n The computed numerical priority
  2936. agenda-day The day in the agenda where this is listed"
  2937. (org-eval-in-environment (append '((org-agenda-remove-tags t))
  2938. (org-make-parameter-alist parameters))
  2939. (if (> (length cmd-key) 2)
  2940. (org-tags-view nil cmd-key)
  2941. (org-agenda nil cmd-key)))
  2942. (set-buffer org-agenda-buffer-name)
  2943. (let* ((lines (org-split-string (buffer-string) "\n"))
  2944. line)
  2945. (while (setq line (pop lines))
  2946. (catch 'next
  2947. (if (not (get-text-property 0 'org-category line)) (throw 'next nil))
  2948. (setq org-agenda-info
  2949. (org-fix-agenda-info (text-properties-at 0 line)))
  2950. (princ
  2951. (mapconcat 'org-agenda-export-csv-mapper
  2952. '(org-category txt type todo tags date time extra
  2953. priority-letter priority agenda-day)
  2954. ","))
  2955. (princ "\n")))))
  2956. (defun org-fix-agenda-info (props)
  2957. "Make sure all properties on an agenda item have a canonical form.
  2958. This ensures the export commands can easily use it."
  2959. (let (tmp re)
  2960. (when (setq tmp (plist-get props 'tags))
  2961. (setq props (plist-put props 'tags (mapconcat 'identity tmp ":"))))
  2962. (when (setq tmp (plist-get props 'date))
  2963. (if (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
  2964. (let ((calendar-date-display-form '(year "-" month "-" day)))
  2965. '((format "%4d, %9s %2s, %4s" dayname monthname day year))
  2966. (setq tmp (calendar-date-string tmp)))
  2967. (setq props (plist-put props 'date tmp)))
  2968. (when (setq tmp (plist-get props 'day))
  2969. (if (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
  2970. (let ((calendar-date-display-form '(year "-" month "-" day)))
  2971. (setq tmp (calendar-date-string tmp)))
  2972. (setq props (plist-put props 'day tmp))
  2973. (setq props (plist-put props 'agenda-day tmp)))
  2974. (when (setq tmp (plist-get props 'txt))
  2975. (when (string-match "\\[#\\([A-Z0-9]\\)\\] ?" tmp)
  2976. (plist-put props 'priority-letter (match-string 1 tmp))
  2977. (setq tmp (replace-match "" t t tmp)))
  2978. (when (and (setq re (plist-get props 'org-todo-regexp))
  2979. (setq re (concat "\\`\\.*" re " ?"))
  2980. (let ((case-fold-search nil)) (string-match re tmp)))
  2981. (plist-put props 'todo (match-string 1 tmp))
  2982. (setq tmp (replace-match "" t t tmp)))
  2983. (plist-put props 'txt tmp)))
  2984. props)
  2985. (defun org-agenda-export-csv-mapper (prop)
  2986. (let ((res (plist-get org-agenda-info prop)))
  2987. (setq res
  2988. (cond
  2989. ((not res) "")
  2990. ((stringp res) res)
  2991. (t (prin1-to-string res))))
  2992. (org-trim (replace-regexp-in-string "," ";" res nil t))))
  2993. ;;;###autoload
  2994. (defun org-store-agenda-views (&rest parameters)
  2995. "Store agenda views."
  2996. (interactive)
  2997. (eval (list 'org-batch-store-agenda-views)))
  2998. ;;;###autoload
  2999. (defmacro org-batch-store-agenda-views (&rest parameters)
  3000. "Run all custom agenda commands that have a file argument."
  3001. (let ((cmds (org-agenda-normalize-custom-commands org-agenda-custom-commands))
  3002. (pop-up-frames nil)
  3003. (dir default-directory)
  3004. (pars (org-make-parameter-alist parameters))
  3005. cmd thiscmdkey thiscmdcmd match files opts cmd-or-set bufname)
  3006. (save-window-excursion
  3007. (while cmds
  3008. (setq cmd (pop cmds)
  3009. thiscmdkey (car cmd)
  3010. thiscmdcmd (cdr cmd)
  3011. match (nth 2 thiscmdcmd)
  3012. bufname (if org-agenda-sticky
  3013. (or (and (stringp match)
  3014. (format "*Org Agenda(%s:%s)*" thiscmdkey match))
  3015. (format "*Org Agenda(%s)*" thiscmdkey))
  3016. org-agenda-buffer-name)
  3017. cmd-or-set (nth 2 cmd)
  3018. opts (nth (if (listp cmd-or-set) 3 4) cmd)
  3019. files (nth (if (listp cmd-or-set) 4 5) cmd))
  3020. (if (stringp files) (setq files (list files)))
  3021. (when files
  3022. (org-eval-in-environment (append org-agenda-exporter-settings
  3023. opts pars)
  3024. (org-agenda nil thiscmdkey))
  3025. (set-buffer bufname)
  3026. (while files
  3027. (org-eval-in-environment (append org-agenda-exporter-settings
  3028. opts pars)
  3029. (org-agenda-write (expand-file-name (pop files) dir) nil t bufname)))
  3030. (and (get-buffer bufname)
  3031. (kill-buffer bufname)))))))
  3032. (defvar org-agenda-current-span nil
  3033. "The current span used in the agenda view.") ; local variable in the agenda buffer
  3034. (defun org-agenda-mark-header-line (pos)
  3035. "Mark the line at POS as an agenda structure header."
  3036. (save-excursion
  3037. (goto-char pos)
  3038. (put-text-property (point-at-bol) (point-at-eol)
  3039. 'org-agenda-structural-header t)
  3040. (when org-agenda-title-append
  3041. (put-text-property (point-at-bol) (point-at-eol)
  3042. 'org-agenda-title-append org-agenda-title-append))))
  3043. (defvar org-mobile-creating-agendas) ; defined in org-mobile.el
  3044. (defvar org-agenda-write-buffer-name "Agenda View")
  3045. (defun org-agenda-write (file &optional open nosettings agenda-bufname)
  3046. "Write the current buffer (an agenda view) as a file.
  3047. Depending on the extension of the file name, plain text (.txt),
  3048. HTML (.html or .htm), PDF (.pdf) or Postscript (.ps) is produced.
  3049. If the extension is .ics, translate visible agenda into iCalendar
  3050. format. If the extension is .org, collect all subtrees
  3051. corresponding to the agenda entries and add them in an .org file.
  3052. With prefix argument OPEN, open the new file immediately. If
  3053. NOSETTINGS is given, do not scope the settings of
  3054. `org-agenda-exporter-settings' into the export commands. This is
  3055. used when the settings have already been scoped and we do not
  3056. wish to overrule other, higher priority settings. If
  3057. AGENDA-BUFFER-NAME is provided, use this as the buffer name for
  3058. the agenda to write."
  3059. (interactive "FWrite agenda to file: \nP")
  3060. (if (or (not (file-writable-p file))
  3061. (and (file-exists-p file)
  3062. (if (called-interactively-p 'any)
  3063. (not (y-or-n-p (format "Overwrite existing file %s? " file))))))
  3064. (user-error "Cannot write agenda to file %s" file))
  3065. (org-let (if nosettings nil org-agenda-exporter-settings)
  3066. '(save-excursion
  3067. (save-window-excursion
  3068. (let ((bs (copy-sequence (buffer-string)))
  3069. (extension (file-name-extension file))
  3070. (default-directory (file-name-directory file))
  3071. beg content)
  3072. (with-temp-buffer
  3073. (rename-buffer org-agenda-write-buffer-name t)
  3074. (set-buffer-modified-p nil)
  3075. (insert bs)
  3076. (org-agenda-remove-marked-text 'invisible 'org-filtered)
  3077. (run-hooks 'org-agenda-before-write-hook)
  3078. (cond
  3079. ((bound-and-true-p org-mobile-creating-agendas)
  3080. (org-mobile-write-agenda-for-mobile file))
  3081. ((string= "org" extension)
  3082. (let (content p m message-log-max)
  3083. (goto-char (point-min))
  3084. (while (setq p (next-single-property-change (point) 'org-hd-marker nil))
  3085. (goto-char p)
  3086. (setq m (get-text-property (point) 'org-hd-marker))
  3087. (when m
  3088. (push (save-excursion
  3089. (set-buffer (marker-buffer m))
  3090. (goto-char m)
  3091. (org-copy-subtree 1 nil t t)
  3092. org-subtree-clip)
  3093. content)))
  3094. (find-file file)
  3095. (erase-buffer)
  3096. (dolist (s content) (org-paste-subtree 1 s))
  3097. (write-file file)
  3098. (kill-buffer (current-buffer))
  3099. (message "Org file written to %s" file)))
  3100. ((member extension '("html" "htm"))
  3101. (or (require 'htmlize nil t)
  3102. (error "Please install htmlize from https://github.com/hniksic/emacs-htmlize"))
  3103. (set-buffer (htmlize-buffer (current-buffer)))
  3104. (when org-agenda-export-html-style
  3105. ;; replace <style> section with org-agenda-export-html-style
  3106. (goto-char (point-min))
  3107. (kill-region (- (search-forward "<style") 6)
  3108. (search-forward "</style>"))
  3109. (insert org-agenda-export-html-style))
  3110. (write-file file)
  3111. (kill-buffer (current-buffer))
  3112. (message "HTML written to %s" file))
  3113. ((string= "ps" extension)
  3114. (require 'ps-print)
  3115. (ps-print-buffer-with-faces file)
  3116. (message "Postscript written to %s" file))
  3117. ((string= "pdf" extension)
  3118. (require 'ps-print)
  3119. (ps-print-buffer-with-faces
  3120. (concat (file-name-sans-extension file) ".ps"))
  3121. (call-process "ps2pdf" nil nil nil
  3122. (expand-file-name
  3123. (concat (file-name-sans-extension file) ".ps"))
  3124. (expand-file-name file))
  3125. (delete-file (concat (file-name-sans-extension file) ".ps"))
  3126. (message "PDF written to %s" file))
  3127. ((string= "ics" extension)
  3128. (require 'ox-icalendar)
  3129. (org-icalendar-export-current-agenda (expand-file-name file)))
  3130. (t
  3131. (let ((bs (buffer-string)))
  3132. (find-file file)
  3133. (erase-buffer)
  3134. (insert bs)
  3135. (save-buffer 0)
  3136. (kill-buffer (current-buffer))
  3137. (message "Plain text written to %s" file))))))))
  3138. (set-buffer (or agenda-bufname
  3139. (and (called-interactively-p 'any) (buffer-name))
  3140. org-agenda-buffer-name)))
  3141. (when open (org-open-file file)))
  3142. (defun org-agenda-remove-marked-text (property &optional value)
  3143. "Delete all text marked with VALUE of PROPERTY.
  3144. VALUE defaults to t."
  3145. (let (beg)
  3146. (setq value (or value t))
  3147. (while (setq beg (text-property-any (point-min) (point-max)
  3148. property value))
  3149. (delete-region
  3150. beg (or (next-single-property-change beg property)
  3151. (point-max))))))
  3152. (defun org-agenda-add-entry-text ()
  3153. "Add entry text to agenda lines.
  3154. This will add a maximum of `org-agenda-add-entry-text-maxlines' lines of the
  3155. entry text following headings shown in the agenda.
  3156. Drawers will be excluded, also the line with scheduling/deadline info."
  3157. (when (and (> org-agenda-add-entry-text-maxlines 0)
  3158. (not (bound-and-true-p org-mobile-creating-agendas)))
  3159. (let (m txt)
  3160. (goto-char (point-min))
  3161. (while (not (eobp))
  3162. (if (not (setq m (org-get-at-bol 'org-hd-marker)))
  3163. (beginning-of-line 2)
  3164. (setq txt (org-agenda-get-some-entry-text
  3165. m org-agenda-add-entry-text-maxlines " > "))
  3166. (end-of-line 1)
  3167. (if (string-match "\\S-" txt)
  3168. (insert "\n" txt)
  3169. (or (eobp) (forward-char 1))))))))
  3170. (defun org-agenda-get-some-entry-text (marker n-lines &optional indent
  3171. &rest keep)
  3172. "Extract entry text from MARKER, at most N-LINES lines.
  3173. This will ignore drawers etc, just get the text.
  3174. If INDENT is given, prefix every line with this string. If KEEP is
  3175. given, it is a list of symbols, defining stuff that should not be
  3176. removed from the entry content. Currently only `planning' is allowed here."
  3177. (let (txt drawer-re kwd-time-re ind)
  3178. (save-excursion
  3179. (with-current-buffer (marker-buffer marker)
  3180. (if (not (derived-mode-p 'org-mode))
  3181. (setq txt "")
  3182. (org-with-wide-buffer
  3183. (goto-char marker)
  3184. (end-of-line 1)
  3185. (setq txt (buffer-substring
  3186. (min (1+ (point)) (point-max))
  3187. (progn (outline-next-heading) (point)))
  3188. drawer-re org-drawer-regexp
  3189. kwd-time-re (concat "^[ \t]*" org-keyword-time-regexp
  3190. ".*\n?"))
  3191. (with-temp-buffer
  3192. (insert txt)
  3193. (when org-agenda-add-entry-text-descriptive-links
  3194. (goto-char (point-min))
  3195. (while (org-activate-links (point-max))
  3196. (add-text-properties (match-beginning 0) (match-end 0)
  3197. '(face org-link))))
  3198. (goto-char (point-min))
  3199. (while (re-search-forward org-bracket-link-regexp (point-max) t)
  3200. (set-text-properties (match-beginning 0) (match-end 0)
  3201. nil))
  3202. (goto-char (point-min))
  3203. (while (re-search-forward drawer-re nil t)
  3204. (delete-region
  3205. (match-beginning 0)
  3206. (progn (re-search-forward
  3207. "^[ \t]*:END:.*\n?" nil 'move)
  3208. (point))))
  3209. (unless (member 'planning keep)
  3210. (goto-char (point-min))
  3211. (while (re-search-forward kwd-time-re nil t)
  3212. (replace-match "")))
  3213. (goto-char (point-min))
  3214. (when org-agenda-entry-text-exclude-regexps
  3215. (let ((re-list org-agenda-entry-text-exclude-regexps) re)
  3216. (while (setq re (pop re-list))
  3217. (goto-char (point-min))
  3218. (while (re-search-forward re nil t)
  3219. (replace-match "")))))
  3220. (goto-char (point-max))
  3221. (skip-chars-backward " \t\n")
  3222. (if (looking-at "[ \t\n]+\\'") (replace-match ""))
  3223. ;; find and remove min common indentation
  3224. (goto-char (point-min))
  3225. (untabify (point-min) (point-max))
  3226. (setq ind (org-get-indentation))
  3227. (while (not (eobp))
  3228. (unless (looking-at "[ \t]*$")
  3229. (setq ind (min ind (org-get-indentation))))
  3230. (beginning-of-line 2))
  3231. (goto-char (point-min))
  3232. (while (not (eobp))
  3233. (unless (looking-at "[ \t]*$")
  3234. (move-to-column ind)
  3235. (delete-region (point-at-bol) (point)))
  3236. (beginning-of-line 2))
  3237. (run-hooks 'org-agenda-entry-text-cleanup-hook)
  3238. (goto-char (point-min))
  3239. (when indent
  3240. (while (and (not (eobp)) (re-search-forward "^" nil t))
  3241. (replace-match indent t t)))
  3242. (goto-char (point-min))
  3243. (while (looking-at "[ \t]*\n") (replace-match ""))
  3244. (goto-char (point-max))
  3245. (when (> (org-current-line)
  3246. n-lines)
  3247. (org-goto-line (1+ n-lines))
  3248. (backward-char 1))
  3249. (setq txt (buffer-substring (point-min) (point))))))))
  3250. txt))
  3251. (defun org-check-for-org-mode ()
  3252. "Make sure current buffer is in Org mode. Error if not."
  3253. (or (derived-mode-p 'org-mode)
  3254. (error "Cannot execute Org agenda command on buffer in %s"
  3255. major-mode)))
  3256. ;;; Agenda prepare and finalize
  3257. (defvar org-agenda-multi nil) ; dynamically scoped
  3258. (defvar org-agenda-pre-window-conf nil)
  3259. (defvar org-agenda-columns-active nil)
  3260. (defvar org-agenda-name nil)
  3261. (defvar org-agenda-tag-filter nil)
  3262. (defvar org-agenda-category-filter nil)
  3263. (defvar org-agenda-regexp-filter nil)
  3264. (defvar org-agenda-effort-filter nil)
  3265. (defvar org-agenda-top-headline-filter nil)
  3266. (defvar org-agenda-tag-filter-preset nil
  3267. "A preset of the tags filter used for secondary agenda filtering.
  3268. This must be a list of strings, each string must be a single tag preceded
  3269. by \"+\" or \"-\".
  3270. This variable should not be set directly, but agenda custom commands can
  3271. bind it in the options section. The preset filter is a global property of
  3272. the entire agenda view. In a block agenda, it will not work reliably to
  3273. define a filter for one of the individual blocks. You need to set it in
  3274. the global options and expect it to be applied to the entire view.")
  3275. (defvar org-agenda-category-filter-preset nil
  3276. "A preset of the category filter used for secondary agenda filtering.
  3277. This must be a list of strings, each string must be a single category
  3278. preceded by \"+\" or \"-\".
  3279. This variable should not be set directly, but agenda custom commands can
  3280. bind it in the options section. The preset filter is a global property of
  3281. the entire agenda view. In a block agenda, it will not work reliably to
  3282. define a filter for one of the individual blocks. You need to set it in
  3283. the global options and expect it to be applied to the entire view.")
  3284. (defvar org-agenda-regexp-filter-preset nil
  3285. "A preset of the regexp filter used for secondary agenda filtering.
  3286. This must be a list of strings, each string must be a single regexp
  3287. preceded by \"+\" or \"-\".
  3288. This variable should not be set directly, but agenda custom commands can
  3289. bind it in the options section. The preset filter is a global property of
  3290. the entire agenda view. In a block agenda, it will not work reliably to
  3291. define a filter for one of the individual blocks. You need to set it in
  3292. the global options and expect it to be applied to the entire view.")
  3293. (defvar org-agenda-effort-filter-preset nil
  3294. "A preset of the effort condition used for secondary agenda filtering.
  3295. This must be a list of strings, each string must be a single regexp
  3296. preceded by \"+\" or \"-\".
  3297. This variable should not be set directly, but agenda custom commands can
  3298. bind it in the options section. The preset filter is a global property of
  3299. the entire agenda view. In a block agenda, it will not work reliably to
  3300. define a filter for one of the individual blocks. You need to set it in
  3301. the global options and expect it to be applied to the entire view.")
  3302. (defun org-agenda-use-sticky-p ()
  3303. "Return non-nil if an agenda buffer named
  3304. `org-agenda-buffer-name' exists and should be shown instead of
  3305. generating a new one."
  3306. (and
  3307. ;; turned off by user
  3308. org-agenda-sticky
  3309. ;; For multi-agenda buffer already exists
  3310. (not org-agenda-multi)
  3311. ;; buffer found
  3312. (get-buffer org-agenda-buffer-name)
  3313. ;; C-u parameter is same as last call
  3314. (with-current-buffer (get-buffer org-agenda-buffer-name)
  3315. (and
  3316. (equal current-prefix-arg
  3317. org-agenda-last-prefix-arg)
  3318. ;; In case user turned stickiness on, while having existing
  3319. ;; Agenda buffer active, don't reuse that buffer, because it
  3320. ;; does not have org variables local
  3321. org-agenda-this-buffer-is-sticky))))
  3322. (defun org-agenda-prepare-window (abuf filter-alist)
  3323. "Setup agenda buffer in the window.
  3324. ABUF is the buffer for the agenda window.
  3325. FILTER-ALIST is an alist of filters we need to apply when
  3326. `org-agenda-persistent-filter' is non-nil."
  3327. (let* ((awin (get-buffer-window abuf)) wconf)
  3328. (cond
  3329. ((equal (current-buffer) abuf) nil)
  3330. (awin (select-window awin))
  3331. ((not (setq wconf (current-window-configuration))))
  3332. ((eq org-agenda-window-setup 'current-window)
  3333. (pop-to-buffer-same-window abuf))
  3334. ((eq org-agenda-window-setup 'other-window)
  3335. (org-switch-to-buffer-other-window abuf))
  3336. ((eq org-agenda-window-setup 'other-frame)
  3337. (switch-to-buffer-other-frame abuf))
  3338. ((eq org-agenda-window-setup 'only-window)
  3339. (delete-other-windows)
  3340. (pop-to-buffer-same-window abuf))
  3341. ((eq org-agenda-window-setup 'reorganize-frame)
  3342. (delete-other-windows)
  3343. (org-switch-to-buffer-other-window abuf)))
  3344. (setq org-agenda-tag-filter (cdr (assq 'tag filter-alist)))
  3345. (setq org-agenda-category-filter (cdr (assq 'cat filter-alist)))
  3346. (setq org-agenda-effort-filter (cdr (assq 'effort filter-alist)))
  3347. (setq org-agenda-regexp-filter (cdr (assq 're filter-alist)))
  3348. ;; Additional test in case agenda is invoked from within agenda
  3349. ;; buffer via elisp link.
  3350. (unless (equal (current-buffer) abuf)
  3351. (pop-to-buffer-same-window abuf))
  3352. (setq org-agenda-pre-window-conf
  3353. (or wconf org-agenda-pre-window-conf))))
  3354. (defun org-agenda-prepare (&optional name)
  3355. (let ((filter-alist (if org-agenda-persistent-filter
  3356. (with-current-buffer
  3357. (get-buffer-create org-agenda-buffer-name)
  3358. (list `(tag . ,org-agenda-tag-filter)
  3359. `(re . ,org-agenda-regexp-filter)
  3360. `(effort . ,org-agenda-effort-filter)
  3361. `(cat . ,org-agenda-category-filter))))))
  3362. (if (org-agenda-use-sticky-p)
  3363. (progn
  3364. (put 'org-agenda-tag-filter :preset-filter nil)
  3365. (put 'org-agenda-category-filter :preset-filter nil)
  3366. (put 'org-agenda-regexp-filter :preset-filter nil)
  3367. ;; Popup existing buffer
  3368. (org-agenda-prepare-window (get-buffer org-agenda-buffer-name)
  3369. filter-alist)
  3370. (message "Sticky Agenda buffer, use `r' to refresh")
  3371. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  3372. (throw 'exit "Sticky Agenda buffer, use `r' to refresh"))
  3373. (setq org-todo-keywords-for-agenda nil)
  3374. (put 'org-agenda-tag-filter :preset-filter
  3375. org-agenda-tag-filter-preset)
  3376. (put 'org-agenda-category-filter :preset-filter
  3377. org-agenda-category-filter-preset)
  3378. (put 'org-agenda-regexp-filter :preset-filter
  3379. org-agenda-regexp-filter-preset)
  3380. (put 'org-agenda-effort-filter :preset-filter
  3381. org-agenda-effort-filter-preset)
  3382. (if org-agenda-multi
  3383. (progn
  3384. (setq buffer-read-only nil)
  3385. (goto-char (point-max))
  3386. (unless (or (bobp) org-agenda-compact-blocks
  3387. (not org-agenda-block-separator))
  3388. (insert "\n"
  3389. (if (stringp org-agenda-block-separator)
  3390. org-agenda-block-separator
  3391. (make-string (window-width) org-agenda-block-separator))
  3392. "\n"))
  3393. (narrow-to-region (point) (point-max)))
  3394. (setq org-done-keywords-for-agenda nil)
  3395. ;; Setting any org variables that are in org-agenda-local-vars
  3396. ;; list need to be done after the prepare call
  3397. (org-agenda-prepare-window
  3398. (get-buffer-create org-agenda-buffer-name) filter-alist)
  3399. (setq buffer-read-only nil)
  3400. (org-agenda-reset-markers)
  3401. (let ((inhibit-read-only t)) (erase-buffer))
  3402. (org-agenda-mode)
  3403. (setq org-agenda-buffer (current-buffer))
  3404. (setq org-agenda-contributing-files nil)
  3405. (setq org-agenda-columns-active nil)
  3406. (org-agenda-prepare-buffers (org-agenda-files nil 'ifmode))
  3407. (setq org-todo-keywords-for-agenda
  3408. (org-uniquify org-todo-keywords-for-agenda))
  3409. (setq org-done-keywords-for-agenda
  3410. (org-uniquify org-done-keywords-for-agenda))
  3411. (setq org-agenda-last-prefix-arg current-prefix-arg)
  3412. (setq org-agenda-this-buffer-name org-agenda-buffer-name)
  3413. (and name (not org-agenda-name)
  3414. (setq-local org-agenda-name name)))
  3415. (setq buffer-read-only nil))))
  3416. (defvar org-agenda-overriding-columns-format) ; From org-colview.el
  3417. (defun org-agenda-finalize ()
  3418. "Finishing touch for the agenda buffer, called just before displaying it."
  3419. (unless org-agenda-multi
  3420. (save-excursion
  3421. (let ((inhibit-read-only t))
  3422. (goto-char (point-min))
  3423. (save-excursion
  3424. (while (org-activate-links (point-max))
  3425. (add-text-properties (match-beginning 0) (match-end 0)
  3426. '(face org-link))))
  3427. (unless (eq org-agenda-remove-tags t)
  3428. (org-agenda-align-tags))
  3429. (unless org-agenda-with-colors
  3430. (remove-text-properties (point-min) (point-max) '(face nil)))
  3431. (if (and (boundp 'org-agenda-overriding-columns-format)
  3432. org-agenda-overriding-columns-format)
  3433. (setq-local org-agenda-overriding-columns-format
  3434. org-agenda-overriding-columns-format))
  3435. (if (and (boundp 'org-agenda-view-columns-initially)
  3436. org-agenda-view-columns-initially)
  3437. (org-agenda-columns))
  3438. (when org-agenda-fontify-priorities
  3439. (org-agenda-fontify-priorities))
  3440. (when (and org-agenda-dim-blocked-tasks org-blocker-hook)
  3441. (org-agenda-dim-blocked-tasks))
  3442. (org-agenda-mark-clocking-task)
  3443. (when org-agenda-entry-text-mode
  3444. (org-agenda-entry-text-hide)
  3445. (org-agenda-entry-text-show))
  3446. (if (and (functionp 'org-habit-insert-consistency-graphs)
  3447. (save-excursion (next-single-property-change (point-min) 'org-habit-p)))
  3448. (org-habit-insert-consistency-graphs))
  3449. (setq org-agenda-type (org-get-at-bol 'org-agenda-type))
  3450. (unless (or (eq org-agenda-show-inherited-tags 'always)
  3451. (and (listp org-agenda-show-inherited-tags)
  3452. (memq org-agenda-type org-agenda-show-inherited-tags))
  3453. (and (eq org-agenda-show-inherited-tags t)
  3454. (or (eq org-agenda-use-tag-inheritance t)
  3455. (and (listp org-agenda-use-tag-inheritance)
  3456. (not (memq org-agenda-type
  3457. org-agenda-use-tag-inheritance))))))
  3458. (let (mrk)
  3459. (save-excursion
  3460. (goto-char (point-min))
  3461. (while (equal (forward-line) 0)
  3462. (when (setq mrk (get-text-property (point) 'org-hd-marker))
  3463. (put-text-property (point-at-bol) (point-at-eol)
  3464. 'tags
  3465. (org-with-point-at mrk
  3466. (mapcar #'downcase (org-get-tags)))))))))
  3467. (run-hooks 'org-agenda-finalize-hook)
  3468. (when org-agenda-top-headline-filter
  3469. (org-agenda-filter-top-headline-apply
  3470. org-agenda-top-headline-filter))
  3471. (when org-agenda-tag-filter
  3472. (org-agenda-filter-apply org-agenda-tag-filter 'tag t))
  3473. (when (get 'org-agenda-tag-filter :preset-filter)
  3474. (org-agenda-filter-apply
  3475. (get 'org-agenda-tag-filter :preset-filter) 'tag t))
  3476. (when org-agenda-category-filter
  3477. (org-agenda-filter-apply org-agenda-category-filter 'category))
  3478. (when (get 'org-agenda-category-filter :preset-filter)
  3479. (org-agenda-filter-apply
  3480. (get 'org-agenda-category-filter :preset-filter) 'category))
  3481. (when org-agenda-regexp-filter
  3482. (org-agenda-filter-apply org-agenda-regexp-filter 'regexp))
  3483. (when (get 'org-agenda-regexp-filter :preset-filter)
  3484. (org-agenda-filter-apply
  3485. (get 'org-agenda-regexp-filter :preset-filter) 'regexp))
  3486. (when org-agenda-effort-filter
  3487. (org-agenda-filter-apply org-agenda-effort-filter 'effort))
  3488. (when (get 'org-agenda-effort-filter :preset-filter)
  3489. (org-agenda-filter-apply
  3490. (get 'org-agenda-effort-filter :preset-filter) 'effort))
  3491. (add-hook 'kill-buffer-hook 'org-agenda-reset-markers 'append 'local)))))
  3492. (defun org-agenda-mark-clocking-task ()
  3493. "Mark the current clock entry in the agenda if it is present."
  3494. ;; We need to widen when `org-agenda-finalize' is called from
  3495. ;; `org-agenda-change-all-lines' (e.g. in `org-agenda-clock-in')
  3496. (when (bound-and-true-p org-clock-current-task)
  3497. (save-restriction
  3498. (widen)
  3499. (org-agenda-unmark-clocking-task)
  3500. (when (marker-buffer org-clock-hd-marker)
  3501. (save-excursion
  3502. (goto-char (point-min))
  3503. (let (s ov)
  3504. (while (setq s (next-single-property-change (point) 'org-hd-marker))
  3505. (goto-char s)
  3506. (when (equal (org-get-at-bol 'org-hd-marker)
  3507. org-clock-hd-marker)
  3508. (setq ov (make-overlay (point-at-bol) (1+ (point-at-eol))))
  3509. (overlay-put ov 'type 'org-agenda-clocking)
  3510. (overlay-put ov 'face 'org-agenda-clocking)
  3511. (overlay-put ov 'help-echo
  3512. "The clock is running in this item")))))))))
  3513. (defun org-agenda-unmark-clocking-task ()
  3514. "Unmark the current clocking task."
  3515. (mapc (lambda (o)
  3516. (if (eq (overlay-get o 'type) 'org-agenda-clocking)
  3517. (delete-overlay o)))
  3518. (overlays-in (point-min) (point-max))))
  3519. (defun org-agenda-fontify-priorities ()
  3520. "Make highest priority lines bold, and lowest italic."
  3521. (interactive)
  3522. (mapc (lambda (o) (if (eq (overlay-get o 'org-type) 'org-priority)
  3523. (delete-overlay o)))
  3524. (overlays-in (point-min) (point-max)))
  3525. (save-excursion
  3526. (let (b e p ov h l)
  3527. (goto-char (point-min))
  3528. (while (re-search-forward "\\[#\\(.\\)\\]" nil t)
  3529. (setq h (or (get-char-property (point) 'org-highest-priority)
  3530. org-highest-priority)
  3531. l (or (get-char-property (point) 'org-lowest-priority)
  3532. org-lowest-priority)
  3533. p (string-to-char (match-string 1))
  3534. b (match-beginning 0)
  3535. e (if (eq org-agenda-fontify-priorities 'cookies)
  3536. (match-end 0)
  3537. (point-at-eol))
  3538. ov (make-overlay b e))
  3539. (overlay-put
  3540. ov 'face
  3541. (let ((special-face
  3542. (cond ((org-face-from-face-or-color
  3543. 'priority 'org-priority
  3544. (cdr (assoc p org-priority-faces))))
  3545. ((and (listp org-agenda-fontify-priorities)
  3546. (org-face-from-face-or-color
  3547. 'priority 'org-priority
  3548. (cdr (assoc p org-agenda-fontify-priorities)))))
  3549. ((equal p l) 'italic)
  3550. ((equal p h) 'bold))))
  3551. (if special-face (list special-face 'org-priority) 'org-priority)))
  3552. (overlay-put ov 'org-type 'org-priority)))))
  3553. (defvar org-depend-tag-blocked)
  3554. (defun org-agenda-dim-blocked-tasks (&optional invisible)
  3555. "Dim currently blocked TODOs in the agenda display.
  3556. When INVISIBLE is non-nil, hide currently blocked TODO instead of
  3557. dimming them."
  3558. (interactive "P")
  3559. (when (called-interactively-p 'interactive)
  3560. (message "Dim or hide blocked tasks..."))
  3561. (dolist (o (overlays-in (point-min) (point-max)))
  3562. (when (eq (overlay-get o 'org-type) 'org-blocked-todo)
  3563. (delete-overlay o)))
  3564. (save-excursion
  3565. (let ((inhibit-read-only t))
  3566. (goto-char (point-min))
  3567. (while (let ((pos (text-property-not-all
  3568. (point) (point-max) 'org-todo-blocked nil)))
  3569. (when pos (goto-char pos)))
  3570. (let* ((invisible (eq (org-get-at-bol 'org-todo-blocked) 'invisible))
  3571. (ov (make-overlay (if invisible
  3572. (line-end-position 0)
  3573. (line-beginning-position))
  3574. (line-end-position))))
  3575. (if invisible
  3576. (overlay-put ov 'invisible t)
  3577. (overlay-put ov 'face 'org-agenda-dimmed-todo-face))
  3578. (overlay-put ov 'org-type 'org-blocked-todo))
  3579. (forward-line))))
  3580. (when (called-interactively-p 'interactive)
  3581. (message "Dim or hide blocked tasks...done")))
  3582. (defun org-agenda--mark-blocked-entry (entry)
  3583. "For ENTRY a string with the text property `org-hd-marker', if
  3584. the header at `org-hd-marker' is blocked according to
  3585. `org-entry-blocked-p', then if `org-agenda-dim-blocked-tasks' is
  3586. 'invisible and the header is not blocked by checkboxes, set the
  3587. text property `org-todo-blocked' to 'invisible, otherwise set it
  3588. to t."
  3589. (when (get-text-property 0 'todo-state entry)
  3590. (let ((entry-marker (get-text-property 0 'org-hd-marker entry))
  3591. (org-blocked-by-checkboxes nil)
  3592. ;; Necessary so that `org-entry-blocked-p' does not change
  3593. ;; the buffer.
  3594. (org-depend-tag-blocked nil))
  3595. (when entry-marker
  3596. (let ((blocked
  3597. (with-current-buffer (marker-buffer entry-marker)
  3598. (save-excursion
  3599. (goto-char entry-marker)
  3600. (org-entry-blocked-p)))))
  3601. (when blocked
  3602. (let ((really-invisible
  3603. (and (not org-blocked-by-checkboxes)
  3604. (eq org-agenda-dim-blocked-tasks 'invisible))))
  3605. (put-text-property
  3606. 0 (length entry) 'org-todo-blocked
  3607. (if really-invisible 'invisible t)
  3608. entry)))))))
  3609. entry)
  3610. (defvar org-agenda-skip-function nil
  3611. "Function to be called at each match during agenda construction.
  3612. If this function returns nil, the current match should not be skipped.
  3613. Otherwise, the function must return a position from where the search
  3614. should be continued.
  3615. This may also be a Lisp form, it will be evaluated.
  3616. Never set this variable using `setq' or so, because then it will apply
  3617. to all future agenda commands. If you do want a global skipping condition,
  3618. use the option `org-agenda-skip-function-global' instead.
  3619. The correct usage for `org-agenda-skip-function' is to bind it with
  3620. `let' to scope it dynamically into the agenda-constructing command.
  3621. A good way to set it is through options in `org-agenda-custom-commands'.")
  3622. (defun org-agenda-skip ()
  3623. "Throw to `:skip' in places that should be skipped.
  3624. Also moves point to the end of the skipped region, so that search can
  3625. continue from there."
  3626. (let ((p (point-at-bol)) to)
  3627. (when (or
  3628. (save-excursion (goto-char p) (looking-at comment-start-skip))
  3629. (and org-agenda-skip-archived-trees (not org-agenda-archives-mode)
  3630. (get-text-property p :org-archived)
  3631. (org-end-of-subtree t))
  3632. (and org-agenda-skip-comment-trees
  3633. (get-text-property p :org-comment)
  3634. (org-end-of-subtree t))
  3635. (and (setq to (or (org-agenda-skip-eval org-agenda-skip-function-global)
  3636. (org-agenda-skip-eval org-agenda-skip-function)))
  3637. (goto-char to))
  3638. (org-in-src-block-p t))
  3639. (throw :skip t))))
  3640. (defun org-agenda-skip-eval (form)
  3641. "If FORM is a function or a list, call (or eval) it and return the result.
  3642. `save-excursion' and `save-match-data' are wrapped around the call, so point
  3643. and match data are returned to the previous state no matter what these
  3644. functions do."
  3645. (let (fp)
  3646. (and form
  3647. (or (setq fp (functionp form))
  3648. (consp form))
  3649. (save-excursion
  3650. (save-match-data
  3651. (if fp
  3652. (funcall form)
  3653. (eval form)))))))
  3654. (defvar org-agenda-markers nil
  3655. "List of all currently active markers created by `org-agenda'.")
  3656. (defvar org-agenda-last-marker-time (float-time)
  3657. "Creation time of the last agenda marker.")
  3658. (defun org-agenda-new-marker (&optional pos)
  3659. "Return a new agenda marker.
  3660. Maker is at point, or at POS if non-nil. Org mode keeps a list of
  3661. these markers and resets them when they are no longer in use."
  3662. (let ((m (copy-marker (or pos (point)) t)))
  3663. (setq org-agenda-last-marker-time (float-time))
  3664. (if org-agenda-buffer
  3665. (with-current-buffer org-agenda-buffer
  3666. (push m org-agenda-markers))
  3667. (push m org-agenda-markers))
  3668. m))
  3669. (defun org-agenda-reset-markers ()
  3670. "Reset markers created by `org-agenda'."
  3671. (while org-agenda-markers
  3672. (move-marker (pop org-agenda-markers) nil)))
  3673. (defun org-agenda-save-markers-for-cut-and-paste (beg end)
  3674. "Save relative positions of markers in region.
  3675. This check for agenda markers in all agenda buffers currently active."
  3676. (dolist (buf (buffer-list))
  3677. (with-current-buffer buf
  3678. (when (eq major-mode 'org-agenda-mode)
  3679. (mapc (lambda (m) (org-check-and-save-marker m beg end))
  3680. org-agenda-markers)))))
  3681. ;;; Entry text mode
  3682. (defun org-agenda-entry-text-show-here ()
  3683. "Add some text from the entry as context to the current line."
  3684. (let (m txt o)
  3685. (setq m (org-get-at-bol 'org-hd-marker))
  3686. (unless (marker-buffer m)
  3687. (error "No marker points to an entry here"))
  3688. (setq txt (concat "\n" (org-no-properties
  3689. (org-agenda-get-some-entry-text
  3690. m org-agenda-entry-text-maxlines
  3691. org-agenda-entry-text-leaders))))
  3692. (when (string-match "\\S-" txt)
  3693. (setq o (make-overlay (point-at-bol) (point-at-eol)))
  3694. (overlay-put o 'evaporate t)
  3695. (overlay-put o 'org-overlay-type 'agenda-entry-content)
  3696. (overlay-put o 'after-string txt))))
  3697. (defun org-agenda-entry-text-show ()
  3698. "Add entry context for all agenda lines."
  3699. (interactive)
  3700. (save-excursion
  3701. (goto-char (point-max))
  3702. (beginning-of-line 1)
  3703. (while (not (bobp))
  3704. (when (org-get-at-bol 'org-hd-marker)
  3705. (org-agenda-entry-text-show-here))
  3706. (beginning-of-line 0))))
  3707. (defun org-agenda-entry-text-hide ()
  3708. "Remove any shown entry context."
  3709. (delq nil
  3710. (mapcar (lambda (o)
  3711. (if (eq (overlay-get o 'org-overlay-type)
  3712. 'agenda-entry-content)
  3713. (progn (delete-overlay o) t)))
  3714. (overlays-in (point-min) (point-max)))))
  3715. (defun org-agenda-get-day-face (date)
  3716. "Return the face DATE should be displayed with."
  3717. (cond ((and (functionp org-agenda-day-face-function)
  3718. (funcall org-agenda-day-face-function date)))
  3719. ((org-agenda-today-p date) 'org-agenda-date-today)
  3720. ((memq (calendar-day-of-week date) org-agenda-weekend-days)
  3721. 'org-agenda-date-weekend)
  3722. (t 'org-agenda-date)))
  3723. (defvar org-agenda-show-log-scoped)
  3724. ;;; Agenda Daily/Weekly
  3725. (defvar org-agenda-start-day nil ; dynamically scoped parameter
  3726. "Start day for the agenda view.
  3727. Custom commands can set this variable in the options section.
  3728. This is usually a string like \"2007-11-01\", \"+2d\" or any other
  3729. input allowed when reading a date through the Org calendar.
  3730. See the docstring of `org-read-date' for details.")
  3731. (defvar org-starting-day nil) ; local variable in the agenda buffer
  3732. (defvar org-arg-loc nil) ; local variable
  3733. (defvar org-agenda-buffer-tmp-name nil)
  3734. ;;;###autoload
  3735. (defun org-agenda-list (&optional arg start-day span with-hour)
  3736. "Produce a daily/weekly view from all files in variable `org-agenda-files'.
  3737. The view will be for the current day or week, but from the overview buffer
  3738. you will be able to go to other days/weeks.
  3739. With a numeric prefix argument in an interactive call, the agenda will
  3740. span ARG days. Lisp programs should instead specify SPAN to change
  3741. the number of days. SPAN defaults to `org-agenda-span'.
  3742. START-DAY defaults to TODAY, or to the most recent match for the weekday
  3743. given in `org-agenda-start-on-weekday'.
  3744. When WITH-HOUR is non-nil, only include scheduled and deadline
  3745. items if they have an hour specification like [h]h:mm."
  3746. (interactive "P")
  3747. (if org-agenda-overriding-arguments
  3748. (setq arg (car org-agenda-overriding-arguments)
  3749. start-day (nth 1 org-agenda-overriding-arguments)
  3750. span (nth 2 org-agenda-overriding-arguments)))
  3751. (if (and (integerp arg) (> arg 0))
  3752. (setq span arg arg nil))
  3753. (catch 'exit
  3754. (setq org-agenda-buffer-name
  3755. (or org-agenda-buffer-tmp-name
  3756. (and org-agenda-doing-sticky-redo org-agenda-buffer-name)
  3757. (if org-agenda-sticky
  3758. (cond ((and org-keys (stringp org-match))
  3759. (format "*Org Agenda(%s:%s)*" org-keys org-match))
  3760. (org-keys
  3761. (format "*Org Agenda(%s)*" org-keys))
  3762. (t "*Org Agenda(a)*")))
  3763. "*Org Agenda*"))
  3764. (org-agenda-prepare "Day/Week")
  3765. (setq start-day (or start-day org-agenda-start-day))
  3766. (if (stringp start-day)
  3767. ;; Convert to an absolute day number
  3768. (setq start-day (time-to-days (org-read-date nil t start-day))))
  3769. (org-compile-prefix-format 'agenda)
  3770. (org-set-sorting-strategy 'agenda)
  3771. (let* ((span (org-agenda-ndays-to-span (or span org-agenda-span)))
  3772. (today (org-today))
  3773. (sd (or start-day today))
  3774. (ndays (org-agenda-span-to-ndays span sd))
  3775. (org-agenda-start-on-weekday
  3776. (if (or (eq ndays 7) (eq ndays 14))
  3777. org-agenda-start-on-weekday))
  3778. (thefiles (org-agenda-files nil 'ifmode))
  3779. (files thefiles)
  3780. (start (if (or (null org-agenda-start-on-weekday)
  3781. (< ndays 7))
  3782. sd
  3783. (let* ((nt (calendar-day-of-week
  3784. (calendar-gregorian-from-absolute sd)))
  3785. (n1 org-agenda-start-on-weekday)
  3786. (d (- nt n1)))
  3787. (- sd (+ (if (< d 0) 7 0) d)))))
  3788. (day-numbers (list start))
  3789. (day-cnt 0)
  3790. (inhibit-redisplay (not debug-on-error))
  3791. (org-agenda-show-log-scoped org-agenda-show-log)
  3792. s e rtn rtnall file date d start-pos end-pos todayp
  3793. clocktable-start clocktable-end filter)
  3794. (setq org-agenda-redo-command
  3795. (list 'org-agenda-list (list 'quote arg) start-day (list 'quote span) with-hour))
  3796. (dotimes (n (1- ndays))
  3797. (push (1+ (car day-numbers)) day-numbers))
  3798. (setq day-numbers (nreverse day-numbers))
  3799. (setq clocktable-start (car day-numbers)
  3800. clocktable-end (1+ (or (org-last day-numbers) 0)))
  3801. (setq-local org-starting-day (car day-numbers))
  3802. (setq-local org-arg-loc arg)
  3803. (setq-local org-agenda-current-span (org-agenda-ndays-to-span span))
  3804. (unless org-agenda-compact-blocks
  3805. (let* ((d1 (car day-numbers))
  3806. (d2 (org-last day-numbers))
  3807. (w1 (org-days-to-iso-week d1))
  3808. (w2 (org-days-to-iso-week d2)))
  3809. (setq s (point))
  3810. (org-agenda--insert-overriding-header
  3811. (concat (org-agenda-span-name span)
  3812. "-agenda"
  3813. (cond ((<= 350 (- d2 d1)) "")
  3814. ((= w1 w2) (format " (W%02d)" w1))
  3815. (t (format " (W%02d-W%02d)" w1 w2)))
  3816. ":\n")))
  3817. (add-text-properties s (1- (point)) (list 'face 'org-agenda-structure
  3818. 'org-date-line t))
  3819. (org-agenda-mark-header-line s))
  3820. (while (setq d (pop day-numbers))
  3821. (setq date (calendar-gregorian-from-absolute d)
  3822. s (point))
  3823. (if (or (setq todayp (= d today))
  3824. (and (not start-pos) (= d sd)))
  3825. (setq start-pos (point))
  3826. (if (and start-pos (not end-pos))
  3827. (setq end-pos (point))))
  3828. (setq files thefiles
  3829. rtnall nil)
  3830. (while (setq file (pop files))
  3831. (catch 'nextfile
  3832. (org-check-agenda-file file)
  3833. (let ((org-agenda-entry-types org-agenda-entry-types))
  3834. ;; Starred types override non-starred equivalents
  3835. (when (member :deadline* org-agenda-entry-types)
  3836. (setq org-agenda-entry-types
  3837. (delq :deadline org-agenda-entry-types)))
  3838. (when (member :scheduled* org-agenda-entry-types)
  3839. (setq org-agenda-entry-types
  3840. (delq :scheduled org-agenda-entry-types)))
  3841. ;; Honor with-hour
  3842. (when with-hour
  3843. (when (member :deadline org-agenda-entry-types)
  3844. (setq org-agenda-entry-types
  3845. (delq :deadline org-agenda-entry-types))
  3846. (push :deadline* org-agenda-entry-types))
  3847. (when (member :scheduled org-agenda-entry-types)
  3848. (setq org-agenda-entry-types
  3849. (delq :scheduled org-agenda-entry-types))
  3850. (push :scheduled* org-agenda-entry-types)))
  3851. (unless org-agenda-include-deadlines
  3852. (setq org-agenda-entry-types
  3853. (delq :deadline* (delq :deadline org-agenda-entry-types))))
  3854. (cond
  3855. ((memq org-agenda-show-log-scoped '(only clockcheck))
  3856. (setq rtn (org-agenda-get-day-entries
  3857. file date :closed)))
  3858. (org-agenda-show-log-scoped
  3859. (setq rtn (apply 'org-agenda-get-day-entries
  3860. file date
  3861. (append '(:closed) org-agenda-entry-types))))
  3862. (t
  3863. (setq rtn (apply 'org-agenda-get-day-entries
  3864. file date
  3865. org-agenda-entry-types)))))
  3866. (setq rtnall (append rtnall rtn)))) ;; all entries
  3867. (if org-agenda-include-diary
  3868. (let ((org-agenda-search-headline-for-time t))
  3869. (require 'diary-lib)
  3870. (setq rtn (org-get-entries-from-diary date))
  3871. (setq rtnall (append rtnall rtn))))
  3872. (if (or rtnall org-agenda-show-all-dates)
  3873. (progn
  3874. (setq day-cnt (1+ day-cnt))
  3875. (insert
  3876. (if (stringp org-agenda-format-date)
  3877. (format-time-string org-agenda-format-date
  3878. (org-time-from-absolute date))
  3879. (funcall org-agenda-format-date date))
  3880. "\n")
  3881. (put-text-property s (1- (point)) 'face
  3882. (org-agenda-get-day-face date))
  3883. (put-text-property s (1- (point)) 'org-date-line t)
  3884. (put-text-property s (1- (point)) 'org-agenda-date-header t)
  3885. (put-text-property s (1- (point)) 'org-day-cnt day-cnt)
  3886. (when todayp
  3887. (put-text-property s (1- (point)) 'org-today t))
  3888. (setq rtnall
  3889. (org-agenda-add-time-grid-maybe rtnall ndays todayp))
  3890. (if rtnall (insert ;; all entries
  3891. (org-agenda-finalize-entries rtnall 'agenda)
  3892. "\n"))
  3893. (put-text-property s (1- (point)) 'day d)
  3894. (put-text-property s (1- (point)) 'org-day-cnt day-cnt))))
  3895. (when (and org-agenda-clockreport-mode clocktable-start)
  3896. (let ((org-agenda-files (org-agenda-files nil 'ifmode))
  3897. ;; the above line is to ensure the restricted range!
  3898. (p (copy-sequence org-agenda-clockreport-parameter-plist))
  3899. tbl)
  3900. (setq p (org-plist-delete p :block))
  3901. (setq p (plist-put p :tstart clocktable-start))
  3902. (setq p (plist-put p :tend clocktable-end))
  3903. (setq p (plist-put p :scope 'agenda))
  3904. (setq tbl (apply 'org-clock-get-clocktable p))
  3905. (insert tbl)))
  3906. (goto-char (point-min))
  3907. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  3908. (unless (or (not (get-buffer-window))
  3909. (and (pos-visible-in-window-p (point-min))
  3910. (pos-visible-in-window-p (point-max))))
  3911. (goto-char (1- (point-max)))
  3912. (recenter -1)
  3913. (if (not (pos-visible-in-window-p (or start-pos 1)))
  3914. (progn
  3915. (goto-char (or start-pos 1))
  3916. (recenter 1))))
  3917. (goto-char (or start-pos 1))
  3918. (add-text-properties (point-min) (point-max)
  3919. `(org-agenda-type agenda
  3920. org-last-args (,arg ,start-day ,span)
  3921. org-redo-cmd ,org-agenda-redo-command
  3922. org-series-cmd ,org-cmd))
  3923. (if (eq org-agenda-show-log-scoped 'clockcheck)
  3924. (org-agenda-show-clocking-issues))
  3925. (org-agenda-finalize)
  3926. (setq buffer-read-only t)
  3927. (message ""))))
  3928. (defun org-agenda-ndays-to-span (n)
  3929. "Return a span symbol for a span of N days, or N if none matches."
  3930. (cond ((symbolp n) n)
  3931. ((= n 1) 'day)
  3932. ((= n 7) 'week)
  3933. ((= n 14) 'fortnight)
  3934. (t n)))
  3935. (defun org-agenda-span-to-ndays (span &optional start-day)
  3936. "Return ndays from SPAN, possibly starting at START-DAY.
  3937. START-DAY is an absolute time value."
  3938. (cond ((numberp span) span)
  3939. ((eq span 'day) 1)
  3940. ((eq span 'week) 7)
  3941. ((eq span 'fortnight) 14)
  3942. ((eq span 'month)
  3943. (let ((date (calendar-gregorian-from-absolute start-day)))
  3944. (calendar-last-day-of-month (car date) (cl-caddr date))))
  3945. ((eq span 'year)
  3946. (let ((date (calendar-gregorian-from-absolute start-day)))
  3947. (if (calendar-leap-year-p (cl-caddr date)) 366 365)))))
  3948. (defun org-agenda-span-name (span)
  3949. "Return a SPAN name."
  3950. (if (null span)
  3951. ""
  3952. (if (symbolp span)
  3953. (capitalize (symbol-name span))
  3954. (format "%d days" span))))
  3955. ;;; Agenda word search
  3956. (defvar org-agenda-search-history nil)
  3957. (defvar org-search-syntax-table nil
  3958. "Special syntax table for Org search.
  3959. In this table, we have single quotes not as word constituents, to
  3960. that when \"+Ameli\" is searched as a work, it will also match \"Ameli's\"")
  3961. (defvar org-mode-syntax-table) ; From org.el
  3962. (defun org-search-syntax-table ()
  3963. (unless org-search-syntax-table
  3964. (setq org-search-syntax-table (copy-syntax-table org-mode-syntax-table))
  3965. (modify-syntax-entry ?' "." org-search-syntax-table)
  3966. (modify-syntax-entry ?` "." org-search-syntax-table))
  3967. org-search-syntax-table)
  3968. (defvar org-agenda-last-search-view-search-was-boolean nil)
  3969. ;;;###autoload
  3970. (defun org-search-view (&optional todo-only string edit-at)
  3971. "Show all entries that contain a phrase or words or regular expressions.
  3972. With optional prefix argument TODO-ONLY, only consider entries that are
  3973. TODO entries. The argument STRING can be used to pass a default search
  3974. string into this function. If EDIT-AT is non-nil, it means that the
  3975. user should get a chance to edit this string, with cursor at position
  3976. EDIT-AT.
  3977. The search string can be viewed either as a phrase that should be found as
  3978. is, or it can be broken into a number of snippets, each of which must match
  3979. in a Boolean way to select an entry. The default depends on the variable
  3980. `org-agenda-search-view-always-boolean'.
  3981. Even if this is turned off (the default) you can always switch to
  3982. Boolean search dynamically by preceding the first word with \"+\" or \"-\".
  3983. The default is a direct search of the whole phrase, where each space in
  3984. the search string can expand to an arbitrary amount of whitespace,
  3985. including newlines.
  3986. If using a Boolean search, the search string is split on whitespace and
  3987. each snippet is searched separately, with logical AND to select an entry.
  3988. Words prefixed with a minus must *not* occur in the entry. Words without
  3989. a prefix or prefixed with a plus must occur in the entry. Matching is
  3990. case-insensitive. Words are enclosed by word delimiters (i.e. they must
  3991. match whole words, not parts of a word) if
  3992. `org-agenda-search-view-force-full-words' is set (default is nil).
  3993. Boolean search snippets enclosed by curly braces are interpreted as
  3994. regular expressions that must or (when preceded with \"-\") must not
  3995. match in the entry. Snippets enclosed into double quotes will be taken
  3996. as a whole, to include whitespace.
  3997. - If the search string starts with an asterisk, search only in headlines.
  3998. - If (possibly after the leading star) the search string starts with an
  3999. exclamation mark, this also means to look at TODO entries only, an effect
  4000. that can also be achieved with a prefix argument.
  4001. - If (possibly after star and exclamation mark) the search string starts
  4002. with a colon, this will mean that the (non-regexp) snippets of the
  4003. Boolean search must match as full words.
  4004. This command searches the agenda files, and in addition the files
  4005. listed in `org-agenda-text-search-extra-files' unless a restriction lock
  4006. is active."
  4007. (interactive "P")
  4008. (if org-agenda-overriding-arguments
  4009. (setq todo-only (car org-agenda-overriding-arguments)
  4010. string (nth 1 org-agenda-overriding-arguments)
  4011. edit-at (nth 2 org-agenda-overriding-arguments)))
  4012. (let* ((props (list 'face nil
  4013. 'done-face 'org-agenda-done
  4014. 'org-not-done-regexp org-not-done-regexp
  4015. 'org-todo-regexp org-todo-regexp
  4016. 'org-complex-heading-regexp org-complex-heading-regexp
  4017. 'mouse-face 'highlight
  4018. 'help-echo (format "mouse-2 or RET jump to location")))
  4019. (full-words org-agenda-search-view-force-full-words)
  4020. (org-agenda-text-search-extra-files org-agenda-text-search-extra-files)
  4021. regexp rtn rtnall files file pos inherited-tags
  4022. marker category level tags c neg re boolean
  4023. ee txt beg end words regexps+ regexps- hdl-only buffer beg1 str)
  4024. (unless (and (not edit-at)
  4025. (stringp string)
  4026. (string-match "\\S-" string))
  4027. (setq string (read-string
  4028. (if org-agenda-search-view-always-boolean
  4029. "[+-]Word/{Regexp} ...: "
  4030. "Phrase or [+-]Word/{Regexp} ...: ")
  4031. (cond
  4032. ((integerp edit-at) (cons string edit-at))
  4033. (edit-at string))
  4034. 'org-agenda-search-history)))
  4035. (catch 'exit
  4036. (if org-agenda-sticky
  4037. (setq org-agenda-buffer-name
  4038. (if (stringp string)
  4039. (format "*Org Agenda(%s:%s)*"
  4040. (or org-keys (or (and todo-only "S") "s")) string)
  4041. (format "*Org Agenda(%s)*" (or (and todo-only "S") "s")))))
  4042. (org-agenda-prepare "SEARCH")
  4043. (org-compile-prefix-format 'search)
  4044. (org-set-sorting-strategy 'search)
  4045. (setq org-agenda-redo-command
  4046. (list 'org-search-view (if todo-only t nil)
  4047. (list 'if 'current-prefix-arg nil string)))
  4048. (setq org-agenda-query-string string)
  4049. (if (equal (string-to-char string) ?*)
  4050. (setq hdl-only t
  4051. words (substring string 1))
  4052. (setq words string))
  4053. (when (equal (string-to-char words) ?!)
  4054. (setq todo-only t
  4055. words (substring words 1)))
  4056. (when (equal (string-to-char words) ?:)
  4057. (setq full-words t
  4058. words (substring words 1)))
  4059. (if (or org-agenda-search-view-always-boolean
  4060. (member (string-to-char words) '(?- ?+ ?\{)))
  4061. (setq boolean t))
  4062. (setq words (split-string words))
  4063. (let (www w)
  4064. (while (setq w (pop words))
  4065. (while (and (string-match "\\\\\\'" w) words)
  4066. (setq w (concat (substring w 0 -1) " " (pop words))))
  4067. (push w www))
  4068. (setq words (nreverse www) www nil)
  4069. (while (setq w (pop words))
  4070. (when (and (string-match "\\`[-+]?{" w)
  4071. (not (string-match "}\\'" w)))
  4072. (while (and words (not (string-match "}\\'" (car words))))
  4073. (setq w (concat w " " (pop words))))
  4074. (setq w (concat w " " (pop words))))
  4075. (push w www))
  4076. (setq words (nreverse www)))
  4077. (setq org-agenda-last-search-view-search-was-boolean boolean)
  4078. (when boolean
  4079. (let (wds w)
  4080. (while (setq w (pop words))
  4081. (if (or (equal (substring w 0 1) "\"")
  4082. (and (> (length w) 1)
  4083. (member (substring w 0 1) '("+" "-"))
  4084. (equal (substring w 1 2) "\"")))
  4085. (while (and words (not (equal (substring w -1) "\"")))
  4086. (setq w (concat w " " (pop words)))))
  4087. (and (string-match "\\`\\([-+]?\\)\"" w)
  4088. (setq w (replace-match "\\1" nil nil w)))
  4089. (and (equal (substring w -1) "\"") (setq w (substring w 0 -1)))
  4090. (push w wds))
  4091. (setq words (nreverse wds))))
  4092. (if boolean
  4093. (mapc (lambda (w)
  4094. (setq c (string-to-char w))
  4095. (if (equal c ?-)
  4096. (setq neg t w (substring w 1))
  4097. (if (equal c ?+)
  4098. (setq neg nil w (substring w 1))
  4099. (setq neg nil)))
  4100. (if (string-match "\\`{.*}\\'" w)
  4101. (setq re (substring w 1 -1))
  4102. (if full-words
  4103. (setq re (concat "\\<" (regexp-quote (downcase w)) "\\>"))
  4104. (setq re (regexp-quote (downcase w)))))
  4105. (if neg (push re regexps-) (push re regexps+)))
  4106. words)
  4107. (push (mapconcat (lambda (w) (regexp-quote w)) words "\\s-+")
  4108. regexps+))
  4109. (setq regexps+ (sort regexps+ (lambda (a b) (> (length a) (length b)))))
  4110. (if (not regexps+)
  4111. (setq regexp org-outline-regexp-bol)
  4112. (setq regexp (pop regexps+))
  4113. (if hdl-only (setq regexp (concat org-outline-regexp-bol ".*?"
  4114. regexp))))
  4115. (setq files (org-agenda-files nil 'ifmode))
  4116. ;; Add `org-agenda-text-search-extra-files' unless there is some
  4117. ;; restriction.
  4118. (when (eq (car org-agenda-text-search-extra-files) 'agenda-archives)
  4119. (pop org-agenda-text-search-extra-files)
  4120. (unless (get 'org-agenda-files 'org-restrict)
  4121. (setq files (org-add-archive-files files))))
  4122. ;; Uniquify files. However, let `org-check-agenda-file' handle
  4123. ;; non-existent ones.
  4124. (setq files (cl-remove-duplicates
  4125. (append files org-agenda-text-search-extra-files)
  4126. :test (lambda (a b)
  4127. (and (file-exists-p a)
  4128. (file-exists-p b)
  4129. (file-equal-p a b))))
  4130. rtnall nil)
  4131. (while (setq file (pop files))
  4132. (setq ee nil)
  4133. (catch 'nextfile
  4134. (org-check-agenda-file file)
  4135. (setq buffer (if (file-exists-p file)
  4136. (org-get-agenda-file-buffer file)
  4137. (error "No such file %s" file)))
  4138. (if (not buffer)
  4139. ;; If file does not exist, make sure an error message is sent
  4140. (setq rtn (list (format "ORG-AGENDA-ERROR: No such org-file %s"
  4141. file))))
  4142. (with-current-buffer buffer
  4143. (with-syntax-table (org-search-syntax-table)
  4144. (unless (derived-mode-p 'org-mode)
  4145. (error "Agenda file %s is not in Org mode" file))
  4146. (let ((case-fold-search t))
  4147. (save-excursion
  4148. (save-restriction
  4149. (if (eq buffer org-agenda-restrict)
  4150. (narrow-to-region org-agenda-restrict-begin
  4151. org-agenda-restrict-end)
  4152. (widen))
  4153. (goto-char (point-min))
  4154. (unless (or (org-at-heading-p)
  4155. (outline-next-heading))
  4156. (throw 'nextfile t))
  4157. (goto-char (max (point-min) (1- (point))))
  4158. (while (re-search-forward regexp nil t)
  4159. (org-back-to-heading t)
  4160. (while (and (not (zerop org-agenda-search-view-max-outline-level))
  4161. (> (org-reduced-level (org-outline-level))
  4162. org-agenda-search-view-max-outline-level)
  4163. (forward-line -1)
  4164. (org-back-to-heading t)))
  4165. (skip-chars-forward "* ")
  4166. (setq beg (point-at-bol)
  4167. beg1 (point)
  4168. end (progn
  4169. (outline-next-heading)
  4170. (while (and (not (zerop org-agenda-search-view-max-outline-level))
  4171. (> (org-reduced-level (org-outline-level))
  4172. org-agenda-search-view-max-outline-level)
  4173. (forward-line 1)
  4174. (outline-next-heading)))
  4175. (point)))
  4176. (catch :skip
  4177. (goto-char beg)
  4178. (org-agenda-skip)
  4179. (setq str (buffer-substring-no-properties
  4180. (point-at-bol)
  4181. (if hdl-only (point-at-eol) end)))
  4182. (mapc (lambda (wr) (when (string-match wr str)
  4183. (goto-char (1- end))
  4184. (throw :skip t)))
  4185. regexps-)
  4186. (mapc (lambda (wr) (unless (string-match wr str)
  4187. (goto-char (1- end))
  4188. (throw :skip t)))
  4189. (if todo-only
  4190. (cons (concat "^\\*+[ \t]+"
  4191. org-not-done-regexp)
  4192. regexps+)
  4193. regexps+))
  4194. (goto-char beg)
  4195. (setq marker (org-agenda-new-marker (point))
  4196. category (org-get-category)
  4197. level (make-string (org-reduced-level (org-outline-level)) ? )
  4198. inherited-tags
  4199. (or (eq org-agenda-show-inherited-tags 'always)
  4200. (and (listp org-agenda-show-inherited-tags)
  4201. (memq 'todo org-agenda-show-inherited-tags))
  4202. (and (eq org-agenda-show-inherited-tags t)
  4203. (or (eq org-agenda-use-tag-inheritance t)
  4204. (memq 'todo org-agenda-use-tag-inheritance))))
  4205. tags (org-get-tags nil (not inherited-tags))
  4206. txt (org-agenda-format-item
  4207. ""
  4208. (buffer-substring-no-properties
  4209. beg1 (point-at-eol))
  4210. level category tags t))
  4211. (org-add-props txt props
  4212. 'org-marker marker 'org-hd-marker marker
  4213. 'org-todo-regexp org-todo-regexp
  4214. 'level level
  4215. 'org-complex-heading-regexp org-complex-heading-regexp
  4216. 'priority 1000
  4217. 'type "search")
  4218. (push txt ee)
  4219. (goto-char (1- end))))))))))
  4220. (setq rtn (nreverse ee))
  4221. (setq rtnall (append rtnall rtn)))
  4222. (org-agenda--insert-overriding-header
  4223. (with-temp-buffer
  4224. (insert "Search words: ")
  4225. (add-text-properties (point-min) (1- (point))
  4226. (list 'face 'org-agenda-structure))
  4227. (setq pos (point))
  4228. (insert string "\n")
  4229. (add-text-properties pos (1- (point)) (list 'face 'org-warning))
  4230. (setq pos (point))
  4231. (unless org-agenda-multi
  4232. (insert (substitute-command-keys "\\<org-agenda-mode-map>\
  4233. Press `\\[org-agenda-manipulate-query-add]', \
  4234. `\\[org-agenda-manipulate-query-subtract]' to add/sub word, \
  4235. `\\[org-agenda-manipulate-query-add-re]', \
  4236. `\\[org-agenda-manipulate-query-subtract-re]' to add/sub regexp, \
  4237. `\\[universal-argument] \\[org-agenda-redo]' to edit\n"))
  4238. (add-text-properties pos (1- (point))
  4239. (list 'face 'org-agenda-structure)))
  4240. (buffer-string)))
  4241. (org-agenda-mark-header-line (point-min))
  4242. (when rtnall
  4243. (insert (org-agenda-finalize-entries rtnall 'search) "\n"))
  4244. (goto-char (point-min))
  4245. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4246. (add-text-properties (point-min) (point-max)
  4247. `(org-agenda-type search
  4248. org-last-args (,todo-only ,string ,edit-at)
  4249. org-redo-cmd ,org-agenda-redo-command
  4250. org-series-cmd ,org-cmd))
  4251. (org-agenda-finalize)
  4252. (setq buffer-read-only t))))
  4253. ;;; Agenda TODO list
  4254. (defun org-agenda-propertize-selected-todo-keywords (keywords)
  4255. "Use `org-todo-keyword-faces' for the selected todo KEYWORDS."
  4256. (concat
  4257. (if (or (equal keywords "ALL") (not keywords))
  4258. (propertize "ALL" 'face 'warning)
  4259. (mapconcat
  4260. (lambda (kw)
  4261. (propertize kw 'face (org-get-todo-face kw)))
  4262. (org-split-string keywords "|")
  4263. "|"))
  4264. "\n"))
  4265. (defvar org-select-this-todo-keyword nil)
  4266. (defvar org-last-arg nil)
  4267. ;;;###autoload
  4268. (defun org-todo-list (&optional arg)
  4269. "Show all (not done) TODO entries from all agenda file in a single list.
  4270. The prefix arg can be used to select a specific TODO keyword and limit
  4271. the list to these. When using `\\[universal-argument]', you will be prompted
  4272. for a keyword. A numeric prefix directly selects the Nth keyword in
  4273. `org-todo-keywords-1'."
  4274. (interactive "P")
  4275. (if org-agenda-overriding-arguments
  4276. (setq arg org-agenda-overriding-arguments))
  4277. (if (and (stringp arg) (not (string-match "\\S-" arg))) (setq arg nil))
  4278. (let* ((today (org-today))
  4279. (date (calendar-gregorian-from-absolute today))
  4280. (kwds org-todo-keywords-for-agenda)
  4281. (completion-ignore-case t)
  4282. (org-select-this-todo-keyword
  4283. (if (stringp arg) arg
  4284. (and arg (integerp arg) (> arg 0)
  4285. (nth (1- arg) kwds))))
  4286. rtn rtnall files file pos)
  4287. (when (equal arg '(4))
  4288. (setq org-select-this-todo-keyword
  4289. (completing-read "Keyword (or KWD1|K2D2|...): "
  4290. (mapcar #'list kwds) nil nil)))
  4291. (and (equal 0 arg) (setq org-select-this-todo-keyword nil))
  4292. (catch 'exit
  4293. (if org-agenda-sticky
  4294. (setq org-agenda-buffer-name
  4295. (if (stringp org-select-this-todo-keyword)
  4296. (format "*Org Agenda(%s:%s)*" (or org-keys "t")
  4297. org-select-this-todo-keyword)
  4298. (format "*Org Agenda(%s)*" (or org-keys "t")))))
  4299. (org-agenda-prepare "TODO")
  4300. (org-compile-prefix-format 'todo)
  4301. (org-set-sorting-strategy 'todo)
  4302. (setq org-agenda-redo-command
  4303. `(org-todo-list (or (and (numberp current-prefix-arg)
  4304. current-prefix-arg)
  4305. ,org-select-this-todo-keyword
  4306. current-prefix-arg ,arg)))
  4307. (setq files (org-agenda-files nil 'ifmode)
  4308. rtnall nil)
  4309. (while (setq file (pop files))
  4310. (catch 'nextfile
  4311. (org-check-agenda-file file)
  4312. (setq rtn (org-agenda-get-day-entries file date :todo))
  4313. (setq rtnall (append rtnall rtn))))
  4314. (org-agenda--insert-overriding-header
  4315. (with-temp-buffer
  4316. (insert "Global list of TODO items of type: ")
  4317. (add-text-properties (point-min) (1- (point))
  4318. (list 'face 'org-agenda-structure
  4319. 'short-heading
  4320. (concat "ToDo: "
  4321. (or org-select-this-todo-keyword "ALL"))))
  4322. (org-agenda-mark-header-line (point-min))
  4323. (insert (org-agenda-propertize-selected-todo-keywords
  4324. org-select-this-todo-keyword))
  4325. (setq pos (point))
  4326. (unless org-agenda-multi
  4327. (insert (substitute-command-keys "Available with \
  4328. \\<org-agenda-mode-map>`N \\[org-agenda-redo]': (0)[ALL]"))
  4329. (let ((n 0))
  4330. (dolist (k kwds)
  4331. (let ((s (format "(%d)%s" (cl-incf n) k)))
  4332. (when (> (+ (current-column) (string-width s) 1) (window-width))
  4333. (insert "\n "))
  4334. (insert " " s))))
  4335. (insert "\n"))
  4336. (add-text-properties pos (1- (point)) (list 'face 'org-agenda-structure))
  4337. (buffer-string)))
  4338. (org-agenda-mark-header-line (point-min))
  4339. (when rtnall
  4340. (insert (org-agenda-finalize-entries rtnall 'todo) "\n"))
  4341. (goto-char (point-min))
  4342. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4343. (add-text-properties (point-min) (point-max)
  4344. `(org-agenda-type todo
  4345. org-last-args ,arg
  4346. org-redo-cmd ,org-agenda-redo-command
  4347. org-series-cmd ,org-cmd))
  4348. (org-agenda-finalize)
  4349. (setq buffer-read-only t))))
  4350. ;;; Agenda tags match
  4351. ;;;###autoload
  4352. (defun org-tags-view (&optional todo-only match)
  4353. "Show all headlines for all `org-agenda-files' matching a TAGS criterion.
  4354. The prefix arg TODO-ONLY limits the search to TODO entries."
  4355. (interactive "P")
  4356. (if org-agenda-overriding-arguments
  4357. (setq todo-only (car org-agenda-overriding-arguments)
  4358. match (nth 1 org-agenda-overriding-arguments)))
  4359. (let* ((org-tags-match-list-sublevels
  4360. org-tags-match-list-sublevels)
  4361. (completion-ignore-case t)
  4362. (org--matcher-tags-todo-only todo-only)
  4363. rtn rtnall files file pos matcher
  4364. buffer)
  4365. (when (and (stringp match) (not (string-match "\\S-" match)))
  4366. (setq match nil))
  4367. (catch 'exit
  4368. (if org-agenda-sticky
  4369. (setq org-agenda-buffer-name
  4370. (if (stringp match)
  4371. (format "*Org Agenda(%s:%s)*"
  4372. (or org-keys (or (and todo-only "M") "m")) match)
  4373. (format "*Org Agenda(%s)*" (or (and todo-only "M") "m")))))
  4374. (setq matcher (org-make-tags-matcher match))
  4375. ;; Prepare agendas (and `org-tag-alist-for-agenda') before
  4376. ;; expanding tags within `org-make-tags-matcher'
  4377. (org-agenda-prepare (concat "TAGS " match))
  4378. (setq match (car matcher)
  4379. matcher (cdr matcher))
  4380. (org-compile-prefix-format 'tags)
  4381. (org-set-sorting-strategy 'tags)
  4382. (setq org-agenda-query-string match)
  4383. (setq org-agenda-redo-command
  4384. (list 'org-tags-view
  4385. `(quote ,org--matcher-tags-todo-only)
  4386. `(if current-prefix-arg nil ,org-agenda-query-string)))
  4387. (setq files (org-agenda-files nil 'ifmode)
  4388. rtnall nil)
  4389. (while (setq file (pop files))
  4390. (catch 'nextfile
  4391. (org-check-agenda-file file)
  4392. (setq buffer (if (file-exists-p file)
  4393. (org-get-agenda-file-buffer file)
  4394. (error "No such file %s" file)))
  4395. (if (not buffer)
  4396. ;; If file does not exist, error message to agenda
  4397. (setq rtn (list
  4398. (format "ORG-AGENDA-ERROR: No such org-file %s" file))
  4399. rtnall (append rtnall rtn))
  4400. (with-current-buffer buffer
  4401. (unless (derived-mode-p 'org-mode)
  4402. (error "Agenda file %s is not in Org mode" file))
  4403. (save-excursion
  4404. (save-restriction
  4405. (if (eq buffer org-agenda-restrict)
  4406. (narrow-to-region org-agenda-restrict-begin
  4407. org-agenda-restrict-end)
  4408. (widen))
  4409. (setq rtn (org-scan-tags 'agenda
  4410. matcher
  4411. org--matcher-tags-todo-only))
  4412. (setq rtnall (append rtnall rtn))))))))
  4413. (org-agenda--insert-overriding-header
  4414. (with-temp-buffer
  4415. (insert "Headlines with TAGS match: ")
  4416. (add-text-properties (point-min) (1- (point))
  4417. (list 'face 'org-agenda-structure
  4418. 'short-heading
  4419. (concat "Match: " match)))
  4420. (setq pos (point))
  4421. (insert match "\n")
  4422. (add-text-properties pos (1- (point)) (list 'face 'org-warning))
  4423. (setq pos (point))
  4424. (unless org-agenda-multi
  4425. (insert (substitute-command-keys
  4426. "Press \
  4427. \\<org-agenda-mode-map>`\\[universal-argument] \\[org-agenda-redo]' \
  4428. to search again with new search string\n")))
  4429. (add-text-properties pos (1- (point))
  4430. (list 'face 'org-agenda-structure))
  4431. (buffer-string)))
  4432. (org-agenda-mark-header-line (point-min))
  4433. (when rtnall
  4434. (insert (org-agenda-finalize-entries rtnall 'tags) "\n"))
  4435. (goto-char (point-min))
  4436. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4437. (add-text-properties
  4438. (point-min) (point-max)
  4439. `(org-agenda-type tags
  4440. org-last-args (,org--matcher-tags-todo-only ,match)
  4441. org-redo-cmd ,org-agenda-redo-command
  4442. org-series-cmd ,org-cmd))
  4443. (org-agenda-finalize)
  4444. (setq buffer-read-only t))))
  4445. ;;; Agenda Finding stuck projects
  4446. (defvar org-agenda-skip-regexp nil
  4447. "Regular expression used in skipping subtrees for the agenda.
  4448. This is basically a temporary global variable that can be set and then
  4449. used by user-defined selections using `org-agenda-skip-function'.")
  4450. (defvar org-agenda-overriding-header nil
  4451. "When set during agenda, todo and tags searches it replaces the header.
  4452. If an empty string, no header will be inserted. If any other
  4453. string, it will be inserted as a header. If nil, a header will
  4454. be generated automatically according to the command. This
  4455. variable should not be set directly, but custom commands can bind
  4456. it in the options section.")
  4457. (defun org-agenda-skip-entry-if (&rest conditions)
  4458. "Skip entry if any of CONDITIONS is true.
  4459. See `org-agenda-skip-if' for details."
  4460. (org-agenda-skip-if nil conditions))
  4461. (defun org-agenda-skip-subtree-if (&rest conditions)
  4462. "Skip subtree if any of CONDITIONS is true.
  4463. See `org-agenda-skip-if' for details."
  4464. (org-agenda-skip-if t conditions))
  4465. (defun org-agenda-skip-if (subtree conditions)
  4466. "Checks current entity for CONDITIONS.
  4467. If SUBTREE is non-nil, the entire subtree is checked. Otherwise, only
  4468. the entry (i.e. the text before the next heading) is checked.
  4469. CONDITIONS is a list of symbols, boolean OR is used to combine the results
  4470. from different tests. Valid conditions are:
  4471. scheduled Check if there is a scheduled cookie
  4472. notscheduled Check if there is no scheduled cookie
  4473. deadline Check if there is a deadline
  4474. notdeadline Check if there is no deadline
  4475. timestamp Check if there is a timestamp (also deadline or scheduled)
  4476. nottimestamp Check if there is no timestamp (also deadline or scheduled)
  4477. regexp Check if regexp matches
  4478. notregexp Check if regexp does not match.
  4479. todo Check if TODO keyword matches
  4480. nottodo Check if TODO keyword does not match
  4481. The regexp is taken from the conditions list, it must come right after
  4482. the `regexp' or `notregexp' element.
  4483. `todo' and `nottodo' accept as an argument a list of todo
  4484. keywords, which may include \"*\" to match any todo keyword.
  4485. (org-agenda-skip-entry-if \\='todo \\='(\"TODO\" \"WAITING\"))
  4486. would skip all entries with \"TODO\" or \"WAITING\" keywords.
  4487. Instead of a list, a keyword class may be given. For example:
  4488. (org-agenda-skip-entry-if \\='nottodo \\='done)
  4489. would skip entries that haven't been marked with any of \"DONE\"
  4490. keywords. Possible classes are: `todo', `done', `any'.
  4491. If any of these conditions is met, this function returns the end point of
  4492. the entity, causing the search to continue from there. This is a function
  4493. that can be put into `org-agenda-skip-function' for the duration of a command."
  4494. (org-back-to-heading t)
  4495. (let* ((beg (point))
  4496. (end (if subtree (save-excursion (org-end-of-subtree t) (point))
  4497. (org-entry-end-position)))
  4498. (planning-end (if subtree end (line-end-position 2)))
  4499. m)
  4500. (and
  4501. (or (and (memq 'scheduled conditions)
  4502. (re-search-forward org-scheduled-time-regexp planning-end t))
  4503. (and (memq 'notscheduled conditions)
  4504. (not
  4505. (save-excursion
  4506. (re-search-forward org-scheduled-time-regexp planning-end t))))
  4507. (and (memq 'deadline conditions)
  4508. (re-search-forward org-deadline-time-regexp planning-end t))
  4509. (and (memq 'notdeadline conditions)
  4510. (not
  4511. (save-excursion
  4512. (re-search-forward org-deadline-time-regexp planning-end t))))
  4513. (and (memq 'timestamp conditions)
  4514. (re-search-forward org-ts-regexp end t))
  4515. (and (memq 'nottimestamp conditions)
  4516. (not (save-excursion (re-search-forward org-ts-regexp end t))))
  4517. (and (setq m (memq 'regexp conditions))
  4518. (stringp (nth 1 m))
  4519. (re-search-forward (nth 1 m) end t))
  4520. (and (setq m (memq 'notregexp conditions))
  4521. (stringp (nth 1 m))
  4522. (not (save-excursion (re-search-forward (nth 1 m) end t))))
  4523. (and (or
  4524. (setq m (memq 'nottodo conditions))
  4525. (setq m (memq 'todo-unblocked conditions))
  4526. (setq m (memq 'nottodo-unblocked conditions))
  4527. (setq m (memq 'todo conditions)))
  4528. (org-agenda-skip-if-todo m end)))
  4529. end)))
  4530. (defun org-agenda-skip-if-todo (args end)
  4531. "Helper function for `org-agenda-skip-if', do not use it directly.
  4532. ARGS is a list with first element either `todo', `nottodo',
  4533. `todo-unblocked' or `nottodo-unblocked'. The remainder is either
  4534. a list of TODO keywords, or a state symbol `todo' or `done' or
  4535. `any'."
  4536. (let ((todo-re
  4537. (concat "^\\*+[ \t]+"
  4538. (regexp-opt
  4539. (pcase args
  4540. (`(,_ todo)
  4541. (org-delete-all org-done-keywords
  4542. (copy-sequence org-todo-keywords-1)))
  4543. (`(,_ done) org-done-keywords)
  4544. (`(,_ any) org-todo-keywords-1)
  4545. (`(,_ ,(pred atom))
  4546. (error "Invalid TODO class or type: %S" args))
  4547. (`(,_ ,(pred (member "*"))) org-todo-keywords-1)
  4548. (`(,_ ,todo-list) todo-list))
  4549. 'words))))
  4550. (pcase args
  4551. (`(todo . ,_)
  4552. (let (case-fold-search) (re-search-forward todo-re end t)))
  4553. (`(nottodo . ,_)
  4554. (not (let (case-fold-search) (re-search-forward todo-re end t))))
  4555. (`(todo-unblocked . ,_)
  4556. (catch :unblocked
  4557. (while (let (case-fold-search) (re-search-forward todo-re end t))
  4558. (when (org-entry-blocked-p) (throw :unblocked t)))
  4559. nil))
  4560. (`(nottodo-unblocked . ,_)
  4561. (catch :unblocked
  4562. (while (let (case-fold-search) (re-search-forward todo-re end t))
  4563. (when (org-entry-blocked-p) (throw :unblocked nil)))
  4564. t))
  4565. (`(,type . ,_) (error "Unknown TODO skip type: %S" type)))))
  4566. ;;;###autoload
  4567. (defun org-agenda-list-stuck-projects (&rest ignore)
  4568. "Create agenda view for projects that are stuck.
  4569. Stuck projects are project that have no next actions. For the definitions
  4570. of what a project is and how to check if it stuck, customize the variable
  4571. `org-stuck-projects'."
  4572. (interactive)
  4573. (let* ((org-agenda-overriding-header
  4574. (or org-agenda-overriding-header "List of stuck projects: "))
  4575. (matcher (nth 0 org-stuck-projects))
  4576. (todo (nth 1 org-stuck-projects))
  4577. (tags (nth 2 org-stuck-projects))
  4578. (gen-re (org-string-nw-p (nth 3 org-stuck-projects)))
  4579. (todo-wds
  4580. (if (not (member "*" todo)) todo
  4581. (org-agenda-prepare-buffers (org-agenda-files nil 'ifmode))
  4582. (org-delete-all org-done-keywords-for-agenda
  4583. (copy-sequence org-todo-keywords-for-agenda))))
  4584. (todo-re (and todo
  4585. (format "^\\*+[ \t]+\\(%s\\)\\>"
  4586. (mapconcat #'identity todo-wds "\\|"))))
  4587. (tags-re (cond ((null tags) nil)
  4588. ((member "*" tags) org-tag-line-re)
  4589. (tags
  4590. (let ((other-tags (format "\\(?:%s:\\)*" org-tag-re)))
  4591. (concat org-outline-regexp-bol
  4592. ".*?[ \t]:"
  4593. other-tags
  4594. (regexp-opt tags t)
  4595. ":" other-tags "[ \t]*$")))
  4596. (t nil)))
  4597. (re-list (delq nil (list todo-re tags-re gen-re)))
  4598. (skip-re
  4599. (if (null re-list)
  4600. (error "Missing information to identify unstuck projects")
  4601. (mapconcat #'identity re-list "\\|")))
  4602. (org-agenda-skip-function
  4603. ;; Skip entry if `org-agenda-skip-regexp' matches anywhere
  4604. ;; in the subtree.
  4605. `(lambda ()
  4606. (and (save-excursion
  4607. (let ((case-fold-search nil))
  4608. (re-search-forward
  4609. ,skip-re (save-excursion (org-end-of-subtree t)) t)))
  4610. (progn (outline-next-heading) (point))))))
  4611. (org-tags-view nil matcher)
  4612. (setq org-agenda-buffer-name (buffer-name))
  4613. (with-current-buffer org-agenda-buffer-name
  4614. (setq org-agenda-redo-command
  4615. `(org-agenda-list-stuck-projects ,current-prefix-arg))
  4616. (let ((inhibit-read-only t))
  4617. (add-text-properties
  4618. (point-min) (point-max)
  4619. `(org-redo-cmd ,org-agenda-redo-command))))))
  4620. ;;; Diary integration
  4621. (defvar org-disable-agenda-to-diary nil) ;Dynamically-scoped param.
  4622. (defvar diary-list-entries-hook)
  4623. (defvar diary-time-regexp)
  4624. (defun org-get-entries-from-diary (date)
  4625. "Get the (Emacs Calendar) diary entries for DATE."
  4626. (require 'diary-lib)
  4627. (let* ((diary-fancy-buffer "*temporary-fancy-diary-buffer*")
  4628. (diary-display-function 'diary-fancy-display)
  4629. (pop-up-frames nil)
  4630. (diary-list-entries-hook
  4631. (cons 'org-diary-default-entry diary-list-entries-hook))
  4632. (diary-file-name-prefix nil) ; turn this feature off
  4633. (diary-modify-entry-list-string-function 'org-modify-diary-entry-string)
  4634. entries
  4635. (org-disable-agenda-to-diary t))
  4636. (save-excursion
  4637. (save-window-excursion
  4638. (funcall (if (fboundp 'diary-list-entries)
  4639. 'diary-list-entries 'list-diary-entries)
  4640. date 1)))
  4641. (if (not (get-buffer diary-fancy-buffer))
  4642. (setq entries nil)
  4643. (with-current-buffer diary-fancy-buffer
  4644. (setq buffer-read-only nil)
  4645. (if (zerop (buffer-size))
  4646. ;; No entries
  4647. (setq entries nil)
  4648. ;; Omit the date and other unnecessary stuff
  4649. (org-agenda-cleanup-fancy-diary)
  4650. ;; Add prefix to each line and extend the text properties
  4651. (if (zerop (buffer-size))
  4652. (setq entries nil)
  4653. (setq entries (buffer-substring (point-min) (- (point-max) 1)))
  4654. (setq entries
  4655. (with-temp-buffer
  4656. (insert entries) (goto-char (point-min))
  4657. (while (re-search-forward "\n[ \t]+\\(.+\\)$" nil t)
  4658. (unless (save-match-data (string-match diary-time-regexp (match-string 1)))
  4659. (replace-match (concat "; " (match-string 1)))))
  4660. (buffer-string)))))
  4661. (set-buffer-modified-p nil)
  4662. (kill-buffer diary-fancy-buffer)))
  4663. (when entries
  4664. (setq entries (org-split-string entries "\n"))
  4665. (setq entries
  4666. (mapcar
  4667. (lambda (x)
  4668. (setq x (org-agenda-format-item "" x nil "Diary" nil 'time))
  4669. ;; Extend the text properties to the beginning of the line
  4670. (org-add-props x (text-properties-at (1- (length x)) x)
  4671. 'type "diary" 'date date 'face 'org-agenda-diary))
  4672. entries)))))
  4673. (defvar org-agenda-cleanup-fancy-diary-hook nil
  4674. "Hook run when the fancy diary buffer is cleaned up.")
  4675. (defun org-agenda-cleanup-fancy-diary ()
  4676. "Remove unwanted stuff in buffer created by `fancy-diary-display'.
  4677. This gets rid of the date, the underline under the date, and the
  4678. dummy entry installed by Org mode to ensure non-empty diary for
  4679. each date. It also removes lines that contain only whitespace."
  4680. (goto-char (point-min))
  4681. (if (looking-at ".*?:[ \t]*")
  4682. (progn
  4683. (replace-match "")
  4684. (re-search-forward "\n=+$" nil t)
  4685. (replace-match "")
  4686. (while (re-search-backward "^ +\n?" nil t) (replace-match "")))
  4687. (re-search-forward "\n=+$" nil t)
  4688. (delete-region (point-min) (min (point-max) (1+ (match-end 0)))))
  4689. (goto-char (point-min))
  4690. (while (re-search-forward "^ +\n" nil t)
  4691. (replace-match ""))
  4692. (goto-char (point-min))
  4693. (if (re-search-forward "^Org mode dummy\n?" nil t)
  4694. (replace-match ""))
  4695. (run-hooks 'org-agenda-cleanup-fancy-diary-hook))
  4696. ;; Make sure entries from the diary have the right text properties.
  4697. (eval-after-load "diary-lib"
  4698. '(if (boundp 'diary-modify-entry-list-string-function)
  4699. ;; We can rely on the hook, nothing to do
  4700. nil
  4701. ;; Hook not available, must use advice to make this work
  4702. (defadvice add-to-diary-list (before org-mark-diary-entry activate)
  4703. "Make the position visible."
  4704. (if (and org-disable-agenda-to-diary ;; called from org-agenda
  4705. (stringp string)
  4706. buffer-file-name)
  4707. (setq string (org-modify-diary-entry-string string))))))
  4708. (defun org-modify-diary-entry-string (string)
  4709. "Add text properties to string, allowing Org to act on it."
  4710. (org-add-props string nil
  4711. 'mouse-face 'highlight
  4712. 'help-echo (if buffer-file-name
  4713. (format "mouse-2 or RET jump to diary file %s"
  4714. (abbreviate-file-name buffer-file-name))
  4715. "")
  4716. 'org-agenda-diary-link t
  4717. 'org-marker (org-agenda-new-marker (point-at-bol))))
  4718. (defun org-diary-default-entry ()
  4719. "Add a dummy entry to the diary.
  4720. Needed to avoid empty dates which mess up holiday display."
  4721. ;; Catch the error if dealing with the new add-to-diary-alist
  4722. (when org-disable-agenda-to-diary
  4723. (condition-case nil
  4724. (org-add-to-diary-list original-date "Org mode dummy" "")
  4725. (error
  4726. (org-add-to-diary-list original-date "Org mode dummy" "" nil)))))
  4727. (defun org-add-to-diary-list (&rest args)
  4728. (if (fboundp 'diary-add-to-list)
  4729. (apply 'diary-add-to-list args)
  4730. (apply 'add-to-diary-list args)))
  4731. (defvar org-diary-last-run-time nil)
  4732. ;;;###autoload
  4733. (defun org-diary (&rest args)
  4734. "Return diary information from org files.
  4735. This function can be used in a \"sexp\" diary entry in the Emacs calendar.
  4736. It accesses org files and extracts information from those files to be
  4737. listed in the diary. The function accepts arguments specifying what
  4738. items should be listed. For a list of arguments allowed here, see the
  4739. variable `org-agenda-entry-types'.
  4740. The call in the diary file should look like this:
  4741. &%%(org-diary) ~/path/to/some/orgfile.org
  4742. Use a separate line for each org file to check. Or, if you omit the file name,
  4743. all files listed in `org-agenda-files' will be checked automatically:
  4744. &%%(org-diary)
  4745. If you don't give any arguments (as in the example above), the default value
  4746. of `org-agenda-entry-types' is used: (:deadline :scheduled :timestamp :sexp).
  4747. So the example above may also be written as
  4748. &%%(org-diary :deadline :timestamp :sexp :scheduled)
  4749. The function expects the lisp variables `entry' and `date' to be provided
  4750. by the caller, because this is how the calendar works. Don't use this
  4751. function from a program - use `org-agenda-get-day-entries' instead."
  4752. (when (> (- (float-time)
  4753. org-agenda-last-marker-time)
  4754. 5)
  4755. ;; I am not sure if this works with sticky agendas, because the marker
  4756. ;; list is then no longer a global variable.
  4757. (org-agenda-reset-markers))
  4758. (org-compile-prefix-format 'agenda)
  4759. (org-set-sorting-strategy 'agenda)
  4760. (setq args (or args org-agenda-entry-types))
  4761. (let* ((files (if (and entry (stringp entry) (string-match "\\S-" entry))
  4762. (list entry)
  4763. (org-agenda-files t)))
  4764. (time (float-time))
  4765. file rtn results)
  4766. (when (or (not org-diary-last-run-time)
  4767. (> (- time
  4768. org-diary-last-run-time)
  4769. 3))
  4770. (org-agenda-prepare-buffers files))
  4771. (setq org-diary-last-run-time time)
  4772. ;; If this is called during org-agenda, don't return any entries to
  4773. ;; the calendar. Org Agenda will list these entries itself.
  4774. (if org-disable-agenda-to-diary (setq files nil))
  4775. (while (setq file (pop files))
  4776. (setq rtn (apply 'org-agenda-get-day-entries file date args))
  4777. (setq results (append results rtn)))
  4778. (when results
  4779. (setq results
  4780. (mapcar (lambda (i) (replace-regexp-in-string
  4781. org-bracket-link-regexp "\\3" i)) results))
  4782. (concat (org-agenda-finalize-entries results) "\n"))))
  4783. ;;; Agenda entry finders
  4784. (defun org-agenda--timestamp-to-absolute (&rest args)
  4785. "Call `org-time-string-to-absolute' with ARGS.
  4786. However, throw `:skip' whenever an error is raised."
  4787. (condition-case e
  4788. (apply #'org-time-string-to-absolute args)
  4789. (org-diary-sexp-no-match (throw :skip nil))
  4790. (error
  4791. (message "%s; Skipping entry" (error-message-string e))
  4792. (throw :skip nil))))
  4793. (defun org-agenda-get-day-entries (file date &rest args)
  4794. "Does the work for `org-diary' and `org-agenda'.
  4795. FILE is the path to a file to be checked for entries. DATE is date like
  4796. the one returned by `calendar-current-date'. ARGS are symbols indicating
  4797. which kind of entries should be extracted. For details about these, see
  4798. the documentation of `org-diary'."
  4799. (let* ((org-startup-folded nil)
  4800. (org-startup-align-all-tables nil)
  4801. (buffer (if (file-exists-p file) (org-get-agenda-file-buffer file)
  4802. (error "No such file %s" file))))
  4803. (if (not buffer)
  4804. ;; If file does not exist, signal it in diary nonetheless.
  4805. (list (format "ORG-AGENDA-ERROR: No such org-file %s" file))
  4806. (with-current-buffer buffer
  4807. (unless (derived-mode-p 'org-mode)
  4808. (error "Agenda file %s is not in Org mode" file))
  4809. (setq org-agenda-buffer (or org-agenda-buffer buffer))
  4810. (setf org-agenda-current-date date)
  4811. (save-excursion
  4812. (save-restriction
  4813. (if (eq buffer org-agenda-restrict)
  4814. (narrow-to-region org-agenda-restrict-begin
  4815. org-agenda-restrict-end)
  4816. (widen))
  4817. ;; Rationalize ARGS. Also make sure `:deadline' comes
  4818. ;; first in order to populate DEADLINES before passing it.
  4819. ;;
  4820. ;; We use `delq' since `org-uniquify' duplicates ARGS,
  4821. ;; guarding us from modifying `org-agenda-entry-types'.
  4822. (setf args (org-uniquify (or args org-agenda-entry-types)))
  4823. (when (and (memq :scheduled args) (memq :scheduled* args))
  4824. (setf args (delq :scheduled* args)))
  4825. (cond
  4826. ((memq :deadline args)
  4827. (setf args (cons :deadline
  4828. (delq :deadline (delq :deadline* args)))))
  4829. ((memq :deadline* args)
  4830. (setf args (cons :deadline* (delq :deadline* args)))))
  4831. ;; Collect list of headlines. Return them flattened.
  4832. (let ((case-fold-search nil) results deadlines)
  4833. (dolist (arg args (apply #'nconc (nreverse results)))
  4834. (pcase arg
  4835. ((and :todo (guard (org-agenda-today-p date)))
  4836. (push (org-agenda-get-todos) results))
  4837. (:timestamp
  4838. (push (org-agenda-get-blocks) results)
  4839. (push (org-agenda-get-timestamps deadlines) results))
  4840. (:sexp
  4841. (push (org-agenda-get-sexps) results))
  4842. (:scheduled
  4843. (push (org-agenda-get-scheduled deadlines) results))
  4844. (:scheduled*
  4845. (push (org-agenda-get-scheduled deadlines t) results))
  4846. (:closed
  4847. (push (org-agenda-get-progress) results))
  4848. (:deadline
  4849. (setf deadlines (org-agenda-get-deadlines))
  4850. (push deadlines results))
  4851. (:deadline*
  4852. (setf deadlines (org-agenda-get-deadlines t))
  4853. (push deadlines results)))))))))))
  4854. (defsubst org-em (x y list)
  4855. "Is X or Y a member of LIST?"
  4856. (or (memq x list) (memq y list)))
  4857. (defvar org-heading-keyword-regexp-format) ; defined in org.el
  4858. (defvar org-agenda-sorting-strategy-selected nil)
  4859. (defun org-agenda-entry-get-agenda-timestamp (pom)
  4860. "Retrieve timestamp information for sorting agenda views.
  4861. Given a point or marker POM, returns a cons cell of the timestamp
  4862. and the timestamp type relevant for the sorting strategy in
  4863. `org-agenda-sorting-strategy-selected'."
  4864. (let (ts ts-date-type)
  4865. (save-match-data
  4866. (cond ((org-em 'scheduled-up 'scheduled-down
  4867. org-agenda-sorting-strategy-selected)
  4868. (setq ts (org-entry-get pom "SCHEDULED")
  4869. ts-date-type " scheduled"))
  4870. ((org-em 'deadline-up 'deadline-down
  4871. org-agenda-sorting-strategy-selected)
  4872. (setq ts (org-entry-get pom "DEADLINE")
  4873. ts-date-type " deadline"))
  4874. ((org-em 'ts-up 'ts-down
  4875. org-agenda-sorting-strategy-selected)
  4876. (setq ts (org-entry-get pom "TIMESTAMP")
  4877. ts-date-type " timestamp"))
  4878. ((org-em 'tsia-up 'tsia-down
  4879. org-agenda-sorting-strategy-selected)
  4880. (setq ts (org-entry-get pom "TIMESTAMP_IA")
  4881. ts-date-type " timestamp_ia"))
  4882. ((org-em 'timestamp-up 'timestamp-down
  4883. org-agenda-sorting-strategy-selected)
  4884. (setq ts (or (org-entry-get pom "SCHEDULED")
  4885. (org-entry-get pom "DEADLINE")
  4886. (org-entry-get pom "TIMESTAMP")
  4887. (org-entry-get pom "TIMESTAMP_IA"))
  4888. ts-date-type ""))
  4889. (t (setq ts-date-type "")))
  4890. (cons (when ts (ignore-errors (org-time-string-to-absolute ts)))
  4891. ts-date-type))))
  4892. (defun org-agenda-get-todos ()
  4893. "Return the TODO information for agenda display."
  4894. (let* ((props (list 'face nil
  4895. 'done-face 'org-agenda-done
  4896. 'org-not-done-regexp org-not-done-regexp
  4897. 'org-todo-regexp org-todo-regexp
  4898. 'org-complex-heading-regexp org-complex-heading-regexp
  4899. 'mouse-face 'highlight
  4900. 'help-echo
  4901. (format "mouse-2 or RET jump to org file %s"
  4902. (abbreviate-file-name buffer-file-name))))
  4903. (case-fold-search nil)
  4904. (regexp (format org-heading-keyword-regexp-format
  4905. (cond
  4906. ((and org-select-this-todo-keyword
  4907. (equal org-select-this-todo-keyword "*"))
  4908. org-todo-regexp)
  4909. (org-select-this-todo-keyword
  4910. (concat "\\("
  4911. (mapconcat 'identity
  4912. (org-split-string
  4913. org-select-this-todo-keyword
  4914. "|")
  4915. "\\|") "\\)"))
  4916. (t org-not-done-regexp))))
  4917. marker priority category level tags todo-state
  4918. ts-date ts-date-type ts-date-pair
  4919. ee txt beg end inherited-tags todo-state-end-pos)
  4920. (goto-char (point-min))
  4921. (while (re-search-forward regexp nil t)
  4922. (catch :skip
  4923. (save-match-data
  4924. (beginning-of-line)
  4925. (org-agenda-skip)
  4926. (setq beg (point) end (save-excursion (outline-next-heading) (point)))
  4927. (unless (and (setq todo-state (org-get-todo-state))
  4928. (setq todo-state-end-pos (match-end 2)))
  4929. (goto-char end)
  4930. (throw :skip nil))
  4931. (when (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item end)
  4932. (goto-char (1+ beg))
  4933. (or org-agenda-todo-list-sublevels (org-end-of-subtree 'invisible))
  4934. (throw :skip nil)))
  4935. (goto-char (match-beginning 2))
  4936. (setq marker (org-agenda-new-marker (match-beginning 0))
  4937. category (org-get-category)
  4938. ts-date-pair (org-agenda-entry-get-agenda-timestamp (point))
  4939. ts-date (car ts-date-pair)
  4940. ts-date-type (cdr ts-date-pair)
  4941. txt (org-trim (buffer-substring (match-beginning 2) (match-end 0)))
  4942. inherited-tags
  4943. (or (eq org-agenda-show-inherited-tags 'always)
  4944. (and (listp org-agenda-show-inherited-tags)
  4945. (memq 'todo org-agenda-show-inherited-tags))
  4946. (and (eq org-agenda-show-inherited-tags t)
  4947. (or (eq org-agenda-use-tag-inheritance t)
  4948. (memq 'todo org-agenda-use-tag-inheritance))))
  4949. tags (org-get-tags nil (not inherited-tags))
  4950. level (make-string (org-reduced-level (org-outline-level)) ? )
  4951. txt (org-agenda-format-item "" txt level category tags t)
  4952. priority (1+ (org-get-priority txt)))
  4953. (org-add-props txt props
  4954. 'org-marker marker 'org-hd-marker marker
  4955. 'priority priority
  4956. 'level level
  4957. 'ts-date ts-date
  4958. 'type (concat "todo" ts-date-type) 'todo-state todo-state)
  4959. (push txt ee)
  4960. (if org-agenda-todo-list-sublevels
  4961. (goto-char todo-state-end-pos)
  4962. (org-end-of-subtree 'invisible))))
  4963. (nreverse ee)))
  4964. (defun org-agenda-todo-custom-ignore-p (time n)
  4965. "Check whether timestamp is farther away than n number of days.
  4966. This function is invoked if `org-agenda-todo-ignore-deadlines',
  4967. `org-agenda-todo-ignore-scheduled' or
  4968. `org-agenda-todo-ignore-timestamp' is set to an integer."
  4969. (let ((days (org-time-stamp-to-now
  4970. time org-agenda-todo-ignore-time-comparison-use-seconds)))
  4971. (if (>= n 0)
  4972. (>= days n)
  4973. (<= days n))))
  4974. ;;;###autoload
  4975. (defun org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item
  4976. (&optional end)
  4977. "Do we have a reason to ignore this TODO entry because it has a time stamp?"
  4978. (when (or org-agenda-todo-ignore-with-date
  4979. org-agenda-todo-ignore-scheduled
  4980. org-agenda-todo-ignore-deadlines
  4981. org-agenda-todo-ignore-timestamp)
  4982. (setq end (or end (save-excursion (outline-next-heading) (point))))
  4983. (save-excursion
  4984. (or (and org-agenda-todo-ignore-with-date
  4985. (re-search-forward org-ts-regexp end t))
  4986. (and org-agenda-todo-ignore-scheduled
  4987. (re-search-forward org-scheduled-time-regexp end t)
  4988. (cond
  4989. ((eq org-agenda-todo-ignore-scheduled 'future)
  4990. (> (org-time-stamp-to-now
  4991. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  4992. ((eq org-agenda-todo-ignore-scheduled 'past)
  4993. (<= (org-time-stamp-to-now
  4994. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  4995. ((numberp org-agenda-todo-ignore-scheduled)
  4996. (org-agenda-todo-custom-ignore-p
  4997. (match-string 1) org-agenda-todo-ignore-scheduled))
  4998. (t)))
  4999. (and org-agenda-todo-ignore-deadlines
  5000. (re-search-forward org-deadline-time-regexp end t)
  5001. (cond
  5002. ((memq org-agenda-todo-ignore-deadlines '(t all)) t)
  5003. ((eq org-agenda-todo-ignore-deadlines 'far)
  5004. (not (org-deadline-close-p (match-string 1))))
  5005. ((eq org-agenda-todo-ignore-deadlines 'future)
  5006. (> (org-time-stamp-to-now
  5007. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5008. ((eq org-agenda-todo-ignore-deadlines 'past)
  5009. (<= (org-time-stamp-to-now
  5010. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5011. ((numberp org-agenda-todo-ignore-deadlines)
  5012. (org-agenda-todo-custom-ignore-p
  5013. (match-string 1) org-agenda-todo-ignore-deadlines))
  5014. (t (org-deadline-close-p (match-string 1)))))
  5015. (and org-agenda-todo-ignore-timestamp
  5016. (let ((buffer (current-buffer))
  5017. (regexp
  5018. (concat
  5019. org-scheduled-time-regexp "\\|" org-deadline-time-regexp))
  5020. (start (point)))
  5021. ;; Copy current buffer into a temporary one
  5022. (with-temp-buffer
  5023. (insert-buffer-substring buffer start end)
  5024. (goto-char (point-min))
  5025. ;; Delete SCHEDULED and DEADLINE items
  5026. (while (re-search-forward regexp end t)
  5027. (delete-region (match-beginning 0) (match-end 0)))
  5028. (goto-char (point-min))
  5029. ;; No search for timestamp left
  5030. (when (re-search-forward org-ts-regexp nil t)
  5031. (cond
  5032. ((eq org-agenda-todo-ignore-timestamp 'future)
  5033. (> (org-time-stamp-to-now
  5034. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5035. ((eq org-agenda-todo-ignore-timestamp 'past)
  5036. (<= (org-time-stamp-to-now
  5037. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5038. ((numberp org-agenda-todo-ignore-timestamp)
  5039. (org-agenda-todo-custom-ignore-p
  5040. (match-string 1) org-agenda-todo-ignore-timestamp))
  5041. (t))))))))))
  5042. (defun org-agenda-get-timestamps (&optional deadlines)
  5043. "Return the date stamp information for agenda display.
  5044. Optional argument DEADLINES is a list of deadline items to be
  5045. displayed in agenda view."
  5046. (let* ((props (list 'face 'org-agenda-calendar-event
  5047. 'org-not-done-regexp org-not-done-regexp
  5048. 'org-todo-regexp org-todo-regexp
  5049. 'org-complex-heading-regexp org-complex-heading-regexp
  5050. 'mouse-face 'highlight
  5051. 'help-echo
  5052. (format "mouse-2 or RET jump to Org file %s"
  5053. (abbreviate-file-name buffer-file-name))))
  5054. (current (calendar-absolute-from-gregorian date))
  5055. (today (org-today))
  5056. (deadline-position-alist
  5057. (mapcar (lambda (d)
  5058. (let ((m (get-text-property 0 'org-hd-marker d)))
  5059. (and m (marker-position m))))
  5060. deadlines))
  5061. ;; Match time-stamps set to current date, time-stamps with
  5062. ;; a repeater, and S-exp time-stamps.
  5063. (regexp
  5064. (concat
  5065. (if org-agenda-include-inactive-timestamps "[[<]" "<")
  5066. (regexp-quote
  5067. (substring
  5068. (format-time-string
  5069. (car org-time-stamp-formats)
  5070. (apply #'encode-time ; DATE bound by calendar
  5071. (list 0 0 0 (nth 1 date) (car date) (nth 2 date))))
  5072. 1 11))
  5073. "\\|\\(<[0-9]+-[0-9]+-[0-9]+[^>\n]+?\\+[0-9]+[hdwmy]>\\)"
  5074. "\\|\\(<%%\\(([^>\n]+)\\)>\\)"))
  5075. timestamp-items)
  5076. (goto-char (point-min))
  5077. (while (re-search-forward regexp nil t)
  5078. ;; Skip date ranges, scheduled and deadlines, which are handled
  5079. ;; specially. Also skip time-stamps before first headline as
  5080. ;; there would be no entry to add to the agenda. Eventually,
  5081. ;; ignore clock entries.
  5082. (catch :skip
  5083. (save-match-data
  5084. (when (or (org-at-date-range-p)
  5085. (org-at-planning-p)
  5086. (org-before-first-heading-p)
  5087. (and org-agenda-include-inactive-timestamps
  5088. (org-at-clock-log-p)))
  5089. (throw :skip nil))
  5090. (org-agenda-skip))
  5091. (let* ((pos (match-beginning 0))
  5092. (repeat (match-string 1))
  5093. (sexp-entry (match-string 3))
  5094. (time-stamp (if (or repeat sexp-entry) (match-string 0)
  5095. (save-excursion
  5096. (goto-char pos)
  5097. (looking-at org-ts-regexp-both)
  5098. (match-string 0))))
  5099. (todo-state (org-get-todo-state))
  5100. (warntime (get-text-property (point) 'org-appt-warntime))
  5101. (done? (member todo-state org-done-keywords)))
  5102. ;; Possibly skip done tasks.
  5103. (when (and done? org-agenda-skip-timestamp-if-done)
  5104. (throw :skip t))
  5105. ;; S-exp entry doesn't match current day: skip it.
  5106. (when (and sexp-entry (not (org-diary-sexp-entry sexp-entry "" date)))
  5107. (throw :skip nil))
  5108. (when repeat
  5109. (let* ((past
  5110. ;; A repeating time stamp is shown at its base
  5111. ;; date and every repeated date up to TODAY. If
  5112. ;; `org-agenda-prefer-last-repeat' is non-nil,
  5113. ;; however, only the last repeat before today
  5114. ;; (inclusive) is shown.
  5115. (org-agenda--timestamp-to-absolute
  5116. repeat
  5117. (if (or (> current today)
  5118. (eq org-agenda-prefer-last-repeat t)
  5119. (member todo-state org-agenda-prefer-last-repeat))
  5120. today
  5121. current)
  5122. 'past (current-buffer) pos))
  5123. (future
  5124. ;; Display every repeated date past TODAY
  5125. ;; (exclusive) unless
  5126. ;; `org-agenda-show-future-repeats' is nil. If
  5127. ;; this variable is set to `next', only display
  5128. ;; the first repeated date after TODAY
  5129. ;; (exclusive).
  5130. (cond
  5131. ((<= current today) past)
  5132. ((not org-agenda-show-future-repeats) past)
  5133. (t
  5134. (let ((base (if (eq org-agenda-show-future-repeats 'next)
  5135. (1+ today)
  5136. current)))
  5137. (org-agenda--timestamp-to-absolute
  5138. repeat base 'future (current-buffer) pos))))))
  5139. (when (and (/= current past) (/= current future))
  5140. (throw :skip nil))))
  5141. (save-excursion
  5142. (re-search-backward org-outline-regexp-bol nil t)
  5143. ;; Possibly skip time-stamp when a deadline is set.
  5144. (when (and org-agenda-skip-timestamp-if-deadline-is-shown
  5145. (assq (point) deadline-position-alist))
  5146. (throw :skip nil))
  5147. (let* ((category (org-get-category pos))
  5148. (inherited-tags
  5149. (or (eq org-agenda-show-inherited-tags 'always)
  5150. (and (consp org-agenda-show-inherited-tags)
  5151. (memq 'agenda org-agenda-show-inherited-tags))
  5152. (and (eq org-agenda-show-inherited-tags t)
  5153. (or (eq org-agenda-use-tag-inheritance t)
  5154. (memq 'agenda
  5155. org-agenda-use-tag-inheritance)))))
  5156. (tags (org-get-tags nil (not inherited-tags)))
  5157. (level (make-string (org-reduced-level (org-outline-level))
  5158. ?\s))
  5159. (head (and (looking-at "\\*+[ \t]+\\(.*\\)")
  5160. (match-string 1)))
  5161. (inactive? (= (char-after pos) ?\[))
  5162. (habit? (and (fboundp 'org-is-habit-p) (org-is-habit-p)))
  5163. (item
  5164. (org-agenda-format-item
  5165. (and inactive? org-agenda-inactive-leader)
  5166. head level category tags time-stamp org-ts-regexp habit?)))
  5167. (org-add-props item props
  5168. 'priority (if habit?
  5169. (org-habit-get-priority (org-habit-parse-todo))
  5170. (org-get-priority item))
  5171. 'org-marker (org-agenda-new-marker pos)
  5172. 'org-hd-marker (org-agenda-new-marker)
  5173. 'date date
  5174. 'level level
  5175. 'ts-date (if repeat (org-agenda--timestamp-to-absolute repeat)
  5176. current)
  5177. 'todo-state todo-state
  5178. 'warntime warntime
  5179. 'type "timestamp")
  5180. (push item timestamp-items))))
  5181. (when org-agenda-skip-additional-timestamps-same-entry
  5182. (outline-next-heading))))
  5183. (nreverse timestamp-items)))
  5184. (defun org-agenda-get-sexps ()
  5185. "Return the sexp information for agenda display."
  5186. (require 'diary-lib)
  5187. (let* ((props (list 'face 'org-agenda-calendar-sexp
  5188. 'mouse-face 'highlight
  5189. 'help-echo
  5190. (format "mouse-2 or RET jump to org file %s"
  5191. (abbreviate-file-name buffer-file-name))))
  5192. (regexp "^&?%%(")
  5193. marker category extra level ee txt tags entry
  5194. result beg b sexp sexp-entry todo-state warntime inherited-tags)
  5195. (goto-char (point-min))
  5196. (while (re-search-forward regexp nil t)
  5197. (catch :skip
  5198. (org-agenda-skip)
  5199. (setq beg (match-beginning 0))
  5200. (goto-char (1- (match-end 0)))
  5201. (setq b (point))
  5202. (forward-sexp 1)
  5203. (setq sexp (buffer-substring b (point)))
  5204. (setq sexp-entry (if (looking-at "[ \t]*\\(\\S-.*\\)")
  5205. (org-trim (match-string 1))
  5206. ""))
  5207. (setq result (org-diary-sexp-entry sexp sexp-entry date))
  5208. (when result
  5209. (setq marker (org-agenda-new-marker beg)
  5210. level (make-string (org-reduced-level (org-outline-level)) ? )
  5211. category (org-get-category beg)
  5212. inherited-tags
  5213. (or (eq org-agenda-show-inherited-tags 'always)
  5214. (and (listp org-agenda-show-inherited-tags)
  5215. (memq 'agenda org-agenda-show-inherited-tags))
  5216. (and (eq org-agenda-show-inherited-tags t)
  5217. (or (eq org-agenda-use-tag-inheritance t)
  5218. (memq 'agenda org-agenda-use-tag-inheritance))))
  5219. tags (org-get-tags nil (not inherited-tags))
  5220. todo-state (org-get-todo-state)
  5221. warntime (get-text-property (point) 'org-appt-warntime)
  5222. extra nil)
  5223. (dolist (r (if (stringp result)
  5224. (list result)
  5225. result)) ;; we expect a list here
  5226. (when (and org-agenda-diary-sexp-prefix
  5227. (string-match org-agenda-diary-sexp-prefix r))
  5228. (setq extra (match-string 0 r)
  5229. r (replace-match "" nil nil r)))
  5230. (if (string-match "\\S-" r)
  5231. (setq txt r)
  5232. (setq txt "SEXP entry returned empty string"))
  5233. (setq txt (org-agenda-format-item extra txt level category tags 'time))
  5234. (org-add-props txt props 'org-marker marker
  5235. 'date date 'todo-state todo-state
  5236. 'level level 'type "sexp" 'warntime warntime)
  5237. (push txt ee)))))
  5238. (nreverse ee)))
  5239. ;; Calendar sanity: define some functions that are independent of
  5240. ;; `calendar-date-style'.
  5241. (defun org-anniversary (year month day &optional mark)
  5242. "Like `diary-anniversary', but with fixed (ISO) order of arguments."
  5243. (with-no-warnings
  5244. (let ((calendar-date-style 'iso))
  5245. (diary-anniversary year month day mark))))
  5246. (defun org-cyclic (N year month day &optional mark)
  5247. "Like `diary-cyclic', but with fixed (ISO) order of arguments."
  5248. (with-no-warnings
  5249. (let ((calendar-date-style 'iso))
  5250. (diary-cyclic N year month day mark))))
  5251. (defun org-block (Y1 M1 D1 Y2 M2 D2 &optional mark)
  5252. "Like `diary-block', but with fixed (ISO) order of arguments."
  5253. (with-no-warnings
  5254. (let ((calendar-date-style 'iso))
  5255. (diary-block Y1 M1 D1 Y2 M2 D2 mark))))
  5256. (defun org-date (year month day &optional mark)
  5257. "Like `diary-date', but with fixed (ISO) order of arguments."
  5258. (with-no-warnings
  5259. (let ((calendar-date-style 'iso))
  5260. (diary-date year month day mark))))
  5261. ;; Define the `org-class' function
  5262. (defun org-class (y1 m1 d1 y2 m2 d2 dayname &rest skip-weeks)
  5263. "Entry applies if date is between dates on DAYNAME, but skips SKIP-WEEKS.
  5264. DAYNAME is a number between 0 (Sunday) and 6 (Saturday).
  5265. SKIP-WEEKS is any number of ISO weeks in the block period for which the
  5266. item should be skipped. If any of the SKIP-WEEKS arguments is the symbol
  5267. `holidays', then any date that is known by the Emacs calendar to be a
  5268. holiday will also be skipped. If SKIP-WEEKS arguments are holiday strings,
  5269. then those holidays will be skipped."
  5270. (let* ((date1 (calendar-absolute-from-gregorian (list m1 d1 y1)))
  5271. (date2 (calendar-absolute-from-gregorian (list m2 d2 y2)))
  5272. (d (calendar-absolute-from-gregorian date))
  5273. (h (when skip-weeks (calendar-check-holidays date))))
  5274. (and
  5275. (<= date1 d)
  5276. (<= d date2)
  5277. (= (calendar-day-of-week date) dayname)
  5278. (or (not skip-weeks)
  5279. (progn
  5280. (require 'cal-iso)
  5281. (not (member (car (calendar-iso-from-absolute d)) skip-weeks))))
  5282. (not (or (and h (memq 'holidays skip-weeks))
  5283. (delq nil (mapcar (lambda(g) (member g skip-weeks)) h))))
  5284. entry)))
  5285. (defalias 'org-get-closed 'org-agenda-get-progress)
  5286. (defun org-agenda-get-progress ()
  5287. "Return the logged TODO entries for agenda display."
  5288. (let* ((props (list 'mouse-face 'highlight
  5289. 'org-not-done-regexp org-not-done-regexp
  5290. 'org-todo-regexp org-todo-regexp
  5291. 'org-complex-heading-regexp org-complex-heading-regexp
  5292. 'help-echo
  5293. (format "mouse-2 or RET jump to org file %s"
  5294. (abbreviate-file-name buffer-file-name))))
  5295. (items (if (consp org-agenda-show-log-scoped)
  5296. org-agenda-show-log-scoped
  5297. (if (eq org-agenda-show-log-scoped 'clockcheck)
  5298. '(clock)
  5299. org-agenda-log-mode-items)))
  5300. (parts
  5301. (delq nil
  5302. (list
  5303. (if (memq 'closed items) (concat "\\<" org-closed-string))
  5304. (if (memq 'clock items) (concat "\\<" org-clock-string))
  5305. (if (memq 'state items)
  5306. (format "- State \"%s\".*?" org-todo-regexp)))))
  5307. (parts-re (if parts (mapconcat 'identity parts "\\|")
  5308. (error "`org-agenda-log-mode-items' is empty")))
  5309. (regexp (concat
  5310. "\\(" parts-re "\\)"
  5311. " *\\["
  5312. (regexp-quote
  5313. (substring
  5314. (format-time-string
  5315. (car org-time-stamp-formats)
  5316. (apply 'encode-time ; DATE bound by calendar
  5317. (list 0 0 0 (nth 1 date) (car date) (nth 2 date))))
  5318. 1 11))))
  5319. (org-agenda-search-headline-for-time nil)
  5320. marker hdmarker priority category level tags closedp
  5321. statep clockp state ee txt extra timestr rest clocked inherited-tags)
  5322. (goto-char (point-min))
  5323. (while (re-search-forward regexp nil t)
  5324. (catch :skip
  5325. (org-agenda-skip)
  5326. (setq marker (org-agenda-new-marker (match-beginning 0))
  5327. closedp (equal (match-string 1) org-closed-string)
  5328. statep (equal (string-to-char (match-string 1)) ?-)
  5329. clockp (not (or closedp statep))
  5330. state (and statep (match-string 2))
  5331. category (org-get-category (match-beginning 0))
  5332. timestr (buffer-substring (match-beginning 0) (point-at-eol)))
  5333. (when (string-match "\\]" timestr)
  5334. ;; substring should only run to end of time stamp
  5335. (setq rest (substring timestr (match-end 0))
  5336. timestr (substring timestr 0 (match-end 0)))
  5337. (if (and (not closedp) (not statep)
  5338. (string-match "\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)\\].*?\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)"
  5339. rest))
  5340. (progn (setq timestr (concat (substring timestr 0 -1)
  5341. "-" (match-string 1 rest) "]"))
  5342. (setq clocked (match-string 2 rest)))
  5343. (setq clocked "-")))
  5344. (save-excursion
  5345. (setq extra
  5346. (cond
  5347. ((not org-agenda-log-mode-add-notes) nil)
  5348. (statep
  5349. (and (looking-at ".*\\\\\n[ \t]*\\([^-\n \t].*?\\)[ \t]*$")
  5350. (match-string 1)))
  5351. (clockp
  5352. (and (looking-at ".*\n[ \t]*-[ \t]+\\([^-\n \t].*?\\)[ \t]*$")
  5353. (match-string 1)))))
  5354. (if (not (re-search-backward org-outline-regexp-bol nil t))
  5355. (throw :skip nil)
  5356. (goto-char (match-beginning 0))
  5357. (setq hdmarker (org-agenda-new-marker)
  5358. inherited-tags
  5359. (or (eq org-agenda-show-inherited-tags 'always)
  5360. (and (listp org-agenda-show-inherited-tags)
  5361. (memq 'todo org-agenda-show-inherited-tags))
  5362. (and (eq org-agenda-show-inherited-tags t)
  5363. (or (eq org-agenda-use-tag-inheritance t)
  5364. (memq 'todo org-agenda-use-tag-inheritance))))
  5365. tags (org-get-tags nil (not inherited-tags))
  5366. level (make-string (org-reduced-level (org-outline-level)) ? ))
  5367. (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
  5368. (setq txt (match-string 1))
  5369. (when extra
  5370. (if (string-match "\\([ \t]+\\)\\(:[^ \n\t]*?:\\)[ \t]*$" txt)
  5371. (setq txt (concat (substring txt 0 (match-beginning 1))
  5372. " - " extra " " (match-string 2 txt)))
  5373. (setq txt (concat txt " - " extra))))
  5374. (setq txt (org-agenda-format-item
  5375. (cond
  5376. (closedp "Closed: ")
  5377. (statep (concat "State: (" state ")"))
  5378. (t (concat "Clocked: (" clocked ")")))
  5379. txt level category tags timestr)))
  5380. (setq priority 100000)
  5381. (org-add-props txt props
  5382. 'org-marker marker 'org-hd-marker hdmarker 'face 'org-agenda-done
  5383. 'priority priority 'level level
  5384. 'type "closed" 'date date
  5385. 'undone-face 'org-warning 'done-face 'org-agenda-done)
  5386. (push txt ee))
  5387. (goto-char (point-at-eol))))
  5388. (nreverse ee)))
  5389. (defun org-agenda-show-clocking-issues ()
  5390. "Add overlays, showing issues with clocking.
  5391. See also the user option `org-agenda-clock-consistency-checks'."
  5392. (interactive)
  5393. (let* ((pl org-agenda-clock-consistency-checks)
  5394. (re (concat "^[ \t]*"
  5395. org-clock-string
  5396. "[ \t]+"
  5397. "\\(\\[.*?\\]\\)" ; group 1 is first stamp
  5398. "\\(-\\{1,3\\}\\(\\[.*?\\]\\)\\)?")) ; group 3 is second
  5399. (tlstart 0.)
  5400. (tlend 0.)
  5401. (maxtime (org-duration-to-minutes
  5402. (or (plist-get pl :max-duration) "24:00")))
  5403. (mintime (org-duration-to-minutes
  5404. (or (plist-get pl :min-duration) 0)))
  5405. (maxgap (org-duration-to-minutes
  5406. ;; default 30:00 means never complain
  5407. (or (plist-get pl :max-gap) "30:00")))
  5408. (gapok (mapcar #'org-duration-to-minutes
  5409. (plist-get pl :gap-ok-around)))
  5410. (def-face (or (plist-get pl :default-face)
  5411. '((:background "DarkRed") (:foreground "white"))))
  5412. issue face m te ts dt ov)
  5413. (goto-char (point-min))
  5414. (while (re-search-forward " Clocked: +(-\\|\\([0-9]+:[0-9]+\\))" nil t)
  5415. (setq issue nil face def-face)
  5416. (catch 'next
  5417. (setq m (org-get-at-bol 'org-marker)
  5418. te nil ts nil)
  5419. (unless (and m (markerp m))
  5420. (setq issue "No valid clock line") (throw 'next t))
  5421. (org-with-point-at m
  5422. (save-excursion
  5423. (goto-char (point-at-bol))
  5424. (unless (looking-at re)
  5425. (error "No valid Clock line")
  5426. (throw 'next t))
  5427. (unless (match-end 3)
  5428. (setq issue "No end time"
  5429. face (or (plist-get pl :no-end-time-face) face))
  5430. (throw 'next t))
  5431. (setq ts (match-string 1)
  5432. te (match-string 3)
  5433. ts (float-time
  5434. (apply #'encode-time (org-parse-time-string ts)))
  5435. te (float-time
  5436. (apply #'encode-time (org-parse-time-string te)))
  5437. dt (- te ts))))
  5438. (cond
  5439. ((> dt (* 60 maxtime))
  5440. ;; a very long clocking chunk
  5441. (setq issue (format "Clocking interval is very long: %s"
  5442. (org-duration-from-minutes (floor (/ dt 60.))))
  5443. face (or (plist-get pl :long-face) face)))
  5444. ((< dt (* 60 mintime))
  5445. ;; a very short clocking chunk
  5446. (setq issue (format "Clocking interval is very short: %s"
  5447. (org-duration-from-minutes (floor (/ dt 60.))))
  5448. face (or (plist-get pl :short-face) face)))
  5449. ((and (> tlend 0) (< ts tlend))
  5450. ;; Two clock entries are overlapping
  5451. (setq issue (format "Clocking overlap: %d minutes"
  5452. (/ (- tlend ts) 60))
  5453. face (or (plist-get pl :overlap-face) face)))
  5454. ((and (> tlend 0) (> ts (+ tlend (* 60 maxgap))))
  5455. ;; There is a gap, lets see if we need to report it
  5456. (unless (org-agenda-check-clock-gap tlend ts gapok)
  5457. (setq issue (format "Clocking gap: %d minutes"
  5458. (/ (- ts tlend) 60))
  5459. face (or (plist-get pl :gap-face) face))))
  5460. (t nil)))
  5461. (setq tlend (or te tlend) tlstart (or ts tlstart))
  5462. (when issue
  5463. ;; OK, there was some issue, add an overlay to show the issue
  5464. (setq ov (make-overlay (point-at-bol) (point-at-eol)))
  5465. (overlay-put ov 'before-string
  5466. (concat
  5467. (org-add-props
  5468. (format "%-43s" (concat " " issue))
  5469. nil
  5470. 'face face)
  5471. "\n"))
  5472. (overlay-put ov 'evaporate t)))))
  5473. (defun org-agenda-check-clock-gap (t1 t2 ok-list)
  5474. "Check if gap T1 -> T2 contains one of the OK-LIST time-of-day values."
  5475. (catch 'exit
  5476. (unless ok-list
  5477. ;; there are no OK times for gaps...
  5478. (throw 'exit nil))
  5479. (if (> (- (/ t2 36000) (/ t1 36000)) 24)
  5480. ;; This is more than 24 hours, so it is OK.
  5481. ;; because we have at least one OK time, that must be in the
  5482. ;; 24 hour interval.
  5483. (throw 'exit t))
  5484. ;; We have a shorter gap.
  5485. ;; Now we have to get the minute of the day when these times are
  5486. (let* ((t1dec (decode-time (seconds-to-time t1)))
  5487. (t2dec (decode-time (seconds-to-time t2)))
  5488. ;; compute the minute on the day
  5489. (min1 (+ (nth 1 t1dec) (* 60 (nth 2 t1dec))))
  5490. (min2 (+ (nth 1 t2dec) (* 60 (nth 2 t2dec)))))
  5491. (when (< min2 min1)
  5492. ;; if min2 is smaller than min1, this means it is on the next day.
  5493. ;; Wrap it to after midnight.
  5494. (setq min2 (+ min2 1440)))
  5495. ;; Now check if any of the OK times is in the gap
  5496. (mapc (lambda (x)
  5497. ;; Wrap the time to after midnight if necessary
  5498. (if (< x min1) (setq x (+ x 1440)))
  5499. ;; Check if in interval
  5500. (and (<= min1 x) (>= min2 x) (throw 'exit t)))
  5501. ok-list)
  5502. ;; Nope, this gap is not OK
  5503. nil)))
  5504. (defun org-agenda-get-deadlines (&optional with-hour)
  5505. "Return the deadline information for agenda display.
  5506. When WITH-HOUR is non-nil, only return deadlines with an hour
  5507. specification like [h]h:mm."
  5508. (let* ((props (list 'mouse-face 'highlight
  5509. 'org-not-done-regexp org-not-done-regexp
  5510. 'org-todo-regexp org-todo-regexp
  5511. 'org-complex-heading-regexp org-complex-heading-regexp
  5512. 'help-echo
  5513. (format "mouse-2 or RET jump to org file %s"
  5514. (abbreviate-file-name buffer-file-name))))
  5515. (regexp (if with-hour
  5516. org-deadline-time-hour-regexp
  5517. org-deadline-time-regexp))
  5518. (today (org-today))
  5519. (today? (org-agenda-today-p date)) ; DATE bound by calendar.
  5520. (current (calendar-absolute-from-gregorian date))
  5521. deadline-items)
  5522. (goto-char (point-min))
  5523. (while (re-search-forward regexp nil t)
  5524. (catch :skip
  5525. (unless (save-match-data (org-at-planning-p)) (throw :skip nil))
  5526. (org-agenda-skip)
  5527. (let* ((s (match-string 1))
  5528. (pos (1- (match-beginning 1)))
  5529. (todo-state (save-match-data (org-get-todo-state)))
  5530. (done? (member todo-state org-done-keywords))
  5531. (sexp? (string-prefix-p "%%" s))
  5532. ;; DEADLINE is the deadline date for the entry. It is
  5533. ;; either the base date or the last repeat, according
  5534. ;; to `org-agenda-prefer-last-repeat'.
  5535. (deadline
  5536. (cond
  5537. (sexp? (org-agenda--timestamp-to-absolute s current))
  5538. ((or (eq org-agenda-prefer-last-repeat t)
  5539. (member todo-state org-agenda-prefer-last-repeat))
  5540. (org-agenda--timestamp-to-absolute
  5541. s today 'past (current-buffer) pos))
  5542. (t (org-agenda--timestamp-to-absolute s))))
  5543. ;; REPEAT is the future repeat closest from CURRENT,
  5544. ;; according to `org-agenda-show-future-repeats'. If
  5545. ;; the latter is nil, or if the time stamp has no
  5546. ;; repeat part, default to DEADLINE.
  5547. (repeat
  5548. (cond
  5549. (sexp? deadline)
  5550. ((<= current today) deadline)
  5551. ((not org-agenda-show-future-repeats) deadline)
  5552. (t
  5553. (let ((base (if (eq org-agenda-show-future-repeats 'next)
  5554. (1+ today)
  5555. current)))
  5556. (org-agenda--timestamp-to-absolute
  5557. s base 'future (current-buffer) pos)))))
  5558. (diff (- deadline current))
  5559. (suppress-prewarning
  5560. (let ((scheduled
  5561. (and org-agenda-skip-deadline-prewarning-if-scheduled
  5562. (org-entry-get nil "SCHEDULED"))))
  5563. (cond
  5564. ((not scheduled) nil)
  5565. ;; The current item has a scheduled date, so
  5566. ;; evaluate its prewarning lead time.
  5567. ((integerp org-agenda-skip-deadline-prewarning-if-scheduled)
  5568. ;; Use global prewarning-restart lead time.
  5569. org-agenda-skip-deadline-prewarning-if-scheduled)
  5570. ((eq org-agenda-skip-deadline-prewarning-if-scheduled
  5571. 'pre-scheduled)
  5572. ;; Set pre-warning to no earlier than SCHEDULED.
  5573. (min (- deadline
  5574. (org-agenda--timestamp-to-absolute scheduled))
  5575. org-deadline-warning-days))
  5576. ;; Set pre-warning to deadline.
  5577. (t 0))))
  5578. (wdays (or suppress-prewarning (org-get-wdays s))))
  5579. (cond
  5580. ;; Only display deadlines at their base date, at future
  5581. ;; repeat occurrences or in today agenda.
  5582. ((= current deadline) nil)
  5583. ((= current repeat) nil)
  5584. ((not today?) (throw :skip nil))
  5585. ;; Upcoming deadline: display within warning period WDAYS.
  5586. ((> deadline current) (when (> diff wdays) (throw :skip nil)))
  5587. ;; Overdue deadline: warn about it for
  5588. ;; `org-deadline-past-days' duration.
  5589. (t (when (< org-deadline-past-days (- diff)) (throw :skip nil))))
  5590. ;; Possibly skip done tasks.
  5591. (when (and done?
  5592. (or org-agenda-skip-deadline-if-done
  5593. (/= deadline current)))
  5594. (throw :skip nil))
  5595. (save-excursion
  5596. (re-search-backward "^\\*+[ \t]+" nil t)
  5597. (goto-char (match-end 0))
  5598. (let* ((category (org-get-category))
  5599. (level (make-string (org-reduced-level (org-outline-level))
  5600. ?\s))
  5601. (head (buffer-substring (point) (line-end-position)))
  5602. (inherited-tags
  5603. (or (eq org-agenda-show-inherited-tags 'always)
  5604. (and (listp org-agenda-show-inherited-tags)
  5605. (memq 'agenda org-agenda-show-inherited-tags))
  5606. (and (eq org-agenda-show-inherited-tags t)
  5607. (or (eq org-agenda-use-tag-inheritance t)
  5608. (memq 'agenda
  5609. org-agenda-use-tag-inheritance)))))
  5610. (tags (org-get-tags nil (not inherited-tags)))
  5611. (time
  5612. (cond
  5613. ;; No time of day designation if it is only
  5614. ;; a reminder.
  5615. ((and (/= current deadline) (/= current repeat)) nil)
  5616. ((string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
  5617. (concat (substring s (match-beginning 1)) " "))
  5618. (t 'time)))
  5619. (item
  5620. (org-agenda-format-item
  5621. ;; Insert appropriate suffixes before deadlines.
  5622. ;; Those only apply to today agenda.
  5623. (pcase-let ((`(,now ,future ,past)
  5624. org-agenda-deadline-leaders))
  5625. (cond
  5626. ((and today? (< deadline today)) (format past (- diff)))
  5627. ((and today? (> deadline today)) (format future diff))
  5628. (t now)))
  5629. head level category tags time))
  5630. (face (org-agenda-deadline-face
  5631. (- 1 (/ (float diff) (max wdays 1)))))
  5632. (upcoming? (and today? (> deadline today)))
  5633. (warntime (get-text-property (point) 'org-appt-warntime)))
  5634. (org-add-props item props
  5635. 'org-marker (org-agenda-new-marker pos)
  5636. 'org-hd-marker (org-agenda-new-marker (line-beginning-position))
  5637. 'warntime warntime
  5638. 'level level
  5639. 'ts-date deadline
  5640. 'priority
  5641. ;; Adjust priority to today reminders about deadlines.
  5642. ;; Overdue deadlines get the highest priority
  5643. ;; increase, then imminent deadlines and eventually
  5644. ;; more distant deadlines.
  5645. (let ((adjust (if today? (- diff) 0)))
  5646. (+ adjust (org-get-priority item)))
  5647. 'todo-state todo-state
  5648. 'type (if upcoming? "upcoming-deadline" "deadline")
  5649. 'date (if upcoming? date deadline)
  5650. 'face (if done? 'org-agenda-done face)
  5651. 'undone-face face
  5652. 'done-face 'org-agenda-done)
  5653. (push item deadline-items))))))
  5654. (nreverse deadline-items)))
  5655. (defun org-agenda-deadline-face (fraction)
  5656. "Return the face to displaying a deadline item.
  5657. FRACTION is what fraction of the head-warning time has passed."
  5658. (assoc-default fraction org-agenda-deadline-faces #'<=))
  5659. (defun org-agenda-get-scheduled (&optional deadlines with-hour)
  5660. "Return the scheduled information for agenda display.
  5661. Optional argument DEADLINES is a list of deadline items to be
  5662. displayed in agenda view. When WITH-HOUR is non-nil, only return
  5663. scheduled items with an hour specification like [h]h:mm."
  5664. (let* ((props (list 'org-not-done-regexp org-not-done-regexp
  5665. 'org-todo-regexp org-todo-regexp
  5666. 'org-complex-heading-regexp org-complex-heading-regexp
  5667. 'done-face 'org-agenda-done
  5668. 'mouse-face 'highlight
  5669. 'help-echo
  5670. (format "mouse-2 or RET jump to Org file %s"
  5671. (abbreviate-file-name buffer-file-name))))
  5672. (regexp (if with-hour
  5673. org-scheduled-time-hour-regexp
  5674. org-scheduled-time-regexp))
  5675. (today (org-today))
  5676. (todayp (org-agenda-today-p date)) ; DATE bound by calendar.
  5677. (current (calendar-absolute-from-gregorian date))
  5678. (deadline-pos
  5679. (mapcar (lambda (d)
  5680. (let ((m (get-text-property 0 'org-hd-marker d)))
  5681. (and m (marker-position m))))
  5682. deadlines))
  5683. scheduled-items)
  5684. (goto-char (point-min))
  5685. (while (re-search-forward regexp nil t)
  5686. (catch :skip
  5687. (unless (save-match-data (org-at-planning-p)) (throw :skip nil))
  5688. (org-agenda-skip)
  5689. (let* ((s (match-string 1))
  5690. (pos (1- (match-beginning 1)))
  5691. (todo-state (save-match-data (org-get-todo-state)))
  5692. (donep (member todo-state org-done-keywords))
  5693. (sexp? (string-prefix-p "%%" s))
  5694. ;; SCHEDULE is the scheduled date for the entry. It is
  5695. ;; either the bare date or the last repeat, according
  5696. ;; to `org-agenda-prefer-last-repeat'.
  5697. (schedule
  5698. (cond
  5699. (sexp? (org-agenda--timestamp-to-absolute s current))
  5700. ((or (eq org-agenda-prefer-last-repeat t)
  5701. (member todo-state org-agenda-prefer-last-repeat))
  5702. (org-agenda--timestamp-to-absolute
  5703. s today 'past (current-buffer) pos))
  5704. (t (org-agenda--timestamp-to-absolute s))))
  5705. ;; REPEAT is the future repeat closest from CURRENT,
  5706. ;; according to `org-agenda-show-future-repeats'. If
  5707. ;; the latter is nil, or if the time stamp has no
  5708. ;; repeat part, default to SCHEDULE.
  5709. (repeat
  5710. (cond
  5711. (sexp? schedule)
  5712. ((<= current today) schedule)
  5713. ((not org-agenda-show-future-repeats) schedule)
  5714. (t
  5715. (let ((base (if (eq org-agenda-show-future-repeats 'next)
  5716. (1+ today)
  5717. current)))
  5718. (org-agenda--timestamp-to-absolute
  5719. s base 'future (current-buffer) pos)))))
  5720. (diff (- current schedule))
  5721. (warntime (get-text-property (point) 'org-appt-warntime))
  5722. (pastschedp (< schedule today))
  5723. (habitp (and (fboundp 'org-is-habit-p) (org-is-habit-p)))
  5724. (suppress-delay
  5725. (let ((deadline (and org-agenda-skip-scheduled-delay-if-deadline
  5726. (org-entry-get nil "DEADLINE"))))
  5727. (cond
  5728. ((not deadline) nil)
  5729. ;; The current item has a deadline date, so
  5730. ;; evaluate its delay time.
  5731. ((integerp org-agenda-skip-scheduled-delay-if-deadline)
  5732. ;; Use global delay time.
  5733. (- org-agenda-skip-scheduled-delay-if-deadline))
  5734. ((eq org-agenda-skip-scheduled-delay-if-deadline
  5735. 'post-deadline)
  5736. ;; Set delay to no later than DEADLINE.
  5737. (min (- schedule
  5738. (org-agenda--timestamp-to-absolute deadline))
  5739. org-scheduled-delay-days))
  5740. (t 0))))
  5741. (ddays
  5742. (cond
  5743. ;; Nullify delay when a repeater triggered already
  5744. ;; and the delay is of the form --Xd.
  5745. ((and (string-match-p "--[0-9]+[hdwmy]" s)
  5746. (> schedule (org-agenda--timestamp-to-absolute s)))
  5747. 0)
  5748. (suppress-delay
  5749. (let ((org-scheduled-delay-days suppress-delay))
  5750. (org-get-wdays s t t)))
  5751. (t (org-get-wdays s t)))))
  5752. ;; Display scheduled items at base date (SCHEDULE), today if
  5753. ;; scheduled before the current date, and at any repeat past
  5754. ;; today. However, skip delayed items and items that have
  5755. ;; been displayed for more than `org-scheduled-past-days'.
  5756. (unless (and todayp
  5757. habitp
  5758. (bound-and-true-p org-habit-show-all-today))
  5759. (when (or (and (> ddays 0) (< diff ddays))
  5760. (> diff org-scheduled-past-days)
  5761. (> schedule current)
  5762. (and (/= current schedule)
  5763. (/= current today)
  5764. (/= current repeat)))
  5765. (throw :skip nil)))
  5766. ;; Possibly skip done tasks.
  5767. (when (and donep
  5768. (or org-agenda-skip-scheduled-if-done
  5769. (/= schedule current)))
  5770. (throw :skip nil))
  5771. ;; Skip entry if it already appears as a deadline, per
  5772. ;; `org-agenda-skip-scheduled-if-deadline-is-shown'. This
  5773. ;; doesn't apply to habits.
  5774. (when (pcase org-agenda-skip-scheduled-if-deadline-is-shown
  5775. ((guard
  5776. (or (not (memq (line-beginning-position 0) deadline-pos))
  5777. habitp))
  5778. nil)
  5779. (`repeated-after-deadline
  5780. (let ((deadline (time-to-days
  5781. (org-get-deadline-time (point)))))
  5782. (and (<= schedule deadline) (> current deadline))))
  5783. (`not-today pastschedp)
  5784. (`t t)
  5785. (_ nil))
  5786. (throw :skip nil))
  5787. ;; Skip habits if `org-habit-show-habits' is nil, or if we
  5788. ;; only show them for today. Also skip done habits.
  5789. (when (and habitp
  5790. (or donep
  5791. (not (bound-and-true-p org-habit-show-habits))
  5792. (and (not todayp)
  5793. (bound-and-true-p
  5794. org-habit-show-habits-only-for-today))))
  5795. (throw :skip nil))
  5796. (save-excursion
  5797. (re-search-backward "^\\*+[ \t]+" nil t)
  5798. (goto-char (match-end 0))
  5799. (let* ((category (org-get-category))
  5800. (inherited-tags
  5801. (or (eq org-agenda-show-inherited-tags 'always)
  5802. (and (listp org-agenda-show-inherited-tags)
  5803. (memq 'agenda org-agenda-show-inherited-tags))
  5804. (and (eq org-agenda-show-inherited-tags t)
  5805. (or (eq org-agenda-use-tag-inheritance t)
  5806. (memq 'agenda
  5807. org-agenda-use-tag-inheritance)))))
  5808. (tags (org-get-tags nil (not inherited-tags)))
  5809. (level (make-string (org-reduced-level (org-outline-level))
  5810. ?\s))
  5811. (head (buffer-substring (point) (line-end-position)))
  5812. (time
  5813. (cond
  5814. ;; No time of day designation if it is only
  5815. ;; a reminder.
  5816. ((and (/= current schedule) (/= current repeat)) nil)
  5817. ((string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
  5818. (concat (substring s (match-beginning 1)) " "))
  5819. (t 'time)))
  5820. (item
  5821. (org-agenda-format-item
  5822. (pcase-let ((`(,first ,past) org-agenda-scheduled-leaders))
  5823. ;; Show a reminder of a past scheduled today.
  5824. (if (and todayp pastschedp)
  5825. (format past diff)
  5826. first))
  5827. head level category tags time nil habitp))
  5828. (face (cond ((and (not habitp) pastschedp)
  5829. 'org-scheduled-previously)
  5830. (todayp 'org-scheduled-today)
  5831. (t 'org-scheduled)))
  5832. (habitp (and habitp (org-habit-parse-todo))))
  5833. (org-add-props item props
  5834. 'undone-face face
  5835. 'face (if donep 'org-agenda-done face)
  5836. 'org-marker (org-agenda-new-marker pos)
  5837. 'org-hd-marker (org-agenda-new-marker (line-beginning-position))
  5838. 'type (if pastschedp "past-scheduled" "scheduled")
  5839. 'date (if pastschedp schedule date)
  5840. 'ts-date schedule
  5841. 'warntime warntime
  5842. 'level level
  5843. 'priority (if habitp (org-habit-get-priority habitp)
  5844. (+ 99 diff (org-get-priority item)))
  5845. 'org-habit-p habitp
  5846. 'todo-state todo-state)
  5847. (push item scheduled-items))))))
  5848. (nreverse scheduled-items)))
  5849. (defun org-agenda-get-blocks ()
  5850. "Return the date-range information for agenda display."
  5851. (let* ((props (list 'face nil
  5852. 'org-not-done-regexp org-not-done-regexp
  5853. 'org-todo-regexp org-todo-regexp
  5854. 'org-complex-heading-regexp org-complex-heading-regexp
  5855. 'mouse-face 'highlight
  5856. 'help-echo
  5857. (format "mouse-2 or RET jump to org file %s"
  5858. (abbreviate-file-name buffer-file-name))))
  5859. (regexp org-tr-regexp)
  5860. (d0 (calendar-absolute-from-gregorian date))
  5861. marker hdmarker ee txt d1 d2 s1 s2 category
  5862. level todo-state tags pos head donep inherited-tags)
  5863. (goto-char (point-min))
  5864. (while (re-search-forward regexp nil t)
  5865. (catch :skip
  5866. (org-agenda-skip)
  5867. (setq pos (point))
  5868. (let ((start-time (match-string 1))
  5869. (end-time (match-string 2)))
  5870. (setq s1 (match-string 1)
  5871. s2 (match-string 2)
  5872. d1 (time-to-days
  5873. (condition-case err
  5874. (org-time-string-to-time s1)
  5875. (error
  5876. (error
  5877. "Bad timestamp %S at %d in buffer %S\nError was: %s"
  5878. s1
  5879. pos
  5880. (current-buffer)
  5881. (error-message-string err)))))
  5882. d2 (time-to-days
  5883. (condition-case err
  5884. (org-time-string-to-time s2)
  5885. (error
  5886. (error
  5887. "Bad timestamp %S at %d in buffer %S\nError was: %s"
  5888. s2
  5889. pos
  5890. (current-buffer)
  5891. (error-message-string err))))))
  5892. (if (and (> (- d0 d1) -1) (> (- d2 d0) -1))
  5893. ;; Only allow days between the limits, because the normal
  5894. ;; date stamps will catch the limits.
  5895. (save-excursion
  5896. (setq todo-state (org-get-todo-state))
  5897. (setq donep (member todo-state org-done-keywords))
  5898. (if (and donep org-agenda-skip-timestamp-if-done)
  5899. (throw :skip t))
  5900. (setq marker (org-agenda-new-marker (point))
  5901. category (org-get-category))
  5902. (if (not (re-search-backward org-outline-regexp-bol nil t))
  5903. (throw :skip nil)
  5904. (goto-char (match-beginning 0))
  5905. (setq hdmarker (org-agenda-new-marker (point))
  5906. inherited-tags
  5907. (or (eq org-agenda-show-inherited-tags 'always)
  5908. (and (listp org-agenda-show-inherited-tags)
  5909. (memq 'agenda org-agenda-show-inherited-tags))
  5910. (and (eq org-agenda-show-inherited-tags t)
  5911. (or (eq org-agenda-use-tag-inheritance t)
  5912. (memq 'agenda org-agenda-use-tag-inheritance))))
  5913. tags (org-get-tags nil (not inherited-tags)))
  5914. (setq level (make-string (org-reduced-level (org-outline-level)) ? ))
  5915. (looking-at "\\*+[ \t]+\\(.*\\)")
  5916. (setq head (match-string 1))
  5917. (let ((remove-re
  5918. (if org-agenda-remove-timeranges-from-blocks
  5919. (concat
  5920. "<" (regexp-quote s1) ".*?>"
  5921. "--"
  5922. "<" (regexp-quote s2) ".*?>")
  5923. nil)))
  5924. (setq txt (org-agenda-format-item
  5925. (format
  5926. (nth (if (= d1 d2) 0 1)
  5927. org-agenda-timerange-leaders)
  5928. (1+ (- d0 d1)) (1+ (- d2 d1)))
  5929. head level category tags
  5930. (cond ((and (= d1 d0) (= d2 d0))
  5931. (concat "<" start-time ">--<" end-time ">"))
  5932. ((= d1 d0)
  5933. (concat "<" start-time ">"))
  5934. ((= d2 d0)
  5935. (concat "<" end-time ">")))
  5936. remove-re))))
  5937. (org-add-props txt props
  5938. 'org-marker marker 'org-hd-marker hdmarker
  5939. 'type "block" 'date date
  5940. 'level level
  5941. 'todo-state todo-state
  5942. 'priority (org-get-priority txt))
  5943. (push txt ee))))
  5944. (goto-char pos)))
  5945. ;; Sort the entries by expiration date.
  5946. (nreverse ee)))
  5947. ;;; Agenda presentation and sorting
  5948. (defvar org-prefix-has-time nil
  5949. "A flag, set by `org-compile-prefix-format'.
  5950. The flag is set if the currently compiled format contains a `%t'.")
  5951. (defvar org-prefix-has-tag nil
  5952. "A flag, set by `org-compile-prefix-format'.
  5953. The flag is set if the currently compiled format contains a `%T'.")
  5954. (defvar org-prefix-has-effort nil
  5955. "A flag, set by `org-compile-prefix-format'.
  5956. The flag is set if the currently compiled format contains a `%e'.")
  5957. (defvar org-prefix-has-breadcrumbs nil
  5958. "A flag, set by `org-compile-prefix-format'.
  5959. The flag is set if the currently compiled format contains a `%b'.")
  5960. (defvar org-prefix-category-length nil
  5961. "Used by `org-compile-prefix-format' to remember the category field width.")
  5962. (defvar org-prefix-category-max-length nil
  5963. "Used by `org-compile-prefix-format' to remember the category field width.")
  5964. (defun org-agenda-get-category-icon (category)
  5965. "Return an image for CATEGORY according to `org-agenda-category-icon-alist'."
  5966. (cl-dolist (entry org-agenda-category-icon-alist)
  5967. (when (string-match-p (car entry) category)
  5968. (if (listp (cadr entry))
  5969. (cl-return (cadr entry))
  5970. (cl-return (apply #'create-image (cdr entry)))))))
  5971. (defun org-agenda-format-item (extra txt &optional level category tags dotime
  5972. remove-re habitp)
  5973. "Format TXT to be inserted into the agenda buffer.
  5974. In particular, add the prefix and corresponding text properties.
  5975. EXTRA must be a string to replace the `%s' specifier in the prefix format.
  5976. LEVEL may be a string to replace the `%l' specifier.
  5977. CATEGORY (a string, a symbol or nil) may be used to overrule the default
  5978. category taken from local variable or file name. It will replace the `%c'
  5979. specifier in the format.
  5980. DOTIME, when non-nil, indicates that a time-of-day should be extracted from
  5981. TXT for sorting of this entry, and for the `%t' specifier in the format.
  5982. When DOTIME is a string, this string is searched for a time before TXT is.
  5983. TAGS can be the tags of the headline.
  5984. Any match of REMOVE-RE will be removed from TXT."
  5985. ;; We keep the org-prefix-* variable values along with a compiled
  5986. ;; formatter, so that multiple agendas existing at the same time do
  5987. ;; not step on each other toes.
  5988. ;;
  5989. ;; It was inconvenient to make these variables buffer local in
  5990. ;; Agenda buffers, because this function expects to be called with
  5991. ;; the buffer where item comes from being current, and not agenda
  5992. ;; buffer
  5993. (let* ((bindings (car org-prefix-format-compiled))
  5994. (formatter (cadr org-prefix-format-compiled)))
  5995. (cl-loop for (var value) in bindings
  5996. do (set var value))
  5997. (save-match-data
  5998. ;; Diary entries sometimes have extra whitespace at the beginning
  5999. (setq txt (org-trim txt))
  6000. ;; Fix the tags part in txt
  6001. (setq txt (org-agenda-fix-displayed-tags
  6002. txt tags
  6003. org-agenda-show-inherited-tags
  6004. org-agenda-hide-tags-regexp))
  6005. (let* ((category (or category
  6006. (if buffer-file-name
  6007. (file-name-sans-extension
  6008. (file-name-nondirectory buffer-file-name))
  6009. "")))
  6010. (category-icon (org-agenda-get-category-icon category))
  6011. (category-icon (if category-icon
  6012. (propertize " " 'display category-icon)
  6013. ""))
  6014. (effort (and (not (string= txt ""))
  6015. (get-text-property 1 'effort txt)))
  6016. ;; time, tag, effort are needed for the eval of the prefix format
  6017. (tag (if tags (nth (1- (length tags)) tags) ""))
  6018. (time-grid-trailing-characters (nth 2 org-agenda-time-grid))
  6019. time
  6020. (ts (if dotime (concat
  6021. (if (stringp dotime) dotime "")
  6022. (and org-agenda-search-headline-for-time txt))))
  6023. (time-of-day (and dotime (org-get-time-of-day ts)))
  6024. stamp plain s0 s1 s2 rtn srp l
  6025. duration breadcrumbs)
  6026. (and (derived-mode-p 'org-mode) buffer-file-name
  6027. (add-to-list 'org-agenda-contributing-files buffer-file-name))
  6028. (when (and dotime time-of-day)
  6029. ;; Extract starting and ending time and move them to prefix
  6030. (when (or (setq stamp (string-match org-stamp-time-of-day-regexp ts))
  6031. (setq plain (string-match org-plain-time-of-day-regexp ts)))
  6032. (setq s0 (match-string 0 ts)
  6033. srp (and stamp (match-end 3))
  6034. s1 (match-string (if plain 1 2) ts)
  6035. s2 (match-string (if plain 8 (if srp 4 6)) ts))
  6036. ;; If the times are in TXT (not in DOTIMES), and the prefix will list
  6037. ;; them, we might want to remove them there to avoid duplication.
  6038. ;; The user can turn this off with a variable.
  6039. (if (and org-prefix-has-time
  6040. org-agenda-remove-times-when-in-prefix (or stamp plain)
  6041. (string-match (concat (regexp-quote s0) " *") txt)
  6042. (not (equal ?\] (string-to-char (substring txt (match-end 0)))))
  6043. (if (eq org-agenda-remove-times-when-in-prefix 'beg)
  6044. (= (match-beginning 0) 0)
  6045. t))
  6046. (setq txt (replace-match "" nil nil txt))))
  6047. ;; Normalize the time(s) to 24 hour
  6048. (if s1 (setq s1 (org-get-time-of-day s1 'string t)))
  6049. (if s2 (setq s2 (org-get-time-of-day s2 'string t)))
  6050. ;; Try to set s2 if s1 and
  6051. ;; `org-agenda-default-appointment-duration' are set
  6052. (when (and s1 (not s2) org-agenda-default-appointment-duration)
  6053. (setq s2
  6054. (org-duration-from-minutes
  6055. (+ (org-duration-to-minutes s1 t)
  6056. org-agenda-default-appointment-duration)
  6057. nil t)))
  6058. ;; Compute the duration
  6059. (when s2
  6060. (setq duration (- (org-duration-to-minutes s2)
  6061. (org-duration-to-minutes s1)))))
  6062. (when (string-match org-tag-group-re txt)
  6063. ;; Tags are in the string
  6064. (if (or (eq org-agenda-remove-tags t)
  6065. (and org-agenda-remove-tags
  6066. org-prefix-has-tag))
  6067. (setq txt (replace-match "" t t txt))
  6068. (setq txt (replace-match
  6069. (concat (make-string (max (- 50 (length txt)) 1) ?\ )
  6070. (match-string 1 txt))
  6071. t t txt))))
  6072. (when remove-re
  6073. (while (string-match remove-re txt)
  6074. (setq txt (replace-match "" t t txt))))
  6075. ;; Set org-heading property on `txt' to mark the start of the
  6076. ;; heading.
  6077. (add-text-properties 0 (length txt) '(org-heading t) txt)
  6078. ;; Prepare the variables needed in the eval of the compiled format
  6079. (if org-prefix-has-breadcrumbs
  6080. (setq breadcrumbs (org-with-point-at (org-get-at-bol 'org-marker)
  6081. (let ((s (org-display-outline-path nil nil "->" t)))
  6082. (if (eq "" s) "" (concat s "->"))))))
  6083. (setq time (cond (s2 (concat
  6084. (org-agenda-time-of-day-to-ampm-maybe s1)
  6085. "-" (org-agenda-time-of-day-to-ampm-maybe s2)
  6086. (if org-agenda-timegrid-use-ampm " ")))
  6087. (s1 (concat
  6088. (org-agenda-time-of-day-to-ampm-maybe s1)
  6089. (if org-agenda-timegrid-use-ampm
  6090. (concat time-grid-trailing-characters " ")
  6091. time-grid-trailing-characters)))
  6092. (t ""))
  6093. extra (or (and (not habitp) extra) "")
  6094. category (if (symbolp category) (symbol-name category) category)
  6095. level (or level ""))
  6096. (if (string-match org-bracket-link-regexp category)
  6097. (progn
  6098. (setq l (if (match-end 3)
  6099. (- (match-end 3) (match-beginning 3))
  6100. (- (match-end 1) (match-beginning 1))))
  6101. (when (< l (or org-prefix-category-length 0))
  6102. (setq category (copy-sequence category))
  6103. (org-add-props category nil
  6104. 'extra-space (make-string
  6105. (- org-prefix-category-length l 1) ?\ ))))
  6106. (if (and org-prefix-category-max-length
  6107. (>= (length category) org-prefix-category-max-length))
  6108. (setq category (substring category 0 (1- org-prefix-category-max-length)))))
  6109. ;; Evaluate the compiled format
  6110. (setq rtn (concat (eval formatter) txt))
  6111. ;; And finally add the text properties
  6112. (remove-text-properties 0 (length rtn) '(line-prefix t wrap-prefix t) rtn)
  6113. (org-add-props rtn nil
  6114. 'org-category category
  6115. 'tags (mapcar 'org-downcase-keep-props tags)
  6116. 'org-highest-priority org-highest-priority
  6117. 'org-lowest-priority org-lowest-priority
  6118. 'time-of-day time-of-day
  6119. 'duration duration
  6120. 'breadcrumbs breadcrumbs
  6121. 'txt txt
  6122. 'level level
  6123. 'time time
  6124. 'extra extra
  6125. 'format org-prefix-format-compiled
  6126. 'dotime dotime)))))
  6127. (defun org-agenda-fix-displayed-tags (txt tags add-inherited hide-re)
  6128. "Remove tags string from TXT, and add a modified list of tags.
  6129. The modified list may contain inherited tags, and tags matched by
  6130. `org-agenda-hide-tags-regexp' will be removed."
  6131. (when (or add-inherited hide-re)
  6132. (if (string-match org-tag-group-re txt)
  6133. (setq txt (substring txt 0 (match-beginning 0))))
  6134. (setq tags
  6135. (delq nil
  6136. (mapcar (lambda (tg)
  6137. (if (or (and hide-re (string-match hide-re tg))
  6138. (and (not add-inherited)
  6139. (get-text-property 0 'inherited tg)))
  6140. nil
  6141. tg))
  6142. tags)))
  6143. (when tags
  6144. (let ((have-i (get-text-property 0 'inherited (car tags)))
  6145. i)
  6146. (setq txt (concat txt " :"
  6147. (mapconcat
  6148. (lambda (x)
  6149. (setq i (get-text-property 0 'inherited x))
  6150. (if (and have-i (not i))
  6151. (progn
  6152. (setq have-i nil)
  6153. (concat ":" x))
  6154. x))
  6155. tags ":")
  6156. (if have-i "::" ":"))))))
  6157. txt)
  6158. (defun org-downcase-keep-props (s)
  6159. (let ((props (text-properties-at 0 s)))
  6160. (setq s (downcase s))
  6161. (add-text-properties 0 (length s) props s)
  6162. s))
  6163. (defvar org-agenda-sorting-strategy) ;; because the def is in a let form
  6164. (defun org-agenda-add-time-grid-maybe (list ndays todayp)
  6165. "Add a time-grid for agenda items which need it.
  6166. LIST is the list of agenda items formatted by `org-agenda-list'.
  6167. NDAYS is the span of the current agenda view.
  6168. TODAYP is t when the current agenda view is on today."
  6169. (catch 'exit
  6170. (cond ((not org-agenda-use-time-grid) (throw 'exit list))
  6171. ((and todayp (member 'today (car org-agenda-time-grid))))
  6172. ((and (= ndays 1) (member 'daily (car org-agenda-time-grid))))
  6173. ((member 'weekly (car org-agenda-time-grid)))
  6174. (t (throw 'exit list)))
  6175. (let* ((have (delq nil (mapcar
  6176. (lambda (x) (get-text-property 1 'time-of-day x))
  6177. list)))
  6178. (string (nth 3 org-agenda-time-grid))
  6179. (gridtimes (nth 1 org-agenda-time-grid))
  6180. (req (car org-agenda-time-grid))
  6181. (remove (member 'remove-match req))
  6182. new time)
  6183. (if (and (member 'require-timed req) (not have))
  6184. ;; don't show empty grid
  6185. (throw 'exit list))
  6186. (while (setq time (pop gridtimes))
  6187. (unless (and remove (member time have))
  6188. (setq time (replace-regexp-in-string " " "0" (format "%04s" time)))
  6189. (push (org-agenda-format-item
  6190. nil string nil "" nil
  6191. (concat (substring time 0 -2) ":" (substring time -2)))
  6192. new)
  6193. (put-text-property
  6194. 2 (length (car new)) 'face 'org-time-grid (car new))))
  6195. (when (and todayp org-agenda-show-current-time-in-grid)
  6196. (push (org-agenda-format-item
  6197. nil org-agenda-current-time-string nil "" nil
  6198. (format-time-string "%H:%M "))
  6199. new)
  6200. (put-text-property
  6201. 2 (length (car new)) 'face 'org-agenda-current-time (car new)))
  6202. (if (member 'time-up org-agenda-sorting-strategy-selected)
  6203. (append new list)
  6204. (append list new)))))
  6205. (defun org-compile-prefix-format (key)
  6206. "Compile the prefix format into a Lisp form that can be evaluated.
  6207. The resulting form and associated variable bindings is returned
  6208. and stored in the variable `org-prefix-format-compiled'."
  6209. (setq org-prefix-has-time nil
  6210. org-prefix-has-tag nil
  6211. org-prefix-category-length nil
  6212. org-prefix-has-effort nil
  6213. org-prefix-has-breadcrumbs nil)
  6214. (let ((s (cond
  6215. ((stringp org-agenda-prefix-format)
  6216. org-agenda-prefix-format)
  6217. ((assq key org-agenda-prefix-format)
  6218. (cdr (assq key org-agenda-prefix-format)))
  6219. (t " %-12:c%?-12t% s")))
  6220. (start 0)
  6221. varform vars var e c f opt)
  6222. (while (string-match "%\\(\\?\\)?\\([-+]?[0-9.]*\\)\\([ .;,:!?=|/<>]?\\)\\([cltseib]\\|(.+)\\)"
  6223. s start)
  6224. (setq var (or (cdr (assoc (match-string 4 s)
  6225. '(("c" . category) ("t" . time) ("l" . level) ("s" . extra)
  6226. ("i" . category-icon) ("T" . tag) ("e" . effort) ("b" . breadcrumbs))))
  6227. 'eval)
  6228. c (or (match-string 3 s) "")
  6229. opt (match-beginning 1)
  6230. start (1+ (match-beginning 0)))
  6231. (if (eq var 'time) (setq org-prefix-has-time t))
  6232. (if (eq var 'tag) (setq org-prefix-has-tag t))
  6233. (if (eq var 'effort) (setq org-prefix-has-effort t))
  6234. (if (eq var 'breadcrumbs) (setq org-prefix-has-breadcrumbs t))
  6235. (setq f (concat "%" (match-string 2 s) "s"))
  6236. (when (eq var 'category)
  6237. (setq org-prefix-category-length
  6238. (floor (abs (string-to-number (match-string 2 s)))))
  6239. (setq org-prefix-category-max-length
  6240. (let ((x (match-string 2 s)))
  6241. (save-match-data
  6242. (if (string-match "\\.[0-9]+" x)
  6243. (string-to-number (substring (match-string 0 x) 1)))))))
  6244. (if (eq var 'eval)
  6245. (setq varform `(format ,f (org-eval ,(read (match-string 4 s)))))
  6246. (if opt
  6247. (setq varform
  6248. `(if (or (equal "" ,var) (equal nil ,var))
  6249. ""
  6250. (format ,f (concat ,var ,c))))
  6251. (setq varform
  6252. `(format ,f (if (or (equal ,var "")
  6253. (equal ,var nil)) ""
  6254. (concat ,var ,c (get-text-property 0 'extra-space ,var)))))))
  6255. (setq s (replace-match "%s" t nil s))
  6256. (push varform vars))
  6257. (setq vars (nreverse vars))
  6258. (with-current-buffer (or org-agenda-buffer (current-buffer))
  6259. (setq org-prefix-format-compiled
  6260. (list
  6261. `((org-prefix-has-time ,org-prefix-has-time)
  6262. (org-prefix-has-tag ,org-prefix-has-tag)
  6263. (org-prefix-category-length ,org-prefix-category-length)
  6264. (org-prefix-has-effort ,org-prefix-has-effort)
  6265. (org-prefix-has-breadcrumbs ,org-prefix-has-breadcrumbs))
  6266. `(format ,s ,@vars))))))
  6267. (defun org-set-sorting-strategy (key)
  6268. (if (symbolp (car org-agenda-sorting-strategy))
  6269. ;; the old format
  6270. (setq org-agenda-sorting-strategy-selected org-agenda-sorting-strategy)
  6271. (setq org-agenda-sorting-strategy-selected
  6272. (or (cdr (assq key org-agenda-sorting-strategy))
  6273. (cdr (assq 'agenda org-agenda-sorting-strategy))
  6274. '(time-up category-keep priority-down)))))
  6275. (defun org-get-time-of-day (s &optional string mod24)
  6276. "Check string S for a time of day.
  6277. If found, return it as a military time number between 0 and 2400.
  6278. If not found, return nil.
  6279. The optional STRING argument forces conversion into a 5 character wide string
  6280. HH:MM."
  6281. (save-match-data
  6282. (when
  6283. (and
  6284. (or (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)\\([AaPp][Mm]\\)?\\> *" s)
  6285. (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?\\([AaPp][Mm]\\)\\> *" s))
  6286. (not (eq (get-text-property 1 'face s) 'org-link)))
  6287. (let* ((h (string-to-number (match-string 1 s)))
  6288. (m (if (match-end 3) (string-to-number (match-string 3 s)) 0))
  6289. (ampm (if (match-end 4) (downcase (match-string 4 s))))
  6290. (am-p (equal ampm "am"))
  6291. (h1 (cond ((not ampm) h)
  6292. ((= h 12) (if am-p 0 12))
  6293. (t (+ h (if am-p 0 12)))))
  6294. (h2 (if (and string mod24 (not (and (= m 0) (= h1 24))))
  6295. (mod h1 24) h1))
  6296. (t0 (+ (* 100 h2) m))
  6297. (t1 (concat (if (>= h1 24) "+" " ")
  6298. (if (and org-agenda-time-leading-zero
  6299. (< t0 1000)) "0" "")
  6300. (if (< t0 100) "0" "")
  6301. (if (< t0 10) "0" "")
  6302. (int-to-string t0))))
  6303. (if string (concat (substring t1 -4 -2) ":" (substring t1 -2)) t0)))))
  6304. (defvar org-agenda-before-sorting-filter-function nil
  6305. "Function to be applied to agenda items prior to sorting.
  6306. Prior to sorting also means just before they are inserted into the agenda.
  6307. To aid sorting, you may revisit the original entries and add more text
  6308. properties which will later be used by the sorting functions.
  6309. The function should take a string argument, an agenda line.
  6310. It has access to the text properties in that line, which contain among
  6311. other things, the property `org-hd-marker' that points to the entry
  6312. where the line comes from. Note that not all lines going into the agenda
  6313. have this property, only most.
  6314. The function should return the modified string. It is probably best
  6315. to ONLY change text properties.
  6316. You can also use this function as a filter, by returning nil for lines
  6317. you don't want to have in the agenda at all. For this application, you
  6318. could bind the variable in the options section of a custom command.")
  6319. (defun org-agenda-finalize-entries (list &optional type)
  6320. "Sort, limit and concatenate the LIST of agenda items.
  6321. The optional argument TYPE tells the agenda type."
  6322. (let ((max-effort (cond ((listp org-agenda-max-effort)
  6323. (cdr (assoc type org-agenda-max-effort)))
  6324. (t org-agenda-max-effort)))
  6325. (max-todo (cond ((listp org-agenda-max-todos)
  6326. (cdr (assoc type org-agenda-max-todos)))
  6327. (t org-agenda-max-todos)))
  6328. (max-tags (cond ((listp org-agenda-max-tags)
  6329. (cdr (assoc type org-agenda-max-tags)))
  6330. (t org-agenda-max-tags)))
  6331. (max-entries (cond ((listp org-agenda-max-entries)
  6332. (cdr (assoc type org-agenda-max-entries)))
  6333. (t org-agenda-max-entries))))
  6334. (when org-agenda-before-sorting-filter-function
  6335. (setq list
  6336. (delq nil
  6337. (mapcar
  6338. org-agenda-before-sorting-filter-function list))))
  6339. (setq list (mapcar 'org-agenda-highlight-todo list)
  6340. list (mapcar 'identity (sort list 'org-entries-lessp)))
  6341. (when max-effort
  6342. (setq list (org-agenda-limit-entries
  6343. list 'effort-minutes max-effort
  6344. (lambda (e) (or e (if org-sort-agenda-noeffort-is-high
  6345. 32767 -1))))))
  6346. (when max-todo
  6347. (setq list (org-agenda-limit-entries list 'todo-state max-todo)))
  6348. (when max-tags
  6349. (setq list (org-agenda-limit-entries list 'tags max-tags)))
  6350. (when max-entries
  6351. (setq list (org-agenda-limit-entries list 'org-hd-marker max-entries)))
  6352. (when (and org-agenda-dim-blocked-tasks org-blocker-hook)
  6353. (setq list (mapcar #'org-agenda--mark-blocked-entry list)))
  6354. (mapconcat 'identity list "\n")))
  6355. (defun org-agenda-limit-entries (list prop limit &optional fn)
  6356. "Limit the number of agenda entries."
  6357. (let ((include (and limit (< limit 0))))
  6358. (if limit
  6359. (let ((fun (or fn (lambda (p) (if p 1))))
  6360. (lim 0))
  6361. (delq nil
  6362. (mapcar
  6363. (lambda (e)
  6364. (let ((pval (funcall
  6365. fun (get-text-property (1- (length e))
  6366. prop e))))
  6367. (if pval (setq lim (+ lim pval)))
  6368. (cond ((and pval (<= lim (abs limit))) e)
  6369. ((and include (not pval)) e))))
  6370. list)))
  6371. list)))
  6372. (defun org-agenda-limit-interactively (remove)
  6373. "In agenda, interactively limit entries to various maximums."
  6374. (interactive "P")
  6375. (if remove
  6376. (progn (setq org-agenda-max-entries nil
  6377. org-agenda-max-todos nil
  6378. org-agenda-max-tags nil
  6379. org-agenda-max-effort nil)
  6380. (org-agenda-redo))
  6381. (let* ((max (read-char "Number of [e]ntries [t]odos [T]ags [E]ffort? "))
  6382. (msg (cond ((= max ?E) "How many minutes? ")
  6383. ((= max ?e) "How many entries? ")
  6384. ((= max ?t) "How many TODO entries? ")
  6385. ((= max ?T) "How many tagged entries? ")
  6386. (t (user-error "Wrong input"))))
  6387. (num (string-to-number (read-from-minibuffer msg))))
  6388. (cond ((equal max ?e)
  6389. (let ((org-agenda-max-entries num)) (org-agenda-redo)))
  6390. ((equal max ?t)
  6391. (let ((org-agenda-max-todos num)) (org-agenda-redo)))
  6392. ((equal max ?T)
  6393. (let ((org-agenda-max-tags num)) (org-agenda-redo)))
  6394. ((equal max ?E)
  6395. (let ((org-agenda-max-effort num)) (org-agenda-redo))))))
  6396. (org-agenda-fit-window-to-buffer))
  6397. (defun org-agenda-highlight-todo (x)
  6398. (let ((org-done-keywords org-done-keywords-for-agenda)
  6399. (case-fold-search nil)
  6400. re)
  6401. (if (eq x 'line)
  6402. (save-excursion
  6403. (beginning-of-line 1)
  6404. (setq re (org-get-at-bol 'org-todo-regexp))
  6405. (goto-char (or (text-property-any (point-at-bol) (point-at-eol) 'org-heading t) (point)))
  6406. (when (looking-at (concat "[ \t]*\\.*\\(" re "\\) +"))
  6407. (add-text-properties (match-beginning 0) (match-end 1)
  6408. (list 'face (org-get-todo-face 1)))
  6409. (let ((s (buffer-substring (match-beginning 1) (match-end 1))))
  6410. (delete-region (match-beginning 1) (1- (match-end 0)))
  6411. (goto-char (match-beginning 1))
  6412. (insert (format org-agenda-todo-keyword-format s)))))
  6413. (let ((pl (text-property-any 0 (length x) 'org-heading t x)))
  6414. (setq re (get-text-property 0 'org-todo-regexp x))
  6415. (when (and re
  6416. ;; Test `pl' because if there's no heading content,
  6417. ;; there's no point matching to highlight. Note
  6418. ;; that if we didn't test `pl' first, and there
  6419. ;; happened to be no keyword from `org-todo-regexp'
  6420. ;; on this heading line, then the `equal' comparison
  6421. ;; afterwards would spuriously succeed in the case
  6422. ;; where `pl' is nil -- causing an args-out-of-range
  6423. ;; error when we try to add text properties to text
  6424. ;; that isn't there.
  6425. pl
  6426. (equal (string-match (concat "\\(\\.*\\)" re "\\( +\\)")
  6427. x pl) pl))
  6428. (add-text-properties
  6429. (or (match-end 1) (match-end 0)) (match-end 0)
  6430. (list 'face (org-get-todo-face (match-string 2 x)))
  6431. x)
  6432. (when (match-end 1)
  6433. (setq x
  6434. (concat
  6435. (substring x 0 (match-end 1))
  6436. (format org-agenda-todo-keyword-format
  6437. (match-string 2 x))
  6438. ;; Remove `display' property as the icon could leak
  6439. ;; on the white space.
  6440. (org-add-props " " (org-plist-delete (text-properties-at 0 x)
  6441. 'display))
  6442. (substring x (match-end 3)))))))
  6443. x)))
  6444. (defsubst org-cmp-values (a b property)
  6445. "Compare the numeric value of text PROPERTY for string A and B."
  6446. (let ((pa (or (get-text-property (1- (length a)) property a) 0))
  6447. (pb (or (get-text-property (1- (length b)) property b) 0)))
  6448. (cond ((> pa pb) +1)
  6449. ((< pa pb) -1))))
  6450. (defsubst org-cmp-effort (a b)
  6451. "Compare the effort values of string A and B."
  6452. (let* ((def (if org-sort-agenda-noeffort-is-high 32767 -1))
  6453. ;; `effort-minutes' property is not directly accessible from
  6454. ;; the strings, but is stored as a property in `txt'.
  6455. (ea (or (get-text-property
  6456. 0 'effort-minutes (get-text-property 0 'txt a))
  6457. def))
  6458. (eb (or (get-text-property
  6459. 0 'effort-minutes (get-text-property 0 'txt b))
  6460. def)))
  6461. (cond ((> ea eb) +1)
  6462. ((< ea eb) -1))))
  6463. (defsubst org-cmp-category (a b)
  6464. "Compare the string values of categories of strings A and B."
  6465. (let ((ca (or (get-text-property (1- (length a)) 'org-category a) ""))
  6466. (cb (or (get-text-property (1- (length b)) 'org-category b) "")))
  6467. (cond ((string-lessp ca cb) -1)
  6468. ((string-lessp cb ca) +1))))
  6469. (defsubst org-cmp-todo-state (a b)
  6470. "Compare the todo states of strings A and B."
  6471. (let* ((ma (or (get-text-property 1 'org-marker a)
  6472. (get-text-property 1 'org-hd-marker a)))
  6473. (mb (or (get-text-property 1 'org-marker b)
  6474. (get-text-property 1 'org-hd-marker b)))
  6475. (fa (and ma (marker-buffer ma)))
  6476. (fb (and mb (marker-buffer mb)))
  6477. (todo-kwds
  6478. (or (and fa (with-current-buffer fa org-todo-keywords-1))
  6479. (and fb (with-current-buffer fb org-todo-keywords-1))))
  6480. (ta (or (get-text-property 1 'todo-state a) ""))
  6481. (tb (or (get-text-property 1 'todo-state b) ""))
  6482. (la (- (length (member ta todo-kwds))))
  6483. (lb (- (length (member tb todo-kwds))))
  6484. (donepa (member ta org-done-keywords-for-agenda))
  6485. (donepb (member tb org-done-keywords-for-agenda)))
  6486. (cond ((and donepa (not donepb)) -1)
  6487. ((and (not donepa) donepb) +1)
  6488. ((< la lb) -1)
  6489. ((< lb la) +1))))
  6490. (defsubst org-cmp-alpha (a b)
  6491. "Compare the headlines, alphabetically."
  6492. (let* ((pla (text-property-any 0 (length a) 'org-heading t a))
  6493. (plb (text-property-any 0 (length b) 'org-heading t b))
  6494. (ta (and pla (substring a pla)))
  6495. (tb (and plb (substring b plb)))
  6496. (case-fold-search nil))
  6497. (when pla
  6498. (if (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp a) "")
  6499. "\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *") ta)
  6500. (setq ta (substring ta (match-end 0))))
  6501. (setq ta (downcase ta)))
  6502. (when plb
  6503. (if (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp b) "")
  6504. "\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *") tb)
  6505. (setq tb (substring tb (match-end 0))))
  6506. (setq tb (downcase tb)))
  6507. (cond ((not ta) +1)
  6508. ((not tb) -1)
  6509. ((string-lessp ta tb) -1)
  6510. ((string-lessp tb ta) +1))))
  6511. (defsubst org-cmp-tag (a b)
  6512. "Compare the string values of the first tags of A and B."
  6513. (let ((ta (car (last (get-text-property 1 'tags a))))
  6514. (tb (car (last (get-text-property 1 'tags b)))))
  6515. (cond ((not ta) +1)
  6516. ((not tb) -1)
  6517. ((string-lessp ta tb) -1)
  6518. ((string-lessp tb ta) +1))))
  6519. (defsubst org-cmp-time (a b)
  6520. "Compare the time-of-day values of strings A and B."
  6521. (let* ((def (if org-sort-agenda-notime-is-late 9901 -1))
  6522. (ta (or (get-text-property 1 'time-of-day a) def))
  6523. (tb (or (get-text-property 1 'time-of-day b) def)))
  6524. (cond ((< ta tb) -1)
  6525. ((< tb ta) +1))))
  6526. (defsubst org-cmp-ts (a b type)
  6527. "Compare the timestamps values of entries A and B.
  6528. When TYPE is \"scheduled\", \"deadline\", \"timestamp\" or
  6529. \"timestamp_ia\", compare within each of these type. When TYPE
  6530. is the empty string, compare all timestamps without respect of
  6531. their type."
  6532. (let* ((def (if org-sort-agenda-notime-is-late most-positive-fixnum -1))
  6533. (ta (or (and (string-match type (or (get-text-property 1 'type a) ""))
  6534. (get-text-property 1 'ts-date a))
  6535. def))
  6536. (tb (or (and (string-match type (or (get-text-property 1 'type b) ""))
  6537. (get-text-property 1 'ts-date b))
  6538. def)))
  6539. (cond ((< ta tb) -1)
  6540. ((< tb ta) +1))))
  6541. (defsubst org-cmp-habit-p (a b)
  6542. "Compare the todo states of strings A and B."
  6543. (let ((ha (get-text-property 1 'org-habit-p a))
  6544. (hb (get-text-property 1 'org-habit-p b)))
  6545. (cond ((and ha (not hb)) -1)
  6546. ((and (not ha) hb) +1))))
  6547. (defun org-entries-lessp (a b)
  6548. "Predicate for sorting agenda entries."
  6549. ;; The following variables will be used when the form is evaluated.
  6550. ;; So even though the compiler complains, keep them.
  6551. (let* ((ss org-agenda-sorting-strategy-selected)
  6552. (timestamp-up (and (org-em 'timestamp-up 'timestamp-down ss)
  6553. (org-cmp-ts a b "")))
  6554. (timestamp-down (if timestamp-up (- timestamp-up) nil))
  6555. (scheduled-up (and (org-em 'scheduled-up 'scheduled-down ss)
  6556. (org-cmp-ts a b "scheduled")))
  6557. (scheduled-down (if scheduled-up (- scheduled-up) nil))
  6558. (deadline-up (and (org-em 'deadline-up 'deadline-down ss)
  6559. (org-cmp-ts a b "deadline")))
  6560. (deadline-down (if deadline-up (- deadline-up) nil))
  6561. (tsia-up (and (org-em 'tsia-up 'tsia-down ss)
  6562. (org-cmp-ts a b "timestamp_ia")))
  6563. (tsia-down (if tsia-up (- tsia-up) nil))
  6564. (ts-up (and (org-em 'ts-up 'ts-down ss)
  6565. (org-cmp-ts a b "timestamp")))
  6566. (ts-down (if ts-up (- ts-up) nil))
  6567. (time-up (and (org-em 'time-up 'time-down ss)
  6568. (org-cmp-time a b)))
  6569. (time-down (if time-up (- time-up) nil))
  6570. (stats-up (and (org-em 'stats-up 'stats-down ss)
  6571. (org-cmp-values a b 'org-stats)))
  6572. (stats-down (if stats-up (- stats-up) nil))
  6573. (priority-up (and (org-em 'priority-up 'priority-down ss)
  6574. (org-cmp-values a b 'priority)))
  6575. (priority-down (if priority-up (- priority-up) nil))
  6576. (effort-up (and (org-em 'effort-up 'effort-down ss)
  6577. (org-cmp-effort a b)))
  6578. (effort-down (if effort-up (- effort-up) nil))
  6579. (category-up (and (or (org-em 'category-up 'category-down ss)
  6580. (memq 'category-keep ss))
  6581. (org-cmp-category a b)))
  6582. (category-down (if category-up (- category-up) nil))
  6583. (category-keep (if category-up +1 nil))
  6584. (tag-up (and (org-em 'tag-up 'tag-down ss)
  6585. (org-cmp-tag a b)))
  6586. (tag-down (if tag-up (- tag-up) nil))
  6587. (todo-state-up (and (org-em 'todo-state-up 'todo-state-down ss)
  6588. (org-cmp-todo-state a b)))
  6589. (todo-state-down (if todo-state-up (- todo-state-up) nil))
  6590. (habit-up (and (org-em 'habit-up 'habit-down ss)
  6591. (org-cmp-habit-p a b)))
  6592. (habit-down (if habit-up (- habit-up) nil))
  6593. (alpha-up (and (org-em 'alpha-up 'alpha-down ss)
  6594. (org-cmp-alpha a b)))
  6595. (alpha-down (if alpha-up (- alpha-up) nil))
  6596. (need-user-cmp (org-em 'user-defined-up 'user-defined-down ss))
  6597. user-defined-up user-defined-down)
  6598. (if (and need-user-cmp org-agenda-cmp-user-defined
  6599. (functionp org-agenda-cmp-user-defined))
  6600. (setq user-defined-up
  6601. (funcall org-agenda-cmp-user-defined a b)
  6602. user-defined-down (if user-defined-up (- user-defined-up) nil)))
  6603. (cdr (assoc
  6604. (eval (cons 'or org-agenda-sorting-strategy-selected))
  6605. '((-1 . t) (1 . nil) (nil . nil))))))
  6606. ;;; Agenda restriction lock
  6607. (defvar org-agenda-restriction-lock-overlay (make-overlay 1 1)
  6608. "Overlay to mark the headline to which agenda commands are restricted.")
  6609. (overlay-put org-agenda-restriction-lock-overlay
  6610. 'face 'org-agenda-restriction-lock)
  6611. (overlay-put org-agenda-restriction-lock-overlay
  6612. 'help-echo "Agendas are currently limited to this subtree.")
  6613. (delete-overlay org-agenda-restriction-lock-overlay)
  6614. (defun org-agenda-set-restriction-lock-from-agenda (arg)
  6615. "Set the restriction lock to the agenda item at point from within the agenda.
  6616. When called with a `\\[universal-argument]' prefix, restrict to
  6617. the file which contains the item.
  6618. Argument ARG is the prefix argument."
  6619. (interactive "P")
  6620. (unless (derived-mode-p 'org-agenda-mode)
  6621. (user-error "Not in an Org agenda buffer"))
  6622. (let* ((marker (or (org-get-at-bol 'org-marker)
  6623. (org-agenda-error)))
  6624. (buffer (marker-buffer marker))
  6625. (pos (marker-position marker)))
  6626. (with-current-buffer buffer
  6627. (goto-char pos)
  6628. (org-agenda-set-restriction-lock arg))))
  6629. ;;;###autoload
  6630. (defun org-agenda-set-restriction-lock (&optional type)
  6631. "Set restriction lock for agenda to current subtree or file.
  6632. When in a restricted subtree, remove it.
  6633. The restriction will span over the entire file if TYPE is `file',
  6634. or if type is '(4), or if the cursor is before the first headline
  6635. in the file. Otherwise, only apply the restriction to the current
  6636. subtree."
  6637. (interactive "P")
  6638. (if (and org-agenda-overriding-restriction
  6639. (member org-agenda-restriction-lock-overlay
  6640. (overlays-at (point)))
  6641. (equal (overlay-start org-agenda-restriction-lock-overlay)
  6642. (point)))
  6643. (org-agenda-remove-restriction-lock 'noupdate)
  6644. (org-agenda-remove-restriction-lock 'noupdate)
  6645. (and (equal type '(4)) (setq type 'file))
  6646. (setq type (cond
  6647. (type type)
  6648. ((org-at-heading-p) 'subtree)
  6649. ((condition-case nil (org-back-to-heading t) (error nil))
  6650. 'subtree)
  6651. (t 'file)))
  6652. (if (eq type 'subtree)
  6653. (progn
  6654. (setq org-agenda-restrict (current-buffer))
  6655. (setq org-agenda-overriding-restriction 'subtree)
  6656. (put 'org-agenda-files 'org-restrict
  6657. (list (buffer-file-name (buffer-base-buffer))))
  6658. (org-back-to-heading t)
  6659. (move-overlay org-agenda-restriction-lock-overlay
  6660. (point)
  6661. (if org-agenda-restriction-lock-highlight-subtree
  6662. (save-excursion (org-end-of-subtree t t) (point))
  6663. (point-at-eol)))
  6664. (move-marker org-agenda-restrict-begin (point))
  6665. (move-marker org-agenda-restrict-end
  6666. (save-excursion (org-end-of-subtree t t)))
  6667. (message "Locking agenda restriction to subtree"))
  6668. (put 'org-agenda-files 'org-restrict
  6669. (list (buffer-file-name (buffer-base-buffer))))
  6670. (setq org-agenda-restrict nil)
  6671. (setq org-agenda-overriding-restriction 'file)
  6672. (move-marker org-agenda-restrict-begin nil)
  6673. (move-marker org-agenda-restrict-end nil)
  6674. (message "Locking agenda restriction to file"))
  6675. (setq current-prefix-arg nil))
  6676. (org-agenda-maybe-redo))
  6677. (defun org-agenda-remove-restriction-lock (&optional noupdate)
  6678. "Remove agenda restriction lock."
  6679. (interactive "P")
  6680. (if (not org-agenda-restrict)
  6681. (message "No agenda restriction to remove.")
  6682. (delete-overlay org-agenda-restriction-lock-overlay)
  6683. (delete-overlay org-speedbar-restriction-lock-overlay)
  6684. (setq org-agenda-overriding-restriction nil)
  6685. (setq org-agenda-restrict nil)
  6686. (put 'org-agenda-files 'org-restrict nil)
  6687. (move-marker org-agenda-restrict-begin nil)
  6688. (move-marker org-agenda-restrict-end nil)
  6689. (setq current-prefix-arg nil)
  6690. (message "Agenda restriction lock removed")
  6691. (or noupdate (org-agenda-maybe-redo))))
  6692. (defun org-agenda-maybe-redo ()
  6693. "If there is any window showing the agenda view, update it."
  6694. (let ((w (get-buffer-window (or org-agenda-this-buffer-name
  6695. org-agenda-buffer-name)
  6696. t))
  6697. (w0 (selected-window)))
  6698. (when w
  6699. (select-window w)
  6700. (org-agenda-redo)
  6701. (select-window w0)
  6702. (if org-agenda-overriding-restriction
  6703. (message "Agenda view shifted to new %s restriction"
  6704. org-agenda-overriding-restriction)
  6705. (message "Agenda restriction lock removed")))))
  6706. ;;; Agenda commands
  6707. (defun org-agenda-check-type (error &rest types)
  6708. "Check if agenda buffer is of allowed type.
  6709. If ERROR is non-nil, throw an error, otherwise just return nil.
  6710. Allowed types are `agenda' `todo' `tags' `search'."
  6711. (cond ((not org-agenda-type)
  6712. (error "No Org agenda currently displayed"))
  6713. ((memq org-agenda-type types) t)
  6714. (error
  6715. (error "Not allowed in %s-type agenda buffers" org-agenda-type))
  6716. (t nil)))
  6717. (defun org-agenda-Quit ()
  6718. "Exit the agenda, killing the agenda buffer.
  6719. Like `org-agenda-quit', but kill the buffer even when
  6720. `org-agenda-sticky' is non-nil."
  6721. (interactive)
  6722. (org-agenda--quit))
  6723. (defun org-agenda-quit ()
  6724. "Exit the agenda.
  6725. When `org-agenda-sticky' is non-nil, bury the agenda buffer
  6726. instead of killing it.
  6727. When `org-agenda-restore-windows-after-quit' is non-nil, restore
  6728. the pre-agenda window configuration.
  6729. When column view is active, exit column view instead of the
  6730. agenda."
  6731. (interactive)
  6732. (org-agenda--quit org-agenda-sticky))
  6733. (defun org-agenda--quit (&optional bury)
  6734. (if org-agenda-columns-active
  6735. (org-columns-quit)
  6736. (let ((wconf org-agenda-pre-window-conf)
  6737. (buf (current-buffer))
  6738. (org-agenda-last-indirect-window
  6739. (and (eq org-indirect-buffer-display 'other-window)
  6740. org-agenda-last-indirect-buffer
  6741. (get-buffer-window org-agenda-last-indirect-buffer))))
  6742. (cond
  6743. ((eq org-agenda-window-setup 'other-frame)
  6744. (delete-frame))
  6745. ((and org-agenda-restore-windows-after-quit
  6746. wconf)
  6747. ;; Maybe restore the pre-agenda window configuration. Reset
  6748. ;; `org-agenda-pre-window-conf' before running
  6749. ;; `set-window-configuration', which loses the current buffer.
  6750. (setq org-agenda-pre-window-conf nil)
  6751. (set-window-configuration wconf))
  6752. (t
  6753. (when org-agenda-last-indirect-window
  6754. (delete-window org-agenda-last-indirect-window))
  6755. (and (not (eq org-agenda-window-setup 'current-window))
  6756. (not (one-window-p))
  6757. (delete-window))))
  6758. (if bury
  6759. ;; Set the agenda buffer as the current buffer instead of
  6760. ;; passing it as an argument to `bury-buffer' so that
  6761. ;; `bury-buffer' removes it from the window.
  6762. (with-current-buffer buf
  6763. (bury-buffer))
  6764. (kill-buffer buf)
  6765. (setq org-agenda-archives-mode nil
  6766. org-agenda-buffer nil)))))
  6767. (defun org-agenda-exit ()
  6768. "Exit the agenda, killing Org buffers loaded by the agenda.
  6769. Like `org-agenda-Quit', but kill any buffers that were created by
  6770. the agenda. Org buffers visited directly by the user will not be
  6771. touched. Also, exit the agenda even if it is in column view."
  6772. (interactive)
  6773. (when org-agenda-columns-active
  6774. (org-columns-quit))
  6775. (org-release-buffers org-agenda-new-buffers)
  6776. (setq org-agenda-new-buffers nil)
  6777. (org-agenda-Quit))
  6778. (defun org-agenda-kill-all-agenda-buffers ()
  6779. "Kill all buffers in `org-agenda-mode'.
  6780. This is used when toggling sticky agendas."
  6781. (interactive)
  6782. (let (blist)
  6783. (dolist (buf (buffer-list))
  6784. (when (with-current-buffer buf (eq major-mode 'org-agenda-mode))
  6785. (push buf blist)))
  6786. (mapc 'kill-buffer blist)))
  6787. (defun org-agenda-execute (arg)
  6788. "Execute another agenda command, keeping same window.
  6789. So this is just a shortcut for \\<global-map>`\\[org-agenda]', available
  6790. in the agenda."
  6791. (interactive "P")
  6792. (let ((org-agenda-window-setup 'current-window))
  6793. (org-agenda arg)))
  6794. (defun org-agenda-redo (&optional all)
  6795. "Rebuild possibly ALL agenda view(s) in the current buffer."
  6796. (interactive "P")
  6797. (let* ((p (or (and (looking-at "\\'") (1- (point))) (point)))
  6798. (cpa (unless (eq all t) current-prefix-arg))
  6799. (org-agenda-doing-sticky-redo org-agenda-sticky)
  6800. (org-agenda-sticky nil)
  6801. (org-agenda-buffer-name (or org-agenda-this-buffer-name
  6802. org-agenda-buffer-name))
  6803. (org-agenda-keep-modes t)
  6804. (tag-filter org-agenda-tag-filter)
  6805. (tag-preset (get 'org-agenda-tag-filter :preset-filter))
  6806. (top-hl-filter org-agenda-top-headline-filter)
  6807. (cat-filter org-agenda-category-filter)
  6808. (cat-preset (get 'org-agenda-category-filter :preset-filter))
  6809. (re-filter org-agenda-regexp-filter)
  6810. (re-preset (get 'org-agenda-regexp-filter :preset-filter))
  6811. (effort-filter org-agenda-effort-filter)
  6812. (effort-preset (get 'org-agenda-effort-filter :preset-filter))
  6813. (org-agenda-tag-filter-while-redo (or tag-filter tag-preset))
  6814. (cols org-agenda-columns-active)
  6815. (line (org-current-line))
  6816. (window-line (- line (org-current-line (window-start))))
  6817. (lprops (get 'org-agenda-redo-command 'org-lprops))
  6818. (redo-cmd (get-text-property p 'org-redo-cmd))
  6819. (last-args (get-text-property p 'org-last-args))
  6820. (org-agenda-overriding-cmd (get-text-property p 'org-series-cmd))
  6821. (org-agenda-overriding-cmd-arguments
  6822. (unless (eq all t)
  6823. (cond ((listp last-args)
  6824. (cons (or cpa (car last-args)) (cdr last-args)))
  6825. ((stringp last-args)
  6826. last-args))))
  6827. (series-redo-cmd (get-text-property p 'org-series-redo-cmd)))
  6828. (put 'org-agenda-tag-filter :preset-filter nil)
  6829. (put 'org-agenda-category-filter :preset-filter nil)
  6830. (put 'org-agenda-regexp-filter :preset-filter nil)
  6831. (put 'org-agenda-effort-filter :preset-filter nil)
  6832. (and cols (org-columns-quit))
  6833. (message "Rebuilding agenda buffer...")
  6834. (if series-redo-cmd
  6835. (eval series-redo-cmd)
  6836. (org-let lprops redo-cmd))
  6837. (setq org-agenda-undo-list nil
  6838. org-agenda-pending-undo-list nil
  6839. org-agenda-tag-filter tag-filter
  6840. org-agenda-category-filter cat-filter
  6841. org-agenda-regexp-filter re-filter
  6842. org-agenda-effort-filter effort-filter
  6843. org-agenda-top-headline-filter top-hl-filter)
  6844. (message "Rebuilding agenda buffer...done")
  6845. (put 'org-agenda-tag-filter :preset-filter tag-preset)
  6846. (put 'org-agenda-category-filter :preset-filter cat-preset)
  6847. (put 'org-agenda-regexp-filter :preset-filter re-preset)
  6848. (put 'org-agenda-effort-filter :preset-filter effort-preset)
  6849. (let ((tag (or tag-filter tag-preset))
  6850. (cat (or cat-filter cat-preset))
  6851. (effort (or effort-filter effort-preset))
  6852. (re (or re-filter re-preset)))
  6853. (when tag (org-agenda-filter-apply tag 'tag t))
  6854. (when cat (org-agenda-filter-apply cat 'category))
  6855. (when effort (org-agenda-filter-apply effort 'effort))
  6856. (when re (org-agenda-filter-apply re 'regexp)))
  6857. (and top-hl-filter (org-agenda-filter-top-headline-apply top-hl-filter))
  6858. (and cols (called-interactively-p 'any) (org-agenda-columns))
  6859. (org-goto-line line)
  6860. (recenter window-line)))
  6861. (defun org-agenda-redo-all (&optional exhaustive)
  6862. "Rebuild all agenda views in the current buffer.
  6863. With a prefix argument, do so in all agenda buffers."
  6864. (interactive "P")
  6865. (if exhaustive
  6866. (dolist (buffer (buffer-list))
  6867. (with-current-buffer buffer
  6868. (when (derived-mode-p 'org-agenda-mode)
  6869. (org-agenda-redo t))))
  6870. (org-agenda-redo t)))
  6871. (defvar org-global-tags-completion-table nil)
  6872. (defvar org-agenda-filter-form nil)
  6873. (defvar org-agenda-filtered-by-category nil)
  6874. (defun org-agenda-filter-by-category (strip)
  6875. "Filter lines in the agenda buffer that have a specific category.
  6876. The category is that of the current line.
  6877. Without prefix argument, keep only the lines of that category.
  6878. With a prefix argument, exclude the lines of that category.
  6879. "
  6880. (interactive "P")
  6881. (if (and org-agenda-filtered-by-category
  6882. org-agenda-category-filter)
  6883. (org-agenda-filter-show-all-cat)
  6884. (let ((cat (org-no-properties (org-get-at-eol 'org-category 1))))
  6885. (cond
  6886. ((and cat strip)
  6887. (org-agenda-filter-apply
  6888. (push (concat "-" cat) org-agenda-category-filter) 'category))
  6889. (cat
  6890. (org-agenda-filter-apply
  6891. (setq org-agenda-category-filter
  6892. (list (concat "+" cat))) 'category))
  6893. (t (error "No category at point"))))))
  6894. (defun org-find-top-headline (&optional pos)
  6895. "Find the topmost parent headline and return it.
  6896. POS when non-nil is the marker or buffer position to start the
  6897. search from."
  6898. (save-excursion
  6899. (with-current-buffer (if (markerp pos) (marker-buffer pos) (current-buffer))
  6900. (when pos (goto-char pos))
  6901. ;; Skip up to the topmost parent.
  6902. (while (org-up-heading-safe))
  6903. (ignore-errors (nth 4 (org-heading-components))))))
  6904. (defvar org-agenda-filtered-by-top-headline nil)
  6905. (defun org-agenda-filter-by-top-headline (strip)
  6906. "Keep only those lines that are descendants from the same top headline.
  6907. The top headline is that of the current line."
  6908. (interactive "P")
  6909. (if org-agenda-filtered-by-top-headline
  6910. (progn
  6911. (setq org-agenda-filtered-by-top-headline nil
  6912. org-agenda-top-headline-filter nil)
  6913. (org-agenda-filter-show-all-top-filter))
  6914. (let ((toph (org-find-top-headline (org-get-at-bol 'org-hd-marker))))
  6915. (if toph (org-agenda-filter-top-headline-apply toph strip)
  6916. (error "No top-level headline at point")))))
  6917. (defvar org-agenda-regexp-filter nil)
  6918. (defun org-agenda-filter-by-regexp (strip)
  6919. "Filter agenda entries by regular expressions.
  6920. With one prefix argument, filter out entries matching the regexp.
  6921. If there is already a regexp filter, remove it unless called with
  6922. two prefix arguments."
  6923. (interactive "P")
  6924. (cond
  6925. ((and org-agenda-regexp-filter (not (equal strip '(16))))
  6926. (org-agenda-filter-show-all-re)
  6927. (message "Regexp filter removed"))
  6928. (t (let ((flt (concat (if (equal strip '(4)) "-" "+")
  6929. (read-from-minibuffer
  6930. (if (equal strip '(4))
  6931. "Filter out entries matching regexp: "
  6932. "Narrow to entries matching regexp: ")))))
  6933. (push flt org-agenda-regexp-filter)
  6934. (org-agenda-filter-apply org-agenda-regexp-filter 'regexp)))))
  6935. (defvar org-agenda-effort-filter nil)
  6936. (defun org-agenda-filter-by-effort (strip)
  6937. "Filter agenda entries by effort.
  6938. With no prefix argument, keep entries matching the effort condition.
  6939. With one prefix argument, filter out entries matching the condition.
  6940. With two prefix arguments, remove the effort filters."
  6941. (interactive "P")
  6942. (cond
  6943. ((member strip '(nil 4))
  6944. (let* ((efforts (split-string
  6945. (or (cdr (assoc (concat org-effort-property "_ALL")
  6946. org-global-properties))
  6947. "0 0:10 0:30 1:00 2:00 3:00 4:00 5:00 6:00 7:00")))
  6948. ;; XXX: the following handles only up to 10 different
  6949. ;; effort values.
  6950. (allowed-keys (if (null efforts) nil
  6951. (mapcar (lambda (n) (mod n 10)) ;turn 10 into 0
  6952. (number-sequence 1 (length efforts)))))
  6953. (op nil))
  6954. (while (not (memq op '(?< ?> ?=)))
  6955. (setq op (read-char-exclusive "Effort operator? (> = or <)")))
  6956. ;; Select appropriate duration. Ignore non-digit characters.
  6957. (let ((prompt
  6958. (apply #'format
  6959. (concat "Effort %c "
  6960. (mapconcat (lambda (s) (concat "[%d]" s))
  6961. efforts
  6962. " "))
  6963. op allowed-keys))
  6964. (eff -1))
  6965. (while (not (memq eff allowed-keys))
  6966. (message prompt)
  6967. (setq eff (- (read-char-exclusive) 48)))
  6968. (setq org-agenda-effort-filter
  6969. (list (concat (if strip "-" "+")
  6970. (char-to-string op)
  6971. ;; Numbering is 1 2 3 ... 9 0, but we want
  6972. ;; 0 1 2 ... 8 9.
  6973. (nth (mod (1- eff) 10) efforts)))))
  6974. (org-agenda-filter-apply org-agenda-effort-filter 'effort)))
  6975. (t (org-agenda-filter-show-all-effort)
  6976. (message "Effort filter removed"))))
  6977. (defun org-agenda-filter-remove-all ()
  6978. "Remove all filters from the current agenda buffer."
  6979. (interactive)
  6980. (when org-agenda-tag-filter
  6981. (org-agenda-filter-show-all-tag))
  6982. (when org-agenda-category-filter
  6983. (org-agenda-filter-show-all-cat))
  6984. (when org-agenda-regexp-filter
  6985. (org-agenda-filter-show-all-re))
  6986. (when org-agenda-top-headline-filter
  6987. (org-agenda-filter-show-all-top-filter))
  6988. (when org-agenda-effort-filter
  6989. (org-agenda-filter-show-all-effort))
  6990. (org-agenda-finalize))
  6991. (defun org-agenda-filter-by-tag (arg &optional char exclude)
  6992. "Keep only those lines in the agenda buffer that have a specific tag.
  6993. The tag is selected with its fast selection letter, as configured.
  6994. With a `\\[universal-argument]' prefix, exclude the agenda search.
  6995. With a `\\[universal-argument] \\[universal-argument]' prefix, filter the literal tag, \
  6996. i.e. don't
  6997. filter on all its group members.
  6998. A lisp caller can specify CHAR. EXCLUDE means that the new tag
  6999. should be used to exclude the search - the interactive user can
  7000. also press `-' or `+' to switch between filtering and excluding."
  7001. (interactive "P")
  7002. (let* ((alist org-tag-alist-for-agenda)
  7003. (tag-chars (mapconcat
  7004. (lambda (x) (if (and (not (symbolp (car x)))
  7005. (cdr x))
  7006. (char-to-string (cdr x))
  7007. ""))
  7008. org-tag-alist-for-agenda ""))
  7009. (valid-char-list (append '(?\t ?\r ?/ ?. ?\s ?q)
  7010. (string-to-list tag-chars)))
  7011. (exclude (or exclude (equal arg '(4))))
  7012. (expand (not (equal arg '(16))))
  7013. (inhibit-read-only t)
  7014. (current org-agenda-tag-filter)
  7015. a n tag)
  7016. (unless char
  7017. (while (not (memq char valid-char-list))
  7018. (org-unlogged-message
  7019. "%s by tag [%s ]:tag-char, [TAB]:tag, %s[/]:off, [+/-]:filter/exclude%s, [q]:quit"
  7020. (if exclude "Exclude" "Filter")
  7021. tag-chars
  7022. (if org-agenda-auto-exclude-function "[RET], " "")
  7023. (if expand "" ", no grouptag expand"))
  7024. (setq char (read-char-exclusive))
  7025. ;; Excluding or filtering down
  7026. (cond ((eq char ?-) (setq exclude t))
  7027. ((eq char ?+) (setq exclude nil)))))
  7028. (when (eq char ?\t)
  7029. (unless (local-variable-p 'org-global-tags-completion-table (current-buffer))
  7030. (setq-local org-global-tags-completion-table
  7031. (org-global-tags-completion-table)))
  7032. (let ((completion-ignore-case t))
  7033. (setq tag (completing-read
  7034. "Tag: " org-global-tags-completion-table nil t))))
  7035. (cond
  7036. ((eq char ?\r)
  7037. (org-agenda-filter-show-all-tag)
  7038. (when org-agenda-auto-exclude-function
  7039. (setq org-agenda-tag-filter nil)
  7040. (dolist (tag (org-agenda-get-represented-tags))
  7041. (let ((modifier (funcall org-agenda-auto-exclude-function tag)))
  7042. (if modifier
  7043. (push modifier org-agenda-tag-filter))))
  7044. (if (not (null org-agenda-tag-filter))
  7045. (org-agenda-filter-apply org-agenda-tag-filter 'tag expand))))
  7046. ((eq char ?/)
  7047. (org-agenda-filter-show-all-tag)
  7048. (when (get 'org-agenda-tag-filter :preset-filter)
  7049. (org-agenda-filter-apply org-agenda-tag-filter 'tag expand)))
  7050. ((eq char ?.)
  7051. (setq org-agenda-tag-filter
  7052. (mapcar (lambda(tag) (concat "+" tag))
  7053. (org-get-at-bol 'tags)))
  7054. (org-agenda-filter-apply org-agenda-tag-filter 'tag expand))
  7055. ((eq char ?q)) ;If q, abort (even if there is a q-key for a tag...)
  7056. ((or (eq char ?\s)
  7057. (setq a (rassoc char alist))
  7058. (and tag (setq a (cons tag nil))))
  7059. (org-agenda-filter-show-all-tag)
  7060. (setq tag (car a))
  7061. (setq org-agenda-tag-filter
  7062. (cons (concat (if exclude "-" "+") tag)
  7063. current))
  7064. (org-agenda-filter-apply org-agenda-tag-filter 'tag expand))
  7065. (t (error "Invalid tag selection character %c" char)))))
  7066. (defun org-agenda-get-represented-tags ()
  7067. "Get a list of all tags currently represented in the agenda."
  7068. (let (p tags)
  7069. (save-excursion
  7070. (goto-char (point-min))
  7071. (while (setq p (next-single-property-change (point) 'tags))
  7072. (goto-char p)
  7073. (mapc (lambda (x) (add-to-list 'tags x))
  7074. (get-text-property (point) 'tags))))
  7075. tags))
  7076. (defun org-agenda-filter-make-matcher (filter type &optional expand)
  7077. "Create the form that tests a line for agenda filter. Optional
  7078. argument EXPAND can be used for the TYPE tag and will expand the
  7079. tags in the FILTER if any of the tags in FILTER are grouptags."
  7080. (let (f f1)
  7081. (cond
  7082. ;; Tag filter
  7083. ((eq type 'tag)
  7084. (setq filter
  7085. (delete-dups
  7086. (append (get 'org-agenda-tag-filter :preset-filter)
  7087. filter)))
  7088. (dolist (x filter)
  7089. (let ((op (string-to-char x)))
  7090. (if expand (setq x (org-agenda-filter-expand-tags (list x) t))
  7091. (setq x (list x)))
  7092. (setq f1 (org-agenda-filter-make-matcher-tag-exp x op))
  7093. (push f1 f))))
  7094. ;; Category filter
  7095. ((eq type 'category)
  7096. (setq filter
  7097. (delete-dups
  7098. (append (get 'org-agenda-category-filter :preset-filter)
  7099. filter)))
  7100. (dolist (x filter)
  7101. (if (equal "-" (substring x 0 1))
  7102. (setq f1 (list 'not (list 'equal (substring x 1) 'cat)))
  7103. (setq f1 (list 'equal (substring x 1) 'cat)))
  7104. (push f1 f)))
  7105. ;; Regexp filter
  7106. ((eq type 'regexp)
  7107. (setq filter
  7108. (delete-dups
  7109. (append (get 'org-agenda-regexp-filter :preset-filter)
  7110. filter)))
  7111. (dolist (x filter)
  7112. (if (equal "-" (substring x 0 1))
  7113. (setq f1 (list 'not (list 'string-match (substring x 1) 'txt)))
  7114. (setq f1 (list 'string-match (substring x 1) 'txt)))
  7115. (push f1 f)))
  7116. ;; Effort filter
  7117. ((eq type 'effort)
  7118. (setq filter
  7119. (delete-dups
  7120. (append (get 'org-agenda-effort-filter :preset-filter)
  7121. filter)))
  7122. (dolist (x filter)
  7123. (push (org-agenda-filter-effort-form x) f))))
  7124. (cons 'and (nreverse f))))
  7125. (defun org-agenda-filter-make-matcher-tag-exp (tags op)
  7126. "Return a form associated to tag-expression TAGS.
  7127. Build a form testing a line for agenda filter for
  7128. tag-expressions. OP is an operator of type CHAR that allows the
  7129. function to set the right switches in the returned form."
  7130. (let (form)
  7131. ;; Any of the expressions can match if OP is +, all must match if
  7132. ;; the operator is -.
  7133. (dolist (x tags (cons (if (eq op ?-) 'and 'or) form))
  7134. (let* ((tag (substring x 1))
  7135. (f (cond
  7136. ((string= "" tag) '(not tags))
  7137. ((and (string-match-p "\\`{" tag) (string-match-p "}\\'" tag))
  7138. ;; TAG is a regexp.
  7139. (list 'org-match-any-p (substring tag 1 -1) 'tags))
  7140. (t (list 'member (downcase tag) 'tags)))))
  7141. (push (if (eq op ?-) (list 'not f) f) form)))))
  7142. (defun org-agenda-filter-effort-form (e)
  7143. "Return the form to compare the effort of the current line with what E says.
  7144. E looks like \"+<2:25\"."
  7145. (let (op)
  7146. (setq e (substring e 1))
  7147. (setq op (string-to-char e) e (substring e 1))
  7148. (setq op (cond ((equal op ?<) '<=)
  7149. ((equal op ?>) '>=)
  7150. ((equal op ??) op)
  7151. (t '=)))
  7152. (list 'org-agenda-compare-effort (list 'quote op)
  7153. (org-duration-to-minutes e))))
  7154. (defun org-agenda-compare-effort (op value)
  7155. "Compare the effort of the current line with VALUE, using OP.
  7156. If the line does not have an effort defined, return nil."
  7157. ;; `effort-minutes' property cannot be extracted directly from
  7158. ;; current line but is stored as a property in `txt'.
  7159. (let ((effort (get-text-property 0 'effort-minutes (org-get-at-bol 'txt))))
  7160. (funcall op
  7161. (or effort (if org-sort-agenda-noeffort-is-high 32767 -1))
  7162. value)))
  7163. (defun org-agenda-filter-expand-tags (filter &optional no-operator)
  7164. "Expand group tags in FILTER for the agenda.
  7165. When NO-OPERATOR is non-nil, do not add the + operator to returned tags."
  7166. (if org-group-tags
  7167. (let ((case-fold-search t) rtn)
  7168. (mapc
  7169. (lambda (f)
  7170. (let (f0 dir)
  7171. (if (string-match "^\\([+-]\\)\\(.+\\)" f)
  7172. (setq dir (match-string 1 f) f0 (match-string 2 f))
  7173. (setq dir (if no-operator "" "+") f0 f))
  7174. (setq rtn (append (mapcar (lambda(f1) (concat dir f1))
  7175. (org-tags-expand f0 t t))
  7176. rtn))))
  7177. filter)
  7178. (reverse rtn))
  7179. filter))
  7180. (defun org-agenda-filter-apply (filter type &optional expand)
  7181. "Set FILTER as the new agenda filter and apply it. Optional
  7182. argument EXPAND can be used for the TYPE tag and will expand the
  7183. tags in the FILTER if any of the tags in FILTER are grouptags."
  7184. ;; Deactivate `org-agenda-entry-text-mode' when filtering
  7185. (if org-agenda-entry-text-mode (org-agenda-entry-text-mode))
  7186. (let (tags cat txt)
  7187. (setq org-agenda-filter-form (org-agenda-filter-make-matcher filter type expand))
  7188. ;; Only set `org-agenda-filtered-by-category' to t when a unique
  7189. ;; category is used as the filter:
  7190. (setq org-agenda-filtered-by-category
  7191. (and (eq type 'category)
  7192. (not (equal (substring (car filter) 0 1) "-"))))
  7193. (org-agenda-set-mode-name)
  7194. (save-excursion
  7195. (goto-char (point-min))
  7196. (while (not (eobp))
  7197. (if (org-get-at-bol 'org-marker)
  7198. (progn
  7199. (setq tags (org-get-at-bol 'tags)
  7200. cat (org-get-at-eol 'org-category 1)
  7201. txt (org-get-at-bol 'txt))
  7202. (if (not (eval org-agenda-filter-form))
  7203. (org-agenda-filter-hide-line type))
  7204. (beginning-of-line 2))
  7205. (beginning-of-line 2))))
  7206. (if (get-char-property (point) 'invisible)
  7207. (ignore-errors (org-agenda-previous-line)))))
  7208. (defun org-agenda-filter-top-headline-apply (hl &optional negative)
  7209. "Filter by top headline HL."
  7210. (org-agenda-set-mode-name)
  7211. (save-excursion
  7212. (goto-char (point-min))
  7213. (while (not (eobp))
  7214. (let* ((pos (org-get-at-bol 'org-hd-marker))
  7215. (tophl (and pos (org-find-top-headline pos))))
  7216. (if (and tophl (funcall (if negative 'identity 'not)
  7217. (string= hl tophl)))
  7218. (org-agenda-filter-hide-line 'top-headline)))
  7219. (beginning-of-line 2)))
  7220. (if (get-char-property (point) 'invisible)
  7221. (org-agenda-previous-line))
  7222. (setq org-agenda-top-headline-filter hl
  7223. org-agenda-filtered-by-top-headline t))
  7224. (defun org-agenda-filter-hide-line (type)
  7225. "Hide lines with TYPE in the agenda buffer."
  7226. (let* ((b (max (point-min) (1- (point-at-bol))))
  7227. (e (point-at-eol)))
  7228. (let ((inhibit-read-only t))
  7229. (add-text-properties
  7230. b e `(invisible org-filtered org-filter-type ,type)))))
  7231. (defun org-agenda-remove-filter (type)
  7232. (interactive)
  7233. "Remove filter of type TYPE from the agenda buffer."
  7234. (save-excursion
  7235. (goto-char (point-min))
  7236. (let ((inhibit-read-only t) pos)
  7237. (while (setq pos (text-property-any (point) (point-max) 'org-filter-type type))
  7238. (goto-char pos)
  7239. (remove-text-properties
  7240. (point) (next-single-property-change (point) 'org-filter-type)
  7241. `(invisible org-filtered org-filter-type ,type))))
  7242. (set (intern (format "org-agenda-%s-filter" (intern-soft type))) nil)
  7243. (setq org-agenda-filter-form nil)
  7244. (org-agenda-set-mode-name)
  7245. (org-agenda-finalize)))
  7246. (defun org-agenda-filter-show-all-tag nil
  7247. (org-agenda-remove-filter 'tag))
  7248. (defun org-agenda-filter-show-all-re nil
  7249. (org-agenda-remove-filter 'regexp))
  7250. (defun org-agenda-filter-show-all-effort nil
  7251. (org-agenda-remove-filter 'effort))
  7252. (defun org-agenda-filter-show-all-cat nil
  7253. (org-agenda-remove-filter 'category))
  7254. (defun org-agenda-filter-show-all-top-filter nil
  7255. (org-agenda-remove-filter 'top-headline))
  7256. (defun org-agenda-manipulate-query-add ()
  7257. "Manipulate the query by adding a search term with positive selection.
  7258. Positive selection means the term must be matched for selection of an entry."
  7259. (interactive)
  7260. (org-agenda-manipulate-query ?\[))
  7261. (defun org-agenda-manipulate-query-subtract ()
  7262. "Manipulate the query by adding a search term with negative selection.
  7263. Negative selection means term must not be matched for selection of an entry."
  7264. (interactive)
  7265. (org-agenda-manipulate-query ?\]))
  7266. (defun org-agenda-manipulate-query-add-re ()
  7267. "Manipulate the query by adding a search regexp with positive selection.
  7268. Positive selection means the regexp must match for selection of an entry."
  7269. (interactive)
  7270. (org-agenda-manipulate-query ?\{))
  7271. (defun org-agenda-manipulate-query-subtract-re ()
  7272. "Manipulate the query by adding a search regexp with negative selection.
  7273. Negative selection means regexp must not match for selection of an entry."
  7274. (interactive)
  7275. (org-agenda-manipulate-query ?\}))
  7276. (defun org-agenda-manipulate-query (char)
  7277. (cond
  7278. ((eq org-agenda-type 'agenda)
  7279. (let ((org-agenda-include-inactive-timestamps t))
  7280. (org-agenda-redo))
  7281. (message "Display now includes inactive timestamps as well"))
  7282. ((eq org-agenda-type 'search)
  7283. (org-add-to-string
  7284. 'org-agenda-query-string
  7285. (if org-agenda-last-search-view-search-was-boolean
  7286. (cdr (assoc char '((?\[ . " +") (?\] . " -")
  7287. (?\{ . " +{}") (?\} . " -{}"))))
  7288. " "))
  7289. (setq org-agenda-redo-command
  7290. (list 'org-search-view
  7291. (car (get-text-property (min (1- (point-max)) (point))
  7292. 'org-last-args))
  7293. org-agenda-query-string
  7294. (+ (length org-agenda-query-string)
  7295. (if (member char '(?\{ ?\})) 0 1))))
  7296. (set-register org-agenda-query-register org-agenda-query-string)
  7297. (let ((org-agenda-overriding-arguments
  7298. (cdr org-agenda-redo-command)))
  7299. (org-agenda-redo)))
  7300. (t (error "Cannot manipulate query for %s-type agenda buffers"
  7301. org-agenda-type))))
  7302. (defun org-add-to-string (var string)
  7303. (set var (concat (symbol-value var) string)))
  7304. (defun org-agenda-goto-date (span)
  7305. "Jump to DATE in agenda."
  7306. (interactive "P")
  7307. (let* ((org-read-date-prefer-future
  7308. (eval org-agenda-jump-prefer-future))
  7309. (date (org-read-date))
  7310. (day (time-to-days (org-time-string-to-time date)))
  7311. (org-agenda-sticky-orig org-agenda-sticky)
  7312. (org-agenda-buffer-tmp-name (buffer-name))
  7313. (args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7314. (0-arg (or current-prefix-arg (car args)))
  7315. (2-arg (nth 2 args))
  7316. (with-hour-p (nth 4 org-agenda-redo-command))
  7317. (newcmd (list 'org-agenda-list 0-arg date
  7318. (org-agenda-span-to-ndays
  7319. 2-arg (org-time-string-to-absolute date))
  7320. with-hour-p))
  7321. (newargs (cdr newcmd))
  7322. (inhibit-read-only t)
  7323. org-agenda-sticky)
  7324. (if (not (org-agenda-check-type t 'agenda))
  7325. (error "Not available in non-agenda views")
  7326. (add-text-properties (point-min) (point-max)
  7327. `(org-redo-cmd ,newcmd org-last-args ,newargs))
  7328. (org-agenda-redo)
  7329. (goto-char (point-min))
  7330. (while (not (or (= (or (get-text-property (point) 'day) 0) day)
  7331. (save-excursion (move-beginning-of-line 2) (eobp))))
  7332. (move-beginning-of-line 2))
  7333. (setq org-agenda-sticky org-agenda-sticky-orig
  7334. org-agenda-this-buffer-is-sticky org-agenda-sticky))))
  7335. (defun org-agenda-goto-today ()
  7336. "Go to today."
  7337. (interactive)
  7338. (org-agenda-check-type t 'agenda)
  7339. (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7340. (curspan (nth 2 args))
  7341. (tdpos (text-property-any (point-min) (point-max) 'org-today t)))
  7342. (cond
  7343. (tdpos (goto-char tdpos))
  7344. ((eq org-agenda-type 'agenda)
  7345. (let* ((sd (org-agenda-compute-starting-span
  7346. (org-today) (or curspan org-agenda-span)))
  7347. (org-agenda-overriding-arguments args))
  7348. (setf (nth 1 org-agenda-overriding-arguments) sd)
  7349. (org-agenda-redo)
  7350. (org-agenda-find-same-or-today-or-agenda)))
  7351. (t (error "Cannot find today")))))
  7352. (defun org-agenda-find-same-or-today-or-agenda (&optional cnt)
  7353. (goto-char
  7354. (or (and cnt (text-property-any (point-min) (point-max) 'org-day-cnt cnt))
  7355. (text-property-any (point-min) (point-max) 'org-today t)
  7356. (text-property-any (point-min) (point-max) 'org-agenda-type 'agenda)
  7357. (and (get-text-property (min (1- (point-max)) (point)) 'org-series)
  7358. (org-agenda-backward-block))
  7359. (point-min))))
  7360. (defun org-agenda-backward-block ()
  7361. "Move backward by one agenda block."
  7362. (interactive)
  7363. (org-agenda-forward-block 'backward))
  7364. (defun org-agenda-forward-block (&optional backward)
  7365. "Move forward by one agenda block.
  7366. When optional argument BACKWARD is set, go backward"
  7367. (interactive)
  7368. (cond ((not (derived-mode-p 'org-agenda-mode))
  7369. (user-error
  7370. "Cannot execute this command outside of org-agenda-mode buffers"))
  7371. ((looking-at (if backward "\\`" "\\'"))
  7372. (message "Already at the %s block" (if backward "first" "last")))
  7373. (t (let ((pos (prog1 (point)
  7374. (ignore-errors (if backward (backward-char 1)
  7375. (move-end-of-line 1)))))
  7376. (f (if backward
  7377. 'previous-single-property-change
  7378. 'next-single-property-change))
  7379. moved dest)
  7380. (while (and (setq dest (funcall
  7381. f (point) 'org-agenda-structural-header))
  7382. (not (get-text-property
  7383. (point) 'org-agenda-structural-header)))
  7384. (setq moved t)
  7385. (goto-char dest))
  7386. (if moved (move-beginning-of-line 1)
  7387. (goto-char (if backward (point-min) (point-max)))
  7388. (move-beginning-of-line 1)
  7389. (message "No %s block" (if backward "previous" "further")))))))
  7390. (defun org-agenda-later (arg)
  7391. "Go forward in time by the current span.
  7392. With prefix ARG, go forward that many times the current span."
  7393. (interactive "p")
  7394. (org-agenda-check-type t 'agenda)
  7395. (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7396. (span (or (nth 2 args) org-agenda-current-span))
  7397. (sd (or (nth 1 args) (org-get-at-bol 'day) org-starting-day))
  7398. (greg (calendar-gregorian-from-absolute sd))
  7399. (cnt (org-get-at-bol 'org-day-cnt))
  7400. greg2)
  7401. (cond
  7402. ((numberp span)
  7403. (setq sd (+ (* span arg) sd)))
  7404. ((eq span 'day)
  7405. (setq sd (+ arg sd)))
  7406. ((eq span 'week)
  7407. (setq sd (+ (* 7 arg) sd)))
  7408. ((eq span 'fortnight)
  7409. (setq sd (+ (* 14 arg) sd)))
  7410. ((eq span 'month)
  7411. (setq greg2 (list (+ (car greg) arg) (nth 1 greg) (nth 2 greg))
  7412. sd (calendar-absolute-from-gregorian greg2))
  7413. (setcar greg2 (1+ (car greg2))))
  7414. ((eq span 'year)
  7415. (setq greg2 (list (car greg) (nth 1 greg) (+ arg (nth 2 greg)))
  7416. sd (calendar-absolute-from-gregorian greg2))
  7417. (setcar (nthcdr 2 greg2) (1+ (nth 2 greg2))))
  7418. (t
  7419. (setq sd (+ (* span arg) sd))))
  7420. (let ((org-agenda-overriding-cmd
  7421. ;; `cmd' may have been set by `org-agenda-run-series' which
  7422. ;; uses `org-agenda-overriding-cmd' to decide whether
  7423. ;; overriding is allowed for `cmd'
  7424. (get-text-property (min (1- (point-max)) (point)) 'org-series-cmd))
  7425. (org-agenda-overriding-arguments
  7426. (list (car args) sd span)))
  7427. (org-agenda-redo)
  7428. (org-agenda-find-same-or-today-or-agenda cnt))))
  7429. (defun org-agenda-earlier (arg)
  7430. "Go backward in time by the current span.
  7431. With prefix ARG, go backward that many times the current span."
  7432. (interactive "p")
  7433. (org-agenda-later (- arg)))
  7434. (defun org-agenda-view-mode-dispatch ()
  7435. "Call one of the view mode commands."
  7436. (interactive)
  7437. (org-unlogged-message
  7438. "View: [d]ay [w]eek for[t]night [m]onth [y]ear [SPC]reset [q]uit/abort
  7439. time[G]rid [[]inactive [f]ollow [l]og [L]og-all [c]lockcheck
  7440. [a]rch-trees [A]rch-files clock[R]eport include[D]iary [E]ntryText")
  7441. (pcase (read-char-exclusive)
  7442. (?\ (call-interactively 'org-agenda-reset-view))
  7443. (?d (call-interactively 'org-agenda-day-view))
  7444. (?w (call-interactively 'org-agenda-week-view))
  7445. (?t (call-interactively 'org-agenda-fortnight-view))
  7446. (?m (call-interactively 'org-agenda-month-view))
  7447. (?y (call-interactively 'org-agenda-year-view))
  7448. (?l (call-interactively 'org-agenda-log-mode))
  7449. (?L (org-agenda-log-mode '(4)))
  7450. (?c (org-agenda-log-mode 'clockcheck))
  7451. ((or ?F ?f) (call-interactively 'org-agenda-follow-mode))
  7452. (?a (call-interactively 'org-agenda-archives-mode))
  7453. (?A (org-agenda-archives-mode 'files))
  7454. ((or ?R ?r) (call-interactively 'org-agenda-clockreport-mode))
  7455. ((or ?E ?e) (call-interactively 'org-agenda-entry-text-mode))
  7456. (?G (call-interactively 'org-agenda-toggle-time-grid))
  7457. (?D (call-interactively 'org-agenda-toggle-diary))
  7458. (?\! (call-interactively 'org-agenda-toggle-deadlines))
  7459. (?\[ (let ((org-agenda-include-inactive-timestamps t))
  7460. (org-agenda-check-type t 'agenda)
  7461. (org-agenda-redo))
  7462. (message "Display now includes inactive timestamps as well"))
  7463. (?q (message "Abort"))
  7464. (key (user-error "Invalid key: %s" key))))
  7465. (defun org-agenda-reset-view ()
  7466. "Switch to default view for agenda."
  7467. (interactive)
  7468. (org-agenda-change-time-span org-agenda-span))
  7469. (defun org-agenda-day-view (&optional day-of-month)
  7470. "Switch to daily view for agenda.
  7471. With argument DAY-OF-MONTH, switch to that day of the month."
  7472. (interactive "P")
  7473. (org-agenda-change-time-span 'day day-of-month))
  7474. (defun org-agenda-week-view (&optional iso-week)
  7475. "Switch to weekly view for agenda.
  7476. With argument ISO-WEEK, switch to the corresponding ISO week.
  7477. If ISO-WEEK has more then 2 digits, only the last two encode
  7478. the week. Any digits before this encode a year. So 200712
  7479. means week 12 of year 2007. Years ranging from 70 years ago
  7480. to 30 years in the future can also be written as 2-digit years."
  7481. (interactive "P")
  7482. (org-agenda-change-time-span 'week iso-week))
  7483. (defun org-agenda-fortnight-view (&optional iso-week)
  7484. "Switch to fortnightly view for agenda.
  7485. With argument ISO-WEEK, switch to the corresponding ISO week.
  7486. If ISO-WEEK has more then 2 digits, only the last two encode
  7487. the week. Any digits before this encode a year. So 200712
  7488. means week 12 of year 2007. Years ranging from 70 years ago
  7489. to 30 years in the future can also be written as 2-digit years."
  7490. (interactive "P")
  7491. (org-agenda-change-time-span 'fortnight iso-week))
  7492. (defun org-agenda-month-view (&optional month)
  7493. "Switch to monthly view for agenda.
  7494. With argument MONTH, switch to that month. If MONTH has more
  7495. then 2 digits, only the last two encode the month. Any digits
  7496. before this encode a year. So 200712 means December year 2007.
  7497. Years ranging from 70 years ago to 30 years in the future can
  7498. also be written as 2-digit years."
  7499. (interactive "P")
  7500. (org-agenda-change-time-span 'month month))
  7501. (defun org-agenda-year-view (&optional year)
  7502. "Switch to yearly view for agenda.
  7503. With argument YEAR, switch to that year. Years ranging from 70
  7504. years ago to 30 years in the future can also be written as
  7505. 2-digit years."
  7506. (interactive "P")
  7507. (when year
  7508. (setq year (org-small-year-to-year year)))
  7509. (if (y-or-n-p "Are you sure you want to compute the agenda for an entire year? ")
  7510. (org-agenda-change-time-span 'year year)
  7511. (error "Abort")))
  7512. (defun org-agenda-change-time-span (span &optional n)
  7513. "Change the agenda view to SPAN.
  7514. SPAN may be `day', `week', `fortnight', `month', `year'."
  7515. (org-agenda-check-type t 'agenda)
  7516. (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7517. (curspan (nth 2 args)))
  7518. (if (and (not n) (equal curspan span))
  7519. (error "Viewing span is already \"%s\"" span))
  7520. (let* ((sd (or (org-get-at-bol 'day)
  7521. (nth 1 args)
  7522. org-starting-day))
  7523. (sd (org-agenda-compute-starting-span sd span n))
  7524. (org-agenda-overriding-cmd
  7525. (get-text-property (min (1- (point-max)) (point)) 'org-series-cmd))
  7526. (org-agenda-overriding-arguments
  7527. (list (car args) sd span)))
  7528. (org-agenda-redo)
  7529. (org-agenda-find-same-or-today-or-agenda))
  7530. (org-agenda-set-mode-name)
  7531. (message "Switched to %s view" span)))
  7532. (defun org-agenda-compute-starting-span (sd span &optional n)
  7533. "Compute starting date for agenda.
  7534. SPAN may be `day', `week', `fortnight', `month', `year'. The return value
  7535. is a cons cell with the starting date and the number of days,
  7536. so that the date SD will be in that range."
  7537. (let* ((greg (calendar-gregorian-from-absolute sd))
  7538. (dg (nth 1 greg))
  7539. (mg (car greg))
  7540. (yg (nth 2 greg)))
  7541. (cond
  7542. ((eq span 'day)
  7543. (when n
  7544. (setq sd (+ (calendar-absolute-from-gregorian
  7545. (list mg 1 yg))
  7546. n -1))))
  7547. ((or (eq span 'week) (eq span 'fortnight))
  7548. (let* ((nt (calendar-day-of-week
  7549. (calendar-gregorian-from-absolute sd)))
  7550. (d (if org-agenda-start-on-weekday
  7551. (- nt org-agenda-start-on-weekday)
  7552. 0))
  7553. y1)
  7554. (setq sd (- sd (+ (if (< d 0) 7 0) d)))
  7555. (when n
  7556. (require 'cal-iso)
  7557. (when (> n 99)
  7558. (setq y1 (org-small-year-to-year (/ n 100))
  7559. n (mod n 100)))
  7560. (setq sd
  7561. (calendar-iso-to-absolute
  7562. (list n 1
  7563. (or y1 (nth 2 (calendar-iso-from-absolute sd)))))))))
  7564. ((eq span 'month)
  7565. (let (y1)
  7566. (when (and n (> n 99))
  7567. (setq y1 (org-small-year-to-year (/ n 100))
  7568. n (mod n 100)))
  7569. (setq sd (calendar-absolute-from-gregorian
  7570. (list (or n mg) 1 (or y1 yg))))))
  7571. ((eq span 'year)
  7572. (setq sd (calendar-absolute-from-gregorian
  7573. (list 1 1 (or n yg))))))
  7574. sd))
  7575. (defun org-agenda-next-date-line (&optional arg)
  7576. "Jump to the next line indicating a date in agenda buffer."
  7577. (interactive "p")
  7578. (org-agenda-check-type t 'agenda)
  7579. (beginning-of-line 1)
  7580. ;; This does not work if user makes date format that starts with a blank
  7581. (if (looking-at "^\\S-") (forward-char 1))
  7582. (if (not (re-search-forward "^\\S-" nil t arg))
  7583. (progn
  7584. (backward-char 1)
  7585. (error "No next date after this line in this buffer")))
  7586. (goto-char (match-beginning 0)))
  7587. (defun org-agenda-previous-date-line (&optional arg)
  7588. "Jump to the previous line indicating a date in agenda buffer."
  7589. (interactive "p")
  7590. (org-agenda-check-type t 'agenda)
  7591. (beginning-of-line 1)
  7592. (if (not (re-search-backward "^\\S-" nil t arg))
  7593. (error "No previous date before this line in this buffer")))
  7594. ;; Initialize the highlight
  7595. (defvar org-hl (make-overlay 1 1))
  7596. (overlay-put org-hl 'face 'highlight)
  7597. (defun org-highlight (begin end &optional buffer)
  7598. "Highlight a region with overlay."
  7599. (move-overlay org-hl begin end (or buffer (current-buffer))))
  7600. (defun org-unhighlight ()
  7601. "Detach overlay INDEX."
  7602. (delete-overlay org-hl))
  7603. (defun org-unhighlight-once ()
  7604. "Remove the highlight from its position, and this function from the hook."
  7605. (remove-hook 'pre-command-hook 'org-unhighlight-once)
  7606. (org-unhighlight))
  7607. (defvar org-agenda-pre-follow-window-conf nil)
  7608. (defun org-agenda-follow-mode ()
  7609. "Toggle follow mode in an agenda buffer."
  7610. (interactive)
  7611. (unless org-agenda-follow-mode
  7612. (setq org-agenda-pre-follow-window-conf
  7613. (current-window-configuration)))
  7614. (setq org-agenda-follow-mode (not org-agenda-follow-mode))
  7615. (unless org-agenda-follow-mode
  7616. (set-window-configuration org-agenda-pre-follow-window-conf))
  7617. (org-agenda-set-mode-name)
  7618. (org-agenda-do-context-action)
  7619. (message "Follow mode is %s"
  7620. (if org-agenda-follow-mode "on" "off")))
  7621. (defun org-agenda-entry-text-mode (&optional arg)
  7622. "Toggle entry text mode in an agenda buffer."
  7623. (interactive "P")
  7624. (if (or org-agenda-tag-filter
  7625. org-agenda-category-filter
  7626. org-agenda-regexp-filter
  7627. org-agenda-top-headline-filter)
  7628. (user-error "Can't show entry text in filtered views")
  7629. (setq org-agenda-entry-text-mode (or (integerp arg)
  7630. (not org-agenda-entry-text-mode)))
  7631. (org-agenda-entry-text-hide)
  7632. (and org-agenda-entry-text-mode
  7633. (let ((org-agenda-entry-text-maxlines
  7634. (if (integerp arg) arg org-agenda-entry-text-maxlines)))
  7635. (org-agenda-entry-text-show)))
  7636. (org-agenda-set-mode-name)
  7637. (message "Entry text mode is %s%s"
  7638. (if org-agenda-entry-text-mode "on" "off")
  7639. (if (not org-agenda-entry-text-mode) ""
  7640. (format " (maximum number of lines is %d)"
  7641. (if (integerp arg) arg org-agenda-entry-text-maxlines))))))
  7642. (defun org-agenda-clockreport-mode ()
  7643. "Toggle clocktable mode in an agenda buffer."
  7644. (interactive)
  7645. (org-agenda-check-type t 'agenda)
  7646. (setq org-agenda-clockreport-mode (not org-agenda-clockreport-mode))
  7647. (org-agenda-set-mode-name)
  7648. (org-agenda-redo)
  7649. (message "Clocktable mode is %s"
  7650. (if org-agenda-clockreport-mode "on" "off")))
  7651. (defun org-agenda-log-mode (&optional special)
  7652. "Toggle log mode in an agenda buffer.
  7653. With argument SPECIAL, show all possible log items, not only the ones
  7654. configured in `org-agenda-log-mode-items'.
  7655. With a `\\[universal-argument] \\[universal-argument]' prefix, show *only* \
  7656. log items, nothing else."
  7657. (interactive "P")
  7658. (org-agenda-check-type t 'agenda)
  7659. (setq org-agenda-show-log
  7660. (cond
  7661. ((equal special '(16)) 'only)
  7662. ((eq special 'clockcheck)
  7663. (if (eq org-agenda-show-log 'clockcheck)
  7664. nil 'clockcheck))
  7665. (special '(closed clock state))
  7666. (t (not org-agenda-show-log))))
  7667. (org-agenda-set-mode-name)
  7668. (org-agenda-redo)
  7669. (message "Log mode is %s" (if org-agenda-show-log "on" "off")))
  7670. (defun org-agenda-archives-mode (&optional with-files)
  7671. "Toggle inclusion of items in trees marked with :ARCHIVE:.
  7672. When called with a prefix argument, include all archive files as well."
  7673. (interactive "P")
  7674. (setq org-agenda-archives-mode
  7675. (if with-files t (if org-agenda-archives-mode nil 'trees)))
  7676. (org-agenda-set-mode-name)
  7677. (org-agenda-redo)
  7678. (message
  7679. "%s"
  7680. (cond
  7681. ((eq org-agenda-archives-mode nil)
  7682. "No archives are included")
  7683. ((eq org-agenda-archives-mode 'trees)
  7684. (format "Trees with :%s: tag are included" org-archive-tag))
  7685. ((eq org-agenda-archives-mode t)
  7686. (format "Trees with :%s: tag and all active archive files are included"
  7687. org-archive-tag)))))
  7688. (defun org-agenda-toggle-diary ()
  7689. "Toggle diary inclusion in an agenda buffer."
  7690. (interactive)
  7691. (org-agenda-check-type t 'agenda)
  7692. (setq org-agenda-include-diary (not org-agenda-include-diary))
  7693. (org-agenda-redo)
  7694. (org-agenda-set-mode-name)
  7695. (message "Diary inclusion turned %s"
  7696. (if org-agenda-include-diary "on" "off")))
  7697. (defun org-agenda-toggle-deadlines ()
  7698. "Toggle inclusion of entries with a deadline in an agenda buffer."
  7699. (interactive)
  7700. (org-agenda-check-type t 'agenda)
  7701. (setq org-agenda-include-deadlines (not org-agenda-include-deadlines))
  7702. (org-agenda-redo)
  7703. (org-agenda-set-mode-name)
  7704. (message "Deadlines inclusion turned %s"
  7705. (if org-agenda-include-deadlines "on" "off")))
  7706. (defun org-agenda-toggle-time-grid ()
  7707. "Toggle time grid in an agenda buffer."
  7708. (interactive)
  7709. (org-agenda-check-type t 'agenda)
  7710. (setq org-agenda-use-time-grid (not org-agenda-use-time-grid))
  7711. (org-agenda-redo)
  7712. (org-agenda-set-mode-name)
  7713. (message "Time-grid turned %s"
  7714. (if org-agenda-use-time-grid "on" "off")))
  7715. (defun org-agenda-set-mode-name ()
  7716. "Set the mode name to indicate all the small mode settings."
  7717. (setq mode-name
  7718. (list "Org-Agenda"
  7719. (if (get 'org-agenda-files 'org-restrict) " []" "")
  7720. " "
  7721. '(:eval (org-agenda-span-name org-agenda-current-span))
  7722. (if org-agenda-follow-mode " Follow" "")
  7723. (if org-agenda-entry-text-mode " ETxt" "")
  7724. (if org-agenda-include-diary " Diary" "")
  7725. (if org-agenda-include-deadlines " Ddl" "")
  7726. (if org-agenda-use-time-grid " Grid" "")
  7727. (if (and (boundp 'org-habit-show-habits)
  7728. org-habit-show-habits) " Habit" "")
  7729. (cond
  7730. ((consp org-agenda-show-log) " LogAll")
  7731. ((eq org-agenda-show-log 'clockcheck) " ClkCk")
  7732. (org-agenda-show-log " Log")
  7733. (t ""))
  7734. (if (or org-agenda-category-filter
  7735. (get 'org-agenda-category-filter :preset-filter))
  7736. '(:eval (propertize
  7737. (concat " <"
  7738. (mapconcat
  7739. 'identity
  7740. (append
  7741. (get 'org-agenda-category-filter :preset-filter)
  7742. org-agenda-category-filter)
  7743. "")
  7744. ">")
  7745. 'face 'org-agenda-filter-category
  7746. 'help-echo "Category used in filtering")) "")
  7747. (if (or org-agenda-tag-filter
  7748. (get 'org-agenda-tag-filter :preset-filter))
  7749. '(:eval (propertize
  7750. (concat " {"
  7751. (mapconcat
  7752. 'identity
  7753. (append
  7754. (get 'org-agenda-tag-filter :preset-filter)
  7755. org-agenda-tag-filter)
  7756. "")
  7757. "}")
  7758. 'face 'org-agenda-filter-tags
  7759. 'help-echo "Tags used in filtering")) "")
  7760. (if (or org-agenda-effort-filter
  7761. (get 'org-agenda-effort-filter :preset-filter))
  7762. '(:eval (propertize
  7763. (concat " {"
  7764. (mapconcat
  7765. 'identity
  7766. (append
  7767. (get 'org-agenda-effort-filter :preset-filter)
  7768. org-agenda-effort-filter)
  7769. "")
  7770. "}")
  7771. 'face 'org-agenda-filter-effort
  7772. 'help-echo "Effort conditions used in filtering")) "")
  7773. (if (or org-agenda-regexp-filter
  7774. (get 'org-agenda-regexp-filter :preset-filter))
  7775. '(:eval (propertize
  7776. (concat " ["
  7777. (mapconcat
  7778. 'identity
  7779. (append
  7780. (get 'org-agenda-regexp-filter :preset-filter)
  7781. org-agenda-regexp-filter)
  7782. "")
  7783. "]")
  7784. 'face 'org-agenda-filter-regexp
  7785. 'help-echo "Regexp used in filtering")) "")
  7786. (if org-agenda-archives-mode
  7787. (if (eq org-agenda-archives-mode t)
  7788. " Archives"
  7789. (format " :%s:" org-archive-tag))
  7790. "")
  7791. (if org-agenda-clockreport-mode " Clock" "")))
  7792. (force-mode-line-update))
  7793. (defun org-agenda-update-agenda-type ()
  7794. "Update the agenda type after each command."
  7795. (setq org-agenda-type
  7796. (or (get-text-property (point) 'org-agenda-type)
  7797. (get-text-property (max (point-min) (1- (point))) 'org-agenda-type))))
  7798. (defun org-agenda-next-line ()
  7799. "Move cursor to the next line, and show if follow mode is active."
  7800. (interactive)
  7801. (call-interactively 'next-line)
  7802. (org-agenda-do-context-action))
  7803. (defun org-agenda-previous-line ()
  7804. "Move cursor to the previous line, and show if follow-mode is active."
  7805. (interactive)
  7806. (call-interactively 'previous-line)
  7807. (org-agenda-do-context-action))
  7808. (defun org-agenda-next-item (n)
  7809. "Move cursor to next agenda item."
  7810. (interactive "p")
  7811. (let ((col (current-column)))
  7812. (dotimes (c n)
  7813. (when (next-single-property-change (point-at-eol) 'org-marker)
  7814. (move-end-of-line 1)
  7815. (goto-char (next-single-property-change (point) 'org-marker))))
  7816. (org-move-to-column col))
  7817. (org-agenda-do-context-action))
  7818. (defun org-agenda-previous-item (n)
  7819. "Move cursor to next agenda item."
  7820. (interactive "p")
  7821. (dotimes (c n)
  7822. (let ((col (current-column))
  7823. (goto (save-excursion
  7824. (move-end-of-line 0)
  7825. (previous-single-property-change (point) 'org-marker))))
  7826. (if goto (goto-char goto))
  7827. (org-move-to-column col)))
  7828. (org-agenda-do-context-action))
  7829. (defun org-agenda-do-context-action ()
  7830. "Show outline path and, maybe, follow mode window."
  7831. (let ((m (org-get-at-bol 'org-marker)))
  7832. (when (and (markerp m) (marker-buffer m))
  7833. (and org-agenda-follow-mode
  7834. (if org-agenda-follow-indirect
  7835. (org-agenda-tree-to-indirect-buffer nil)
  7836. (org-agenda-show)))
  7837. (and org-agenda-show-outline-path
  7838. (org-with-point-at m (org-display-outline-path t))))))
  7839. (defun org-agenda-show-tags ()
  7840. "Show the tags applicable to the current item."
  7841. (interactive)
  7842. (let* ((tags (org-get-at-bol 'tags)))
  7843. (if tags
  7844. (message "Tags are :%s:"
  7845. (org-no-properties (mapconcat 'identity tags ":")))
  7846. (message "No tags associated with this line"))))
  7847. (defun org-agenda-goto (&optional highlight)
  7848. "Go to the entry at point in the corresponding Org file."
  7849. (interactive)
  7850. (let* ((marker (or (org-get-at-bol 'org-marker)
  7851. (org-agenda-error)))
  7852. (buffer (marker-buffer marker))
  7853. (pos (marker-position marker)))
  7854. (switch-to-buffer-other-window buffer)
  7855. (widen)
  7856. (push-mark)
  7857. (goto-char pos)
  7858. (when (derived-mode-p 'org-mode)
  7859. (org-show-context 'agenda)
  7860. (recenter (/ (window-height) 2))
  7861. (org-back-to-heading t)
  7862. (let ((case-fold-search nil))
  7863. (when (re-search-forward org-complex-heading-regexp nil t)
  7864. (goto-char (match-beginning 4)))))
  7865. (run-hooks 'org-agenda-after-show-hook)
  7866. (and highlight (org-highlight (point-at-bol) (point-at-eol)))))
  7867. (defvar org-agenda-after-show-hook nil
  7868. "Normal hook run after an item has been shown from the agenda.
  7869. Point is in the buffer where the item originated.")
  7870. (defun org-agenda-kill ()
  7871. "Kill the entry or subtree belonging to the current agenda entry."
  7872. (interactive)
  7873. (or (eq major-mode 'org-agenda-mode) (error "Not in agenda"))
  7874. (let* ((bufname-orig (buffer-name))
  7875. (marker (or (org-get-at-bol 'org-marker)
  7876. (org-agenda-error)))
  7877. (buffer (marker-buffer marker))
  7878. (pos (marker-position marker))
  7879. (type (org-get-at-bol 'type))
  7880. dbeg dend (n 0) conf)
  7881. (org-with-remote-undo buffer
  7882. (with-current-buffer buffer
  7883. (save-excursion
  7884. (goto-char pos)
  7885. (if (and (derived-mode-p 'org-mode) (not (member type '("sexp"))))
  7886. (setq dbeg (progn (org-back-to-heading t) (point))
  7887. dend (org-end-of-subtree t t))
  7888. (setq dbeg (point-at-bol)
  7889. dend (min (point-max) (1+ (point-at-eol)))))
  7890. (goto-char dbeg)
  7891. (while (re-search-forward "^[ \t]*\\S-" dend t) (setq n (1+ n)))))
  7892. (setq conf (or (eq t org-agenda-confirm-kill)
  7893. (and (numberp org-agenda-confirm-kill)
  7894. (> n org-agenda-confirm-kill))))
  7895. (and conf
  7896. (not (y-or-n-p
  7897. (format "Delete entry with %d lines in buffer \"%s\"? "
  7898. n (buffer-name buffer))))
  7899. (error "Abort"))
  7900. (let ((org-agenda-buffer-name bufname-orig))
  7901. (org-remove-subtree-entries-from-agenda buffer dbeg dend))
  7902. (with-current-buffer buffer (delete-region dbeg dend))
  7903. (message "Agenda item and source killed"))))
  7904. (defvar org-archive-default-command) ; defined in org-archive.el
  7905. (defun org-agenda-archive-default ()
  7906. "Archive the entry or subtree belonging to the current agenda entry."
  7907. (interactive)
  7908. (require 'org-archive)
  7909. (org-agenda-archive-with org-archive-default-command))
  7910. (defun org-agenda-archive-default-with-confirmation ()
  7911. "Archive the entry or subtree belonging to the current agenda entry."
  7912. (interactive)
  7913. (require 'org-archive)
  7914. (org-agenda-archive-with org-archive-default-command 'confirm))
  7915. (defun org-agenda-archive ()
  7916. "Archive the entry or subtree belonging to the current agenda entry."
  7917. (interactive)
  7918. (org-agenda-archive-with 'org-archive-subtree))
  7919. (defun org-agenda-archive-to-archive-sibling ()
  7920. "Move the entry to the archive sibling."
  7921. (interactive)
  7922. (org-agenda-archive-with 'org-archive-to-archive-sibling))
  7923. (defun org-agenda-archive-with (cmd &optional confirm)
  7924. "Move the entry to the archive sibling."
  7925. (interactive)
  7926. (or (eq major-mode 'org-agenda-mode) (error "Not in agenda"))
  7927. (let* ((bufname-orig (buffer-name))
  7928. (marker (or (org-get-at-bol 'org-marker)
  7929. (org-agenda-error)))
  7930. (buffer (marker-buffer marker))
  7931. (pos (marker-position marker)))
  7932. (org-with-remote-undo buffer
  7933. (with-current-buffer buffer
  7934. (if (derived-mode-p 'org-mode)
  7935. (if (and confirm
  7936. (not (y-or-n-p "Archive this subtree or entry? ")))
  7937. (error "Abort")
  7938. (save-window-excursion
  7939. (goto-char pos)
  7940. (let ((org-agenda-buffer-name bufname-orig))
  7941. (org-remove-subtree-entries-from-agenda))
  7942. (org-back-to-heading t)
  7943. (funcall cmd)))
  7944. (error "Archiving works only in Org files"))))))
  7945. (defun org-remove-subtree-entries-from-agenda (&optional buf beg end)
  7946. "Remove all lines in the agenda that correspond to a given subtree.
  7947. The subtree is the one in buffer BUF, starting at BEG and ending at END.
  7948. If this information is not given, the function uses the tree at point."
  7949. (let ((buf (or buf (current-buffer))) m p)
  7950. (save-excursion
  7951. (unless (and beg end)
  7952. (org-back-to-heading t)
  7953. (setq beg (point))
  7954. (org-end-of-subtree t)
  7955. (setq end (point)))
  7956. (set-buffer (get-buffer org-agenda-buffer-name))
  7957. (save-excursion
  7958. (goto-char (point-max))
  7959. (beginning-of-line 1)
  7960. (while (not (bobp))
  7961. (when (and (setq m (org-get-at-bol 'org-marker))
  7962. (equal buf (marker-buffer m))
  7963. (setq p (marker-position m))
  7964. (>= p beg)
  7965. (< p end))
  7966. (let ((inhibit-read-only t))
  7967. (delete-region (point-at-bol) (1+ (point-at-eol)))))
  7968. (beginning-of-line 0))))))
  7969. (defun org-agenda-refile (&optional goto rfloc no-update)
  7970. "Refile the item at point.
  7971. When called with `\\[universal-argument] \\[universal-argument]', \
  7972. go to the location of the last
  7973. refiled item.
  7974. When called with `\\[universal-argument] \\[universal-argument] \
  7975. \\[universal-argument]' prefix or when GOTO is 0, clear
  7976. the refile cache.
  7977. RFLOC can be a refile location obtained in a different way.
  7978. When NO-UPDATE is non-nil, don't redo the agenda buffer."
  7979. (interactive "P")
  7980. (cond
  7981. ((member goto '(0 (64)))
  7982. (org-refile-cache-clear))
  7983. ((equal goto '(16))
  7984. (org-refile-goto-last-stored))
  7985. (t
  7986. (let* ((buffer-orig (buffer-name))
  7987. (marker (or (org-get-at-bol 'org-hd-marker)
  7988. (org-agenda-error)))
  7989. (buffer (marker-buffer marker))
  7990. (pos (marker-position marker))
  7991. (rfloc (or rfloc
  7992. (org-refile-get-location
  7993. (if goto "Goto" "Refile to") buffer
  7994. org-refile-allow-creating-parent-nodes))))
  7995. (with-current-buffer buffer
  7996. (org-with-wide-buffer
  7997. (goto-char marker)
  7998. (let ((org-agenda-buffer-name buffer-orig))
  7999. (org-remove-subtree-entries-from-agenda))
  8000. (org-refile goto buffer rfloc))))
  8001. (unless no-update (org-agenda-redo)))))
  8002. (defun org-agenda-open-link (&optional arg)
  8003. "Open the link(s) in the current entry, if any.
  8004. This looks for a link in the displayed line in the agenda.
  8005. It also looks at the text of the entry itself."
  8006. (interactive "P")
  8007. (let* ((marker (or (org-get-at-bol 'org-hd-marker)
  8008. (org-get-at-bol 'org-marker)))
  8009. (buffer (and marker (marker-buffer marker)))
  8010. (prefix (buffer-substring (point-at-bol) (point-at-eol)))
  8011. (lkall (and buffer (org-offer-links-in-entry
  8012. buffer marker arg prefix)))
  8013. (lk0 (car lkall))
  8014. (lk (if (stringp lk0) (list lk0) lk0))
  8015. (lkend (cdr lkall))
  8016. trg)
  8017. (cond
  8018. ((and buffer lk)
  8019. (mapcar (lambda(l)
  8020. (with-current-buffer buffer
  8021. (setq trg (and (string-match org-bracket-link-regexp l)
  8022. (match-string 1 l)))
  8023. (if (or (not trg) (string-match org-any-link-re trg))
  8024. (org-with-wide-buffer
  8025. (goto-char marker)
  8026. (when (search-forward l nil lkend)
  8027. (goto-char (match-beginning 0))
  8028. (org-open-at-point)))
  8029. ;; This is an internal link, widen the buffer
  8030. (switch-to-buffer-other-window buffer)
  8031. (widen)
  8032. (goto-char marker)
  8033. (when (search-forward l nil lkend)
  8034. (goto-char (match-beginning 0))
  8035. (org-open-at-point)))))
  8036. lk))
  8037. ((or (org-in-regexp (concat "\\(" org-bracket-link-regexp "\\)"))
  8038. (save-excursion
  8039. (beginning-of-line 1)
  8040. (looking-at (concat ".*?\\(" org-bracket-link-regexp "\\)"))))
  8041. (org-open-link-from-string (match-string 1)))
  8042. (t (message "No link to open here")))))
  8043. (defun org-agenda-copy-local-variable (var)
  8044. "Get a variable from a referenced buffer and install it here."
  8045. (let ((m (org-get-at-bol 'org-marker)))
  8046. (when (and m (buffer-live-p (marker-buffer m)))
  8047. (set (make-local-variable var)
  8048. (with-current-buffer (marker-buffer m)
  8049. (symbol-value var))))))
  8050. (defun org-agenda-switch-to (&optional delete-other-windows)
  8051. "Go to the Org mode file which contains the item at point.
  8052. When optional argument DELETE-OTHER-WINDOWS is non-nil, the
  8053. displayed Org file fills the frame."
  8054. (interactive)
  8055. (if (and org-return-follows-link
  8056. (not (org-get-at-bol 'org-marker))
  8057. (org-in-regexp org-bracket-link-regexp))
  8058. (org-open-link-from-string (match-string 0))
  8059. (let* ((marker (or (org-get-at-bol 'org-marker)
  8060. (org-agenda-error)))
  8061. (buffer (marker-buffer marker))
  8062. (pos (marker-position marker)))
  8063. (unless buffer (user-error "Trying to switch to non-existent buffer"))
  8064. (pop-to-buffer-same-window buffer)
  8065. (when delete-other-windows (delete-other-windows))
  8066. (widen)
  8067. (goto-char pos)
  8068. (when (derived-mode-p 'org-mode)
  8069. (org-show-context 'agenda)
  8070. (run-hooks 'org-agenda-after-show-hook)))))
  8071. (defun org-agenda-goto-mouse (ev)
  8072. "Go to the Org file which contains the item at the mouse click."
  8073. (interactive "e")
  8074. (mouse-set-point ev)
  8075. (org-agenda-goto))
  8076. (defun org-agenda-show (&optional full-entry)
  8077. "Display the Org file which contains the item at point.
  8078. With prefix argument FULL-ENTRY, make the entire entry visible
  8079. if it was hidden in the outline."
  8080. (interactive "P")
  8081. (let ((win (selected-window)))
  8082. (org-agenda-goto t)
  8083. (when full-entry (org-show-entry))
  8084. (select-window win)))
  8085. (defvar org-agenda-show-window nil)
  8086. (defun org-agenda-show-and-scroll-up (&optional arg)
  8087. "Display the Org file which contains the item at point.
  8088. When called repeatedly, scroll the window that is displaying the buffer.
  8089. With a `\\[universal-argument]' prefix, use `org-show-entry' instead of \
  8090. `outline-show-subtree'
  8091. to display the item, so that drawers and logbooks stay folded."
  8092. (interactive "P")
  8093. (let ((win (selected-window)))
  8094. (if (and (window-live-p org-agenda-show-window)
  8095. (eq this-command last-command))
  8096. (progn
  8097. (select-window org-agenda-show-window)
  8098. (ignore-errors (scroll-up)))
  8099. (org-agenda-goto t)
  8100. (if arg (org-show-entry) (outline-show-subtree))
  8101. (setq org-agenda-show-window (selected-window)))
  8102. (select-window win)))
  8103. (defun org-agenda-show-scroll-down ()
  8104. "Scroll down the window showing the agenda."
  8105. (interactive)
  8106. (let ((win (selected-window)))
  8107. (when (window-live-p org-agenda-show-window)
  8108. (select-window org-agenda-show-window)
  8109. (ignore-errors (scroll-down))
  8110. (select-window win))))
  8111. (defun org-agenda-show-1 (&optional more)
  8112. "Display the Org file which contains the item at point.
  8113. The prefix arg selects the amount of information to display:
  8114. 0 hide the subtree
  8115. 1 just show the entry according to defaults.
  8116. 2 show the children view
  8117. 3 show the subtree view
  8118. 4 show the entire subtree and any LOGBOOK drawers
  8119. 5 show the entire subtree and any drawers
  8120. With prefix argument FULL-ENTRY, make the entire entry visible
  8121. if it was hidden in the outline."
  8122. (interactive "p")
  8123. (let ((win (selected-window)))
  8124. (org-agenda-goto t)
  8125. (org-back-to-heading)
  8126. (set-window-start (selected-window) (point-at-bol))
  8127. (cond
  8128. ((= more 0)
  8129. (outline-hide-subtree)
  8130. (save-excursion
  8131. (org-back-to-heading)
  8132. (run-hook-with-args 'org-cycle-hook 'folded))
  8133. (message "Remote: FOLDED"))
  8134. ((and (called-interactively-p 'any) (= more 1))
  8135. (message "Remote: show with default settings"))
  8136. ((= more 2)
  8137. (outline-show-entry)
  8138. (org-show-children)
  8139. (save-excursion
  8140. (org-back-to-heading)
  8141. (run-hook-with-args 'org-cycle-hook 'children))
  8142. (message "Remote: CHILDREN"))
  8143. ((= more 3)
  8144. (outline-show-subtree)
  8145. (save-excursion
  8146. (org-back-to-heading)
  8147. (run-hook-with-args 'org-cycle-hook 'subtree))
  8148. (message "Remote: SUBTREE"))
  8149. ((= more 4)
  8150. (outline-show-subtree)
  8151. (save-excursion
  8152. (org-back-to-heading)
  8153. (org-cycle-hide-drawers 'subtree '("LOGBOOK")))
  8154. (message "Remote: SUBTREE AND LOGBOOK"))
  8155. ((> more 4)
  8156. (outline-show-subtree)
  8157. (message "Remote: SUBTREE AND ALL DRAWERS")))
  8158. (select-window win)))
  8159. (defvar org-agenda-cycle-counter nil)
  8160. (defun org-agenda-cycle-show (&optional n)
  8161. "Show the current entry in another window, with default settings.
  8162. Default settings are taken from `org-show-context-detail'. When
  8163. use repeatedly in immediate succession, the remote entry will
  8164. cycle through visibility
  8165. children -> subtree -> folded
  8166. When called with a numeric prefix arg, that arg will be passed through to
  8167. `org-agenda-show-1'. For the interpretation of that argument, see the
  8168. docstring of `org-agenda-show-1'."
  8169. (interactive "P")
  8170. (if (integerp n)
  8171. (setq org-agenda-cycle-counter n)
  8172. (if (not (eq last-command this-command))
  8173. (setq org-agenda-cycle-counter 1)
  8174. (if (equal org-agenda-cycle-counter 0)
  8175. (setq org-agenda-cycle-counter 2)
  8176. (setq org-agenda-cycle-counter (1+ org-agenda-cycle-counter))
  8177. (if (> org-agenda-cycle-counter 3)
  8178. (setq org-agenda-cycle-counter 0)))))
  8179. (org-agenda-show-1 org-agenda-cycle-counter))
  8180. (defun org-agenda-recenter (arg)
  8181. "Display the Org file which contains the item at point and recenter."
  8182. (interactive "P")
  8183. (let ((win (selected-window)))
  8184. (org-agenda-goto t)
  8185. (recenter arg)
  8186. (select-window win)))
  8187. (defun org-agenda-show-mouse (ev)
  8188. "Display the Org file which contains the item at the mouse click."
  8189. (interactive "e")
  8190. (mouse-set-point ev)
  8191. (org-agenda-show))
  8192. (defun org-agenda-check-no-diary ()
  8193. "Check if the entry is a diary link and abort if yes."
  8194. (if (org-get-at-bol 'org-agenda-diary-link)
  8195. (org-agenda-error)))
  8196. (defun org-agenda-error ()
  8197. "Throw an error when a command is not allowed in the agenda."
  8198. (user-error "Command not allowed in this line"))
  8199. (defun org-agenda-tree-to-indirect-buffer (arg)
  8200. "Show the subtree corresponding to the current entry in an indirect buffer.
  8201. This calls the command `org-tree-to-indirect-buffer' from the original buffer.
  8202. With a numerical prefix ARG, go up to this level and then take that tree.
  8203. With a negative numeric ARG, go up by this number of levels.
  8204. With a `\\[universal-argument]' prefix, make a separate frame for this tree, \
  8205. i.e. don't use
  8206. the dedicated frame."
  8207. (interactive "P")
  8208. (if current-prefix-arg
  8209. (org-agenda-do-tree-to-indirect-buffer arg)
  8210. (let ((agenda-buffer (buffer-name))
  8211. (agenda-window (selected-window))
  8212. (indirect-window
  8213. (and org-last-indirect-buffer
  8214. (get-buffer-window org-last-indirect-buffer))))
  8215. (save-window-excursion (org-agenda-do-tree-to-indirect-buffer arg))
  8216. (unless (or (eq org-indirect-buffer-display 'new-frame)
  8217. (eq org-indirect-buffer-display 'dedicated-frame))
  8218. (unwind-protect
  8219. (unless (and indirect-window (window-live-p indirect-window))
  8220. (setq indirect-window (split-window agenda-window)))
  8221. (and indirect-window (select-window indirect-window))
  8222. (switch-to-buffer org-last-indirect-buffer :norecord)
  8223. (fit-window-to-buffer indirect-window)))
  8224. (select-window (get-buffer-window agenda-buffer))
  8225. (setq org-agenda-last-indirect-buffer org-last-indirect-buffer))))
  8226. (defun org-agenda-do-tree-to-indirect-buffer (arg)
  8227. "Same as `org-agenda-tree-to-indirect-buffer' without saving window."
  8228. (org-agenda-check-no-diary)
  8229. (let* ((marker (or (org-get-at-bol 'org-marker)
  8230. (org-agenda-error)))
  8231. (buffer (marker-buffer marker))
  8232. (pos (marker-position marker)))
  8233. (with-current-buffer buffer
  8234. (save-excursion
  8235. (goto-char pos)
  8236. (funcall 'org-tree-to-indirect-buffer arg)))))
  8237. (defvar org-last-heading-marker (make-marker)
  8238. "Marker pointing to the headline that last changed its TODO state
  8239. by a remote command from the agenda.")
  8240. (defun org-agenda-todo-nextset ()
  8241. "Switch TODO entry to next sequence."
  8242. (interactive)
  8243. (org-agenda-todo 'nextset))
  8244. (defun org-agenda-todo-previousset ()
  8245. "Switch TODO entry to previous sequence."
  8246. (interactive)
  8247. (org-agenda-todo 'previousset))
  8248. (defun org-agenda-todo (&optional arg)
  8249. "Cycle TODO state of line at point, also in Org file.
  8250. This changes the line at point, all other lines in the agenda referring to
  8251. the same tree node, and the headline of the tree node in the Org file."
  8252. (interactive "P")
  8253. (org-agenda-check-no-diary)
  8254. (let* ((col (current-column))
  8255. (marker (or (org-get-at-bol 'org-marker)
  8256. (org-agenda-error)))
  8257. (buffer (marker-buffer marker))
  8258. (pos (marker-position marker))
  8259. (hdmarker (org-get-at-bol 'org-hd-marker))
  8260. (todayp (org-agenda-today-p (org-get-at-bol 'day)))
  8261. (inhibit-read-only t)
  8262. org-agenda-headline-snapshot-before-repeat newhead just-one)
  8263. (org-with-remote-undo buffer
  8264. (with-current-buffer buffer
  8265. (widen)
  8266. (goto-char pos)
  8267. (org-show-context 'agenda)
  8268. (let ((current-prefix-arg arg))
  8269. (call-interactively 'org-todo))
  8270. (and (bolp) (forward-char 1))
  8271. (setq newhead (org-get-heading))
  8272. (when (and (bound-and-true-p
  8273. org-agenda-headline-snapshot-before-repeat)
  8274. (not (equal org-agenda-headline-snapshot-before-repeat
  8275. newhead))
  8276. todayp)
  8277. (setq newhead org-agenda-headline-snapshot-before-repeat
  8278. just-one t))
  8279. (save-excursion
  8280. (org-back-to-heading)
  8281. (move-marker org-last-heading-marker (point))))
  8282. (beginning-of-line 1)
  8283. (save-window-excursion
  8284. (org-agenda-change-all-lines newhead hdmarker 'fixface just-one))
  8285. (when (bound-and-true-p org-clock-out-when-done)
  8286. (string-match (concat "^" (regexp-opt org-done-keywords-for-agenda))
  8287. newhead)
  8288. (org-agenda-unmark-clocking-task))
  8289. (org-move-to-column col)
  8290. (org-agenda-mark-clocking-task))))
  8291. (defun org-agenda-add-note (&optional arg)
  8292. "Add a time-stamped note to the entry at point."
  8293. (interactive "P")
  8294. (org-agenda-check-no-diary)
  8295. (let* ((marker (or (org-get-at-bol 'org-marker)
  8296. (org-agenda-error)))
  8297. (buffer (marker-buffer marker))
  8298. (pos (marker-position marker))
  8299. (hdmarker (org-get-at-bol 'org-hd-marker))
  8300. (inhibit-read-only t))
  8301. (with-current-buffer buffer
  8302. (widen)
  8303. (goto-char pos)
  8304. (org-show-context 'agenda)
  8305. (org-add-note))))
  8306. (defun org-agenda-change-all-lines (newhead hdmarker
  8307. &optional fixface just-this)
  8308. "Change all lines in the agenda buffer which match HDMARKER.
  8309. The new content of the line will be NEWHEAD (as modified by
  8310. `org-agenda-format-item'). HDMARKER is checked with
  8311. `equal' against all `org-hd-marker' text properties in the file.
  8312. If FIXFACE is non-nil, the face of each item is modified according to
  8313. the new TODO state.
  8314. If JUST-THIS is non-nil, change just the current line, not all.
  8315. If FORCE-TAGS is non nil, the car of it returns the new tags."
  8316. (let* ((inhibit-read-only t)
  8317. (line (org-current-line))
  8318. (org-agenda-buffer (current-buffer))
  8319. (thetags (with-current-buffer (marker-buffer hdmarker)
  8320. (org-get-tags hdmarker)))
  8321. props m pl undone-face done-face finish new dotime level cat tags)
  8322. (save-excursion
  8323. (goto-char (point-max))
  8324. (beginning-of-line 1)
  8325. (while (not finish)
  8326. (setq finish (bobp))
  8327. (when (and (setq m (org-get-at-bol 'org-hd-marker))
  8328. (or (not just-this) (= (org-current-line) line))
  8329. (equal m hdmarker))
  8330. (setq props (text-properties-at (point))
  8331. dotime (org-get-at-bol 'dotime)
  8332. cat (org-get-at-eol 'org-category 1)
  8333. level (org-get-at-bol 'level)
  8334. tags thetags
  8335. new
  8336. (let ((org-prefix-format-compiled
  8337. (or (get-text-property (min (1- (point-max)) (point)) 'format)
  8338. org-prefix-format-compiled))
  8339. (extra (org-get-at-bol 'extra)))
  8340. (with-current-buffer (marker-buffer hdmarker)
  8341. (org-with-wide-buffer
  8342. (org-agenda-format-item extra newhead level cat tags dotime))))
  8343. pl (text-property-any (point-at-bol) (point-at-eol) 'org-heading t)
  8344. undone-face (org-get-at-bol 'undone-face)
  8345. done-face (org-get-at-bol 'done-face))
  8346. (beginning-of-line 1)
  8347. (cond
  8348. ((equal new "") (delete-region (point) (line-beginning-position 2)))
  8349. ((looking-at ".*")
  8350. ;; When replacing the whole line, preserve bulk mark
  8351. ;; overlay, if any.
  8352. (let ((mark (catch :overlay
  8353. (dolist (o (overlays-in (point) (+ 2 (point))))
  8354. (when (eq (overlay-get o 'type)
  8355. 'org-marked-entry-overlay)
  8356. (throw :overlay o))))))
  8357. (replace-match new t t)
  8358. (beginning-of-line)
  8359. (when mark (move-overlay mark (point) (+ 2 (point)))))
  8360. (add-text-properties (point-at-bol) (point-at-eol) props)
  8361. (when fixface
  8362. (add-text-properties
  8363. (point-at-bol) (point-at-eol)
  8364. (list 'face
  8365. (if org-last-todo-state-is-todo
  8366. undone-face done-face))))
  8367. (org-agenda-highlight-todo 'line)
  8368. (beginning-of-line 1))
  8369. (t (error "Line update did not work")))
  8370. (save-restriction
  8371. (narrow-to-region (point-at-bol) (point-at-eol))
  8372. (org-agenda-finalize)))
  8373. (beginning-of-line 0)))))
  8374. (defun org-agenda-align-tags (&optional line)
  8375. "Align all tags in agenda items to `org-agenda-tags-column'.
  8376. When optional argument LINE is non-nil, align tags only on the
  8377. current line."
  8378. (let ((inhibit-read-only t)
  8379. (org-agenda-tags-column (if (eq 'auto org-agenda-tags-column)
  8380. (- (window-text-width))
  8381. org-agenda-tags-column))
  8382. (end (if line (line-end-position) (point-max)))
  8383. l c)
  8384. (save-excursion
  8385. (goto-char (if line (line-beginning-position) (point-min)))
  8386. (while (re-search-forward org-tag-group-re end t)
  8387. (add-text-properties
  8388. (match-beginning 1) (match-end 1)
  8389. (list 'face (delq nil (let ((prop (get-text-property
  8390. (match-beginning 1) 'face)))
  8391. (or (listp prop) (setq prop (list prop)))
  8392. (if (memq 'org-tag prop)
  8393. prop
  8394. (cons 'org-tag prop))))))
  8395. (setq l (- (match-end 1) (match-beginning 1))
  8396. c (if (< org-agenda-tags-column 0)
  8397. (- (abs org-agenda-tags-column) l)
  8398. org-agenda-tags-column))
  8399. (goto-char (match-beginning 1))
  8400. (delete-region (save-excursion (skip-chars-backward " \t") (point))
  8401. (point))
  8402. (insert (org-add-props
  8403. (make-string (max 1 (- c (current-column))) ?\ )
  8404. (plist-put (copy-sequence (text-properties-at (point)))
  8405. 'face nil))))
  8406. (goto-char (point-min))
  8407. (org-font-lock-add-tag-faces (point-max)))))
  8408. (defun org-agenda-priority-up ()
  8409. "Increase the priority of line at point, also in Org file."
  8410. (interactive)
  8411. (org-agenda-priority 'up))
  8412. (defun org-agenda-priority-down ()
  8413. "Decrease the priority of line at point, also in Org file."
  8414. (interactive)
  8415. (org-agenda-priority 'down))
  8416. (defun org-agenda-priority (&optional force-direction)
  8417. "Set the priority of line at point, also in Org file.
  8418. This changes the line at point, all other lines in the agenda referring to
  8419. the same tree node, and the headline of the tree node in the Org file.
  8420. Called with a universal prefix arg, show the priority instead of setting it."
  8421. (interactive "P")
  8422. (if (equal force-direction '(4))
  8423. (org-show-priority)
  8424. (unless org-enable-priority-commands
  8425. (error "Priority commands are disabled"))
  8426. (org-agenda-check-no-diary)
  8427. (let* ((col (current-column))
  8428. (marker (or (org-get-at-bol 'org-marker)
  8429. (org-agenda-error)))
  8430. (hdmarker (org-get-at-bol 'org-hd-marker))
  8431. (buffer (marker-buffer hdmarker))
  8432. (pos (marker-position hdmarker))
  8433. (inhibit-read-only t)
  8434. newhead)
  8435. (org-with-remote-undo buffer
  8436. (with-current-buffer buffer
  8437. (widen)
  8438. (goto-char pos)
  8439. (org-show-context 'agenda)
  8440. (funcall 'org-priority force-direction)
  8441. (end-of-line 1)
  8442. (setq newhead (org-get-heading)))
  8443. (org-agenda-change-all-lines newhead hdmarker)
  8444. (org-move-to-column col)))))
  8445. ;; FIXME: should fix the tags property of the agenda line.
  8446. (defun org-agenda-set-tags (&optional tag onoff)
  8447. "Set tags for the current headline."
  8448. (interactive)
  8449. (org-agenda-check-no-diary)
  8450. (if (and (org-region-active-p) (called-interactively-p 'any))
  8451. (call-interactively 'org-change-tag-in-region)
  8452. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8453. (org-agenda-error)))
  8454. (buffer (marker-buffer hdmarker))
  8455. (pos (marker-position hdmarker))
  8456. (inhibit-read-only t)
  8457. newhead)
  8458. (org-with-remote-undo buffer
  8459. (with-current-buffer buffer
  8460. (widen)
  8461. (goto-char pos)
  8462. (org-show-context 'agenda)
  8463. (if tag
  8464. (org-toggle-tag tag onoff)
  8465. (call-interactively #'org-set-tags-command))
  8466. (end-of-line 1)
  8467. (setq newhead (org-get-heading)))
  8468. (org-agenda-change-all-lines newhead hdmarker)
  8469. (beginning-of-line 1)))))
  8470. (defun org-agenda-set-property ()
  8471. "Set a property for the current headline."
  8472. (interactive)
  8473. (org-agenda-check-no-diary)
  8474. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8475. (org-agenda-error)))
  8476. (buffer (marker-buffer hdmarker))
  8477. (pos (marker-position hdmarker))
  8478. (inhibit-read-only t)
  8479. newhead)
  8480. (org-with-remote-undo buffer
  8481. (with-current-buffer buffer
  8482. (widen)
  8483. (goto-char pos)
  8484. (org-show-context 'agenda)
  8485. (call-interactively 'org-set-property)))))
  8486. (defun org-agenda-set-effort ()
  8487. "Set the effort property for the current headline."
  8488. (interactive)
  8489. (org-agenda-check-no-diary)
  8490. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8491. (org-agenda-error)))
  8492. (buffer (marker-buffer hdmarker))
  8493. (pos (marker-position hdmarker))
  8494. (inhibit-read-only t)
  8495. newhead)
  8496. (org-with-remote-undo buffer
  8497. (with-current-buffer buffer
  8498. (widen)
  8499. (goto-char pos)
  8500. (org-show-context 'agenda)
  8501. (call-interactively 'org-set-effort)
  8502. (end-of-line 1)
  8503. (setq newhead (org-get-heading)))
  8504. (org-agenda-change-all-lines newhead hdmarker))))
  8505. (defun org-agenda-toggle-archive-tag ()
  8506. "Toggle the archive tag for the current entry."
  8507. (interactive)
  8508. (org-agenda-check-no-diary)
  8509. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8510. (org-agenda-error)))
  8511. (buffer (marker-buffer hdmarker))
  8512. (pos (marker-position hdmarker))
  8513. (inhibit-read-only t)
  8514. newhead)
  8515. (org-with-remote-undo buffer
  8516. (with-current-buffer buffer
  8517. (widen)
  8518. (goto-char pos)
  8519. (org-show-context 'agenda)
  8520. (call-interactively 'org-toggle-archive-tag)
  8521. (end-of-line 1)
  8522. (setq newhead (org-get-heading)))
  8523. (org-agenda-change-all-lines newhead hdmarker)
  8524. (beginning-of-line 1))))
  8525. (defun org-agenda-do-date-later (arg)
  8526. (interactive "P")
  8527. (cond
  8528. ((or (equal arg '(16))
  8529. (memq last-command
  8530. '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
  8531. (setq this-command 'org-agenda-date-later-minutes)
  8532. (org-agenda-date-later-minutes 1))
  8533. ((or (equal arg '(4))
  8534. (memq last-command
  8535. '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
  8536. (setq this-command 'org-agenda-date-later-hours)
  8537. (org-agenda-date-later-hours 1))
  8538. (t
  8539. (org-agenda-date-later (prefix-numeric-value arg)))))
  8540. (defun org-agenda-do-date-earlier (arg)
  8541. (interactive "P")
  8542. (cond
  8543. ((or (equal arg '(16))
  8544. (memq last-command
  8545. '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
  8546. (setq this-command 'org-agenda-date-earlier-minutes)
  8547. (org-agenda-date-earlier-minutes 1))
  8548. ((or (equal arg '(4))
  8549. (memq last-command
  8550. '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
  8551. (setq this-command 'org-agenda-date-earlier-hours)
  8552. (org-agenda-date-earlier-hours 1))
  8553. (t
  8554. (org-agenda-date-earlier (prefix-numeric-value arg)))))
  8555. (defun org-agenda-date-later (arg &optional what)
  8556. "Change the date of this item to ARG day(s) later."
  8557. (interactive "p")
  8558. (org-agenda-check-type t 'agenda)
  8559. (org-agenda-check-no-diary)
  8560. (let* ((marker (or (org-get-at-bol 'org-marker)
  8561. (org-agenda-error)))
  8562. (buffer (marker-buffer marker))
  8563. (pos (marker-position marker))
  8564. cdate today)
  8565. (org-with-remote-undo buffer
  8566. (with-current-buffer buffer
  8567. (widen)
  8568. (goto-char pos)
  8569. (unless (org-at-timestamp-p 'lax) (error "Cannot find time stamp"))
  8570. (when (and org-agenda-move-date-from-past-immediately-to-today
  8571. (equal arg 1)
  8572. (or (not what) (eq what 'day))
  8573. (not (save-match-data (org-at-date-range-p))))
  8574. (setq cdate (org-parse-time-string (match-string 0) 'nodefault)
  8575. cdate (calendar-absolute-from-gregorian
  8576. (list (nth 4 cdate) (nth 3 cdate) (nth 5 cdate)))
  8577. today (org-today))
  8578. (if (> today cdate)
  8579. ;; immediately shift to today
  8580. (setq arg (- today cdate))))
  8581. (org-timestamp-change arg (or what 'day))
  8582. (when (and (org-at-date-range-p)
  8583. (re-search-backward org-tr-regexp-both (point-at-bol)))
  8584. (let ((end org-last-changed-timestamp))
  8585. (org-timestamp-change arg (or what 'day))
  8586. (setq org-last-changed-timestamp
  8587. (concat org-last-changed-timestamp "--" end)))))
  8588. (org-agenda-show-new-time marker org-last-changed-timestamp))
  8589. (message "Time stamp changed to %s" org-last-changed-timestamp)))
  8590. (defun org-agenda-date-earlier (arg &optional what)
  8591. "Change the date of this item to ARG day(s) earlier."
  8592. (interactive "p")
  8593. (org-agenda-date-later (- arg) what))
  8594. (defun org-agenda-date-later-minutes (arg)
  8595. "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
  8596. (interactive "p")
  8597. (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
  8598. (org-agenda-date-later arg 'minute))
  8599. (defun org-agenda-date-earlier-minutes (arg)
  8600. "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
  8601. (interactive "p")
  8602. (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
  8603. (org-agenda-date-earlier arg 'minute))
  8604. (defun org-agenda-date-later-hours (arg)
  8605. "Change the time of this item, in hour steps."
  8606. (interactive "p")
  8607. (org-agenda-date-later arg 'hour))
  8608. (defun org-agenda-date-earlier-hours (arg)
  8609. "Change the time of this item, in hour steps."
  8610. (interactive "p")
  8611. (org-agenda-date-earlier arg 'hour))
  8612. (defun org-agenda-show-new-time (marker stamp &optional prefix)
  8613. "Show new date stamp via text properties."
  8614. ;; We use text properties to make this undoable
  8615. (let ((inhibit-read-only t))
  8616. (setq stamp (concat prefix " => " stamp " "))
  8617. (save-excursion
  8618. (goto-char (point-max))
  8619. (while (not (bobp))
  8620. (when (equal marker (org-get-at-bol 'org-marker))
  8621. (remove-text-properties (point-at-bol) (point-at-eol) '(display))
  8622. (org-move-to-column (- (window-width) (length stamp)) t)
  8623. (add-text-properties
  8624. (1- (point)) (point-at-eol)
  8625. (list 'display (org-add-props stamp nil
  8626. 'face '(secondary-selection default))))
  8627. (beginning-of-line 1))
  8628. (beginning-of-line 0)))))
  8629. (defun org-agenda-date-prompt (arg)
  8630. "Change the date of this item. Date is prompted for, with default today.
  8631. The prefix ARG is passed to the `org-time-stamp' command and can therefore
  8632. be used to request time specification in the time stamp."
  8633. (interactive "P")
  8634. (org-agenda-check-type t 'agenda)
  8635. (org-agenda-check-no-diary)
  8636. (let* ((marker (or (org-get-at-bol 'org-marker)
  8637. (org-agenda-error)))
  8638. (buffer (marker-buffer marker))
  8639. (pos (marker-position marker)))
  8640. (org-with-remote-undo buffer
  8641. (with-current-buffer buffer
  8642. (widen)
  8643. (goto-char pos)
  8644. (unless (org-at-timestamp-p 'lax) (error "Cannot find time stamp"))
  8645. (org-time-stamp arg (equal (char-after (match-beginning 0)) ?\[)))
  8646. (org-agenda-show-new-time marker org-last-changed-timestamp))
  8647. (message "Time stamp changed to %s" org-last-changed-timestamp)))
  8648. (defun org-agenda-schedule (arg &optional time)
  8649. "Schedule the item at point.
  8650. ARG is passed through to `org-schedule'."
  8651. (interactive "P")
  8652. (org-agenda-check-type t 'agenda 'todo 'tags 'search)
  8653. (org-agenda-check-no-diary)
  8654. (let* ((marker (or (org-get-at-bol 'org-marker)
  8655. (org-agenda-error)))
  8656. (type (marker-insertion-type marker))
  8657. (buffer (marker-buffer marker))
  8658. (pos (marker-position marker))
  8659. ts)
  8660. (set-marker-insertion-type marker t)
  8661. (org-with-remote-undo buffer
  8662. (with-current-buffer buffer
  8663. (widen)
  8664. (goto-char pos)
  8665. (setq ts (org-schedule arg time)))
  8666. (org-agenda-show-new-time marker ts " S"))
  8667. (message "%s" ts)))
  8668. (defun org-agenda-deadline (arg &optional time)
  8669. "Schedule the item at point.
  8670. ARG is passed through to `org-deadline'."
  8671. (interactive "P")
  8672. (org-agenda-check-type t 'agenda 'todo 'tags 'search)
  8673. (org-agenda-check-no-diary)
  8674. (let* ((marker (or (org-get-at-bol 'org-marker)
  8675. (org-agenda-error)))
  8676. (buffer (marker-buffer marker))
  8677. (pos (marker-position marker))
  8678. ts)
  8679. (org-with-remote-undo buffer
  8680. (with-current-buffer buffer
  8681. (widen)
  8682. (goto-char pos)
  8683. (setq ts (org-deadline arg time)))
  8684. (org-agenda-show-new-time marker ts " D"))
  8685. (message "%s" ts)))
  8686. (defun org-agenda-clock-in (&optional arg)
  8687. "Start the clock on the currently selected item."
  8688. (interactive "P")
  8689. (org-agenda-check-no-diary)
  8690. (if (equal arg '(4))
  8691. (org-clock-in arg)
  8692. (let* ((marker (or (org-get-at-bol 'org-marker)
  8693. (org-agenda-error)))
  8694. (hdmarker (or (org-get-at-bol 'org-hd-marker) marker))
  8695. (pos (marker-position marker))
  8696. (col (current-column))
  8697. newhead)
  8698. (org-with-remote-undo (marker-buffer marker)
  8699. (with-current-buffer (marker-buffer marker)
  8700. (widen)
  8701. (goto-char pos)
  8702. (org-show-context 'agenda)
  8703. (org-clock-in arg)
  8704. (setq newhead (org-get-heading)))
  8705. (org-agenda-change-all-lines newhead hdmarker))
  8706. (org-move-to-column col))))
  8707. (defun org-agenda-clock-out ()
  8708. "Stop the currently running clock."
  8709. (interactive)
  8710. (unless (marker-buffer org-clock-marker)
  8711. (error "No running clock"))
  8712. (let ((marker (make-marker)) (col (current-column)) newhead)
  8713. (org-with-remote-undo (marker-buffer org-clock-marker)
  8714. (with-current-buffer (marker-buffer org-clock-marker)
  8715. (org-with-wide-buffer
  8716. (goto-char org-clock-marker)
  8717. (org-back-to-heading t)
  8718. (move-marker marker (point))
  8719. (org-clock-out)
  8720. (setq newhead (org-get-heading)))))
  8721. (org-agenda-change-all-lines newhead marker)
  8722. (move-marker marker nil)
  8723. (org-move-to-column col)
  8724. (org-agenda-unmark-clocking-task)))
  8725. (defun org-agenda-clock-cancel (&optional arg)
  8726. "Cancel the currently running clock."
  8727. (interactive "P")
  8728. (unless (marker-buffer org-clock-marker)
  8729. (user-error "No running clock"))
  8730. (org-with-remote-undo (marker-buffer org-clock-marker)
  8731. (org-clock-cancel)))
  8732. (defun org-agenda-clock-goto ()
  8733. "Jump to the currently clocked in task within the agenda.
  8734. If the currently clocked in task is not listed in the agenda
  8735. buffer, display it in another window."
  8736. (interactive)
  8737. (let (pos)
  8738. (mapc (lambda (o)
  8739. (if (eq (overlay-get o 'type) 'org-agenda-clocking)
  8740. (setq pos (overlay-start o))))
  8741. (overlays-in (point-min) (point-max)))
  8742. (cond (pos (goto-char pos))
  8743. ;; If the currently clocked entry is not in the agenda
  8744. ;; buffer, we visit it in another window:
  8745. ((bound-and-true-p org-clock-current-task)
  8746. (org-switch-to-buffer-other-window (org-clock-goto)))
  8747. (t (message "No running clock, use `C-c C-x C-j' to jump to the most recent one")))))
  8748. (defun org-agenda-diary-entry-in-org-file ()
  8749. "Make a diary entry in the file `org-agenda-diary-file'."
  8750. (let (d1 d2 char (text "") dp1 dp2)
  8751. (if (equal (buffer-name) "*Calendar*")
  8752. (setq d1 (calendar-cursor-to-date t)
  8753. d2 (car calendar-mark-ring))
  8754. (setq dp1 (get-text-property (point-at-bol) 'day))
  8755. (unless dp1 (user-error "No date defined in current line"))
  8756. (setq d1 (calendar-gregorian-from-absolute dp1)
  8757. d2 (and (ignore-errors (mark))
  8758. (save-excursion
  8759. (goto-char (mark))
  8760. (setq dp2 (get-text-property (point-at-bol) 'day)))
  8761. (calendar-gregorian-from-absolute dp2))))
  8762. (message "Diary entry: [d]ay [a]nniversary [b]lock [j]ump to date tree")
  8763. (setq char (read-char-exclusive))
  8764. (cond
  8765. ((equal char ?d)
  8766. (setq text (read-string "Day entry: "))
  8767. (org-agenda-add-entry-to-org-agenda-diary-file 'day text d1)
  8768. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  8769. ((equal char ?a)
  8770. (setq d1 (list (car d1) (nth 1 d1)
  8771. (read-number (format "Reference year [%d]: " (nth 2 d1))
  8772. (nth 2 d1))))
  8773. (setq text (read-string "Anniversary (use %d to show years): "))
  8774. (org-agenda-add-entry-to-org-agenda-diary-file 'anniversary text d1)
  8775. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  8776. ((equal char ?b)
  8777. (setq text (read-string "Block entry: "))
  8778. (unless (and d1 d2 (not (equal d1 d2)))
  8779. (user-error "No block of days selected"))
  8780. (org-agenda-add-entry-to-org-agenda-diary-file 'block text d1 d2)
  8781. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  8782. ((equal char ?j)
  8783. (org-switch-to-buffer-other-window
  8784. (find-file-noselect org-agenda-diary-file))
  8785. (require 'org-datetree)
  8786. (org-datetree-find-date-create d1)
  8787. (org-reveal t))
  8788. (t (user-error "Invalid selection character `%c'" char)))))
  8789. (defcustom org-agenda-insert-diary-strategy 'date-tree
  8790. "Where in `org-agenda-diary-file' should new entries be added?
  8791. Valid values:
  8792. date-tree in the date tree, as first child of the date
  8793. date-tree-last in the date tree, as last child of the date
  8794. top-level as top-level entries at the end of the file."
  8795. :group 'org-agenda
  8796. :type '(choice
  8797. (const :tag "first in a date tree" date-tree)
  8798. (const :tag "last in a date tree" date-tree-last)
  8799. (const :tag "as top level at end of file" top-level)))
  8800. (defcustom org-agenda-insert-diary-extract-time nil
  8801. "Non-nil means extract any time specification from the diary entry."
  8802. :group 'org-agenda
  8803. :version "24.1"
  8804. :type 'boolean)
  8805. (defcustom org-agenda-bulk-mark-char ">"
  8806. "A single-character string to be used as the bulk mark."
  8807. :group 'org-agenda
  8808. :version "24.1"
  8809. :type 'string)
  8810. (defun org-agenda-add-entry-to-org-agenda-diary-file (type text &optional d1 d2)
  8811. "Add a diary entry with TYPE to `org-agenda-diary-file'.
  8812. If TEXT is not empty, it will become the headline of the new entry, and
  8813. the resulting entry will not be shown. When TEXT is empty, switch to
  8814. `org-agenda-diary-file' and let the user finish the entry there."
  8815. (let ((cw (current-window-configuration)))
  8816. (org-switch-to-buffer-other-window
  8817. (find-file-noselect org-agenda-diary-file))
  8818. (widen)
  8819. (goto-char (point-min))
  8820. (cond
  8821. ((eq type 'anniversary)
  8822. (or (re-search-forward "^*[ \t]+Anniversaries" nil t)
  8823. (progn
  8824. (or (org-at-heading-p t)
  8825. (progn
  8826. (outline-next-heading)
  8827. (insert "* Anniversaries\n\n")
  8828. (beginning-of-line -1)))))
  8829. (outline-next-heading)
  8830. (org-back-over-empty-lines)
  8831. (backward-char 1)
  8832. (insert "\n")
  8833. (insert (format "%%%%(org-anniversary %d %2d %2d) %s"
  8834. (nth 2 d1) (car d1) (nth 1 d1) text)))
  8835. ((eq type 'day)
  8836. (let ((org-prefix-has-time t)
  8837. (org-agenda-time-leading-zero t)
  8838. fmt time time2)
  8839. (if org-agenda-insert-diary-extract-time
  8840. ;; Use org-agenda-format-item to parse text for a time-range and
  8841. ;; remove it. FIXME: This is a hack, we should refactor
  8842. ;; that function to make time extraction available separately
  8843. (setq fmt (org-agenda-format-item nil text nil nil nil t)
  8844. time (get-text-property 0 'time fmt)
  8845. time2 (if (> (length time) 0)
  8846. ;; split-string removes trailing ...... if
  8847. ;; no end time given. First space
  8848. ;; separates time from date.
  8849. (concat " " (car (split-string time "\\.")))
  8850. nil)
  8851. text (get-text-property 0 'txt fmt)))
  8852. (if (eq org-agenda-insert-diary-strategy 'top-level)
  8853. (org-agenda-insert-diary-as-top-level text)
  8854. (require 'org-datetree)
  8855. (org-datetree-find-date-create d1)
  8856. (org-agenda-insert-diary-make-new-entry text))
  8857. (org-insert-time-stamp (org-time-from-absolute
  8858. (calendar-absolute-from-gregorian d1))
  8859. nil nil nil nil time2))
  8860. (end-of-line 0))
  8861. ((eq type 'block)
  8862. (if (> (calendar-absolute-from-gregorian d1)
  8863. (calendar-absolute-from-gregorian d2))
  8864. (setq d1 (prog1 d2 (setq d2 d1))))
  8865. (if (eq org-agenda-insert-diary-strategy 'top-level)
  8866. (org-agenda-insert-diary-as-top-level text)
  8867. (require 'org-datetree)
  8868. (org-datetree-find-date-create d1)
  8869. (org-agenda-insert-diary-make-new-entry text))
  8870. (org-insert-time-stamp (org-time-from-absolute
  8871. (calendar-absolute-from-gregorian d1)))
  8872. (insert "--")
  8873. (org-insert-time-stamp (org-time-from-absolute
  8874. (calendar-absolute-from-gregorian d2)))
  8875. (end-of-line 0)))
  8876. (if (string-match "\\S-" text)
  8877. (progn
  8878. (set-window-configuration cw)
  8879. (message "%s entry added to %s"
  8880. (capitalize (symbol-name type))
  8881. (abbreviate-file-name org-agenda-diary-file)))
  8882. (org-reveal t)
  8883. (message "Please finish entry here"))))
  8884. (defun org-agenda-insert-diary-as-top-level (text)
  8885. "Make new entry as a top-level entry at the end of the file.
  8886. Add TEXT as headline, and position the cursor in the second line so that
  8887. a timestamp can be added there."
  8888. (widen)
  8889. (goto-char (point-max))
  8890. (unless (bolp) (insert "\n"))
  8891. (org-insert-heading nil t t)
  8892. (insert text)
  8893. (org-end-of-meta-data)
  8894. (unless (bolp) (insert "\n"))
  8895. (when org-adapt-indentation (indent-to-column 2)))
  8896. (defun org-agenda-insert-diary-make-new-entry (text)
  8897. "Make a new entry with TEXT as a child of the current subtree.
  8898. Position the point in the heading's first body line so that
  8899. a timestamp can be added there."
  8900. (cond
  8901. ((eq org-agenda-insert-diary-strategy 'date-tree-last)
  8902. (end-of-line)
  8903. (org-insert-heading '(4) t)
  8904. (org-do-demote))
  8905. (t
  8906. (outline-next-heading)
  8907. (org-back-over-empty-lines)
  8908. (unless (looking-at "[ \t]*$") (save-excursion (insert "\n")))
  8909. (org-insert-heading nil t)
  8910. (org-do-demote)))
  8911. (let ((col (current-column)))
  8912. (insert text)
  8913. (org-end-of-meta-data)
  8914. ;; Ensure point is left on a blank line, at proper indentation.
  8915. (unless (bolp) (insert "\n"))
  8916. (unless (looking-at-p "^[ \t]*$") (save-excursion (insert "\n")))
  8917. (when org-adapt-indentation (indent-to-column col)))
  8918. (org-show-set-visibility 'lineage))
  8919. (defun org-agenda-diary-entry ()
  8920. "Make a diary entry, like the `i' command from the calendar.
  8921. All the standard commands work: block, weekly etc.
  8922. When `org-agenda-diary-file' points to a file,
  8923. `org-agenda-diary-entry-in-org-file' is called instead to create
  8924. entries in that Org file."
  8925. (interactive)
  8926. (if (not (eq org-agenda-diary-file 'diary-file))
  8927. (org-agenda-diary-entry-in-org-file)
  8928. (require 'diary-lib)
  8929. (let* ((char (read-char-exclusive
  8930. "Diary entry: [d]ay [w]eekly [m]onthly [y]early\
  8931. [a]nniversary [b]lock [c]yclic"))
  8932. (cmd (cdr (assoc char
  8933. '((?d . diary-insert-entry)
  8934. (?w . diary-insert-weekly-entry)
  8935. (?m . diary-insert-monthly-entry)
  8936. (?y . diary-insert-yearly-entry)
  8937. (?a . diary-insert-anniversary-entry)
  8938. (?b . diary-insert-block-entry)
  8939. (?c . diary-insert-cyclic-entry)))))
  8940. (oldf (symbol-function 'calendar-cursor-to-date))
  8941. ;; (buf (get-file-buffer (substitute-in-file-name diary-file)))
  8942. (point (point))
  8943. (mark (or (mark t) (point))))
  8944. (unless cmd
  8945. (user-error "No command associated with <%c>" char))
  8946. (unless (and (get-text-property point 'day)
  8947. (or (not (equal ?b char))
  8948. (get-text-property mark 'day)))
  8949. (user-error "Don't know which date to use for diary entry"))
  8950. ;; We implement this by hacking the `calendar-cursor-to-date' function
  8951. ;; and the `calendar-mark-ring' variable. Saves a lot of code.
  8952. (let ((calendar-mark-ring
  8953. (list (calendar-gregorian-from-absolute
  8954. (or (get-text-property mark 'day)
  8955. (get-text-property point 'day))))))
  8956. (unwind-protect
  8957. (progn
  8958. (fset 'calendar-cursor-to-date
  8959. (lambda (&optional error dummy)
  8960. (calendar-gregorian-from-absolute
  8961. (get-text-property point 'day))))
  8962. (call-interactively cmd))
  8963. (fset 'calendar-cursor-to-date oldf))))))
  8964. (defun org-agenda-execute-calendar-command (cmd)
  8965. "Execute a calendar command from the agenda with date from cursor."
  8966. (org-agenda-check-type t 'agenda)
  8967. (require 'diary-lib)
  8968. (unless (get-text-property (min (1- (point-max)) (point)) 'day)
  8969. (user-error "Don't know which date to use for the calendar command"))
  8970. (let* ((oldf (symbol-function 'calendar-cursor-to-date))
  8971. (point (point))
  8972. (date (calendar-gregorian-from-absolute
  8973. (get-text-property point 'day)))
  8974. ;; the following 2 vars are needed in the calendar
  8975. (displayed-month (car date))
  8976. (displayed-year (nth 2 date)))
  8977. (unwind-protect
  8978. (progn
  8979. (fset 'calendar-cursor-to-date
  8980. (lambda (&optional error dummy)
  8981. (calendar-gregorian-from-absolute
  8982. (get-text-property point 'day))))
  8983. (call-interactively cmd))
  8984. (fset 'calendar-cursor-to-date oldf))))
  8985. (defun org-agenda-phases-of-moon ()
  8986. "Display the phases of the moon for the 3 months around the cursor date."
  8987. (interactive)
  8988. (org-agenda-execute-calendar-command 'calendar-lunar-phases))
  8989. (defun org-agenda-holidays ()
  8990. "Display the holidays for the 3 months around the cursor date."
  8991. (interactive)
  8992. (org-agenda-execute-calendar-command 'calendar-list-holidays))
  8993. (defvar calendar-longitude) ; defined in calendar.el
  8994. (defvar calendar-latitude) ; defined in calendar.el
  8995. (defvar calendar-location-name) ; defined in calendar.el
  8996. (defun org-agenda-sunrise-sunset (arg)
  8997. "Display sunrise and sunset for the cursor date.
  8998. Latitude and longitude can be specified with the variables
  8999. `calendar-latitude' and `calendar-longitude'. When called with prefix
  9000. argument, latitude and longitude will be prompted for."
  9001. (interactive "P")
  9002. (require 'solar)
  9003. (let ((calendar-longitude (if arg nil calendar-longitude))
  9004. (calendar-latitude (if arg nil calendar-latitude))
  9005. (calendar-location-name
  9006. (if arg "the given coordinates" calendar-location-name)))
  9007. (org-agenda-execute-calendar-command 'calendar-sunrise-sunset)))
  9008. (defun org-agenda-goto-calendar ()
  9009. "Open the Emacs calendar with the date at the cursor."
  9010. (interactive)
  9011. (org-agenda-check-type t 'agenda)
  9012. (let* ((day (or (get-text-property (min (1- (point-max)) (point)) 'day)
  9013. (user-error "Don't know which date to open in calendar")))
  9014. (date (calendar-gregorian-from-absolute day))
  9015. (calendar-move-hook nil)
  9016. (calendar-view-holidays-initially-flag nil)
  9017. (calendar-view-diary-initially-flag nil))
  9018. (calendar)
  9019. (calendar-goto-date date)))
  9020. ;;;###autoload
  9021. (defun org-calendar-goto-agenda ()
  9022. "Compute the Org agenda for the calendar date displayed at the cursor.
  9023. This is a command that has to be installed in `calendar-mode-map'."
  9024. (interactive)
  9025. ;; Temporarily disable sticky agenda since user clearly wants to
  9026. ;; refresh view anyway.
  9027. (let ((org-agenda-buffer-tmp-name "*Org Agenda(a)*")
  9028. (org-agenda-sticky nil))
  9029. (org-agenda-list nil (calendar-absolute-from-gregorian
  9030. (calendar-cursor-to-date))
  9031. nil)))
  9032. (defun org-agenda-convert-date ()
  9033. (interactive)
  9034. (org-agenda-check-type t 'agenda)
  9035. (let ((day (get-text-property (min (1- (point-max)) (point)) 'day))
  9036. date s)
  9037. (unless day
  9038. (user-error "Don't know which date to convert"))
  9039. (setq date (calendar-gregorian-from-absolute day))
  9040. (setq s (concat
  9041. "Gregorian: " (calendar-date-string date) "\n"
  9042. "ISO: " (calendar-iso-date-string date) "\n"
  9043. "Day of Yr: " (calendar-day-of-year-string date) "\n"
  9044. "Julian: " (calendar-julian-date-string date) "\n"
  9045. "Astron. JD: " (calendar-astro-date-string date)
  9046. " (Julian date number at noon UTC)\n"
  9047. "Hebrew: " (calendar-hebrew-date-string date) " (until sunset)\n"
  9048. "Islamic: " (calendar-islamic-date-string date) " (until sunset)\n"
  9049. "French: " (calendar-french-date-string date) "\n"
  9050. "Bahá’í: " (calendar-bahai-date-string date) " (until sunset)\n"
  9051. "Mayan: " (calendar-mayan-date-string date) "\n"
  9052. "Coptic: " (calendar-coptic-date-string date) "\n"
  9053. "Ethiopic: " (calendar-ethiopic-date-string date) "\n"
  9054. "Persian: " (calendar-persian-date-string date) "\n"
  9055. "Chinese: " (calendar-chinese-date-string date) "\n"))
  9056. (with-output-to-temp-buffer "*Dates*"
  9057. (princ s))
  9058. (org-fit-window-to-buffer (get-buffer-window "*Dates*"))))
  9059. ;;; Bulk commands
  9060. (defun org-agenda-bulk-marked-p ()
  9061. "Non-nil when current entry is marked for bulk action."
  9062. (eq (get-char-property (point-at-bol) 'type)
  9063. 'org-marked-entry-overlay))
  9064. (defun org-agenda-bulk-mark (&optional arg)
  9065. "Mark entries for future bulk action.
  9066. When ARG is nil or one and region is not active then mark the
  9067. entry at point.
  9068. When ARG is nil or one and region is active then mark the entries
  9069. in the region.
  9070. When ARG is greater than one mark ARG lines."
  9071. (interactive "p")
  9072. (when (and (or (not arg) (= arg 1)) (use-region-p))
  9073. (setq arg (count-lines (region-beginning) (region-end)))
  9074. (goto-char (region-beginning))
  9075. (deactivate-mark))
  9076. (dotimes (i (or arg 1))
  9077. (unless (org-get-at-bol 'org-agenda-diary-link)
  9078. (let* ((m (org-get-at-bol 'org-hd-marker))
  9079. ov)
  9080. (unless (org-agenda-bulk-marked-p)
  9081. (unless m (user-error "Nothing to mark at point"))
  9082. (push m org-agenda-bulk-marked-entries)
  9083. (setq ov (make-overlay (point-at-bol) (+ 2 (point-at-bol))))
  9084. (org-overlay-display ov (concat org-agenda-bulk-mark-char " ")
  9085. (org-get-todo-face "TODO")
  9086. 'evaporate)
  9087. (overlay-put ov 'type 'org-marked-entry-overlay))
  9088. (end-of-line 1)
  9089. (or (ignore-errors
  9090. (goto-char (next-single-property-change (point) 'org-hd-marker)))
  9091. (beginning-of-line 2))
  9092. (while (and (get-char-property (point) 'invisible) (not (eobp)))
  9093. (beginning-of-line 2)))))
  9094. (message "%d entries marked for bulk action"
  9095. (length org-agenda-bulk-marked-entries)))
  9096. (defun org-agenda-bulk-mark-all ()
  9097. "Mark all entries for future agenda bulk action."
  9098. (interactive)
  9099. (org-agenda-bulk-mark-regexp "."))
  9100. (defun org-agenda-bulk-mark-regexp (regexp)
  9101. "Mark entries matching REGEXP for future agenda bulk action."
  9102. (interactive "sMark entries matching regexp: ")
  9103. (let ((entries-marked 0) txt-at-point)
  9104. (save-excursion
  9105. (goto-char (point-min))
  9106. (goto-char (next-single-property-change (point) 'org-hd-marker))
  9107. (while (and (re-search-forward regexp nil t)
  9108. (setq txt-at-point (get-text-property (point) 'txt)))
  9109. (if (get-char-property (point) 'invisible)
  9110. (beginning-of-line 2)
  9111. (when (string-match regexp txt-at-point)
  9112. (setq entries-marked (1+ entries-marked))
  9113. (call-interactively 'org-agenda-bulk-mark)))))
  9114. (if (not entries-marked)
  9115. (message "No entry matching this regexp."))))
  9116. (defun org-agenda-bulk-unmark (&optional arg)
  9117. "Unmark the entry at point for future bulk action."
  9118. (interactive "P")
  9119. (if arg
  9120. (org-agenda-bulk-unmark-all)
  9121. (cond ((org-agenda-bulk-marked-p)
  9122. (org-agenda-bulk-remove-overlays
  9123. (point-at-bol) (+ 2 (point-at-bol)))
  9124. (setq org-agenda-bulk-marked-entries
  9125. (delete (org-get-at-bol 'org-hd-marker)
  9126. org-agenda-bulk-marked-entries))
  9127. (end-of-line 1)
  9128. (or (ignore-errors
  9129. (goto-char (next-single-property-change (point) 'txt)))
  9130. (beginning-of-line 2))
  9131. (while (and (get-char-property (point) 'invisible) (not (eobp)))
  9132. (beginning-of-line 2))
  9133. (message "%d entries left marked for bulk action"
  9134. (length org-agenda-bulk-marked-entries)))
  9135. (t (message "No entry to unmark here")))))
  9136. (defun org-agenda-bulk-toggle-all ()
  9137. "Toggle all marks for bulk action."
  9138. (interactive)
  9139. (save-excursion
  9140. (goto-char (point-min))
  9141. (while (ignore-errors
  9142. (goto-char (next-single-property-change (point) 'org-hd-marker)))
  9143. (org-agenda-bulk-toggle))))
  9144. (defun org-agenda-bulk-toggle ()
  9145. "Toggle the mark at point for bulk action."
  9146. (interactive)
  9147. (if (org-agenda-bulk-marked-p)
  9148. (org-agenda-bulk-unmark)
  9149. (org-agenda-bulk-mark)))
  9150. (defun org-agenda-bulk-remove-overlays (&optional beg end)
  9151. "Remove the mark overlays between BEG and END in the agenda buffer.
  9152. BEG and END default to the buffer limits.
  9153. This only removes the overlays, it does not remove the markers
  9154. from the list in `org-agenda-bulk-marked-entries'."
  9155. (interactive)
  9156. (mapc (lambda (ov)
  9157. (and (eq (overlay-get ov 'type) 'org-marked-entry-overlay)
  9158. (delete-overlay ov)))
  9159. (overlays-in (or beg (point-min)) (or end (point-max)))))
  9160. (defun org-agenda-bulk-unmark-all ()
  9161. "Remove all marks in the agenda buffer.
  9162. This will remove the markers and the overlays."
  9163. (interactive)
  9164. (if (null org-agenda-bulk-marked-entries)
  9165. (message "No entry to unmark")
  9166. (setq org-agenda-bulk-marked-entries nil)
  9167. (org-agenda-bulk-remove-overlays (point-min) (point-max))))
  9168. (defcustom org-agenda-persistent-marks nil
  9169. "Non-nil means marked items will stay marked after a bulk action.
  9170. You can toggle this interactively by typing `p' when prompted for a
  9171. bulk action."
  9172. :group 'org-agenda
  9173. :version "24.1"
  9174. :type 'boolean)
  9175. (defun org-agenda-bulk-action (&optional arg)
  9176. "Execute an remote-editing action on all marked entries.
  9177. The prefix arg is passed through to the command if possible."
  9178. (interactive "P")
  9179. ;; When there is no mark, act on the agenda entry at point.
  9180. (if (not org-agenda-bulk-marked-entries)
  9181. (save-excursion (org-agenda-bulk-mark)))
  9182. (dolist (m org-agenda-bulk-marked-entries)
  9183. (unless (and (markerp m)
  9184. (marker-buffer m)
  9185. (buffer-live-p (marker-buffer m))
  9186. (marker-position m))
  9187. (user-error "Marker %s for bulk command is invalid" m)))
  9188. ;; Prompt for the bulk command.
  9189. (org-unlogged-message
  9190. (concat (if org-agenda-persistent-marks "Bulk (persistent): " "Bulk: ")
  9191. "[$]arch [A]rch->sib [t]odo [+/-]tag [s]chd [d]eadline [r]efile "
  9192. "[S]catter [f]unction "
  9193. (and org-agenda-bulk-custom-functions
  9194. (format " Custom: [%s]"
  9195. (mapconcat (lambda (f) (char-to-string (car f)))
  9196. org-agenda-bulk-custom-functions
  9197. "")))))
  9198. (catch 'exit
  9199. (let* ((org-log-refile (if org-log-refile 'time nil))
  9200. (entries (reverse org-agenda-bulk-marked-entries))
  9201. (org-overriding-default-time
  9202. (and (get-text-property (point) 'org-agenda-date-header)
  9203. (org-get-cursor-date)))
  9204. redo-at-end
  9205. cmd)
  9206. (pcase (read-char-exclusive)
  9207. (?p
  9208. (let ((org-agenda-persistent-marks
  9209. (not org-agenda-persistent-marks)))
  9210. (org-agenda-bulk-action)
  9211. (throw 'exit nil)))
  9212. (?$
  9213. (setq cmd #'org-agenda-archive))
  9214. (?A
  9215. (setq cmd #'org-agenda-archive-to-archive-sibling))
  9216. ((or ?r ?w)
  9217. (let ((refile-location
  9218. (org-refile-get-location
  9219. "Refile to"
  9220. (marker-buffer (car entries))
  9221. org-refile-allow-creating-parent-nodes)))
  9222. (when (nth 3 refile-location)
  9223. (setcar (nthcdr 3 refile-location)
  9224. (move-marker
  9225. (make-marker)
  9226. (nth 3 refile-location)
  9227. (or (get-file-buffer (nth 1 refile-location))
  9228. (find-buffer-visiting (nth 1 refile-location))
  9229. (error "This should not happen")))))
  9230. (setq cmd `(lambda () (org-agenda-refile nil ',refile-location t)))
  9231. (setq redo-at-end t)))
  9232. (?t
  9233. (let ((state (completing-read
  9234. "Todo state: "
  9235. (with-current-buffer (marker-buffer (car entries))
  9236. (mapcar #'list org-todo-keywords-1)))))
  9237. (setq cmd `(lambda ()
  9238. (let ((org-inhibit-blocking t)
  9239. (org-inhibit-logging 'note))
  9240. (org-agenda-todo ,state))))))
  9241. ((and (or ?- ?+) action)
  9242. (let ((tag (completing-read
  9243. (format "Tag to %s: " (if (eq action ?+) "add" "remove"))
  9244. (with-current-buffer (marker-buffer (car entries))
  9245. (delq nil
  9246. (mapcar (lambda (x) (and (stringp (car x)) x))
  9247. org-current-tag-alist))))))
  9248. (setq cmd
  9249. `(lambda ()
  9250. (org-agenda-set-tags ,tag
  9251. ,(if (eq action ?+) ''on ''off))))))
  9252. ((and (or ?s ?d) c)
  9253. (let* ((schedule? (eq c ?s))
  9254. (prompt (if schedule? "(Re)Schedule to" "(Re)Set Deadline to"))
  9255. (time
  9256. (and (not arg)
  9257. (let ((new (org-read-date
  9258. nil nil nil prompt org-overriding-default-time)))
  9259. ;; A "double plus" answer applies to every
  9260. ;; scheduled time. Do not turn it into
  9261. ;; a fixed date yet.
  9262. (if (string-match-p "\\`[ \t]*\\+\\+"
  9263. org-read-date-final-answer)
  9264. org-read-date-final-answer
  9265. new)))))
  9266. ;; Make sure to not prompt for a note when bulk
  9267. ;; rescheduling/resetting deadline as Org cannot cope with
  9268. ;; simultaneous notes. Besides, it could be annoying
  9269. ;; depending on the number of marked items.
  9270. (setq cmd
  9271. (if schedule?
  9272. `(lambda ()
  9273. (let ((org-log-reschedule
  9274. (and org-log-reschedule 'time)))
  9275. (org-agenda-schedule arg ,time)))
  9276. `(lambda ()
  9277. (let ((org-log-redeadline (and org-log-redeadline 'time)))
  9278. (org-agenda-deadline arg ,time)))))))
  9279. (?S
  9280. (unless (org-agenda-check-type nil 'agenda 'todo)
  9281. (user-error "Can't scatter tasks in \"%s\" agenda view" org-agenda-type))
  9282. (let ((days (read-number
  9283. (format "Scatter tasks across how many %sdays: "
  9284. (if arg "week" ""))
  9285. 7)))
  9286. (setq cmd
  9287. `(lambda ()
  9288. (let ((distance (1+ (random ,days))))
  9289. (when arg
  9290. (let ((dist distance)
  9291. (day-of-week
  9292. (calendar-day-of-week
  9293. (calendar-gregorian-from-absolute (org-today)))))
  9294. (dotimes (i (1+ dist))
  9295. (while (member day-of-week org-agenda-weekend-days)
  9296. (cl-incf distance)
  9297. (cl-incf day-of-week)
  9298. (when (= day-of-week 7)
  9299. (setq day-of-week 0)))
  9300. (cl-incf day-of-week)
  9301. (when (= day-of-week 7)
  9302. (setq day-of-week 0)))))
  9303. ;; Silently fail when try to replan a sexp entry.
  9304. (ignore-errors
  9305. (let* ((date (calendar-gregorian-from-absolute
  9306. (+ (org-today) distance)))
  9307. (time (encode-time 0 0 0 (nth 1 date) (nth 0 date)
  9308. (nth 2 date))))
  9309. (org-agenda-schedule nil time))))))))
  9310. (?f
  9311. (setq cmd
  9312. (intern
  9313. (completing-read "Function: " obarray #'fboundp t nil nil))))
  9314. (action
  9315. (pcase (assoc action org-agenda-bulk-custom-functions)
  9316. (`(,_ ,f) (setq cmd f) (setq redo-at-end t))
  9317. (_ (user-error "Invalid bulk action: %c" action)))))
  9318. ;; Sort the markers, to make sure that parents are handled
  9319. ;; before children.
  9320. (setq entries (sort entries
  9321. (lambda (a b)
  9322. (cond
  9323. ((eq (marker-buffer a) (marker-buffer b))
  9324. (< (marker-position a) (marker-position b)))
  9325. (t
  9326. (string< (buffer-name (marker-buffer a))
  9327. (buffer-name (marker-buffer b))))))))
  9328. ;; Now loop over all markers and apply CMD.
  9329. (let ((processed 0)
  9330. (skipped 0))
  9331. (dolist (e entries)
  9332. (let ((pos (text-property-any (point-min) (point-max) 'org-hd-marker e)))
  9333. (if (not pos)
  9334. (progn (message "Skipping removed entry at %s" e)
  9335. (cl-incf skipped))
  9336. (goto-char pos)
  9337. (let (org-loop-over-headlines-in-active-region) (funcall cmd))
  9338. ;; `post-command-hook' is not run yet. We make sure any
  9339. ;; pending log note is processed.
  9340. (when (or (memq 'org-add-log-note (default-value 'post-command-hook))
  9341. (memq 'org-add-log-note post-command-hook))
  9342. (org-add-log-note))
  9343. (cl-incf processed))))
  9344. (when redo-at-end (org-agenda-redo))
  9345. (unless org-agenda-persistent-marks (org-agenda-bulk-unmark-all))
  9346. (message "Acted on %d entries%s%s"
  9347. processed
  9348. (if (= skipped 0)
  9349. ""
  9350. (format ", skipped %d (disappeared before their turn)"
  9351. skipped))
  9352. (if (not org-agenda-persistent-marks) "" " (kept marked)"))))))
  9353. (defun org-agenda-capture (&optional with-time)
  9354. "Call `org-capture' with the date at point.
  9355. With a `C-1' prefix, use the HH:MM value at point (if any) or the
  9356. current HH:MM time."
  9357. (interactive "P")
  9358. (if (not (eq major-mode 'org-agenda-mode))
  9359. (user-error "You cannot do this outside of agenda buffers")
  9360. (let ((org-overriding-default-time
  9361. (org-get-cursor-date (equal with-time 1))))
  9362. (call-interactively 'org-capture))))
  9363. ;;; Dragging agenda lines forward/backward
  9364. (defun org-agenda-reapply-filters ()
  9365. "Re-apply all agenda filters."
  9366. (mapcar
  9367. (lambda(f) (when (car f) (org-agenda-filter-apply (car f) (cadr f) t)))
  9368. `((,org-agenda-tag-filter tag)
  9369. (,org-agenda-category-filter category)
  9370. (,org-agenda-regexp-filter regexp)
  9371. (,org-agenda-effort-filter effort)
  9372. (,(get 'org-agenda-tag-filter :preset-filter) tag)
  9373. (,(get 'org-agenda-category-filter :preset-filter) category)
  9374. (,(get 'org-agenda-effort-filter :preset-filter) effort)
  9375. (,(get 'org-agenda-regexp-filter :preset-filter) regexp))))
  9376. (defun org-agenda-drag-line-forward (arg &optional backward)
  9377. "Drag an agenda line forward by ARG lines.
  9378. When the optional argument `backward' is non-nil, move backward."
  9379. (interactive "p")
  9380. (let ((inhibit-read-only t) lst line)
  9381. (if (or (not (get-text-property (point) 'txt))
  9382. (save-excursion
  9383. (dotimes (n arg)
  9384. (move-beginning-of-line (if backward 0 2))
  9385. (push (not (get-text-property (point) 'txt)) lst))
  9386. (delq nil lst)))
  9387. (message "Cannot move line forward")
  9388. (let ((end (save-excursion (move-beginning-of-line 2) (point))))
  9389. (move-beginning-of-line 1)
  9390. (setq line (buffer-substring (point) end))
  9391. (delete-region (point) end)
  9392. (move-beginning-of-line (funcall (if backward '1- '1+) arg))
  9393. (insert line)
  9394. (org-agenda-reapply-filters)
  9395. (org-agenda-mark-clocking-task)
  9396. (move-beginning-of-line 0)))))
  9397. (defun org-agenda-drag-line-backward (arg)
  9398. "Drag an agenda line backward by ARG lines."
  9399. (interactive "p")
  9400. (org-agenda-drag-line-forward arg t))
  9401. ;;; Flagging notes
  9402. (defun org-agenda-show-the-flagging-note ()
  9403. "Display the flagging note in the other window.
  9404. When called a second time in direct sequence, offer to remove the FLAGGING
  9405. tag and (if present) the flagging note."
  9406. (interactive)
  9407. (let ((hdmarker (org-get-at-bol 'org-hd-marker))
  9408. (win (selected-window))
  9409. note heading newhead)
  9410. (unless hdmarker
  9411. (user-error "No linked entry at point"))
  9412. (if (and (eq this-command last-command)
  9413. (y-or-n-p "Unflag and remove any flagging note? "))
  9414. (progn
  9415. (org-agenda-remove-flag hdmarker)
  9416. (let ((win (get-buffer-window "*Flagging Note*")))
  9417. (and win (delete-window win)))
  9418. (message "Entry unflagged"))
  9419. (setq note (org-entry-get hdmarker "THEFLAGGINGNOTE"))
  9420. (unless note
  9421. (user-error "No flagging note"))
  9422. (org-kill-new note)
  9423. (org-switch-to-buffer-other-window "*Flagging Note*")
  9424. (erase-buffer)
  9425. (insert note)
  9426. (goto-char (point-min))
  9427. (while (re-search-forward "\\\\n" nil t)
  9428. (replace-match "\n" t t))
  9429. (goto-char (point-min))
  9430. (select-window win)
  9431. (message "%s" (substitute-command-keys "Flagging note pushed to \
  9432. kill ring. Press `\\[org-agenda-show-the-flagging-note]' again to remove \
  9433. tag and note")))))
  9434. (defun org-agenda-remove-flag (marker)
  9435. "Remove the FLAGGED tag and any flagging note in the entry."
  9436. (let (newhead)
  9437. (org-with-point-at marker
  9438. (org-toggle-tag "FLAGGED" 'off)
  9439. (org-entry-delete nil "THEFLAGGINGNOTE")
  9440. (setq newhead (org-get-heading)))
  9441. (org-agenda-change-all-lines newhead marker)
  9442. (message "Entry unflagged")))
  9443. (defun org-agenda-get-any-marker (&optional pos)
  9444. (or (get-text-property (or pos (point-at-bol)) 'org-hd-marker)
  9445. (get-text-property (or pos (point-at-bol)) 'org-marker)))
  9446. ;;; Appointment reminders
  9447. (defvar appt-time-msg-list) ; defined in appt.el
  9448. ;;;###autoload
  9449. (defun org-agenda-to-appt (&optional refresh filter &rest args)
  9450. "Activate appointments found in `org-agenda-files'.
  9451. With a `\\[universal-argument]' prefix, refresh the list of \
  9452. appointments.
  9453. If FILTER is t, interactively prompt the user for a regular
  9454. expression, and filter out entries that don't match it.
  9455. If FILTER is a string, use this string as a regular expression
  9456. for filtering entries out.
  9457. If FILTER is a function, filter out entries against which
  9458. calling the function returns nil. This function takes one
  9459. argument: an entry from `org-agenda-get-day-entries'.
  9460. FILTER can also be an alist with the car of each cell being
  9461. either `headline' or `category'. For example:
  9462. \\='((headline \"IMPORTANT\")
  9463. (category \"Work\"))
  9464. will only add headlines containing IMPORTANT or headlines
  9465. belonging to the \"Work\" category.
  9466. ARGS are symbols indicating what kind of entries to consider.
  9467. By default `org-agenda-to-appt' will use :deadline*, :scheduled*
  9468. \(i.e., deadlines and scheduled items with a hh:mm specification)
  9469. and :timestamp entries. See the docstring of `org-diary' for
  9470. details and examples.
  9471. If an entry has a APPT_WARNTIME property, its value will be used
  9472. to override `appt-message-warning-time'."
  9473. (interactive "P")
  9474. (if refresh (setq appt-time-msg-list nil))
  9475. (if (eq filter t)
  9476. (setq filter (read-from-minibuffer "Regexp filter: ")))
  9477. (let* ((cnt 0) ; count added events
  9478. (scope (or args '(:deadline* :scheduled* :timestamp)))
  9479. (org-agenda-new-buffers nil)
  9480. (org-deadline-warning-days 0)
  9481. ;; Do not use `org-today' here because appt only takes
  9482. ;; time and without date as argument, so it may pass wrong
  9483. ;; information otherwise
  9484. (today (org-date-to-gregorian
  9485. (time-to-days (current-time))))
  9486. (org-agenda-restrict nil)
  9487. (files (org-agenda-files 'unrestricted)) entries file
  9488. (org-agenda-buffer nil))
  9489. ;; Get all entries which may contain an appt
  9490. (org-agenda-prepare-buffers files)
  9491. (while (setq file (pop files))
  9492. (setq entries
  9493. (delq nil
  9494. (append entries
  9495. (apply 'org-agenda-get-day-entries
  9496. file today scope)))))
  9497. ;; Map thru entries and find if we should filter them out
  9498. (mapc
  9499. (lambda (x)
  9500. (let* ((evt (org-trim
  9501. (replace-regexp-in-string
  9502. org-bracket-link-regexp "\\3"
  9503. (or (get-text-property 1 'txt x) ""))))
  9504. (cat (get-text-property (1- (length x)) 'org-category x))
  9505. (tod (get-text-property 1 'time-of-day x))
  9506. (ok (or (null filter)
  9507. (and (stringp filter) (string-match filter evt))
  9508. (and (functionp filter) (funcall filter x))
  9509. (and (listp filter)
  9510. (let ((cat-filter (cadr (assq 'category filter)))
  9511. (evt-filter (cadr (assq 'headline filter))))
  9512. (or (and (stringp cat-filter)
  9513. (string-match cat-filter cat))
  9514. (and (stringp evt-filter)
  9515. (string-match evt-filter evt)))))))
  9516. (wrn (get-text-property 1 'warntime x)))
  9517. ;; FIXME: Shall we remove text-properties for the appt text?
  9518. ;; (setq evt (set-text-properties 0 (length evt) nil evt))
  9519. (when (and ok tod (not (string-match "\\`DONE\\|CANCELLED" evt)))
  9520. (setq tod (concat "00" (number-to-string tod)))
  9521. (setq tod (when (string-match
  9522. "\\([0-9]\\{1,2\\}\\)\\([0-9]\\{2\\}\\)\\'" tod)
  9523. (concat (match-string 1 tod) ":"
  9524. (match-string 2 tod))))
  9525. (when (appt-add tod evt wrn)
  9526. (setq cnt (1+ cnt))))))
  9527. entries)
  9528. (org-release-buffers org-agenda-new-buffers)
  9529. (if (eq cnt 0)
  9530. (message "No event to add")
  9531. (message "Added %d event%s for today" cnt (if (> cnt 1) "s" "")))))
  9532. (defun org-agenda-today-p (date)
  9533. "Non nil when DATE means today.
  9534. DATE is either a list of the form (month day year) or a number of
  9535. days as returned by `calendar-absolute-from-gregorian' or
  9536. `org-today'. This function considers `org-extend-today-until'
  9537. when defining today."
  9538. (eq (org-today)
  9539. (if (consp date) (calendar-absolute-from-gregorian date) date)))
  9540. (defun org-agenda-todo-yesterday (&optional arg)
  9541. "Like `org-agenda-todo' but the time of change will be 23:59 of yesterday."
  9542. (interactive "P")
  9543. (let* ((org-use-effective-time t)
  9544. (hour (nth 2 (decode-time (org-current-time))))
  9545. (org-extend-today-until (1+ hour)))
  9546. (org-agenda-todo arg)))
  9547. (provide 'org-agenda)
  9548. ;;; org-agenda.el ends here