org-agenda.el 397 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233
  1. ;;; org-agenda.el --- Dynamic task and appointment lists for Org
  2. ;; Copyright (C) 2004-2015 Free Software Foundation, Inc.
  3. ;; Author: Carsten Dominik <carsten at orgmode dot org>
  4. ;; Keywords: outlines, hypermedia, calendar, wp
  5. ;; Homepage: http://orgmode.org
  6. ;;
  7. ;; This file is part of GNU Emacs.
  8. ;;
  9. ;; GNU Emacs is free software: you can redistribute it and/or modify
  10. ;; it under the terms of the GNU General Public License as published by
  11. ;; the Free Software Foundation, either version 3 of the License, or
  12. ;; (at your option) any later version.
  13. ;; GNU Emacs is distributed in the hope that it will be useful,
  14. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. ;; GNU General Public License for more details.
  17. ;; You should have received a copy of the GNU General Public License
  18. ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
  19. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  20. ;;
  21. ;;; Commentary:
  22. ;; This file contains the code for creating and using the Agenda for Org-mode.
  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 'org)
  42. (require 'org-macs)
  43. (eval-when-compile
  44. (require 'cl))
  45. (declare-function diary-add-to-list "diary-lib"
  46. (date string specifier &optional marker globcolor literal))
  47. (declare-function calendar-iso-to-absolute "cal-iso" (date))
  48. (declare-function calendar-astro-date-string "cal-julian" (&optional date))
  49. (declare-function calendar-bahai-date-string "cal-bahai" (&optional date))
  50. (declare-function calendar-chinese-date-string "cal-china" (&optional date))
  51. (declare-function calendar-coptic-date-string "cal-coptic" (&optional date))
  52. (declare-function calendar-ethiopic-date-string "cal-coptic" (&optional date))
  53. (declare-function calendar-french-date-string "cal-french" (&optional date))
  54. (declare-function calendar-goto-date "cal-move" (date))
  55. (declare-function calendar-hebrew-date-string "cal-hebrew" (&optional date))
  56. (declare-function calendar-islamic-date-string "cal-islam" (&optional date))
  57. (declare-function calendar-iso-date-string "cal-iso" (&optional date))
  58. (declare-function calendar-iso-from-absolute "cal-iso" (date))
  59. (declare-function calendar-julian-date-string "cal-julian" (&optional date))
  60. (declare-function calendar-mayan-date-string "cal-mayan" (&optional date))
  61. (declare-function calendar-persian-date-string "cal-persia" (&optional date))
  62. (declare-function calendar-check-holidays "holidays" (date))
  63. (declare-function org-columns-remove-overlays "org-colview" ())
  64. (declare-function org-datetree-find-date-create "org-datetree"
  65. (date &optional keep-restriction))
  66. (declare-function org-columns-quit "org-colview" ())
  67. (declare-function diary-date-display-form "diary-lib" (&optional type))
  68. (declare-function org-mobile-write-agenda-for-mobile "org-mobile" (file))
  69. (declare-function org-habit-insert-consistency-graphs
  70. "org-habit" (&optional line))
  71. (declare-function org-is-habit-p "org-habit" (&optional pom))
  72. (declare-function org-habit-parse-todo "org-habit" (&optional pom))
  73. (declare-function org-habit-get-priority "org-habit" (habit &optional moment))
  74. (declare-function org-pop-to-buffer-same-window "org-compat"
  75. (&optional buffer-or-name norecord label))
  76. (declare-function org-agenda-columns "org-colview" ())
  77. (declare-function org-add-archive-files "org-archive" (files))
  78. (declare-function org-capture "org-capture" (&optional goto keys))
  79. (defvar calendar-mode-map) ; defined in calendar.el
  80. (defvar org-clock-current-task nil) ; defined in org-clock.el
  81. (defvar org-mobile-force-id-on-agenda-items) ; defined in org-mobile.el
  82. (defvar org-habit-show-habits) ; defined in org-habit.el
  83. (defvar org-habit-show-habits-only-for-today)
  84. (defvar org-habit-show-all-today)
  85. ;; Defined somewhere in this file, but used before definition.
  86. (defvar org-agenda-buffer-name "*Org Agenda*")
  87. (defvar org-agenda-overriding-header nil)
  88. (defvar org-agenda-title-append nil)
  89. (org-no-warnings (defvar entry)) ;; unprefixed, from calendar.el
  90. (org-no-warnings (defvar date)) ;; unprefixed, from calendar.el
  91. (defvar original-date) ; dynamically scoped, calendar.el does scope this
  92. (defvar org-agenda-undo-list nil
  93. "List of undoable operations in the agenda since last refresh.")
  94. (defvar org-agenda-pending-undo-list nil
  95. "In a series of undo commands, this is the list of remaining undo items.")
  96. (defcustom org-agenda-confirm-kill 1
  97. "When set, remote killing from the agenda buffer needs confirmation.
  98. When t, a confirmation is always needed. When a number N, confirmation is
  99. only needed when the text to be killed contains more than N non-white lines."
  100. :group 'org-agenda
  101. :type '(choice
  102. (const :tag "Never" nil)
  103. (const :tag "Always" t)
  104. (integer :tag "When more than N lines")))
  105. (defcustom org-agenda-compact-blocks nil
  106. "Non-nil means make the block agenda more compact.
  107. This is done globally by leaving out lines like the agenda span
  108. name and week number or the separator lines."
  109. :group 'org-agenda
  110. :type 'boolean)
  111. (defcustom org-agenda-block-separator ?=
  112. "The separator between blocks in the agenda.
  113. If this is a string, it will be used as the separator, with a newline added.
  114. If it is a character, it will be repeated to fill the window width.
  115. If nil the separator is disabled. In `org-agenda-custom-commands' this
  116. addresses the separator between the current and the previous block."
  117. :group 'org-agenda
  118. :type '(choice
  119. (const :tag "Disabled" nil)
  120. (character)
  121. (string)))
  122. (defgroup org-agenda-export nil
  123. "Options concerning exporting agenda views in Org-mode."
  124. :tag "Org Agenda Export"
  125. :group 'org-agenda)
  126. (defcustom org-agenda-with-colors t
  127. "Non-nil means use colors in agenda views."
  128. :group 'org-agenda-export
  129. :type 'boolean)
  130. (defcustom org-agenda-exporter-settings nil
  131. "Alist of variable/value pairs that should be active during agenda export.
  132. This is a good place to set options for ps-print and for htmlize.
  133. Note that the way this is implemented, the values will be evaluated
  134. before assigned to the variables. So make sure to quote values you do
  135. *not* want evaluated, for example
  136. (setq org-agenda-exporter-settings
  137. \\='((ps-print-color-p \\='black-white)))"
  138. :group 'org-agenda-export
  139. :type '(repeat
  140. (list
  141. (variable)
  142. (sexp :tag "Value"))))
  143. (defcustom org-agenda-before-write-hook '(org-agenda-add-entry-text)
  144. "Hook run in a temporary buffer before writing the agenda to an export file.
  145. A useful function for this hook is `org-agenda-add-entry-text'."
  146. :group 'org-agenda-export
  147. :type 'hook
  148. :options '(org-agenda-add-entry-text))
  149. (defcustom org-agenda-add-entry-text-maxlines 0
  150. "Maximum number of entry text lines to be added to agenda.
  151. This is only relevant when `org-agenda-add-entry-text' is part of
  152. `org-agenda-before-write-hook', which is the default.
  153. When this is 0, nothing will happen. When it is greater than 0, it
  154. specifies the maximum number of lines that will be added for each entry
  155. that is listed in the agenda view.
  156. Note that this variable is not used during display, only when exporting
  157. the agenda. For agenda display, see the variables `org-agenda-entry-text-mode'
  158. and `org-agenda-entry-text-maxlines'."
  159. :group 'org-agenda
  160. :type 'integer)
  161. (defcustom org-agenda-add-entry-text-descriptive-links t
  162. "Non-nil means export org-links as descriptive links in agenda added text.
  163. This variable applies to the text added to the agenda when
  164. `org-agenda-add-entry-text-maxlines' is larger than 0.
  165. When this variable nil, the URL will (also) be shown."
  166. :group 'org-agenda
  167. :type 'boolean)
  168. (defcustom org-agenda-export-html-style nil
  169. "The style specification for exported HTML Agenda files.
  170. If this variable contains a string, it will replace the default <style>
  171. section as produced by `htmlize'.
  172. Since there are different ways of setting style information, this variable
  173. needs to contain the full HTML structure to provide a style, including the
  174. surrounding HTML tags. The style specifications should include definitions
  175. the fonts used by the agenda, here is an example:
  176. <style type=\"text/css\">
  177. p { font-weight: normal; color: gray; }
  178. .org-agenda-structure {
  179. font-size: 110%;
  180. color: #003399;
  181. font-weight: 600;
  182. }
  183. .org-todo {
  184. color: #cc6666;
  185. font-weight: bold;
  186. }
  187. .org-agenda-done {
  188. color: #339933;
  189. }
  190. .org-done {
  191. color: #339933;
  192. }
  193. .title { text-align: center; }
  194. .todo, .deadline { color: red; }
  195. .done { color: green; }
  196. </style>
  197. or, if you want to keep the style in a file,
  198. <link rel=\"stylesheet\" type=\"text/css\" href=\"mystyles.css\">
  199. As the value of this option simply gets inserted into the HTML <head> header,
  200. you can \"misuse\" it to also add other text to the header."
  201. :group 'org-agenda-export
  202. :group 'org-export-html
  203. :type '(choice
  204. (const nil)
  205. (string)))
  206. (defcustom org-agenda-persistent-filter nil
  207. "When set, keep filters from one agenda view to the next."
  208. :group 'org-agenda
  209. :type 'boolean)
  210. (defgroup org-agenda-custom-commands nil
  211. "Options concerning agenda views in Org-mode."
  212. :tag "Org Agenda Custom Commands"
  213. :group 'org-agenda)
  214. (defconst org-sorting-choice
  215. '(choice
  216. (const time-up) (const time-down)
  217. (const timestamp-up) (const timestamp-down)
  218. (const scheduled-up) (const scheduled-down)
  219. (const deadline-up) (const deadline-down)
  220. (const ts-up) (const ts-down)
  221. (const tsia-up) (const tsia-down)
  222. (const category-keep) (const category-up) (const category-down)
  223. (const tag-down) (const tag-up)
  224. (const priority-up) (const priority-down)
  225. (const todo-state-up) (const todo-state-down)
  226. (const effort-up) (const effort-down)
  227. (const habit-up) (const habit-down)
  228. (const alpha-up) (const alpha-down)
  229. (const user-defined-up) (const user-defined-down))
  230. "Sorting choices.")
  231. ;; Keep custom values for `org-agenda-filter-preset' compatible with
  232. ;; the new variable `org-agenda-tag-filter-preset'.
  233. (org-defvaralias 'org-agenda-filter-preset 'org-agenda-tag-filter-preset)
  234. (org-defvaralias 'org-agenda-filter 'org-agenda-tag-filter)
  235. (defvar org-agenda-entry-types '(:deadline :scheduled :timestamp :sexp)
  236. "List of types searched for when creating the daily/weekly agenda.
  237. This variable is a list of symbols that controls the types of
  238. items that appear in the daily/weekly agenda. Allowed symbols in this
  239. list are are
  240. :timestamp List items containing a date stamp or date range matching
  241. the selected date. This includes sexp entries in angular
  242. brackets.
  243. :sexp List entries resulting from plain diary-like sexps.
  244. :deadline List deadline due on that date. When the date is today,
  245. also list any deadlines past due, or due within
  246. `org-deadline-warning-days'. `:deadline' must appear before
  247. `:scheduled' if the setting of
  248. `org-agenda-skip-scheduled-if-deadline-is-shown' is to have
  249. any effect.
  250. :deadline* Same as above, but only include the deadline if it has an
  251. hour specification as [h]h:mm.
  252. :scheduled List all items which are scheduled for the given date.
  253. The diary for *today* also contains items which were
  254. scheduled earlier and are not yet marked DONE.
  255. :scheduled* Same as above, but only include the scheduled item if it
  256. has an hour specification as [h]h:mm.
  257. By default, all four non-starred types are turned on.
  258. When :scheduled* or :deadline* are included, :schedule or :deadline
  259. will be ignored.
  260. Never set this variable globally using `setq', because then it
  261. will apply to all future agenda commands. Instead, bind it with
  262. `let' to scope it dynamically into the agenda-constructing
  263. command. A good way to set it is through options in
  264. `org-agenda-custom-commands'. For a more flexible (though
  265. somewhat less efficient) way of determining what is included in
  266. the daily/weekly agenda, see `org-agenda-skip-function'.")
  267. (defconst org-agenda-custom-commands-local-options
  268. `(repeat :tag "Local settings for this command. Remember to quote values"
  269. (choice :tag "Setting"
  270. (list :tag "Heading for this block"
  271. (const org-agenda-overriding-header)
  272. (string :tag "Headline"))
  273. (list :tag "Files to be searched"
  274. (const org-agenda-files)
  275. (list
  276. (const :format "" quote)
  277. (repeat (file))))
  278. (list :tag "Sorting strategy"
  279. (const org-agenda-sorting-strategy)
  280. (list
  281. (const :format "" quote)
  282. (repeat
  283. ,org-sorting-choice)))
  284. (list :tag "Prefix format"
  285. (const org-agenda-prefix-format :value " %-12:c%?-12t% s")
  286. (string))
  287. (list :tag "Number of days in agenda"
  288. (const org-agenda-span)
  289. (choice (const :tag "Day" day)
  290. (const :tag "Week" week)
  291. (const :tag "Fortnight" fortnight)
  292. (const :tag "Month" month)
  293. (const :tag "Year" year)
  294. (integer :tag "Custom")))
  295. (list :tag "Fixed starting date"
  296. (const org-agenda-start-day)
  297. (string :value "2007-11-01"))
  298. (list :tag "Start on day of week"
  299. (const org-agenda-start-on-weekday)
  300. (choice :value 1
  301. (const :tag "Today" nil)
  302. (integer :tag "Weekday No.")))
  303. (list :tag "Include data from diary"
  304. (const org-agenda-include-diary)
  305. (boolean))
  306. (list :tag "Deadline Warning days"
  307. (const org-deadline-warning-days)
  308. (integer :value 1))
  309. (list :tag "Category filter preset"
  310. (const org-agenda-category-filter-preset)
  311. (list
  312. (const :format "" quote)
  313. (repeat
  314. (string :tag "+category or -category"))))
  315. (list :tag "Tags filter preset"
  316. (const org-agenda-tag-filter-preset)
  317. (list
  318. (const :format "" quote)
  319. (repeat
  320. (string :tag "+tag or -tag"))))
  321. (list :tag "Effort filter preset"
  322. (const org-agenda-effort-filter-preset)
  323. (list
  324. (const :format "" quote)
  325. (repeat
  326. (string :tag "+=10 or -=10 or +<10 or ->10"))))
  327. (list :tag "Regexp filter preset"
  328. (const org-agenda-regexp-filter-preset)
  329. (list
  330. (const :format "" quote)
  331. (repeat
  332. (string :tag "+regexp or -regexp"))))
  333. (list :tag "Set daily/weekly entry types"
  334. (const org-agenda-entry-types)
  335. (list
  336. (const :format "" quote)
  337. (set :greedy t :value ,org-agenda-entry-types
  338. (const :deadline)
  339. (const :scheduled)
  340. (const :deadline*)
  341. (const :scheduled*)
  342. (const :timestamp)
  343. (const :sexp))))
  344. (list :tag "Standard skipping condition"
  345. :value (org-agenda-skip-function '(org-agenda-skip-entry-if))
  346. (const org-agenda-skip-function)
  347. (list
  348. (const :format "" quote)
  349. (list
  350. (choice
  351. :tag "Skipping range"
  352. (const :tag "Skip entry" org-agenda-skip-entry-if)
  353. (const :tag "Skip subtree" org-agenda-skip-subtree-if))
  354. (repeat :inline t :tag "Conditions for skipping"
  355. (choice
  356. :tag "Condition type"
  357. (list :tag "Regexp matches" :inline t
  358. (const :format "" 'regexp)
  359. (regexp))
  360. (list :tag "Regexp does not match" :inline t
  361. (const :format "" 'notregexp)
  362. (regexp))
  363. (list :tag "TODO state is" :inline t
  364. (const 'todo)
  365. (choice
  366. (const :tag "Any not-done state" 'todo)
  367. (const :tag "Any done state" 'done)
  368. (const :tag "Any state" 'any)
  369. (list :tag "Keyword list"
  370. (const :format "" quote)
  371. (repeat (string :tag "Keyword")))))
  372. (list :tag "TODO state is not" :inline t
  373. (const 'nottodo)
  374. (choice
  375. (const :tag "Any not-done state" 'todo)
  376. (const :tag "Any done state" 'done)
  377. (const :tag "Any state" 'any)
  378. (list :tag "Keyword list"
  379. (const :format "" quote)
  380. (repeat (string :tag "Keyword")))))
  381. (const :tag "scheduled" 'scheduled)
  382. (const :tag "not scheduled" 'notscheduled)
  383. (const :tag "deadline" 'deadline)
  384. (const :tag "no deadline" 'notdeadline)
  385. (const :tag "timestamp" 'timestamp)
  386. (const :tag "no timestamp" 'nottimestamp))))))
  387. (list :tag "Non-standard skipping condition"
  388. :value (org-agenda-skip-function)
  389. (const org-agenda-skip-function)
  390. (sexp :tag "Function or form (quoted!)"))
  391. (list :tag "Any variable"
  392. (variable :tag "Variable")
  393. (sexp :tag "Value (sexp)"))))
  394. "Selection of examples for agenda command settings.
  395. This will be spliced into the custom type of
  396. `org-agenda-custom-commands'.")
  397. (defcustom org-agenda-custom-commands
  398. '(("n" "Agenda and all TODOs" ((agenda "") (alltodo ""))))
  399. "Custom commands for the agenda.
  400. These commands will be offered on the splash screen displayed by the
  401. agenda dispatcher \\[org-agenda]. Each entry is a list like this:
  402. (key desc type match settings files)
  403. key The key (one or more characters as a string) to be associated
  404. with the command.
  405. desc A description of the command, when omitted or nil, a default
  406. description is built using MATCH.
  407. type The command type, any of the following symbols:
  408. agenda The daily/weekly agenda.
  409. todo Entries with a specific TODO keyword, in all agenda files.
  410. search Entries containing search words entry or headline.
  411. tags Tags/Property/TODO match in all agenda files.
  412. tags-todo Tags/P/T match in all agenda files, TODO entries only.
  413. todo-tree Sparse tree of specific TODO keyword in *current* file.
  414. tags-tree Sparse tree with all tags matches in *current* file.
  415. occur-tree Occur sparse tree for *current* file.
  416. ... A user-defined function.
  417. match What to search for:
  418. - a single keyword for TODO keyword searches
  419. - a tags match expression for tags searches
  420. - a word search expression for text searches.
  421. - a regular expression for occur searches
  422. For all other commands, this should be the empty string.
  423. settings A list of option settings, similar to that in a let form, so like
  424. this: ((opt1 val1) (opt2 val2) ...). The values will be
  425. evaluated at the moment of execution, so quote them when needed.
  426. files A list of files file to write the produced agenda buffer to
  427. with the command `org-store-agenda-views'.
  428. If a file name ends in \".html\", an HTML version of the buffer
  429. is written out. If it ends in \".ps\", a postscript version is
  430. produced. Otherwise, only the plain text is written to the file.
  431. You can also define a set of commands, to create a composite agenda buffer.
  432. In this case, an entry looks like this:
  433. (key desc (cmd1 cmd2 ...) general-settings-for-whole-set files)
  434. where
  435. desc A description string to be displayed in the dispatcher menu.
  436. cmd An agenda command, similar to the above. However, tree commands
  437. are not allowed, but instead you can get agenda and global todo list.
  438. So valid commands for a set are:
  439. (agenda \"\" settings)
  440. (alltodo \"\" settings)
  441. (stuck \"\" settings)
  442. (todo \"match\" settings files)
  443. (search \"match\" settings files)
  444. (tags \"match\" settings files)
  445. (tags-todo \"match\" settings files)
  446. Each command can carry a list of options, and another set of options can be
  447. given for the whole set of commands. Individual command options take
  448. precedence over the general options.
  449. When using several characters as key to a command, the first characters
  450. are prefix commands. For the dispatcher to display useful information, you
  451. should provide a description for the prefix, like
  452. (setq org-agenda-custom-commands
  453. \\='((\"h\" . \"HOME + Name tag searches\") ; describe prefix \"h\"
  454. (\"hl\" tags \"+HOME+Lisa\")
  455. (\"hp\" tags \"+HOME+Peter\")
  456. (\"hk\" tags \"+HOME+Kim\")))"
  457. :group 'org-agenda-custom-commands
  458. :type `(repeat
  459. (choice :value ("x" "Describe command here" tags "" nil)
  460. (list :tag "Single command"
  461. (string :tag "Access Key(s) ")
  462. (option (string :tag "Description"))
  463. (choice
  464. (const :tag "Agenda" agenda)
  465. (const :tag "TODO list" alltodo)
  466. (const :tag "Search words" search)
  467. (const :tag "Stuck projects" stuck)
  468. (const :tag "Tags/Property match (all agenda files)" tags)
  469. (const :tag "Tags/Property match of TODO entries (all agenda files)" tags-todo)
  470. (const :tag "TODO keyword search (all agenda files)" todo)
  471. (const :tag "Tags sparse tree (current buffer)" tags-tree)
  472. (const :tag "TODO keyword tree (current buffer)" todo-tree)
  473. (const :tag "Occur tree (current buffer)" occur-tree)
  474. (sexp :tag "Other, user-defined function"))
  475. (string :tag "Match (only for some commands)")
  476. ,org-agenda-custom-commands-local-options
  477. (option (repeat :tag "Export" (file :tag "Export to"))))
  478. (list :tag "Command series, all agenda files"
  479. (string :tag "Access Key(s)")
  480. (string :tag "Description ")
  481. (repeat :tag "Component"
  482. (choice
  483. (list :tag "Agenda"
  484. (const :format "" agenda)
  485. (const :tag "" :format "" "")
  486. ,org-agenda-custom-commands-local-options)
  487. (list :tag "TODO list (all keywords)"
  488. (const :format "" alltodo)
  489. (const :tag "" :format "" "")
  490. ,org-agenda-custom-commands-local-options)
  491. (list :tag "Search words"
  492. (const :format "" search)
  493. (string :tag "Match")
  494. ,org-agenda-custom-commands-local-options)
  495. (list :tag "Stuck projects"
  496. (const :format "" stuck)
  497. (const :tag "" :format "" "")
  498. ,org-agenda-custom-commands-local-options)
  499. (list :tag "Tags search"
  500. (const :format "" tags)
  501. (string :tag "Match")
  502. ,org-agenda-custom-commands-local-options)
  503. (list :tag "Tags search, TODO entries only"
  504. (const :format "" tags-todo)
  505. (string :tag "Match")
  506. ,org-agenda-custom-commands-local-options)
  507. (list :tag "TODO keyword search"
  508. (const :format "" todo)
  509. (string :tag "Match")
  510. ,org-agenda-custom-commands-local-options)
  511. (list :tag "Other, user-defined function"
  512. (symbol :tag "function")
  513. (string :tag "Match")
  514. ,org-agenda-custom-commands-local-options)))
  515. (repeat :tag "Settings for entire command set"
  516. (list (variable :tag "Any variable")
  517. (sexp :tag "Value")))
  518. (option (repeat :tag "Export" (file :tag "Export to"))))
  519. (cons :tag "Prefix key documentation"
  520. (string :tag "Access Key(s)")
  521. (string :tag "Description ")))))
  522. (defcustom org-agenda-query-register ?o
  523. "The register holding the current query string.
  524. The purpose of this is that if you construct a query string interactively,
  525. you can then use it to define a custom command."
  526. :group 'org-agenda-custom-commands
  527. :type 'character)
  528. (defcustom org-stuck-projects
  529. '("+LEVEL=2/-DONE" ("TODO" "NEXT" "NEXTACTION") nil "")
  530. "How to identify stuck projects.
  531. This is a list of four items:
  532. 1. A tags/todo/property matcher string that is used to identify a project.
  533. See the manual for a description of tag and property searches.
  534. The entire tree below a headline matched by this is considered one project.
  535. 2. A list of TODO keywords identifying non-stuck projects.
  536. If the project subtree contains any headline with one of these todo
  537. keywords, the project is considered to be not stuck. If you specify
  538. \"*\" as a keyword, any TODO keyword will mark the project unstuck.
  539. 3. A list of tags identifying non-stuck projects.
  540. If the project subtree contains any headline with one of these tags,
  541. the project is considered to be not stuck. If you specify \"*\" as
  542. a tag, any tag will mark the project unstuck. Note that this is about
  543. the explicit presence of a tag somewhere in the subtree, inherited
  544. tags do not count here. If inherited tags make a project not stuck,
  545. use \"-TAG\" in the tags part of the matcher under (1.) above.
  546. 4. An arbitrary regular expression matching non-stuck projects.
  547. If the project turns out to be not stuck, search continues also in the
  548. subtree to see if any of the subtasks have project status.
  549. See also the variable `org-tags-match-list-sublevels' which applies
  550. to projects matched by this search as well.
  551. After defining this variable, you may use \\[org-agenda-list-stuck-projects]
  552. or `C-c a #' to produce the list."
  553. :group 'org-agenda-custom-commands
  554. :type '(list
  555. (string :tag "Tags/TODO match to identify a project")
  556. (repeat :tag "Projects are *not* stuck if they have an entry with TODO keyword any of" (string))
  557. (repeat :tag "Projects are *not* stuck if they have an entry with TAG being any of" (string))
  558. (regexp :tag "Projects are *not* stuck if this regexp matches inside the subtree")))
  559. (defgroup org-agenda-skip nil
  560. "Options concerning skipping parts of agenda files."
  561. :tag "Org Agenda Skip"
  562. :group 'org-agenda)
  563. (defcustom org-agenda-skip-function-global nil
  564. "Function to be called at each match during agenda construction.
  565. If this function returns nil, the current match should not be skipped.
  566. If the function decided to skip an agenda match, is must return the
  567. buffer position from which the search should be continued.
  568. This may also be a Lisp form, which will be evaluated.
  569. This variable will be applied to every agenda match, including
  570. tags/property searches and TODO lists. So try to make the test function
  571. do its checking as efficiently as possible. To implement a skipping
  572. condition just for specific agenda commands, use the variable
  573. `org-agenda-skip-function' which can be set in the options section
  574. of custom agenda commands."
  575. :group 'org-agenda-skip
  576. :type 'sexp)
  577. (defgroup org-agenda-daily/weekly nil
  578. "Options concerning the daily/weekly agenda."
  579. :tag "Org Agenda Daily/Weekly"
  580. :group 'org-agenda)
  581. (defgroup org-agenda-todo-list nil
  582. "Options concerning the global todo list agenda view."
  583. :tag "Org Agenda Todo List"
  584. :group 'org-agenda)
  585. (defgroup org-agenda-match-view nil
  586. "Options concerning the general tags/property/todo match agenda view."
  587. :tag "Org Agenda Match View"
  588. :group 'org-agenda)
  589. (defgroup org-agenda-search-view nil
  590. "Options concerning the search agenda view."
  591. :tag "Org Agenda Search View"
  592. :group 'org-agenda)
  593. (defvar org-agenda-archives-mode nil
  594. "Non-nil means the agenda will include archived items.
  595. If this is the symbol `trees', trees in the selected agenda scope
  596. that are marked with the ARCHIVE tag will be included anyway. When this is
  597. t, also all archive files associated with the current selection of agenda
  598. files will be included.")
  599. (defcustom org-agenda-restriction-lock-highlight-subtree t
  600. "Non-nil means highlight the whole subtree when restriction is active.
  601. Otherwise only highlight the headline. Highlighting the whole subtree is
  602. useful to ensure no edits happen beyond the restricted region."
  603. :group 'org-agenda
  604. :type 'boolean)
  605. (defcustom org-agenda-skip-comment-trees t
  606. "Non-nil means skip trees that start with the COMMENT keyword.
  607. When nil, these trees are also scanned by agenda commands."
  608. :group 'org-agenda-skip
  609. :type 'boolean)
  610. (defcustom org-agenda-todo-list-sublevels t
  611. "Non-nil means check also the sublevels of a TODO entry for TODO entries.
  612. When nil, the sublevels of a TODO entry are not checked, resulting in
  613. potentially much shorter TODO lists."
  614. :group 'org-agenda-skip
  615. :group 'org-agenda-todo-list
  616. :type 'boolean)
  617. (defcustom org-agenda-todo-ignore-with-date nil
  618. "Non-nil means don't show entries with a date in the global todo list.
  619. You can use this if you prefer to mark mere appointments with a TODO keyword,
  620. but don't want them to show up in the TODO list.
  621. When this is set, it also covers deadlines and scheduled items, the settings
  622. of `org-agenda-todo-ignore-scheduled' and `org-agenda-todo-ignore-deadlines'
  623. will be ignored.
  624. See also the variable `org-agenda-tags-todo-honor-ignore-options'."
  625. :group 'org-agenda-skip
  626. :group 'org-agenda-todo-list
  627. :type 'boolean)
  628. (defcustom org-agenda-todo-ignore-timestamp nil
  629. "Non-nil means don't show entries with a timestamp.
  630. This applies when creating the global todo list.
  631. Valid values are:
  632. past Don't show entries for today or in the past.
  633. future Don't show entries with a timestamp in the future.
  634. The idea behind this is that if it has a future
  635. timestamp, you don't want to think about it until the
  636. date.
  637. all Don't show any entries with a timestamp in the global todo list.
  638. The idea behind this is that by setting a timestamp, you
  639. have already \"taken care\" of this item.
  640. This variable can also have an integer as a value. If positive (N),
  641. todos with a timestamp N or more days in the future will be ignored. If
  642. negative (-N), todos with a timestamp N or more days in the past will be
  643. ignored. If 0, todos with a timestamp either today or in the future will
  644. be ignored. For example, a value of -1 will exclude todos with a
  645. timestamp in the past (yesterday or earlier), while a value of 7 will
  646. exclude todos with a timestamp a week or more in the future.
  647. See also `org-agenda-todo-ignore-with-date'.
  648. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  649. to make his option also apply to the tags-todo list."
  650. :group 'org-agenda-skip
  651. :group 'org-agenda-todo-list
  652. :version "24.1"
  653. :type '(choice
  654. (const :tag "Ignore future timestamp todos" future)
  655. (const :tag "Ignore past or present timestamp todos" past)
  656. (const :tag "Ignore all timestamp todos" all)
  657. (const :tag "Show timestamp todos" nil)
  658. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  659. (defcustom org-agenda-todo-ignore-scheduled nil
  660. "Non-nil means, ignore some scheduled TODO items when making TODO list.
  661. This applies when creating the global todo list.
  662. Valid values are:
  663. past Don't show entries scheduled today or in the past.
  664. future Don't show entries scheduled in the future.
  665. The idea behind this is that by scheduling it, you don't want to
  666. think about it until the scheduled date.
  667. all Don't show any scheduled entries in the global todo list.
  668. The idea behind this is that by scheduling it, you have already
  669. \"taken care\" of this item.
  670. t Same as `all', for backward compatibility.
  671. This variable can also have an integer as a value. See
  672. `org-agenda-todo-ignore-timestamp' for more details.
  673. See also `org-agenda-todo-ignore-with-date'.
  674. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  675. to make his option also apply to the tags-todo list."
  676. :group 'org-agenda-skip
  677. :group 'org-agenda-todo-list
  678. :type '(choice
  679. (const :tag "Ignore future-scheduled todos" future)
  680. (const :tag "Ignore past- or present-scheduled todos" past)
  681. (const :tag "Ignore all scheduled todos" all)
  682. (const :tag "Ignore all scheduled todos (compatibility)" t)
  683. (const :tag "Show scheduled todos" nil)
  684. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  685. (defcustom org-agenda-todo-ignore-deadlines nil
  686. "Non-nil means ignore some deadline TODO items when making TODO list.
  687. There are different motivations for using different values, please think
  688. carefully when configuring this variable.
  689. This applies when creating the global todo list.
  690. Valid values are:
  691. near Don't show near deadline entries. A deadline is near when it is
  692. closer than `org-deadline-warning-days' days. The idea behind this
  693. is that such items will appear in the agenda anyway.
  694. far Don't show TODO entries where a deadline has been defined, but
  695. the deadline is not near. This is useful if you don't want to
  696. use the todo list to figure out what to do now.
  697. past Don't show entries with a deadline timestamp for today or in the past.
  698. future Don't show entries with a deadline timestamp in the future, not even
  699. when they become `near' ones. Use it with caution.
  700. all Ignore all TODO entries that do have a deadline.
  701. t Same as `near', for backward compatibility.
  702. This variable can also have an integer as a value. See
  703. `org-agenda-todo-ignore-timestamp' for more details.
  704. See also `org-agenda-todo-ignore-with-date'.
  705. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  706. to make his option also apply to the tags-todo list."
  707. :group 'org-agenda-skip
  708. :group 'org-agenda-todo-list
  709. :type '(choice
  710. (const :tag "Ignore near deadlines" near)
  711. (const :tag "Ignore near deadlines (compatibility)" t)
  712. (const :tag "Ignore far deadlines" far)
  713. (const :tag "Ignore all TODOs with a deadlines" all)
  714. (const :tag "Show all TODOs, even if they have a deadline" nil)
  715. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  716. (defcustom org-agenda-todo-ignore-time-comparison-use-seconds nil
  717. "Time unit to use when possibly ignoring an agenda item.
  718. See the docstring of various `org-agenda-todo-ignore-*' options.
  719. The default is to compare time stamps using days. An item is thus
  720. considered to be in the future if it is at least one day after today.
  721. Non-nil means to compare time stamps using seconds. An item is then
  722. considered future if it has a time value later than current time."
  723. :group 'org-agenda-skip
  724. :group 'org-agenda-todo-list
  725. :version "24.4"
  726. :package-version '(Org . "8.0")
  727. :type '(choice
  728. (const :tag "Compare time with days" nil)
  729. (const :tag "Compare time with seconds" t)))
  730. (defcustom org-agenda-tags-todo-honor-ignore-options nil
  731. "Non-nil means honor todo-list ignores options also in tags-todo search.
  732. The variables
  733. `org-agenda-todo-ignore-with-date',
  734. `org-agenda-todo-ignore-timestamp',
  735. `org-agenda-todo-ignore-scheduled',
  736. `org-agenda-todo-ignore-deadlines'
  737. make the global TODO list skip entries that have time stamps of certain
  738. kinds. If this option is set, the same options will also apply for the
  739. tags-todo search, which is the general tags/property matcher
  740. restricted to unfinished TODO entries only."
  741. :group 'org-agenda-skip
  742. :group 'org-agenda-todo-list
  743. :group 'org-agenda-match-view
  744. :type 'boolean)
  745. (defcustom org-agenda-skip-scheduled-if-done nil
  746. "Non-nil means don't show scheduled items in agenda when they are done.
  747. This is relevant for the daily/weekly agenda, not for the TODO list. And
  748. it applies only to the actual date of the scheduling. Warnings about
  749. an item with a past scheduling dates are always turned off when the item
  750. 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. And it applied only to the
  792. actually 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. (defcustom org-timeline-show-empty-dates 3
  865. "Non-nil means `org-timeline' also shows dates without an entry.
  866. When nil, only the days which actually have entries are shown.
  867. When t, all days between the first and the last date are shown.
  868. When an integer, show also empty dates, but if there is a gap of more than
  869. N days, just insert a special line indicating the size of the gap."
  870. :group 'org-agenda-skip
  871. :type '(choice
  872. (const :tag "None" nil)
  873. (const :tag "All" t)
  874. (integer :tag "at most")))
  875. (defgroup org-agenda-startup nil
  876. "Options concerning initial settings in the Agenda in Org Mode."
  877. :tag "Org Agenda Startup"
  878. :group 'org-agenda)
  879. (defcustom org-agenda-menu-show-matcher t
  880. "Non-nil means show the match string in the agenda dispatcher menu.
  881. When nil, the matcher string is not shown, but is put into the help-echo
  882. property so than moving the mouse over the command shows it.
  883. Setting it to nil is good if matcher strings are very long and/or if
  884. you want to use two-columns display (see `org-agenda-menu-two-columns')."
  885. :group 'org-agenda
  886. :version "24.1"
  887. :type 'boolean)
  888. (define-obsolete-variable-alias 'org-agenda-menu-two-column 'org-agenda-menu-two-columns "24.3")
  889. (defcustom org-agenda-menu-two-columns nil
  890. "Non-nil means, use two columns to show custom commands in the dispatcher.
  891. If you use this, you probably want to set `org-agenda-menu-show-matcher'
  892. to nil."
  893. :group 'org-agenda
  894. :version "24.1"
  895. :type 'boolean)
  896. (define-obsolete-variable-alias 'org-finalize-agenda-hook 'org-agenda-finalize-hook "24.3")
  897. (defcustom org-agenda-finalize-hook nil
  898. "Hook run just before displaying an agenda buffer.
  899. The buffer is still writable when the hook is called.
  900. You can modify some of the buffer substrings but you should be
  901. extra careful not to modify the text properties of the agenda
  902. headlines as the agenda display heavily relies on them."
  903. :group 'org-agenda-startup
  904. :type 'hook)
  905. (defcustom org-agenda-mouse-1-follows-link nil
  906. "Non-nil means mouse-1 on a link will follow the link in the agenda.
  907. A longer mouse click will still set point. Does not work on XEmacs.
  908. Needs to be set before org.el is loaded."
  909. :group 'org-agenda-startup
  910. :type 'boolean)
  911. (defcustom org-agenda-start-with-follow-mode nil
  912. "The initial value of follow mode in a newly created agenda window."
  913. :group 'org-agenda-startup
  914. :type 'boolean)
  915. (defcustom org-agenda-follow-indirect nil
  916. "Non-nil means `org-agenda-follow-mode' displays only the
  917. current item's tree, in an indirect buffer."
  918. :group 'org-agenda
  919. :version "24.1"
  920. :type 'boolean)
  921. (defcustom org-agenda-show-outline-path t
  922. "Non-nil means show outline path in echo area after line motion."
  923. :group 'org-agenda-startup
  924. :type 'boolean)
  925. (defcustom org-agenda-start-with-entry-text-mode nil
  926. "The initial value of entry-text-mode in a newly created agenda window."
  927. :group 'org-agenda-startup
  928. :type 'boolean)
  929. (defcustom org-agenda-entry-text-maxlines 5
  930. "Number of text lines to be added when `E' is pressed in the agenda.
  931. Note that this variable only used during agenda display. Add add entry text
  932. when exporting the agenda, configure the variable
  933. `org-agenda-add-entry-ext-maxlines'."
  934. :group 'org-agenda
  935. :type 'integer)
  936. (defcustom org-agenda-entry-text-exclude-regexps nil
  937. "List of regular expressions to clean up entry text.
  938. The complete matches of all regular expressions in this list will be
  939. removed from entry text before it is shown in the agenda."
  940. :group 'org-agenda
  941. :type '(repeat (regexp)))
  942. (defcustom org-agenda-entry-text-leaders " > "
  943. "Text prepended to the entry text in agenda buffers."
  944. :version "24.4"
  945. :package-version '(Org . "8.0")
  946. :group 'org-agenda
  947. :type 'string)
  948. (defvar org-agenda-entry-text-cleanup-hook nil
  949. "Hook that is run after basic cleanup of entry text to be shown in agenda.
  950. This cleanup is done in a temporary buffer, so the function may inspect and
  951. change the entire buffer.
  952. Some default stuff like drawers and scheduling/deadline dates will already
  953. have been removed when this is called, as will any matches for regular
  954. expressions listed in `org-agenda-entry-text-exclude-regexps'.")
  955. (defvar org-agenda-include-inactive-timestamps nil
  956. "Non-nil means include inactive time stamps in agenda and timeline.
  957. Dynamically scoped.")
  958. (defgroup org-agenda-windows nil
  959. "Options concerning the windows used by the Agenda in Org Mode."
  960. :tag "Org Agenda Windows"
  961. :group 'org-agenda)
  962. (defcustom org-agenda-window-setup 'reorganize-frame
  963. "How the agenda buffer should be displayed.
  964. Possible values for this option are:
  965. current-window Show agenda in the current window, keeping all other windows.
  966. other-window Use `switch-to-buffer-other-window' to display agenda.
  967. only-window Show agenda, deleting all other windows.
  968. reorganize-frame Show only two windows on the current frame, the current
  969. window and the agenda.
  970. other-frame Use `switch-to-buffer-other-frame' to display agenda.
  971. Also, when exiting the agenda, kill that frame.
  972. See also the variable `org-agenda-restore-windows-after-quit'."
  973. :group 'org-agenda-windows
  974. :type '(choice
  975. (const current-window)
  976. (const other-frame)
  977. (const other-window)
  978. (const only-window)
  979. (const reorganize-frame)))
  980. (defcustom org-agenda-window-frame-fractions '(0.5 . 0.75)
  981. "The min and max height of the agenda window as a fraction of frame height.
  982. The value of the variable is a cons cell with two numbers between 0 and 1.
  983. It only matters if `org-agenda-window-setup' is `reorganize-frame'."
  984. :group 'org-agenda-windows
  985. :type '(cons (number :tag "Minimum") (number :tag "Maximum")))
  986. (defcustom org-agenda-restore-windows-after-quit nil
  987. "Non-nil means restore window configuration upon exiting agenda.
  988. Before the window configuration is changed for displaying the agenda,
  989. the current status is recorded. When the agenda is exited with
  990. `q' or `x' and this option is set, the old state is restored. If
  991. `org-agenda-window-setup' is `other-frame', the value of this
  992. option will be ignored."
  993. :group 'org-agenda-windows
  994. :type 'boolean)
  995. (defcustom org-agenda-ndays nil
  996. "Number of days to include in overview display.
  997. Should be 1 or 7.
  998. Obsolete, see `org-agenda-span'."
  999. :group 'org-agenda-daily/weekly
  1000. :type '(choice (const nil)
  1001. (integer)))
  1002. (make-obsolete-variable 'org-agenda-ndays 'org-agenda-span "24.1")
  1003. (defcustom org-agenda-span 'week
  1004. "Number of days to include in overview display.
  1005. Can be day, week, month, year, or any number of days.
  1006. Custom commands can set this variable in the options section."
  1007. :group 'org-agenda-daily/weekly
  1008. :type '(choice (const :tag "Day" day)
  1009. (const :tag "Week" week)
  1010. (const :tag "Fortnight" fortnight)
  1011. (const :tag "Month" month)
  1012. (const :tag "Year" year)
  1013. (integer :tag "Custom")))
  1014. (defcustom org-agenda-start-on-weekday 1
  1015. "Non-nil means start the overview always on the specified weekday.
  1016. 0 denotes Sunday, 1 denotes Monday, etc.
  1017. When nil, always start on the current day.
  1018. Custom commands can set this variable in the options section."
  1019. :group 'org-agenda-daily/weekly
  1020. :type '(choice (const :tag "Today" nil)
  1021. (integer :tag "Weekday No.")))
  1022. (defcustom org-agenda-show-all-dates t
  1023. "Non-nil means `org-agenda' shows every day in the selected range.
  1024. When nil, only the days which actually have entries are shown."
  1025. :group 'org-agenda-daily/weekly
  1026. :type 'boolean)
  1027. (defcustom org-agenda-format-date 'org-agenda-format-date-aligned
  1028. "Format string for displaying dates in the agenda.
  1029. Used by the daily/weekly agenda and by the timeline. This should be
  1030. a format string understood by `format-time-string', or a function returning
  1031. the formatted date as a string. The function must take a single argument,
  1032. a calendar-style date list like (month day year)."
  1033. :group 'org-agenda-daily/weekly
  1034. :type '(choice
  1035. (string :tag "Format string")
  1036. (function :tag "Function")))
  1037. (defun org-agenda-format-date-aligned (date)
  1038. "Format a DATE string for display in the daily/weekly agenda, or timeline.
  1039. This function makes sure that dates are aligned for easy reading."
  1040. (require 'cal-iso)
  1041. (let* ((dayname (calendar-day-name date))
  1042. (day (cadr date))
  1043. (day-of-week (calendar-day-of-week date))
  1044. (month (car date))
  1045. (monthname (calendar-month-name month))
  1046. (year (nth 2 date))
  1047. (iso-week (org-days-to-iso-week
  1048. (calendar-absolute-from-gregorian date)))
  1049. (weekyear (cond ((and (= month 1) (>= iso-week 52))
  1050. (1- year))
  1051. ((and (= month 12) (<= iso-week 1))
  1052. (1+ year))
  1053. (t year)))
  1054. (weekstring (if (= day-of-week 1)
  1055. (format " W%02d" iso-week)
  1056. "")))
  1057. (format "%-10s %2d %s %4d%s"
  1058. dayname day monthname year weekstring)))
  1059. (defcustom org-agenda-time-leading-zero nil
  1060. "Non-nil means use leading zero for military times in agenda.
  1061. For example, 9:30am would become 09:30 rather than 9:30."
  1062. :group 'org-agenda-daily/weekly
  1063. :version "24.1"
  1064. :type 'boolean)
  1065. (defcustom org-agenda-timegrid-use-ampm nil
  1066. "When set, show AM/PM style timestamps on the timegrid."
  1067. :group 'org-agenda
  1068. :version "24.1"
  1069. :type 'boolean)
  1070. (defun org-agenda-time-of-day-to-ampm (time)
  1071. "Convert TIME of a string like \"13:45\" to an AM/PM style time string."
  1072. (let* ((hour-number (string-to-number (substring time 0 -3)))
  1073. (minute (substring time -2))
  1074. (ampm "am"))
  1075. (cond
  1076. ((equal hour-number 12)
  1077. (setq ampm "pm"))
  1078. ((> hour-number 12)
  1079. (setq ampm "pm")
  1080. (setq hour-number (- hour-number 12))))
  1081. (concat
  1082. (if org-agenda-time-leading-zero
  1083. (format "%02d" hour-number)
  1084. (format "%02s" (number-to-string hour-number)))
  1085. ":" minute ampm)))
  1086. (defun org-agenda-time-of-day-to-ampm-maybe (time)
  1087. "Conditionally convert TIME to AM/PM format based on `org-agenda-timegrid-use-ampm'."
  1088. (if org-agenda-timegrid-use-ampm
  1089. (org-agenda-time-of-day-to-ampm time)
  1090. time))
  1091. (defcustom org-agenda-weekend-days '(6 0)
  1092. "Which days are weekend?
  1093. These days get the special face `org-agenda-date-weekend' in the agenda
  1094. and timeline buffers."
  1095. :group 'org-agenda-daily/weekly
  1096. :type '(set :greedy t
  1097. (const :tag "Monday" 1)
  1098. (const :tag "Tuesday" 2)
  1099. (const :tag "Wednesday" 3)
  1100. (const :tag "Thursday" 4)
  1101. (const :tag "Friday" 5)
  1102. (const :tag "Saturday" 6)
  1103. (const :tag "Sunday" 0)))
  1104. (defcustom org-agenda-move-date-from-past-immediately-to-today t
  1105. "Non-nil means jump to today when moving a past date forward in time.
  1106. When using S-right in the agenda to move a a date forward, and the date
  1107. stamp currently points to the past, the first key press will move it
  1108. to today. WHen nil, just move one day forward even if the date stays
  1109. in the past."
  1110. :group 'org-agenda-daily/weekly
  1111. :version "24.1"
  1112. :type 'boolean)
  1113. (defcustom org-agenda-include-diary nil
  1114. "If non-nil, include in the agenda entries from the Emacs Calendar's diary.
  1115. Custom commands can set this variable in the options section."
  1116. :group 'org-agenda-daily/weekly
  1117. :type 'boolean)
  1118. (defcustom org-agenda-include-deadlines t
  1119. "If non-nil, include entries within their deadline warning period.
  1120. Custom commands can set this variable in the options section."
  1121. :group 'org-agenda-daily/weekly
  1122. :version "24.1"
  1123. :type 'boolean)
  1124. (defcustom org-agenda-repeating-timestamp-show-all t
  1125. "Non-nil means show all occurrences of a repeating stamp in the agenda.
  1126. When set to a list of strings, only show occurrences of repeating
  1127. stamps for these TODO keywords. When nil, only one occurrence is
  1128. shown, either today or the nearest into the future."
  1129. :group 'org-agenda-daily/weekly
  1130. :type '(choice
  1131. (const :tag "Show repeating stamps" t)
  1132. (repeat :tag "Show repeating stamps for these TODO keywords"
  1133. (string :tag "TODO Keyword"))
  1134. (const :tag "Don't show repeating stamps" nil)))
  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. (defcustom org-agenda-log-mode-items '(closed clock)
  1143. "List of items that should be shown in agenda log mode.
  1144. \\<org-agenda-mode-map>\
  1145. This list may contain the following symbols:
  1146. closed Show entries that have been closed on that day.
  1147. clock Show entries that have received clocked time on that day.
  1148. state Show all logged state changes.
  1149. Note that instead of changing this variable, you can also press \
  1150. `\\[universal-argument] \\[org-agenda-log-mode]' in
  1151. the agenda to display all available LOG items temporarily."
  1152. :group 'org-agenda-daily/weekly
  1153. :type '(set :greedy t (const closed) (const clock) (const state)))
  1154. (defcustom org-agenda-clock-consistency-checks
  1155. '(:max-duration "10:00" :min-duration 0 :max-gap "0:05"
  1156. :gap-ok-around ("4:00")
  1157. :default-face ((:background "DarkRed") (:foreground "white"))
  1158. :overlap-face nil :gap-face nil :no-end-time-face nil
  1159. :long-face nil :short-face nil)
  1160. "This is a property list, with the following keys:
  1161. :max-duration Mark clocking chunks that are longer than this time.
  1162. This is a time string like \"HH:MM\", or the number
  1163. of minutes as an integer.
  1164. :min-duration Mark clocking chunks that are shorter that this.
  1165. This is a time string like \"HH:MM\", or the number
  1166. of minutes as an integer.
  1167. :max-gap Mark gaps between clocking chunks that are longer than
  1168. this duration. A number of minutes, or a string
  1169. like \"HH:MM\".
  1170. :gap-ok-around List of times during the day which are usually not working
  1171. times. When a gap is detected, but the gap contains any
  1172. of these times, the gap is *not* reported. For example,
  1173. if this is (\"4:00\" \"13:00\") then gaps that contain
  1174. 4:00 in the morning (i.e. the night) and 13:00
  1175. (i.e. a typical lunch time) do not cause a warning.
  1176. You should have at least one time during the night in this
  1177. list, or otherwise the first task each morning will trigger
  1178. a warning because it follows a long gap.
  1179. Furthermore, the following properties can be used to define faces for
  1180. issue display.
  1181. :default-face the default face, if the specific face is undefined
  1182. :overlap-face face for overlapping clocks
  1183. :gap-face face for gaps between clocks
  1184. :no-end-time-face face for incomplete clocks
  1185. :long-face face for clock intervals that are too long
  1186. :short-face face for clock intervals that are too short"
  1187. :group 'org-agenda-daily/weekly
  1188. :group 'org-clock
  1189. :version "24.1"
  1190. :type 'plist)
  1191. (defcustom org-agenda-log-mode-add-notes t
  1192. "Non-nil means add first line of notes to log entries in agenda views.
  1193. If a log item like a state change or a clock entry is associated with
  1194. notes, the first line of these notes will be added to the entry in the
  1195. agenda display."
  1196. :group 'org-agenda-daily/weekly
  1197. :type 'boolean)
  1198. (defcustom org-agenda-start-with-log-mode nil
  1199. "The initial value of log-mode in a newly created agenda window.
  1200. See `org-agenda-log-mode' and `org-agenda-log-mode-items' for further
  1201. explanations on the possible values."
  1202. :group 'org-agenda-startup
  1203. :group 'org-agenda-daily/weekly
  1204. :type '(choice (const :tag "Don't show log items" nil)
  1205. (const :tag "Show only log items" only)
  1206. (const :tag "Show all possible log items" clockcheck)
  1207. (repeat :tag "Choose among possible values for `org-agenda-log-mode-items'"
  1208. (choice (const :tag "Show closed log items" closed)
  1209. (const :tag "Show clocked log items" clock)
  1210. (const :tag "Show all logged state changes" state)))))
  1211. (defcustom org-agenda-start-with-clockreport-mode nil
  1212. "The initial value of clockreport-mode in a newly created agenda window."
  1213. :group 'org-agenda-startup
  1214. :group 'org-agenda-daily/weekly
  1215. :type 'boolean)
  1216. (defcustom org-agenda-clockreport-parameter-plist '(:link t :maxlevel 2)
  1217. "Property list with parameters for the clocktable in clockreport mode.
  1218. This is the display mode that shows a clock table in the daily/weekly
  1219. agenda, the properties for this dynamic block can be set here.
  1220. The usual clocktable parameters are allowed here, but you cannot set
  1221. the properties :name, :tstart, :tend, :block, and :scope - these will
  1222. be overwritten to make sure the content accurately reflects the
  1223. current display in the agenda."
  1224. :group 'org-agenda-daily/weekly
  1225. :type 'plist)
  1226. (defcustom org-agenda-search-view-always-boolean nil
  1227. "Non-nil means the search string is interpreted as individual parts.
  1228. The search string for search view can either be interpreted as a phrase,
  1229. or as a list of snippets that define a boolean search for a number of
  1230. strings.
  1231. When this is non-nil, the string will be split on whitespace, and each
  1232. snippet will be searched individually, and all must match in order to
  1233. select an entry. A snippet is then a single string of non-white
  1234. characters, or a string in double quotes, or a regexp in {} braces.
  1235. If a snippet is preceded by \"-\", the snippet must *not* match.
  1236. \"+\" is syntactic sugar for positive selection. Each snippet may
  1237. be found as a full word or a partial word, but see the variable
  1238. `org-agenda-search-view-force-full-words'.
  1239. When this is nil, search will look for the entire search phrase as one,
  1240. with each space character matching any amount of whitespace, including
  1241. line breaks.
  1242. Even when this is nil, you can still switch to Boolean search dynamically
  1243. by preceding the first snippet with \"+\" or \"-\". If the first snippet
  1244. is a regexp marked with braces like \"{abc}\", this will also switch to
  1245. boolean search."
  1246. :group 'org-agenda-search-view
  1247. :version "24.1"
  1248. :type 'boolean)
  1249. (org-defvaralias 'org-agenda-search-view-search-words-only
  1250. 'org-agenda-search-view-always-boolean)
  1251. (defcustom org-agenda-search-view-force-full-words nil
  1252. "Non-nil means, search words must be matches as complete words.
  1253. When nil, they may also match part of a word."
  1254. :group 'org-agenda-search-view
  1255. :version "24.1"
  1256. :type 'boolean)
  1257. (defcustom org-agenda-search-view-max-outline-level 0
  1258. "Maximum outline level to display in search view.
  1259. E.g. when this is set to 1, the search view will only
  1260. show headlines of level 1. When set to 0, the default
  1261. value, don't limit agenda view by outline level."
  1262. :group 'org-agenda-search-view
  1263. :version "24.4"
  1264. :package-version '(Org . "8.3")
  1265. :type 'integer)
  1266. (defgroup org-agenda-time-grid nil
  1267. "Options concerning the time grid in the Org-mode Agenda."
  1268. :tag "Org Agenda Time Grid"
  1269. :group 'org-agenda)
  1270. (defcustom org-agenda-search-headline-for-time t
  1271. "Non-nil means search headline for a time-of-day.
  1272. If the headline contains a time-of-day in one format or another, it will
  1273. be used to sort the entry into the time sequence of items for a day.
  1274. Some people have time stamps in the headline that refer to the creation
  1275. time or so, and then this produces an unwanted side effect. If this is
  1276. the case for your, use this variable to turn off searching the headline
  1277. for a time."
  1278. :group 'org-agenda-time-grid
  1279. :type 'boolean)
  1280. (defcustom org-agenda-use-time-grid t
  1281. "Non-nil means show a time grid in the agenda schedule.
  1282. A time grid is a set of lines for specific times (like every two hours between
  1283. 8:00 and 20:00). The items scheduled for a day at specific times are
  1284. sorted in between these lines.
  1285. For details about when the grid will be shown, and what it will look like, see
  1286. the variable `org-agenda-time-grid'."
  1287. :group 'org-agenda-time-grid
  1288. :type 'boolean)
  1289. (defcustom org-agenda-time-grid
  1290. '((daily today require-timed)
  1291. "----------------"
  1292. (800 1000 1200 1400 1600 1800 2000))
  1293. "The settings for time grid for agenda display.
  1294. This is a list of three items. The first item is again a list. It contains
  1295. symbols specifying conditions when the grid should be displayed:
  1296. daily if the agenda shows a single day
  1297. weekly if the agenda shows an entire week
  1298. today show grid on current date, independent of daily/weekly display
  1299. require-timed show grid only if at least one item has a time specification
  1300. remove-match skip grid times already present in an entry
  1301. The second item is a string which will be placed behind the grid time.
  1302. The third item is a list of integers, indicating the times that should have
  1303. a grid line."
  1304. :group 'org-agenda-time-grid
  1305. :type
  1306. '(list
  1307. (set :greedy t :tag "Grid Display Options"
  1308. (const :tag "Show grid in single day agenda display" daily)
  1309. (const :tag "Show grid in weekly agenda display" weekly)
  1310. (const :tag "Always show grid for today" today)
  1311. (const :tag "Show grid only if any timed entries are present"
  1312. require-timed)
  1313. (const :tag "Skip grid times already present in an entry"
  1314. remove-match))
  1315. (string :tag "Grid String")
  1316. (repeat :tag "Grid Times" (integer :tag "Time"))))
  1317. (defcustom org-agenda-show-current-time-in-grid t
  1318. "Non-nil means show the current time in the time grid."
  1319. :group 'org-agenda-time-grid
  1320. :version "24.1"
  1321. :type 'boolean)
  1322. (defcustom org-agenda-current-time-string
  1323. "now - - - - - - - - - - - - - - - - - - - - - - - - -"
  1324. "The string for the current time marker in the agenda."
  1325. :group 'org-agenda-time-grid
  1326. :version "24.1"
  1327. :type 'string)
  1328. (defgroup org-agenda-sorting nil
  1329. "Options concerning sorting in the Org-mode Agenda."
  1330. :tag "Org Agenda Sorting"
  1331. :group 'org-agenda)
  1332. (defcustom org-agenda-sorting-strategy
  1333. '((agenda habit-down time-up priority-down category-keep)
  1334. (todo priority-down category-keep)
  1335. (tags priority-down category-keep)
  1336. (search category-keep))
  1337. "Sorting structure for the agenda items of a single day.
  1338. This is a list of symbols which will be used in sequence to determine
  1339. if an entry should be listed before another entry. The following
  1340. symbols are recognized:
  1341. time-up Put entries with time-of-day indications first, early first
  1342. time-down Put entries with time-of-day indications first, late first
  1343. timestamp-up Sort by any timestamp, early first
  1344. timestamp-down Sort by any timestamp, late first
  1345. scheduled-up Sort by scheduled timestamp, early first
  1346. scheduled-down Sort by scheduled timestamp, late first
  1347. deadline-up Sort by deadline timestamp, early first
  1348. deadline-down Sort by deadline timestamp, late first
  1349. ts-up Sort by active timestamp, early first
  1350. ts-down Sort by active timestamp, late first
  1351. tsia-up Sort by inactive timestamp, early first
  1352. tsia-down Sort by inactive timestamp, late first
  1353. category-keep Keep the default order of categories, corresponding to the
  1354. sequence in `org-agenda-files'.
  1355. category-up Sort alphabetically by category, A-Z.
  1356. category-down Sort alphabetically by category, Z-A.
  1357. tag-up Sort alphabetically by last tag, A-Z.
  1358. tag-down Sort alphabetically by last tag, Z-A.
  1359. priority-up Sort numerically by priority, high priority last.
  1360. priority-down Sort numerically by priority, high priority first.
  1361. todo-state-up Sort by todo state, tasks that are done last.
  1362. todo-state-down Sort by todo state, tasks that are done first.
  1363. effort-up Sort numerically by estimated effort, high effort last.
  1364. effort-down Sort numerically by estimated effort, high effort first.
  1365. user-defined-up Sort according to `org-agenda-cmp-user-defined', high last.
  1366. user-defined-down Sort according to `org-agenda-cmp-user-defined', high first.
  1367. habit-up Put entries that are habits first
  1368. habit-down Put entries that are habits last
  1369. alpha-up Sort headlines alphabetically
  1370. alpha-down Sort headlines alphabetically, reversed
  1371. The different possibilities will be tried in sequence, and testing stops
  1372. if one comparison returns a \"not-equal\". For example, the default
  1373. '(time-up category-keep priority-down)
  1374. means: Pull out all entries having a specified time of day and sort them,
  1375. in order to make a time schedule for the current day the first thing in the
  1376. agenda listing for the day. Of the entries without a time indication, keep
  1377. the grouped in categories, don't sort the categories, but keep them in
  1378. the sequence given in `org-agenda-files'. Within each category sort by
  1379. priority.
  1380. Leaving out `category-keep' would mean that items will be sorted across
  1381. categories by priority.
  1382. Instead of a single list, this can also be a set of list for specific
  1383. contents, with a context symbol in the car of the list, any of
  1384. `agenda', `todo', `tags', `search' for the corresponding agenda views.
  1385. Custom commands can bind this variable in the options section."
  1386. :group 'org-agenda-sorting
  1387. :type `(choice
  1388. (repeat :tag "General" ,org-sorting-choice)
  1389. (list :tag "Individually"
  1390. (cons (const :tag "Strategy for Weekly/Daily agenda" agenda)
  1391. (repeat ,org-sorting-choice))
  1392. (cons (const :tag "Strategy for TODO lists" todo)
  1393. (repeat ,org-sorting-choice))
  1394. (cons (const :tag "Strategy for Tags matches" tags)
  1395. (repeat ,org-sorting-choice))
  1396. (cons (const :tag "Strategy for search matches" search)
  1397. (repeat ,org-sorting-choice)))))
  1398. (defcustom org-agenda-cmp-user-defined nil
  1399. "A function to define the comparison `user-defined'.
  1400. This function must receive two arguments, agenda entry a and b.
  1401. If a>b, return +1. If a<b, return -1. If they are equal as seen by
  1402. the user comparison, return nil.
  1403. When this is defined, you can make `user-defined-up' and `user-defined-down'
  1404. part of an agenda sorting strategy."
  1405. :group 'org-agenda-sorting
  1406. :type 'symbol)
  1407. (defcustom org-sort-agenda-notime-is-late t
  1408. "Non-nil means items without time are considered late.
  1409. This is only relevant for sorting. When t, items which have no explicit
  1410. time like 15:30 will be considered as 99:01, i.e. later than any items which
  1411. do have a time. When nil, the default time is before 0:00. You can use this
  1412. option to decide if the schedule for today should come before or after timeless
  1413. agenda entries."
  1414. :group 'org-agenda-sorting
  1415. :type 'boolean)
  1416. (defcustom org-sort-agenda-noeffort-is-high t
  1417. "Non-nil means items without effort estimate are sorted as high effort.
  1418. This also applies when filtering an agenda view with respect to the
  1419. < or > effort operator. Then, tasks with no effort defined will be treated
  1420. as tasks with high effort.
  1421. When nil, such items are sorted as 0 minutes effort."
  1422. :group 'org-agenda-sorting
  1423. :type 'boolean)
  1424. (defgroup org-agenda-line-format nil
  1425. "Options concerning the entry prefix in the Org-mode agenda display."
  1426. :tag "Org Agenda Line Format"
  1427. :group 'org-agenda)
  1428. (defcustom org-agenda-prefix-format
  1429. '((agenda . " %i %-12:c%?-12t% s")
  1430. (timeline . " % s")
  1431. (todo . " %i %-12:c")
  1432. (tags . " %i %-12:c")
  1433. (search . " %i %-12:c"))
  1434. "Format specifications for the prefix of items in the agenda views.
  1435. An alist with five entries, each for the different agenda types. The
  1436. keys of the sublists are `agenda', `timeline', `todo', `search' and `tags'.
  1437. The values are format strings.
  1438. This format works similar to a printf format, with the following meaning:
  1439. %c the category of the item, \"Diary\" for entries from the diary,
  1440. or as given by the CATEGORY keyword or derived from the file name
  1441. %e the effort required by the item
  1442. %l the level of the item (insert X space(s) if item is of level X)
  1443. %i the icon category of the item, see `org-agenda-category-icon-alist'
  1444. %T the last tag of the item (ignore inherited tags, which come first)
  1445. %t the HH:MM time-of-day specification if one applies to the entry
  1446. %s Scheduling/Deadline information, a short string
  1447. %b show breadcrumbs, i.e., the names of the higher levels
  1448. %(expression) Eval EXPRESSION and replace the control string
  1449. by the result
  1450. All specifiers work basically like the standard `%s' of printf, but may
  1451. contain two additional characters: a question mark just after the `%'
  1452. and a whitespace/punctuation character just before the final letter.
  1453. If the first character after `%' is a question mark, the entire field
  1454. will only be included if the corresponding value applies to the current
  1455. entry. This is useful for fields which should have fixed width when
  1456. present, but zero width when absent. For example, \"%?-12t\" will
  1457. result in a 12 character time field if a time of the day is specified,
  1458. but will completely disappear in entries which do not contain a time.
  1459. If there is punctuation or whitespace character just before the
  1460. final format letter, this character will be appended to the field
  1461. value if the value is not empty. For example, the format
  1462. \"%-12:c\" leads to \"Diary: \" if the category is \"Diary\". If
  1463. the category is empty, no additional colon is inserted.
  1464. The default value for the agenda sublist is \" %-12:c%?-12t% s\",
  1465. which means:
  1466. - Indent the line with two space characters
  1467. - Give the category a 12 chars wide field, padded with whitespace on
  1468. the right (because of `-'). Append a colon if there is a category
  1469. (because of `:').
  1470. - If there is a time-of-day, put it into a 12 chars wide field. If no
  1471. time, don't put in an empty field, just skip it (because of '?').
  1472. - Finally, put the scheduling information.
  1473. See also the variables `org-agenda-remove-times-when-in-prefix' and
  1474. `org-agenda-remove-tags'.
  1475. Custom commands can set this variable in the options section."
  1476. :type '(choice
  1477. (string :tag "General format")
  1478. (list :greedy t :tag "View dependent"
  1479. (cons (const agenda) (string :tag "Format"))
  1480. (cons (const timeline) (string :tag "Format"))
  1481. (cons (const todo) (string :tag "Format"))
  1482. (cons (const tags) (string :tag "Format"))
  1483. (cons (const search) (string :tag "Format"))))
  1484. :group 'org-agenda-line-format)
  1485. (defvar org-prefix-format-compiled nil
  1486. "The compiled prefix format and associated variables.
  1487. This is a list where first element is a list of variable bindings, and second
  1488. element is the compiled format expression. See the variable
  1489. `org-agenda-prefix-format'.")
  1490. (defcustom org-agenda-todo-keyword-format "%-1s"
  1491. "Format for the TODO keyword in agenda lines.
  1492. Set this to something like \"%-12s\" if you want all TODO keywords
  1493. to occupy a fixed space in the agenda display."
  1494. :group 'org-agenda-line-format
  1495. :type 'string)
  1496. (defcustom org-agenda-diary-sexp-prefix nil
  1497. "A regexp that matches part of a diary sexp entry
  1498. which should be treated as scheduling/deadline information in
  1499. `org-agenda'.
  1500. For example, you can use this to extract the `diary-remind-message' from
  1501. `diary-remind' entries."
  1502. :group 'org-agenda-line-format
  1503. :type '(choice (const :tag "None" nil) (regexp :tag "Regexp")))
  1504. (defcustom org-agenda-timerange-leaders '("" "(%d/%d): ")
  1505. "Text preceding timerange entries in the agenda view.
  1506. This is a list with two strings. The first applies when the range
  1507. is entirely on one day. The second applies if the range spans several days.
  1508. The strings may have two \"%d\" format specifiers which will be filled
  1509. with the sequence number of the days, and the total number of days in the
  1510. range, respectively."
  1511. :group 'org-agenda-line-format
  1512. :type '(list
  1513. (string :tag "Deadline today ")
  1514. (choice :tag "Deadline relative"
  1515. (string :tag "Format string")
  1516. (function))))
  1517. (defcustom org-agenda-scheduled-leaders '("Scheduled: " "Sched.%2dx: ")
  1518. "Text preceding scheduled items in the agenda view.
  1519. This is a list with two strings. The first applies when the item is
  1520. scheduled on the current day. The second applies when it has been scheduled
  1521. previously, it may contain a %d indicating that this is the nth time that
  1522. this item is scheduled, due to automatic rescheduling of unfinished items
  1523. for the following day. So this number is one larger than the number of days
  1524. that passed since this item was scheduled first."
  1525. :group 'org-agenda-line-format
  1526. :version "24.4"
  1527. :package-version '(Org . "8.0")
  1528. :type '(list
  1529. (string :tag "Scheduled today ")
  1530. (string :tag "Scheduled previously")))
  1531. (defcustom org-agenda-inactive-leader "["
  1532. "Text preceding item pulled into the agenda by inactive time stamps.
  1533. These entries are added to the agenda when pressing \"[\"."
  1534. :group 'org-agenda-line-format
  1535. :version "24.1"
  1536. :type 'string)
  1537. (defcustom org-agenda-deadline-leaders '("Deadline: " "In %3d d.: " "%2d d. ago: ")
  1538. "Text preceding deadline items in the agenda view.
  1539. This is a list with three strings. The first applies when the item has its
  1540. deadline on the current day. The second applies when the deadline is in the
  1541. future, the third one when it is in the past. The strings may contain %d
  1542. to capture the number of days."
  1543. :group 'org-agenda-line-format
  1544. :version "24.4"
  1545. :package-version '(Org . "8.0")
  1546. :type '(list
  1547. (string :tag "Deadline today ")
  1548. (string :tag "Deadline in the future ")
  1549. (string :tag "Deadline in the past ")))
  1550. (defcustom org-agenda-remove-times-when-in-prefix t
  1551. "Non-nil means remove duplicate time specifications in agenda items.
  1552. When the format `org-agenda-prefix-format' contains a `%t' specifier, a
  1553. time-of-day specification in a headline or diary entry is extracted and
  1554. placed into the prefix. If this option is non-nil, the original specification
  1555. \(a timestamp or -range, or just a plain time(range) specification like
  1556. 11:30-4pm) will be removed for agenda display. This makes the agenda less
  1557. cluttered.
  1558. The option can be t or nil. It may also be the symbol `beg', indicating
  1559. that the time should only be removed when it is located at the beginning of
  1560. the headline/diary entry."
  1561. :group 'org-agenda-line-format
  1562. :type '(choice
  1563. (const :tag "Always" t)
  1564. (const :tag "Never" nil)
  1565. (const :tag "When at beginning of entry" beg)))
  1566. (defcustom org-agenda-remove-timeranges-from-blocks nil
  1567. "Non-nil means remove time ranges specifications in agenda
  1568. items that span on several days."
  1569. :group 'org-agenda-line-format
  1570. :version "24.1"
  1571. :type 'boolean)
  1572. (defcustom org-agenda-default-appointment-duration nil
  1573. "Default duration for appointments that only have a starting time.
  1574. When nil, no duration is specified in such cases.
  1575. When non-nil, this must be the number of minutes, e.g. 60 for one hour."
  1576. :group 'org-agenda-line-format
  1577. :type '(choice
  1578. (integer :tag "Minutes")
  1579. (const :tag "No default duration")))
  1580. (defcustom org-agenda-show-inherited-tags t
  1581. "Non-nil means show inherited tags in each agenda line.
  1582. When this option is set to `always', it take precedences over
  1583. `org-agenda-use-tag-inheritance' and inherited tags are shown
  1584. in every agenda.
  1585. When this option is set to t (the default), inherited tags are
  1586. shown when they are available, i.e. when the value of
  1587. `org-agenda-use-tag-inheritance' has been taken into account.
  1588. This can be set to a list of agenda types in which the agenda
  1589. must display the inherited tags. Available types are `todo',
  1590. `agenda', `search' and `timeline'.
  1591. When set to nil, never show inherited tags in agenda lines."
  1592. :group 'org-agenda-line-format
  1593. :group 'org-agenda
  1594. :version "24.3"
  1595. :type '(choice
  1596. (const :tag "Show inherited tags when available" t)
  1597. (const :tag "Always show inherited tags" always)
  1598. (repeat :tag "Show inherited tags only in selected agenda types"
  1599. (symbol :tag "Agenda type"))))
  1600. (defcustom org-agenda-use-tag-inheritance '(todo search timeline agenda)
  1601. "List of agenda view types where to use tag inheritance.
  1602. In tags/tags-todo/tags-tree agenda views, tag inheritance is
  1603. controlled by `org-use-tag-inheritance'. In other agenda types,
  1604. `org-use-tag-inheritance' is not used for the selection of the
  1605. agenda entries. Still, you may want the agenda to be aware of
  1606. the inherited tags anyway, e.g. for later tag filtering.
  1607. Allowed value are `todo', `search', `timeline' and `agenda'.
  1608. This variable has no effect if `org-agenda-show-inherited-tags'
  1609. is set to `always'. In that case, the agenda is aware of those
  1610. tags.
  1611. The default value sets tags in every agenda type. Setting this
  1612. option to nil will speed up non-tags agenda view a lot."
  1613. :group 'org-agenda
  1614. :version "24.3"
  1615. :type '(choice
  1616. (const :tag "Use tag inheritance in all agenda types" t)
  1617. (repeat :tag "Use tag inheritance in selected agenda types"
  1618. (symbol :tag "Agenda type"))))
  1619. (defcustom org-agenda-hide-tags-regexp nil
  1620. "Regular expression used to filter away specific tags in agenda views.
  1621. This means that these tags will be present, but not be shown in the agenda
  1622. line. Secondary filtering will still work on the hidden tags.
  1623. Nil means don't hide any tags."
  1624. :group 'org-agenda-line-format
  1625. :type '(choice
  1626. (const :tag "Hide none" nil)
  1627. (string :tag "Regexp ")))
  1628. (defcustom org-agenda-remove-tags nil
  1629. "Non-nil means remove the tags from the headline copy in the agenda.
  1630. When this is the symbol `prefix', only remove tags when
  1631. `org-agenda-prefix-format' contains a `%T' specifier."
  1632. :group 'org-agenda-line-format
  1633. :type '(choice
  1634. (const :tag "Always" t)
  1635. (const :tag "Never" nil)
  1636. (const :tag "When prefix format contains %T" prefix)))
  1637. (org-defvaralias 'org-agenda-remove-tags-when-in-prefix
  1638. 'org-agenda-remove-tags)
  1639. (defcustom org-agenda-tags-column (if (featurep 'xemacs) -79 -80)
  1640. "Shift tags in agenda items to this column.
  1641. If this number is positive, it specifies the column. If it is negative,
  1642. it means that the tags should be flushright to that column. For example,
  1643. -80 works well for a normal 80 character screen."
  1644. :group 'org-agenda-line-format
  1645. :type 'integer)
  1646. (org-defvaralias 'org-agenda-align-tags-to-column 'org-agenda-tags-column)
  1647. (defcustom org-agenda-fontify-priorities 'cookies
  1648. "Non-nil means highlight low and high priorities in agenda.
  1649. When t, the highest priority entries are bold, lowest priority italic.
  1650. However, settings in `org-priority-faces' will overrule these faces.
  1651. When this variable is the symbol `cookies', only fontify the
  1652. cookies, not the entire task.
  1653. This may also be an association list of priority faces, whose
  1654. keys are the character values of `org-highest-priority',
  1655. `org-default-priority', and `org-lowest-priority' (the default values
  1656. are ?A, ?B, and ?C, respectively). The face may be a named face, a
  1657. color as a string, or a list like `(:background \"Red\")'.
  1658. If it is a color, the variable `org-faces-easy-properties'
  1659. determines if it is a foreground or a background color."
  1660. :group 'org-agenda-line-format
  1661. :type '(choice
  1662. (const :tag "Never" nil)
  1663. (const :tag "Defaults" t)
  1664. (const :tag "Cookies only" cookies)
  1665. (repeat :tag "Specify"
  1666. (list (character :tag "Priority" :value ?A)
  1667. (choice :tag "Face "
  1668. (string :tag "Color")
  1669. (sexp :tag "Face"))))))
  1670. (defcustom org-agenda-day-face-function nil
  1671. "Function called to determine what face should be used to display a day.
  1672. The only argument passed to that function is the day. It should
  1673. returns a face, or nil if does not want to specify a face and let
  1674. the normal rules apply."
  1675. :group 'org-agenda-line-format
  1676. :version "24.1"
  1677. :type '(choice (const nil) (function)))
  1678. (defcustom org-agenda-category-icon-alist nil
  1679. "Alist of category icon to be displayed in agenda views.
  1680. Each entry should have the following format:
  1681. (CATEGORY-REGEXP FILE-OR-DATA TYPE DATA-P PROPS)
  1682. Where CATEGORY-REGEXP is a regexp matching the categories where
  1683. the icon should be displayed.
  1684. FILE-OR-DATA either a file path or a string containing image data.
  1685. The other fields can be omitted safely if not needed:
  1686. TYPE indicates the image type.
  1687. DATA-P is a boolean indicating whether the FILE-OR-DATA string is
  1688. image data.
  1689. PROPS are additional image attributes to assign to the image,
  1690. like, e.g. `:ascent center'.
  1691. (\"Org\" \"/path/to/icon.png\" nil nil :ascent center)
  1692. If you want to set the display properties yourself, just put a
  1693. list as second element:
  1694. (CATEGORY-REGEXP (MY PROPERTY LIST))
  1695. For example, to display a 16px horizontal space for Emacs
  1696. category, you can use:
  1697. (\"Emacs\" \\='(space . (:width (16))))"
  1698. :group 'org-agenda-line-format
  1699. :version "24.1"
  1700. :type '(alist :key-type (string :tag "Regexp matching category")
  1701. :value-type (choice (list :tag "Icon"
  1702. (string :tag "File or data")
  1703. (symbol :tag "Type")
  1704. (boolean :tag "Data?")
  1705. (repeat :tag "Extra image properties" :inline t symbol))
  1706. (list :tag "Display properties" sexp))))
  1707. (defgroup org-agenda-column-view nil
  1708. "Options concerning column view in the agenda."
  1709. :tag "Org Agenda Column View"
  1710. :group 'org-agenda)
  1711. (defcustom org-agenda-columns-show-summaries t
  1712. "Non-nil means show summaries for columns displayed in the agenda view."
  1713. :group 'org-agenda-column-view
  1714. :type 'boolean)
  1715. (defcustom org-agenda-columns-compute-summary-properties t
  1716. "Non-nil means recompute all summary properties before column view.
  1717. When column view in the agenda is listing properties that have a summary
  1718. operator, it can go to all relevant buffers and recompute the summaries
  1719. there. This can mean overhead for the agenda column view, but is necessary
  1720. to have thing up to date.
  1721. As a special case, a CLOCKSUM property also makes sure that the clock
  1722. computations are current."
  1723. :group 'org-agenda-column-view
  1724. :type 'boolean)
  1725. (defcustom org-agenda-columns-add-appointments-to-effort-sum nil
  1726. "Non-nil means the duration of an appointment will add to day effort.
  1727. The property to which appointment durations will be added is the one given
  1728. in the option `org-effort-property'. If an appointment does not have
  1729. an end time, `org-agenda-default-appointment-duration' will be used. If that
  1730. is not set, an appointment without end time will not contribute to the time
  1731. estimate."
  1732. :group 'org-agenda-column-view
  1733. :type 'boolean)
  1734. (defcustom org-agenda-auto-exclude-function nil
  1735. "A function called with a tag to decide if it is filtered on \
  1736. \\<org-agenda-mode-map>`\\[org-agenda-filter-by-tag] RET'.
  1737. The sole argument to the function, which is called once for each
  1738. possible tag, is a string giving the name of the tag. The
  1739. function should return either nil if the tag should be included
  1740. as normal, or \"-<TAG>\" to exclude the tag.
  1741. Note that for the purpose of tag filtering, only the lower-case version of
  1742. all tags will be considered, so that this function will only ever see
  1743. the lower-case version of all tags."
  1744. :group 'org-agenda
  1745. :type '(choice (const nil) (function)))
  1746. (defcustom org-agenda-bulk-custom-functions nil
  1747. "Alist of characters and custom functions for bulk actions.
  1748. For example, this value makes those two functions available:
  1749. \\='((?R set-category)
  1750. (?C bulk-cut))
  1751. With selected entries in an agenda buffer, `B R' will call
  1752. the custom function `set-category' on the selected entries.
  1753. Note that functions in this alist don't need to be quoted."
  1754. :type 'alist
  1755. :version "24.1"
  1756. :group 'org-agenda)
  1757. (defmacro org-agenda-with-point-at-orig-entry (string &rest body)
  1758. "Execute BODY with point at location given by `org-hd-marker' property.
  1759. If STRING is non-nil, the text property will be fetched from position 0
  1760. in that string. If STRING is nil, it will be fetched from the beginning
  1761. of the current line."
  1762. (org-with-gensyms (marker)
  1763. `(let ((,marker (get-text-property (if ,string 0 (point-at-bol))
  1764. 'org-hd-marker ,string)))
  1765. (with-current-buffer (marker-buffer ,marker)
  1766. (save-excursion
  1767. (goto-char ,marker)
  1768. ,@body)))))
  1769. (def-edebug-spec org-agenda-with-point-at-orig-entry (form body))
  1770. (defun org-add-agenda-custom-command (entry)
  1771. "Replace or add a command in `org-agenda-custom-commands'.
  1772. This is mostly for hacking and trying a new command - once the command
  1773. works you probably want to add it to `org-agenda-custom-commands' for good."
  1774. (let ((ass (assoc (car entry) org-agenda-custom-commands)))
  1775. (if ass
  1776. (setcdr ass (cdr entry))
  1777. (push entry org-agenda-custom-commands))))
  1778. ;;; Define the org-agenda-mode
  1779. (defvar org-agenda-mode-map (make-sparse-keymap)
  1780. "Keymap for `org-agenda-mode'.")
  1781. (org-defvaralias 'org-agenda-keymap 'org-agenda-mode-map)
  1782. (defvar org-agenda-menu) ; defined later in this file.
  1783. (defvar org-agenda-restrict nil) ; defined later in this file.
  1784. (defvar org-agenda-follow-mode nil)
  1785. (defvar org-agenda-entry-text-mode nil)
  1786. (defvar org-agenda-clockreport-mode nil)
  1787. (defvar org-agenda-show-log nil)
  1788. (defvar org-agenda-redo-command nil)
  1789. (defvar org-agenda-query-string nil)
  1790. (defvar org-agenda-mode-hook nil
  1791. "Hook run after `org-agenda-mode' is turned on.
  1792. The buffer is still writable when this hook is called.")
  1793. (defvar org-agenda-type nil)
  1794. (defvar org-agenda-force-single-file nil)
  1795. (defvar org-agenda-bulk-marked-entries nil
  1796. "List of markers that refer to marked entries in the agenda.")
  1797. ;;; Multiple agenda buffers support
  1798. (defcustom org-agenda-sticky nil
  1799. "Non-nil means agenda q key will bury agenda buffers.
  1800. Agenda commands will then show existing buffer instead of generating new ones.
  1801. When nil, `q' will kill the single agenda buffer."
  1802. :group 'org-agenda
  1803. :version "24.3"
  1804. :type 'boolean)
  1805. ;;;###autoload
  1806. (defun org-toggle-sticky-agenda (&optional arg)
  1807. "Toggle `org-agenda-sticky'."
  1808. (interactive "P")
  1809. (let ((new-value (if arg
  1810. (> (prefix-numeric-value arg) 0)
  1811. (not org-agenda-sticky))))
  1812. (if (equal new-value org-agenda-sticky)
  1813. (and (org-called-interactively-p 'interactive)
  1814. (message "Sticky agenda was already %s"
  1815. (if org-agenda-sticky "enabled" "disabled")))
  1816. (setq org-agenda-sticky new-value)
  1817. (org-agenda-kill-all-agenda-buffers)
  1818. (and (org-called-interactively-p 'interactive)
  1819. (message "Sticky agenda %s"
  1820. (if org-agenda-sticky "enabled" "disabled"))))))
  1821. (defvar org-agenda-buffer nil
  1822. "Agenda buffer currently being generated.")
  1823. (defvar org-agenda-last-prefix-arg nil)
  1824. (defvar org-agenda-this-buffer-name nil)
  1825. (defvar org-agenda-doing-sticky-redo nil)
  1826. (defvar org-agenda-this-buffer-is-sticky nil)
  1827. (defvar org-agenda-last-indirect-buffer nil
  1828. "Last buffer loaded by `org-agenda-tree-to-indirect-buffer'.")
  1829. (defconst org-agenda-local-vars
  1830. '(org-agenda-this-buffer-name
  1831. org-agenda-undo-list
  1832. org-agenda-pending-undo-list
  1833. org-agenda-follow-mode
  1834. org-agenda-entry-text-mode
  1835. org-agenda-clockreport-mode
  1836. org-agenda-show-log
  1837. org-agenda-redo-command
  1838. org-agenda-query-string
  1839. org-agenda-type
  1840. org-agenda-bulk-marked-entries
  1841. org-agenda-undo-has-started-in
  1842. org-agenda-info
  1843. org-agenda-pre-window-conf
  1844. org-agenda-columns-active
  1845. org-agenda-tag-filter
  1846. org-agenda-category-filter
  1847. org-agenda-top-headline-filter
  1848. org-agenda-regexp-filter
  1849. org-agenda-effort-filter
  1850. org-agenda-markers
  1851. org-agenda-last-search-view-search-was-boolean
  1852. org-agenda-last-indirect-buffer
  1853. org-agenda-filtered-by-category
  1854. org-agenda-filter-form
  1855. org-agenda-cycle-counter
  1856. org-agenda-last-prefix-arg)
  1857. "Variables that must be local in agenda buffers to allow multiple buffers.")
  1858. (defun org-agenda-mode ()
  1859. "Mode for time-sorted view on action items in Org-mode files.
  1860. The following commands are available:
  1861. \\{org-agenda-mode-map}"
  1862. (interactive)
  1863. (cond (org-agenda-doing-sticky-redo
  1864. ;; Refreshing sticky agenda-buffer
  1865. ;;
  1866. ;; Preserve the value of `org-agenda-local-vars' variables,
  1867. ;; while letting `kill-all-local-variables' kill the rest
  1868. (let ((save (buffer-local-variables)))
  1869. (kill-all-local-variables)
  1870. (mapc 'make-local-variable org-agenda-local-vars)
  1871. (dolist (elem save)
  1872. (let ((var (car elem))
  1873. (val (cdr elem)))
  1874. (when (and val
  1875. (member var org-agenda-local-vars))
  1876. (set var val)))))
  1877. (setq-local org-agenda-this-buffer-is-sticky t))
  1878. (org-agenda-sticky
  1879. ;; Creating a sticky Agenda buffer for the first time
  1880. (kill-all-local-variables)
  1881. (mapc 'make-local-variable org-agenda-local-vars)
  1882. (setq-local org-agenda-this-buffer-is-sticky t))
  1883. (t
  1884. ;; Creating a non-sticky agenda buffer
  1885. (kill-all-local-variables)
  1886. (setq-local org-agenda-this-buffer-is-sticky nil)))
  1887. (setq org-agenda-undo-list nil
  1888. org-agenda-pending-undo-list nil
  1889. org-agenda-bulk-marked-entries nil)
  1890. (setq major-mode 'org-agenda-mode)
  1891. ;; Keep global-font-lock-mode from turning on font-lock-mode
  1892. (setq-local font-lock-global-modes (list 'not major-mode))
  1893. (setq mode-name "Org-Agenda")
  1894. (setq indent-tabs-mode nil)
  1895. (use-local-map org-agenda-mode-map)
  1896. (easy-menu-add org-agenda-menu)
  1897. (if org-startup-truncated (setq truncate-lines t))
  1898. (setq-local line-move-visual nil)
  1899. (org-add-hook 'post-command-hook 'org-agenda-update-agenda-type nil 'local)
  1900. (org-add-hook 'pre-command-hook 'org-unhighlight nil 'local)
  1901. ;; Make sure properties are removed when copying text
  1902. (org-add-hook 'filter-buffer-substring-functions
  1903. (lambda (fun start end delete)
  1904. (substring-no-properties (funcall fun start end delete)))
  1905. nil t)
  1906. (unless org-agenda-keep-modes
  1907. (setq org-agenda-follow-mode org-agenda-start-with-follow-mode
  1908. org-agenda-entry-text-mode org-agenda-start-with-entry-text-mode))
  1909. (setq org-agenda-show-log org-agenda-start-with-log-mode)
  1910. (setq org-agenda-clockreport-mode org-agenda-start-with-clockreport-mode)
  1911. (add-to-invisibility-spec '(org-filtered))
  1912. (add-to-invisibility-spec '(org-link))
  1913. (easy-menu-change
  1914. '("Agenda") "Agenda Files"
  1915. (append
  1916. (list
  1917. (vector
  1918. (if (get 'org-agenda-files 'org-restrict)
  1919. "Restricted to single file"
  1920. "Edit File List")
  1921. '(org-edit-agenda-file-list)
  1922. (not (get 'org-agenda-files 'org-restrict)))
  1923. "--")
  1924. (mapcar 'org-file-menu-entry (org-agenda-files))))
  1925. (org-agenda-set-mode-name)
  1926. (apply
  1927. (if (fboundp 'run-mode-hooks) 'run-mode-hooks 'run-hooks)
  1928. (list 'org-agenda-mode-hook)))
  1929. (substitute-key-definition 'undo 'org-agenda-undo
  1930. org-agenda-mode-map global-map)
  1931. (org-defkey org-agenda-mode-map "\C-i" 'org-agenda-goto)
  1932. (org-defkey org-agenda-mode-map [(tab)] 'org-agenda-goto)
  1933. (org-defkey org-agenda-mode-map "\C-m" 'org-agenda-switch-to)
  1934. (org-defkey org-agenda-mode-map "\C-k" 'org-agenda-kill)
  1935. (org-defkey org-agenda-mode-map "\C-c\C-w" 'org-agenda-refile)
  1936. (org-defkey org-agenda-mode-map [(meta down)] 'org-agenda-drag-line-forward)
  1937. (org-defkey org-agenda-mode-map [(meta up)] 'org-agenda-drag-line-backward)
  1938. (org-defkey org-agenda-mode-map "m" 'org-agenda-bulk-mark)
  1939. (org-defkey org-agenda-mode-map "\M-m" 'org-agenda-bulk-toggle)
  1940. (org-defkey org-agenda-mode-map "*" 'org-agenda-bulk-mark-all)
  1941. (org-defkey org-agenda-mode-map "\M-*" 'org-agenda-bulk-toggle-all)
  1942. (org-defkey org-agenda-mode-map "#" 'org-agenda-dim-blocked-tasks)
  1943. (org-defkey org-agenda-mode-map "%" 'org-agenda-bulk-mark-regexp)
  1944. (org-defkey org-agenda-mode-map "u" 'org-agenda-bulk-unmark)
  1945. (org-defkey org-agenda-mode-map "U" 'org-agenda-bulk-unmark-all)
  1946. (org-defkey org-agenda-mode-map "B" 'org-agenda-bulk-action)
  1947. (org-defkey org-agenda-mode-map "k" 'org-agenda-capture)
  1948. (org-defkey org-agenda-mode-map "A" 'org-agenda-append-agenda)
  1949. (org-defkey org-agenda-mode-map "\C-c\C-x!" 'org-reload)
  1950. (org-defkey org-agenda-mode-map "\C-c\C-x\C-a" 'org-agenda-archive-default)
  1951. (org-defkey org-agenda-mode-map "\C-c\C-xa" 'org-agenda-toggle-archive-tag)
  1952. (org-defkey org-agenda-mode-map "\C-c\C-xA" 'org-agenda-archive-to-archive-sibling)
  1953. (org-defkey org-agenda-mode-map "\C-c\C-x\C-s" 'org-agenda-archive)
  1954. (org-defkey org-agenda-mode-map "\C-c$" 'org-agenda-archive)
  1955. (org-defkey org-agenda-mode-map "$" 'org-agenda-archive)
  1956. (org-defkey org-agenda-mode-map "\C-c\C-o" 'org-agenda-open-link)
  1957. (org-defkey org-agenda-mode-map " " 'org-agenda-show-and-scroll-up)
  1958. (org-defkey org-agenda-mode-map [backspace] 'org-agenda-show-scroll-down)
  1959. (org-defkey org-agenda-mode-map "\d" 'org-agenda-show-scroll-down)
  1960. (org-defkey org-agenda-mode-map [(control shift right)] 'org-agenda-todo-nextset)
  1961. (org-defkey org-agenda-mode-map [(control shift left)] 'org-agenda-todo-previousset)
  1962. (org-defkey org-agenda-mode-map "\C-c\C-xb" 'org-agenda-tree-to-indirect-buffer)
  1963. (org-defkey org-agenda-mode-map "o" 'delete-other-windows)
  1964. (org-defkey org-agenda-mode-map "L" 'org-agenda-recenter)
  1965. (org-defkey org-agenda-mode-map "\C-c\C-t" 'org-agenda-todo)
  1966. (org-defkey org-agenda-mode-map "t" 'org-agenda-todo)
  1967. (org-defkey org-agenda-mode-map "a" 'org-agenda-archive-default-with-confirmation)
  1968. (org-defkey org-agenda-mode-map ":" 'org-agenda-set-tags)
  1969. (org-defkey org-agenda-mode-map "\C-c\C-q" 'org-agenda-set-tags)
  1970. (org-defkey org-agenda-mode-map "." 'org-agenda-goto-today)
  1971. (org-defkey org-agenda-mode-map "j" 'org-agenda-goto-date)
  1972. (org-defkey org-agenda-mode-map "d" 'org-agenda-day-view)
  1973. (org-defkey org-agenda-mode-map "w" 'org-agenda-week-view)
  1974. (org-defkey org-agenda-mode-map "y" 'org-agenda-year-view)
  1975. (org-defkey org-agenda-mode-map "\C-c\C-z" 'org-agenda-add-note)
  1976. (org-defkey org-agenda-mode-map "z" 'org-agenda-add-note)
  1977. (org-defkey org-agenda-mode-map [(shift right)] 'org-agenda-do-date-later)
  1978. (org-defkey org-agenda-mode-map [(shift left)] 'org-agenda-do-date-earlier)
  1979. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (right)] 'org-agenda-do-date-later)
  1980. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (left)] 'org-agenda-do-date-earlier)
  1981. (org-defkey org-agenda-mode-map ">" 'org-agenda-date-prompt)
  1982. (org-defkey org-agenda-mode-map "\C-c\C-s" 'org-agenda-schedule)
  1983. (org-defkey org-agenda-mode-map "\C-c\C-d" 'org-agenda-deadline)
  1984. (let ((l '(1 2 3 4 5 6 7 8 9 0)))
  1985. (while l (org-defkey org-agenda-mode-map
  1986. (int-to-string (pop l)) 'digit-argument)))
  1987. (org-defkey org-agenda-mode-map "F" 'org-agenda-follow-mode)
  1988. (org-defkey org-agenda-mode-map "R" 'org-agenda-clockreport-mode)
  1989. (org-defkey org-agenda-mode-map "E" 'org-agenda-entry-text-mode)
  1990. (org-defkey org-agenda-mode-map "l" 'org-agenda-log-mode)
  1991. (org-defkey org-agenda-mode-map "v" 'org-agenda-view-mode-dispatch)
  1992. (org-defkey org-agenda-mode-map "D" 'org-agenda-toggle-diary)
  1993. (org-defkey org-agenda-mode-map "!" 'org-agenda-toggle-deadlines)
  1994. (org-defkey org-agenda-mode-map "G" 'org-agenda-toggle-time-grid)
  1995. (org-defkey org-agenda-mode-map "r" 'org-agenda-redo)
  1996. (org-defkey org-agenda-mode-map "g" (lambda () (interactive) (org-agenda-redo t)))
  1997. (org-defkey org-agenda-mode-map "e" 'org-agenda-set-effort)
  1998. (org-defkey org-agenda-mode-map "\C-c\C-xe" 'org-agenda-set-effort)
  1999. (org-defkey org-agenda-mode-map "\C-c\C-x\C-e"
  2000. 'org-clock-modify-effort-estimate)
  2001. (org-defkey org-agenda-mode-map "\C-c\C-xp" 'org-agenda-set-property)
  2002. (org-defkey org-agenda-mode-map "q" 'org-agenda-quit)
  2003. (org-defkey org-agenda-mode-map "Q" 'org-agenda-Quit)
  2004. (org-defkey org-agenda-mode-map "x" 'org-agenda-exit)
  2005. (org-defkey org-agenda-mode-map "\C-x\C-w" 'org-agenda-write)
  2006. (org-defkey org-agenda-mode-map "\C-x\C-s" 'org-save-all-org-buffers)
  2007. (org-defkey org-agenda-mode-map "s" 'org-save-all-org-buffers)
  2008. (org-defkey org-agenda-mode-map "T" 'org-agenda-show-tags)
  2009. (org-defkey org-agenda-mode-map "n" 'org-agenda-next-line)
  2010. (org-defkey org-agenda-mode-map "p" 'org-agenda-previous-line)
  2011. (org-defkey org-agenda-mode-map "N" 'org-agenda-next-item)
  2012. (org-defkey org-agenda-mode-map "P" 'org-agenda-previous-item)
  2013. (substitute-key-definition 'next-line 'org-agenda-next-line
  2014. org-agenda-mode-map global-map)
  2015. (substitute-key-definition 'previous-line 'org-agenda-previous-line
  2016. org-agenda-mode-map global-map)
  2017. (org-defkey org-agenda-mode-map "\C-c\C-a" 'org-attach)
  2018. (org-defkey org-agenda-mode-map "\C-c\C-n" 'org-agenda-next-date-line)
  2019. (org-defkey org-agenda-mode-map "\C-c\C-p" 'org-agenda-previous-date-line)
  2020. (org-defkey org-agenda-mode-map "\C-c," 'org-agenda-priority)
  2021. (org-defkey org-agenda-mode-map "," 'org-agenda-priority)
  2022. (org-defkey org-agenda-mode-map "i" 'org-agenda-diary-entry)
  2023. (org-defkey org-agenda-mode-map "c" 'org-agenda-goto-calendar)
  2024. (org-defkey org-agenda-mode-map "C" 'org-agenda-convert-date)
  2025. (org-defkey org-agenda-mode-map "M" 'org-agenda-phases-of-moon)
  2026. (org-defkey org-agenda-mode-map "S" 'org-agenda-sunrise-sunset)
  2027. (org-defkey org-agenda-mode-map "h" 'org-agenda-holidays)
  2028. (org-defkey org-agenda-mode-map "H" 'org-agenda-holidays)
  2029. (org-defkey org-agenda-mode-map "\C-c\C-x\C-i" 'org-agenda-clock-in)
  2030. (org-defkey org-agenda-mode-map "I" 'org-agenda-clock-in)
  2031. (org-defkey org-agenda-mode-map "\C-c\C-x\C-o" 'org-agenda-clock-out)
  2032. (org-defkey org-agenda-mode-map "O" 'org-agenda-clock-out)
  2033. (org-defkey org-agenda-mode-map "\C-c\C-x\C-x" 'org-agenda-clock-cancel)
  2034. (org-defkey org-agenda-mode-map "X" 'org-agenda-clock-cancel)
  2035. (org-defkey org-agenda-mode-map "\C-c\C-x\C-j" 'org-clock-goto)
  2036. (org-defkey org-agenda-mode-map "J" 'org-agenda-clock-goto)
  2037. (org-defkey org-agenda-mode-map "+" 'org-agenda-priority-up)
  2038. (org-defkey org-agenda-mode-map "-" 'org-agenda-priority-down)
  2039. (org-defkey org-agenda-mode-map [(shift up)] 'org-agenda-priority-up)
  2040. (org-defkey org-agenda-mode-map [(shift down)] 'org-agenda-priority-down)
  2041. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (up)] 'org-agenda-priority-up)
  2042. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (down)] 'org-agenda-priority-down)
  2043. (org-defkey org-agenda-mode-map "f" 'org-agenda-later)
  2044. (org-defkey org-agenda-mode-map "b" 'org-agenda-earlier)
  2045. (org-defkey org-agenda-mode-map "\C-c\C-x\C-c" 'org-agenda-columns)
  2046. (org-defkey org-agenda-mode-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
  2047. (org-defkey org-agenda-mode-map "[" 'org-agenda-manipulate-query-add)
  2048. (org-defkey org-agenda-mode-map "]" 'org-agenda-manipulate-query-subtract)
  2049. (org-defkey org-agenda-mode-map "{" 'org-agenda-manipulate-query-add-re)
  2050. (org-defkey org-agenda-mode-map "}" 'org-agenda-manipulate-query-subtract-re)
  2051. (org-defkey org-agenda-mode-map "/" 'org-agenda-filter-by-tag)
  2052. (org-defkey org-agenda-mode-map "_" 'org-agenda-filter-by-effort)
  2053. (org-defkey org-agenda-mode-map "=" 'org-agenda-filter-by-regexp)
  2054. (org-defkey org-agenda-mode-map "|" 'org-agenda-filter-remove-all)
  2055. (org-defkey org-agenda-mode-map "\\" 'org-agenda-filter-by-tag-refine)
  2056. (org-defkey org-agenda-mode-map "~" 'org-agenda-limit-interactively)
  2057. (org-defkey org-agenda-mode-map "<" 'org-agenda-filter-by-category)
  2058. (org-defkey org-agenda-mode-map "^" 'org-agenda-filter-by-top-headline)
  2059. (org-defkey org-agenda-mode-map ";" 'org-timer-set-timer)
  2060. (define-key org-agenda-mode-map "?" 'org-agenda-show-the-flagging-note)
  2061. (org-defkey org-agenda-mode-map "\C-c\C-x\C-mg" 'org-mobile-pull)
  2062. (org-defkey org-agenda-mode-map "\C-c\C-x\C-mp" 'org-mobile-push)
  2063. (org-defkey org-agenda-mode-map [mouse-2] 'org-agenda-goto-mouse)
  2064. (org-defkey org-agenda-mode-map [mouse-3] 'org-agenda-show-mouse)
  2065. (define-key org-agenda-mode-map [remap forward-paragraph] 'org-agenda-forward-block)
  2066. (define-key org-agenda-mode-map [remap backward-paragraph] 'org-agenda-backward-block)
  2067. (when org-agenda-mouse-1-follows-link
  2068. (org-defkey org-agenda-mode-map [follow-link] 'mouse-face))
  2069. (easy-menu-define org-agenda-menu org-agenda-mode-map "Agenda menu"
  2070. '("Agenda"
  2071. ("Agenda Files")
  2072. "--"
  2073. ("Agenda Dates"
  2074. ["Goto Today" org-agenda-goto-today (org-agenda-check-type nil 'agenda 'timeline)]
  2075. ["Next Dates" org-agenda-later (org-agenda-check-type nil 'agenda)]
  2076. ["Previous Dates" org-agenda-earlier (org-agenda-check-type nil 'agenda)]
  2077. ["Jump to date" org-agenda-goto-date (org-agenda-check-type nil 'agenda)])
  2078. "--"
  2079. ("View"
  2080. ["Day View" org-agenda-day-view
  2081. :active (org-agenda-check-type nil 'agenda)
  2082. :style radio :selected (eq org-agenda-current-span 'day)
  2083. :keys "v d (or just d)"]
  2084. ["Week View" org-agenda-week-view
  2085. :active (org-agenda-check-type nil 'agenda)
  2086. :style radio :selected (eq org-agenda-current-span 'week)
  2087. :keys "v w"]
  2088. ["Fortnight View" org-agenda-fortnight-view
  2089. :active (org-agenda-check-type nil 'agenda)
  2090. :style radio :selected (eq org-agenda-current-span 'fortnight)
  2091. :keys "v f"]
  2092. ["Month View" org-agenda-month-view
  2093. :active (org-agenda-check-type nil 'agenda)
  2094. :style radio :selected (eq org-agenda-current-span 'month)
  2095. :keys "v m"]
  2096. ["Year View" org-agenda-year-view
  2097. :active (org-agenda-check-type nil 'agenda)
  2098. :style radio :selected (eq org-agenda-current-span 'year)
  2099. :keys "v y"]
  2100. "--"
  2101. ["Include Diary" org-agenda-toggle-diary
  2102. :style toggle :selected org-agenda-include-diary
  2103. :active (org-agenda-check-type nil 'agenda)]
  2104. ["Include Deadlines" org-agenda-toggle-deadlines
  2105. :style toggle :selected org-agenda-include-deadlines
  2106. :active (org-agenda-check-type nil 'agenda)]
  2107. ["Use Time Grid" org-agenda-toggle-time-grid
  2108. :style toggle :selected org-agenda-use-time-grid
  2109. :active (org-agenda-check-type nil 'agenda)]
  2110. "--"
  2111. ["Show clock report" org-agenda-clockreport-mode
  2112. :style toggle :selected org-agenda-clockreport-mode
  2113. :active (org-agenda-check-type nil 'agenda)]
  2114. ["Show some entry text" org-agenda-entry-text-mode
  2115. :style toggle :selected org-agenda-entry-text-mode
  2116. :active t]
  2117. "--"
  2118. ["Show Logbook entries" org-agenda-log-mode
  2119. :style toggle :selected org-agenda-show-log
  2120. :active (org-agenda-check-type nil 'agenda 'timeline)
  2121. :keys "v l (or just l)"]
  2122. ["Include archived trees" org-agenda-archives-mode
  2123. :style toggle :selected org-agenda-archives-mode :active t
  2124. :keys "v a"]
  2125. ["Include archive files" (org-agenda-archives-mode t)
  2126. :style toggle :selected (eq org-agenda-archives-mode t) :active t
  2127. :keys "v A"]
  2128. "--"
  2129. ["Remove Restriction" org-agenda-remove-restriction-lock org-agenda-restrict])
  2130. ["Write view to file" org-agenda-write t]
  2131. ["Rebuild buffer" org-agenda-redo t]
  2132. ["Save all Org-mode Buffers" org-save-all-org-buffers t]
  2133. "--"
  2134. ["Show original entry" org-agenda-show t]
  2135. ["Go To (other window)" org-agenda-goto t]
  2136. ["Go To (this window)" org-agenda-switch-to t]
  2137. ["Capture with cursor date" org-agenda-capture t]
  2138. ["Follow Mode" org-agenda-follow-mode
  2139. :style toggle :selected org-agenda-follow-mode :active t]
  2140. ;; ["Tree to indirect frame" org-agenda-tree-to-indirect-buffer t]
  2141. "--"
  2142. ("TODO"
  2143. ["Cycle TODO" org-agenda-todo t]
  2144. ["Next TODO set" org-agenda-todo-nextset t]
  2145. ["Previous TODO set" org-agenda-todo-previousset t]
  2146. ["Add note" org-agenda-add-note t])
  2147. ("Archive/Refile/Delete"
  2148. ["Archive default" org-agenda-archive-default t]
  2149. ["Archive default" org-agenda-archive-default-with-confirmation t]
  2150. ["Toggle ARCHIVE tag" org-agenda-toggle-archive-tag t]
  2151. ["Move to archive sibling" org-agenda-archive-to-archive-sibling t]
  2152. ["Archive subtree" org-agenda-archive t]
  2153. "--"
  2154. ["Refile" org-agenda-refile t]
  2155. "--"
  2156. ["Delete subtree" org-agenda-kill t])
  2157. ("Bulk action"
  2158. ["Mark entry" org-agenda-bulk-mark t]
  2159. ["Mark all" org-agenda-bulk-mark-all t]
  2160. ["Unmark entry" org-agenda-bulk-unmark t]
  2161. ["Unmark all" org-agenda-bulk-unmark-all :active t :keys "U"]
  2162. ["Toggle mark" org-agenda-bulk-toggle t]
  2163. ["Toggle all" org-agenda-bulk-toggle-all t]
  2164. ["Mark regexp" org-agenda-bulk-mark-regexp t])
  2165. ["Act on all marked" org-agenda-bulk-action t]
  2166. "--"
  2167. ("Tags and Properties"
  2168. ["Show all Tags" org-agenda-show-tags t]
  2169. ["Set Tags current line" org-agenda-set-tags (not (org-region-active-p))]
  2170. ["Change tag in region" org-agenda-set-tags (org-region-active-p)]
  2171. "--"
  2172. ["Column View" org-columns t])
  2173. ("Deadline/Schedule"
  2174. ["Schedule" org-agenda-schedule t]
  2175. ["Set Deadline" org-agenda-deadline t]
  2176. "--"
  2177. ["Change Date +1 day" org-agenda-date-later (org-agenda-check-type nil 'agenda 'timeline)]
  2178. ["Change Date -1 day" org-agenda-date-earlier (org-agenda-check-type nil 'agenda 'timeline)]
  2179. ["Change Time +1 hour" org-agenda-do-date-later :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u S-right"]
  2180. ["Change Time -1 hour" org-agenda-do-date-earlier :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u S-left"]
  2181. ["Change Time + min" org-agenda-date-later :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u C-u S-right"]
  2182. ["Change Time - min" org-agenda-date-earlier :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u C-u S-left"]
  2183. ["Change Date to ..." org-agenda-date-prompt (org-agenda-check-type nil 'agenda 'timeline)])
  2184. ("Clock and Effort"
  2185. ["Clock in" org-agenda-clock-in t]
  2186. ["Clock out" org-agenda-clock-out t]
  2187. ["Clock cancel" org-agenda-clock-cancel t]
  2188. ["Goto running clock" org-clock-goto t]
  2189. "--"
  2190. ["Set Effort" org-agenda-set-effort t]
  2191. ["Change clocked effort" org-clock-modify-effort-estimate
  2192. (org-clock-is-active)])
  2193. ("Priority"
  2194. ["Set Priority" org-agenda-priority t]
  2195. ["Increase Priority" org-agenda-priority-up t]
  2196. ["Decrease Priority" org-agenda-priority-down t]
  2197. ["Show Priority" org-show-priority t])
  2198. ("Calendar/Diary"
  2199. ["New Diary Entry" org-agenda-diary-entry (org-agenda-check-type nil 'agenda 'timeline)]
  2200. ["Goto Calendar" org-agenda-goto-calendar (org-agenda-check-type nil 'agenda 'timeline)]
  2201. ["Phases of the Moon" org-agenda-phases-of-moon (org-agenda-check-type nil 'agenda 'timeline)]
  2202. ["Sunrise/Sunset" org-agenda-sunrise-sunset (org-agenda-check-type nil 'agenda 'timeline)]
  2203. ["Holidays" org-agenda-holidays (org-agenda-check-type nil 'agenda 'timeline)]
  2204. ["Convert" org-agenda-convert-date (org-agenda-check-type nil 'agenda 'timeline)]
  2205. "--"
  2206. ["Create iCalendar File" org-icalendar-combine-agenda-files t])
  2207. "--"
  2208. ["Undo Remote Editing" org-agenda-undo org-agenda-undo-list]
  2209. "--"
  2210. ("MobileOrg"
  2211. ["Push Files and Views" org-mobile-push t]
  2212. ["Get Captured and Flagged" org-mobile-pull t]
  2213. ["Find FLAGGED Tasks" (org-agenda nil "?") :active t :keys "C-c a ?"]
  2214. ["Show note / unflag" org-agenda-show-the-flagging-note t]
  2215. "--"
  2216. ["Setup" (progn (require 'org-mobile) (customize-group 'org-mobile)) t])
  2217. "--"
  2218. ["Quit" org-agenda-quit t]
  2219. ["Exit and Release Buffers" org-agenda-exit t]
  2220. ))
  2221. ;;; Agenda undo
  2222. (defvar org-agenda-allow-remote-undo t
  2223. "Non-nil means allow remote undo from the agenda buffer.")
  2224. (defvar org-agenda-undo-has-started-in nil
  2225. "Buffers that have already seen `undo-start' in the current undo sequence.")
  2226. (defun org-agenda-undo ()
  2227. "Undo a remote editing step in the agenda.
  2228. This undoes changes both in the agenda buffer and in the remote buffer
  2229. that have been changed along."
  2230. (interactive)
  2231. (or org-agenda-allow-remote-undo
  2232. (user-error "Check the variable `org-agenda-allow-remote-undo' to activate remote undo"))
  2233. (if (not (eq this-command last-command))
  2234. (setq org-agenda-undo-has-started-in nil
  2235. org-agenda-pending-undo-list org-agenda-undo-list))
  2236. (if (not org-agenda-pending-undo-list)
  2237. (user-error "No further undo information"))
  2238. (let* ((entry (pop org-agenda-pending-undo-list))
  2239. buf line cmd rembuf)
  2240. (setq cmd (pop entry) line (pop entry))
  2241. (setq rembuf (nth 2 entry))
  2242. (org-with-remote-undo rembuf
  2243. (while (bufferp (setq buf (pop entry)))
  2244. (if (pop entry)
  2245. (with-current-buffer buf
  2246. (let ((last-undo-buffer buf)
  2247. (inhibit-read-only t))
  2248. (unless (memq buf org-agenda-undo-has-started-in)
  2249. (push buf org-agenda-undo-has-started-in)
  2250. (make-local-variable 'pending-undo-list)
  2251. (undo-start))
  2252. (while (and pending-undo-list
  2253. (listp pending-undo-list)
  2254. (not (car pending-undo-list)))
  2255. (pop pending-undo-list))
  2256. (undo-more 1))))))
  2257. (org-goto-line line)
  2258. (message "`%s' undone (buffer %s)" cmd (buffer-name rembuf))))
  2259. (defun org-verify-change-for-undo (l1 l2)
  2260. "Verify that a real change occurred between the undo lists L1 and L2."
  2261. (while (and l1 (listp l1) (null (car l1))) (pop l1))
  2262. (while (and l2 (listp l2) (null (car l2))) (pop l2))
  2263. (not (eq l1 l2)))
  2264. ;;; Agenda dispatch
  2265. (defvar org-agenda-restrict-begin (make-marker))
  2266. (defvar org-agenda-restrict-end (make-marker))
  2267. (defvar org-agenda-last-dispatch-buffer nil)
  2268. (defvar org-agenda-overriding-restriction nil)
  2269. (defcustom org-agenda-custom-commands-contexts nil
  2270. "Alist of custom agenda keys and contextual rules.
  2271. For example, if you have a custom agenda command \"p\" and you
  2272. want this command to be accessible only from plain text files,
  2273. use this:
  2274. \\='((\"p\" ((in-file . \"\\\\.txt\\\\'\"))))
  2275. Here are the available contexts definitions:
  2276. in-file: command displayed only in matching files
  2277. in-mode: command displayed only in matching modes
  2278. not-in-file: command not displayed in matching files
  2279. not-in-mode: command not displayed in matching modes
  2280. in-buffer: command displayed only in matching buffers
  2281. not-in-buffer: command not displayed in matching buffers
  2282. [function]: a custom function taking no argument
  2283. If you define several checks, the agenda command will be
  2284. accessible if there is at least one valid check.
  2285. You can also bind a key to another agenda custom command
  2286. depending on contextual rules.
  2287. \\='((\"p\" \"q\" ((in-file . \"\\\\.txt\\\\'\"))))
  2288. Here it means: in .txt files, use \"p\" as the key for the
  2289. agenda command otherwise associated with \"q\". (The command
  2290. originally associated with \"q\" is not displayed to avoid
  2291. duplicates.)"
  2292. :version "24.3"
  2293. :group 'org-agenda-custom-commands
  2294. :type '(repeat (list :tag "Rule"
  2295. (string :tag " Agenda key")
  2296. (string :tag "Replace by command")
  2297. (repeat :tag "Available when"
  2298. (choice
  2299. (cons :tag "Condition"
  2300. (choice
  2301. (const :tag "In file" in-file)
  2302. (const :tag "Not in file" not-in-file)
  2303. (const :tag "In buffer" in-buffer)
  2304. (const :tag "Not in buffer" not-in-buffer)
  2305. (const :tag "In mode" in-mode)
  2306. (const :tag "Not in mode" not-in-mode))
  2307. (regexp))
  2308. (function :tag "Custom function"))))))
  2309. (defcustom org-agenda-max-entries nil
  2310. "Maximum number of entries to display in an agenda.
  2311. This can be nil (no limit) or an integer or an alist of agenda
  2312. types with an associated number of entries to display in this
  2313. type."
  2314. :version "24.4"
  2315. :package-version '(Org . "8.0")
  2316. :group 'org-agenda-custom-commands
  2317. :type '(choice (symbol :tag "No limit" nil)
  2318. (integer :tag "Max number of entries")
  2319. (repeat
  2320. (cons (choice :tag "Agenda type"
  2321. (const agenda)
  2322. (const todo)
  2323. (const tags)
  2324. (const search)
  2325. (const timeline))
  2326. (integer :tag "Max number of entries")))))
  2327. (defcustom org-agenda-max-todos nil
  2328. "Maximum number of TODOs to display in an agenda.
  2329. This can be nil (no limit) or an integer or an alist of agenda
  2330. types with an associated number of entries to display in this
  2331. type."
  2332. :version "24.4"
  2333. :package-version '(Org . "8.0")
  2334. :group 'org-agenda-custom-commands
  2335. :type '(choice (symbol :tag "No limit" nil)
  2336. (integer :tag "Max number of TODOs")
  2337. (repeat
  2338. (cons (choice :tag "Agenda type"
  2339. (const agenda)
  2340. (const todo)
  2341. (const tags)
  2342. (const search)
  2343. (const timeline))
  2344. (integer :tag "Max number of TODOs")))))
  2345. (defcustom org-agenda-max-tags nil
  2346. "Maximum number of tagged entries to display in an agenda.
  2347. This can be nil (no limit) or an integer or an alist of agenda
  2348. types with an associated number of entries to display in this
  2349. type."
  2350. :version "24.4"
  2351. :package-version '(Org . "8.0")
  2352. :group 'org-agenda-custom-commands
  2353. :type '(choice (symbol :tag "No limit" nil)
  2354. (integer :tag "Max number of tagged entries")
  2355. (repeat
  2356. (cons (choice :tag "Agenda type"
  2357. (const agenda)
  2358. (const todo)
  2359. (const tags)
  2360. (const search)
  2361. (const timeline))
  2362. (integer :tag "Max number of tagged entries")))))
  2363. (defcustom org-agenda-max-effort nil
  2364. "Maximum cumulated effort duration for the agenda.
  2365. This can be nil (no limit) or a number of minutes (as an integer)
  2366. or an alist of agenda types with an associated number of minutes
  2367. to limit entries to in this type."
  2368. :version "24.4"
  2369. :package-version '(Org . "8.0")
  2370. :group 'org-agenda-custom-commands
  2371. :type '(choice (symbol :tag "No limit" nil)
  2372. (integer :tag "Max number of minutes")
  2373. (repeat
  2374. (cons (choice :tag "Agenda type"
  2375. (const agenda)
  2376. (const todo)
  2377. (const tags)
  2378. (const search)
  2379. (const timeline))
  2380. (integer :tag "Max number of minutes")))))
  2381. (defvar org-keys nil)
  2382. (defvar org-match nil)
  2383. ;;;###autoload
  2384. (defun org-agenda (&optional arg org-keys restriction)
  2385. "Dispatch agenda commands to collect entries to the agenda buffer.
  2386. Prompts for a command to execute. Any prefix arg will be passed
  2387. on to the selected command. The default selections are:
  2388. a Call `org-agenda-list' to display the agenda for current day or week.
  2389. t Call `org-todo-list' to display the global todo list.
  2390. T Call `org-todo-list' to display the global todo list, select only
  2391. entries with a specific TODO keyword (the user gets a prompt).
  2392. m Call `org-tags-view' to display headlines with tags matching
  2393. a condition (the user is prompted for the condition).
  2394. M Like `m', but select only TODO entries, no ordinary headlines.
  2395. L Create a timeline for the current buffer.
  2396. e Export views to associated files.
  2397. s Search entries for keywords.
  2398. S Search entries for keywords, only with TODO keywords.
  2399. / Multi occur across all agenda files and also files listed
  2400. in `org-agenda-text-search-extra-files'.
  2401. < Restrict agenda commands to buffer, subtree, or region.
  2402. Press several times to get the desired effect.
  2403. > Remove a previous restriction.
  2404. # List \"stuck\" projects.
  2405. ! Configure what \"stuck\" means.
  2406. C Configure custom agenda commands.
  2407. More commands can be added by configuring the variable
  2408. `org-agenda-custom-commands'. In particular, specific tags and TODO keyword
  2409. searches can be pre-defined in this way.
  2410. If the current buffer is in Org-mode and visiting a file, you can also
  2411. first press `<' once to indicate that the agenda should be temporarily
  2412. \(until the next use of \\[org-agenda]) restricted to the current file.
  2413. Pressing `<' twice means to restrict to the current subtree or region
  2414. \(if active)."
  2415. (interactive "P")
  2416. (catch 'exit
  2417. (let* ((prefix-descriptions nil)
  2418. (org-agenda-buffer-name org-agenda-buffer-name)
  2419. (org-agenda-window-setup (if (equal (buffer-name)
  2420. org-agenda-buffer-name)
  2421. 'current-window
  2422. org-agenda-window-setup))
  2423. (org-agenda-custom-commands-orig org-agenda-custom-commands)
  2424. (org-agenda-custom-commands
  2425. ;; normalize different versions
  2426. (delq nil
  2427. (mapcar
  2428. (lambda (x)
  2429. (cond ((stringp (cdr x))
  2430. (push x prefix-descriptions)
  2431. nil)
  2432. ((stringp (nth 1 x)) x)
  2433. ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
  2434. (t (cons (car x) (cons "" (cdr x))))))
  2435. org-agenda-custom-commands)))
  2436. (org-agenda-custom-commands
  2437. (org-contextualize-keys
  2438. org-agenda-custom-commands org-agenda-custom-commands-contexts))
  2439. (buf (current-buffer))
  2440. (bfn (buffer-file-name (buffer-base-buffer)))
  2441. entry key type org-match lprops ans)
  2442. ;; Turn off restriction unless there is an overriding one,
  2443. (unless org-agenda-overriding-restriction
  2444. (unless (org-bound-and-true-p org-agenda-keep-restricted-file-list)
  2445. ;; There is a request to keep the file list in place
  2446. (put 'org-agenda-files 'org-restrict nil))
  2447. (setq org-agenda-restrict nil)
  2448. (move-marker org-agenda-restrict-begin nil)
  2449. (move-marker org-agenda-restrict-end nil))
  2450. ;; Delete old local properties
  2451. (put 'org-agenda-redo-command 'org-lprops nil)
  2452. ;; Delete previously set last-arguments
  2453. (put 'org-agenda-redo-command 'last-args nil)
  2454. ;; Remember where this call originated
  2455. (setq org-agenda-last-dispatch-buffer (current-buffer))
  2456. (unless org-keys
  2457. (setq ans (org-agenda-get-restriction-and-command prefix-descriptions)
  2458. org-keys (car ans)
  2459. restriction (cdr ans)))
  2460. ;; If we have sticky agenda buffers, set a name for the buffer,
  2461. ;; depending on the invoking keys. The user may still set this
  2462. ;; as a command option, which will overwrite what we do here.
  2463. (if org-agenda-sticky
  2464. (setq org-agenda-buffer-name
  2465. (format "*Org Agenda(%s)*" org-keys)))
  2466. ;; Establish the restriction, if any
  2467. (when (and (not org-agenda-overriding-restriction) restriction)
  2468. (put 'org-agenda-files 'org-restrict (list bfn))
  2469. (cond
  2470. ((eq restriction 'region)
  2471. (setq org-agenda-restrict (current-buffer))
  2472. (move-marker org-agenda-restrict-begin (region-beginning))
  2473. (move-marker org-agenda-restrict-end (region-end)))
  2474. ((eq restriction 'subtree)
  2475. (save-excursion
  2476. (setq org-agenda-restrict (current-buffer))
  2477. (org-back-to-heading t)
  2478. (move-marker org-agenda-restrict-begin (point))
  2479. (move-marker org-agenda-restrict-end
  2480. (progn (org-end-of-subtree t)))))))
  2481. ;; For example the todo list should not need it (but does...)
  2482. (cond
  2483. ((setq entry (assoc org-keys org-agenda-custom-commands))
  2484. (if (or (symbolp (nth 2 entry)) (functionp (nth 2 entry)))
  2485. (progn
  2486. (setq type (nth 2 entry) org-match (eval (nth 3 entry))
  2487. lprops (nth 4 entry))
  2488. (if org-agenda-sticky
  2489. (setq org-agenda-buffer-name
  2490. (or (and (stringp org-match) (format "*Org Agenda(%s:%s)*" org-keys org-match))
  2491. (format "*Org Agenda(%s)*" org-keys))))
  2492. (put 'org-agenda-redo-command 'org-lprops lprops)
  2493. (cond
  2494. ((eq type 'agenda)
  2495. (org-let lprops '(org-agenda-list current-prefix-arg)))
  2496. ((eq type 'agenda*)
  2497. (org-let lprops '(org-agenda-list current-prefix-arg nil nil t)))
  2498. ((eq type 'alltodo)
  2499. (org-let lprops '(org-todo-list current-prefix-arg)))
  2500. ((eq type 'search)
  2501. (org-let lprops '(org-search-view current-prefix-arg org-match nil)))
  2502. ((eq type 'stuck)
  2503. (org-let lprops '(org-agenda-list-stuck-projects
  2504. current-prefix-arg)))
  2505. ((eq type 'tags)
  2506. (org-let lprops '(org-tags-view current-prefix-arg org-match)))
  2507. ((eq type 'tags-todo)
  2508. (org-let lprops '(org-tags-view '(4) org-match)))
  2509. ((eq type 'todo)
  2510. (org-let lprops '(org-todo-list org-match)))
  2511. ((eq type 'tags-tree)
  2512. (org-check-for-org-mode)
  2513. (org-let lprops '(org-match-sparse-tree current-prefix-arg org-match)))
  2514. ((eq type 'todo-tree)
  2515. (org-check-for-org-mode)
  2516. (org-let lprops
  2517. '(org-occur (concat "^" org-outline-regexp "[ \t]*"
  2518. (regexp-quote org-match) "\\>"))))
  2519. ((eq type 'occur-tree)
  2520. (org-check-for-org-mode)
  2521. (org-let lprops '(org-occur org-match)))
  2522. ((functionp type)
  2523. (org-let lprops '(funcall type org-match)))
  2524. ((fboundp type)
  2525. (org-let lprops '(funcall type org-match)))
  2526. (t (user-error "Invalid custom agenda command type %s" type))))
  2527. (org-agenda-run-series (nth 1 entry) (cddr entry))))
  2528. ((equal org-keys "C")
  2529. (setq org-agenda-custom-commands org-agenda-custom-commands-orig)
  2530. (customize-variable 'org-agenda-custom-commands))
  2531. ((equal org-keys "a") (call-interactively 'org-agenda-list))
  2532. ((equal org-keys "s") (call-interactively 'org-search-view))
  2533. ((equal org-keys "S") (org-call-with-arg 'org-search-view (or arg '(4))))
  2534. ((equal org-keys "t") (call-interactively 'org-todo-list))
  2535. ((equal org-keys "T") (org-call-with-arg 'org-todo-list (or arg '(4))))
  2536. ((equal org-keys "m") (call-interactively 'org-tags-view))
  2537. ((equal org-keys "M") (org-call-with-arg 'org-tags-view (or arg '(4))))
  2538. ((equal org-keys "e") (call-interactively 'org-store-agenda-views))
  2539. ((equal org-keys "?") (org-tags-view nil "+FLAGGED")
  2540. (org-add-hook
  2541. 'post-command-hook
  2542. (lambda ()
  2543. (unless (current-message)
  2544. (let* ((m (org-agenda-get-any-marker))
  2545. (note (and m (org-entry-get m "THEFLAGGINGNOTE"))))
  2546. (when note
  2547. (message (concat
  2548. "FLAGGING-NOTE ([?] for more info): "
  2549. (org-add-props
  2550. (replace-regexp-in-string
  2551. "\\\\n" "//"
  2552. (copy-sequence note))
  2553. nil 'face 'org-warning)))))))
  2554. t t))
  2555. ((equal org-keys "L")
  2556. (unless (derived-mode-p 'org-mode)
  2557. (user-error "This is not an Org-mode file"))
  2558. (unless restriction
  2559. (put 'org-agenda-files 'org-restrict (list bfn))
  2560. (org-call-with-arg 'org-timeline arg)))
  2561. ((equal org-keys "#") (call-interactively 'org-agenda-list-stuck-projects))
  2562. ((equal org-keys "/") (call-interactively 'org-occur-in-agenda-files))
  2563. ((equal org-keys "!") (customize-variable 'org-stuck-projects))
  2564. (t (user-error "Invalid agenda key"))))))
  2565. (defvar org-agenda-multi)
  2566. (defun org-agenda-append-agenda ()
  2567. "Append another agenda view to the current one.
  2568. This function allows interactive building of block agendas.
  2569. Agenda views are separated by `org-agenda-block-separator'."
  2570. (interactive)
  2571. (unless (derived-mode-p 'org-agenda-mode)
  2572. (user-error "Can only append from within agenda buffer"))
  2573. (let ((org-agenda-multi t))
  2574. (org-agenda)
  2575. (widen)
  2576. (org-agenda-finalize)
  2577. (setq buffer-read-only t)
  2578. (org-agenda-fit-window-to-buffer)))
  2579. (defun org-agenda-normalize-custom-commands (cmds)
  2580. "Normalize custom commands CMDS."
  2581. (delq nil
  2582. (mapcar
  2583. (lambda (x)
  2584. (cond ((stringp (cdr x)) nil)
  2585. ((stringp (nth 1 x)) x)
  2586. ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
  2587. (t (cons (car x) (cons "" (cdr x))))))
  2588. cmds)))
  2589. (defun org-agenda-get-restriction-and-command (prefix-descriptions)
  2590. "The user interface for selecting an agenda command."
  2591. (catch 'exit
  2592. (let* ((bfn (buffer-file-name (buffer-base-buffer)))
  2593. (restrict-ok (and bfn (derived-mode-p 'org-mode)))
  2594. (region-p (org-region-active-p))
  2595. (custom org-agenda-custom-commands)
  2596. (selstring "")
  2597. restriction second-time
  2598. c entry key type match prefixes rmheader header-end custom1 desc
  2599. line lines left right n n1)
  2600. (save-window-excursion
  2601. (delete-other-windows)
  2602. (org-switch-to-buffer-other-window " *Agenda Commands*")
  2603. (erase-buffer)
  2604. (insert (eval-when-compile
  2605. (let ((header
  2606. "Press key for an agenda command: < Buffer, subtree/region restriction
  2607. -------------------------------- > Remove restriction
  2608. a Agenda for current week or day e Export agenda views
  2609. t List of all TODO entries T Entries with special TODO kwd
  2610. m Match a TAGS/PROP/TODO query M Like m, but only TODO entries
  2611. s Search for keywords S Like s, but only TODO entries
  2612. L Timeline for current buffer # List stuck projects (!=configure)
  2613. / Multi-occur C Configure custom agenda commands
  2614. ? Find :FLAGGED: entries * Toggle sticky agenda views
  2615. ")
  2616. (start 0))
  2617. (while (string-match
  2618. "\\(^\\| \\|(\\)\\(\\S-\\)\\( \\|=\\)"
  2619. header start)
  2620. (setq start (match-end 0))
  2621. (add-text-properties (match-beginning 2) (match-end 2)
  2622. '(face bold) header))
  2623. header)))
  2624. (setq header-end (point-marker))
  2625. (while t
  2626. (setq custom1 custom)
  2627. (when (eq rmheader t)
  2628. (org-goto-line 1)
  2629. (re-search-forward ":" nil t)
  2630. (delete-region (match-end 0) (point-at-eol))
  2631. (forward-char 1)
  2632. (looking-at "-+")
  2633. (delete-region (match-end 0) (point-at-eol))
  2634. (move-marker header-end (match-end 0)))
  2635. (goto-char header-end)
  2636. (delete-region (point) (point-max))
  2637. ;; Produce all the lines that describe custom commands and prefixes
  2638. (setq lines nil)
  2639. (while (setq entry (pop custom1))
  2640. (setq key (car entry) desc (nth 1 entry)
  2641. type (nth 2 entry)
  2642. match (nth 3 entry))
  2643. (if (> (length key) 1)
  2644. (add-to-list 'prefixes (string-to-char key))
  2645. (setq line
  2646. (format
  2647. "%-4s%-14s"
  2648. (org-add-props (copy-sequence key)
  2649. '(face bold))
  2650. (cond
  2651. ((string-match "\\S-" desc) desc)
  2652. ((eq type 'agenda) "Agenda for current week or day")
  2653. ((eq type 'agenda*) "Appointments for current week or day")
  2654. ((eq type 'alltodo) "List of all TODO entries")
  2655. ((eq type 'search) "Word search")
  2656. ((eq type 'stuck) "List of stuck projects")
  2657. ((eq type 'todo) "TODO keyword")
  2658. ((eq type 'tags) "Tags query")
  2659. ((eq type 'tags-todo) "Tags (TODO)")
  2660. ((eq type 'tags-tree) "Tags tree")
  2661. ((eq type 'todo-tree) "TODO kwd tree")
  2662. ((eq type 'occur-tree) "Occur tree")
  2663. ((functionp type) (if (symbolp type)
  2664. (symbol-name type)
  2665. "Lambda expression"))
  2666. (t "???"))))
  2667. (if org-agenda-menu-show-matcher
  2668. (setq line
  2669. (concat line ": "
  2670. (cond
  2671. ((stringp match)
  2672. (setq match (copy-sequence match))
  2673. (org-add-props match nil 'face 'org-warning))
  2674. ((listp type)
  2675. (format "set of %d commands" (length type))))))
  2676. (if (org-string-nw-p match)
  2677. (add-text-properties
  2678. 0 (length line) (list 'help-echo
  2679. (concat "Matcher: " match)) line)))
  2680. (push line lines)))
  2681. (setq lines (nreverse lines))
  2682. (when prefixes
  2683. (mapc (lambda (x)
  2684. (push
  2685. (format "%s %s"
  2686. (org-add-props (char-to-string x)
  2687. nil 'face 'bold)
  2688. (or (cdr (assoc (concat selstring
  2689. (char-to-string x))
  2690. prefix-descriptions))
  2691. "Prefix key"))
  2692. lines))
  2693. prefixes))
  2694. ;; Check if we should display in two columns
  2695. (if org-agenda-menu-two-columns
  2696. (progn
  2697. (setq n (length lines)
  2698. n1 (+ (/ n 2) (mod n 2))
  2699. right (nthcdr n1 lines)
  2700. left (copy-sequence lines))
  2701. (setcdr (nthcdr (1- n1) left) nil))
  2702. (setq left lines right nil))
  2703. (while left
  2704. (insert "\n" (pop left))
  2705. (when right
  2706. (if (< (current-column) 40)
  2707. (move-to-column 40 t)
  2708. (insert " "))
  2709. (insert (pop right))))
  2710. ;; Make the window the right size
  2711. (goto-char (point-min))
  2712. (if second-time
  2713. (if (not (pos-visible-in-window-p (point-max)))
  2714. (org-fit-window-to-buffer))
  2715. (setq second-time t)
  2716. (org-fit-window-to-buffer))
  2717. ;; Ask for selection
  2718. (message "Press key for agenda command%s:"
  2719. (if (or restrict-ok org-agenda-overriding-restriction)
  2720. (if org-agenda-overriding-restriction
  2721. " (restriction lock active)"
  2722. (if restriction
  2723. (format " (restricted to %s)" restriction)
  2724. " (unrestricted)"))
  2725. ""))
  2726. (setq c (read-char-exclusive))
  2727. (message "")
  2728. (cond
  2729. ((assoc (char-to-string c) custom)
  2730. (setq selstring (concat selstring (char-to-string c)))
  2731. (throw 'exit (cons selstring restriction)))
  2732. ((memq c prefixes)
  2733. (setq selstring (concat selstring (char-to-string c))
  2734. prefixes nil
  2735. rmheader (or rmheader t)
  2736. custom (delq nil (mapcar
  2737. (lambda (x)
  2738. (if (or (= (length (car x)) 1)
  2739. (/= (string-to-char (car x)) c))
  2740. nil
  2741. (cons (substring (car x) 1) (cdr x))))
  2742. custom))))
  2743. ((eq c ?*)
  2744. (call-interactively 'org-toggle-sticky-agenda)
  2745. (sit-for 2))
  2746. ((and (not restrict-ok) (memq c '(?1 ?0 ?<)))
  2747. (message "Restriction is only possible in Org-mode buffers")
  2748. (ding) (sit-for 1))
  2749. ((eq c ?1)
  2750. (org-agenda-remove-restriction-lock 'noupdate)
  2751. (setq restriction 'buffer))
  2752. ((eq c ?0)
  2753. (org-agenda-remove-restriction-lock 'noupdate)
  2754. (setq restriction (if region-p 'region 'subtree)))
  2755. ((eq c ?<)
  2756. (org-agenda-remove-restriction-lock 'noupdate)
  2757. (setq restriction
  2758. (cond
  2759. ((eq restriction 'buffer)
  2760. (if region-p 'region 'subtree))
  2761. ((memq restriction '(subtree region))
  2762. nil)
  2763. (t 'buffer))))
  2764. ((eq c ?>)
  2765. (org-agenda-remove-restriction-lock 'noupdate)
  2766. (setq restriction nil))
  2767. ((and (equal selstring "") (memq c '(?s ?S ?a ?t ?m ?L ?C ?e ?T ?M ?# ?! ?/ ??)))
  2768. (throw 'exit (cons (setq selstring (char-to-string c)) restriction)))
  2769. ((and (> (length selstring) 0) (eq c ?\d))
  2770. (delete-window)
  2771. (org-agenda-get-restriction-and-command prefix-descriptions))
  2772. ((equal c ?q) (error "Abort"))
  2773. (t (user-error "Invalid key %c" c))))))))
  2774. (defun org-agenda-fit-window-to-buffer ()
  2775. "Fit the window to the buffer size."
  2776. (and (memq org-agenda-window-setup '(reorganize-frame))
  2777. (fboundp 'fit-window-to-buffer)
  2778. (if (and (= (cdr org-agenda-window-frame-fractions) 1.0)
  2779. (= (car org-agenda-window-frame-fractions) 1.0))
  2780. (delete-other-windows)
  2781. (org-fit-window-to-buffer
  2782. nil
  2783. (floor (* (frame-height) (cdr org-agenda-window-frame-fractions)))
  2784. (floor (* (frame-height) (car org-agenda-window-frame-fractions)))))))
  2785. (defvar org-cmd nil)
  2786. (defvar org-agenda-overriding-cmd nil)
  2787. (defvar org-agenda-overriding-arguments nil)
  2788. (defvar org-agenda-overriding-cmd-arguments nil)
  2789. (defun org-agenda-run-series (name series)
  2790. "Run agenda NAME as a SERIES of agenda commands."
  2791. (org-let (nth 1 series) '(org-agenda-prepare name))
  2792. ;; We need to reset agenda markers here, because when constructing a
  2793. ;; block agenda, the individual blocks do not do that.
  2794. (org-agenda-reset-markers)
  2795. (let* ((org-agenda-multi t)
  2796. (redo (list 'org-agenda-run-series name (list 'quote series)))
  2797. (cmds (car series))
  2798. (gprops (nth 1 series))
  2799. match ;; The byte compiler incorrectly complains about this. Keep it!
  2800. org-cmd type lprops)
  2801. (while (setq org-cmd (pop cmds))
  2802. (setq type (car org-cmd)
  2803. match (eval (nth 1 org-cmd))
  2804. lprops (nth 2 org-cmd))
  2805. (let ((org-agenda-overriding-arguments
  2806. (if (eq org-agenda-overriding-cmd org-cmd)
  2807. (or org-agenda-overriding-arguments
  2808. org-agenda-overriding-cmd-arguments))))
  2809. (cond
  2810. ((eq type 'agenda)
  2811. (org-let2 gprops lprops
  2812. '(call-interactively 'org-agenda-list)))
  2813. ((eq type 'agenda*)
  2814. (org-let2 gprops lprops
  2815. '(funcall 'org-agenda-list nil nil t)))
  2816. ((eq type 'alltodo)
  2817. (org-let2 gprops lprops
  2818. '(call-interactively 'org-todo-list)))
  2819. ((eq type 'search)
  2820. (org-let2 gprops lprops
  2821. '(org-search-view current-prefix-arg match nil)))
  2822. ((eq type 'stuck)
  2823. (org-let2 gprops lprops
  2824. '(call-interactively 'org-agenda-list-stuck-projects)))
  2825. ((eq type 'tags)
  2826. (org-let2 gprops lprops
  2827. '(org-tags-view current-prefix-arg match)))
  2828. ((eq type 'tags-todo)
  2829. (org-let2 gprops lprops
  2830. '(org-tags-view '(4) match)))
  2831. ((eq type 'todo)
  2832. (org-let2 gprops lprops
  2833. '(org-todo-list match)))
  2834. ((fboundp type)
  2835. (org-let2 gprops lprops
  2836. '(funcall type match)))
  2837. (t (error "Invalid type in command series")))))
  2838. (widen)
  2839. (let ((inhibit-read-only t))
  2840. (add-text-properties (point-min) (point-max)
  2841. `(org-series t org-series-redo-cmd ,redo)))
  2842. (setq org-agenda-redo-command redo)
  2843. (goto-char (point-min)))
  2844. (org-agenda-fit-window-to-buffer)
  2845. (org-let (nth 1 series) '(org-agenda-finalize)))
  2846. ;;;###autoload
  2847. (defmacro org-batch-agenda (cmd-key &rest parameters)
  2848. "Run an agenda command in batch mode and send the result to STDOUT.
  2849. If CMD-KEY is a string of length 1, it is used as a key in
  2850. `org-agenda-custom-commands' and triggers this command. If it is a
  2851. longer string it is used as a tags/todo match string.
  2852. Parameters are alternating variable names and values that will be bound
  2853. before running the agenda command."
  2854. (org-eval-in-environment (org-make-parameter-alist parameters)
  2855. (let (org-agenda-sticky)
  2856. (if (> (length cmd-key) 1)
  2857. (org-tags-view nil cmd-key)
  2858. (org-agenda nil cmd-key))))
  2859. (set-buffer org-agenda-buffer-name)
  2860. (princ (buffer-string)))
  2861. (defvar org-agenda-info nil)
  2862. ;;;###autoload
  2863. (defmacro org-batch-agenda-csv (cmd-key &rest parameters)
  2864. "Run an agenda command in batch mode and send the result to STDOUT.
  2865. If CMD-KEY is a string of length 1, it is used as a key in
  2866. `org-agenda-custom-commands' and triggers this command. If it is a
  2867. longer string it is used as a tags/todo match string.
  2868. Parameters are alternating variable names and values that will be bound
  2869. before running the agenda command.
  2870. The output gives a line for each selected agenda item. Each
  2871. item is a list of comma-separated values, like this:
  2872. category,head,type,todo,tags,date,time,extra,priority-l,priority-n
  2873. category The category of the item
  2874. head The headline, without TODO kwd, TAGS and PRIORITY
  2875. type The type of the agenda entry, can be
  2876. todo selected in TODO match
  2877. tagsmatch selected in tags match
  2878. diary imported from diary
  2879. deadline a deadline on given date
  2880. scheduled scheduled on given date
  2881. timestamp entry has timestamp on given date
  2882. closed entry was closed on given date
  2883. upcoming-deadline warning about deadline
  2884. past-scheduled forwarded scheduled item
  2885. block entry has date block including g. date
  2886. todo The todo keyword, if any
  2887. tags All tags including inherited ones, separated by colons
  2888. date The relevant date, like 2007-2-14
  2889. time The time, like 15:00-16:50
  2890. extra Sting with extra planning info
  2891. priority-l The priority letter if any was given
  2892. priority-n The computed numerical priority
  2893. agenda-day The day in the agenda where this is listed"
  2894. (org-eval-in-environment (append '((org-agenda-remove-tags t))
  2895. (org-make-parameter-alist parameters))
  2896. (if (> (length cmd-key) 2)
  2897. (org-tags-view nil cmd-key)
  2898. (org-agenda nil cmd-key)))
  2899. (set-buffer org-agenda-buffer-name)
  2900. (let* ((lines (org-split-string (buffer-string) "\n"))
  2901. line)
  2902. (while (setq line (pop lines))
  2903. (catch 'next
  2904. (if (not (get-text-property 0 'org-category line)) (throw 'next nil))
  2905. (setq org-agenda-info
  2906. (org-fix-agenda-info (text-properties-at 0 line)))
  2907. (princ
  2908. (mapconcat 'org-agenda-export-csv-mapper
  2909. '(org-category txt type todo tags date time extra
  2910. priority-letter priority agenda-day)
  2911. ","))
  2912. (princ "\n")))))
  2913. (defun org-fix-agenda-info (props)
  2914. "Make sure all properties on an agenda item have a canonical form.
  2915. This ensures the export commands can easily use it."
  2916. (let (tmp re)
  2917. (when (setq tmp (plist-get props 'tags))
  2918. (setq props (plist-put props 'tags (mapconcat 'identity tmp ":"))))
  2919. (when (setq tmp (plist-get props 'date))
  2920. (if (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
  2921. (let ((calendar-date-display-form '(year "-" month "-" day)))
  2922. '((format "%4d, %9s %2s, %4s" dayname monthname day year))
  2923. (setq tmp (calendar-date-string tmp)))
  2924. (setq props (plist-put props 'date tmp)))
  2925. (when (setq tmp (plist-get props 'day))
  2926. (if (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
  2927. (let ((calendar-date-display-form '(year "-" month "-" day)))
  2928. (setq tmp (calendar-date-string tmp)))
  2929. (setq props (plist-put props 'day tmp))
  2930. (setq props (plist-put props 'agenda-day tmp)))
  2931. (when (setq tmp (plist-get props 'txt))
  2932. (when (string-match "\\[#\\([A-Z0-9]\\)\\] ?" tmp)
  2933. (plist-put props 'priority-letter (match-string 1 tmp))
  2934. (setq tmp (replace-match "" t t tmp)))
  2935. (when (and (setq re (plist-get props 'org-todo-regexp))
  2936. (setq re (concat "\\`\\.*" re " ?"))
  2937. (string-match re tmp))
  2938. (plist-put props 'todo (match-string 1 tmp))
  2939. (setq tmp (replace-match "" t t tmp)))
  2940. (plist-put props 'txt tmp)))
  2941. props)
  2942. (defun org-agenda-export-csv-mapper (prop)
  2943. (let ((res (plist-get org-agenda-info prop)))
  2944. (setq res
  2945. (cond
  2946. ((not res) "")
  2947. ((stringp res) res)
  2948. (t (prin1-to-string res))))
  2949. (while (string-match "," res)
  2950. (setq res (replace-match ";" t t res)))
  2951. (org-trim res)))
  2952. ;;;###autoload
  2953. (defun org-store-agenda-views (&rest parameters)
  2954. "Store agenda views."
  2955. (interactive)
  2956. (eval (list 'org-batch-store-agenda-views)))
  2957. ;;;###autoload
  2958. (defmacro org-batch-store-agenda-views (&rest parameters)
  2959. "Run all custom agenda commands that have a file argument."
  2960. (let ((cmds (org-agenda-normalize-custom-commands org-agenda-custom-commands))
  2961. (pop-up-frames nil)
  2962. (dir default-directory)
  2963. (pars (org-make-parameter-alist parameters))
  2964. cmd thiscmdkey thiscmdcmd match files opts cmd-or-set bufname)
  2965. (save-window-excursion
  2966. (while cmds
  2967. (setq cmd (pop cmds)
  2968. thiscmdkey (car cmd)
  2969. thiscmdcmd (cdr cmd)
  2970. match (nth 2 thiscmdcmd)
  2971. bufname (if org-agenda-sticky
  2972. (or (and (stringp match)
  2973. (format "*Org Agenda(%s:%s)*" thiscmdkey match))
  2974. (format "*Org Agenda(%s)*" thiscmdkey))
  2975. org-agenda-buffer-name)
  2976. cmd-or-set (nth 2 cmd)
  2977. opts (nth (if (listp cmd-or-set) 3 4) cmd)
  2978. files (nth (if (listp cmd-or-set) 4 5) cmd))
  2979. (if (stringp files) (setq files (list files)))
  2980. (when files
  2981. (org-eval-in-environment (append org-agenda-exporter-settings
  2982. opts pars)
  2983. (org-agenda nil thiscmdkey))
  2984. (set-buffer bufname)
  2985. (while files
  2986. (org-eval-in-environment (append org-agenda-exporter-settings
  2987. opts pars)
  2988. (org-agenda-write (expand-file-name (pop files) dir) nil t bufname)))
  2989. (and (get-buffer bufname)
  2990. (kill-buffer bufname)))))))
  2991. (defvar org-agenda-current-span nil
  2992. "The current span used in the agenda view.") ; local variable in the agenda buffer
  2993. (defun org-agenda-mark-header-line (pos)
  2994. "Mark the line at POS as an agenda structure header."
  2995. (save-excursion
  2996. (goto-char pos)
  2997. (put-text-property (point-at-bol) (point-at-eol)
  2998. 'org-agenda-structural-header t)
  2999. (when org-agenda-title-append
  3000. (put-text-property (point-at-bol) (point-at-eol)
  3001. 'org-agenda-title-append org-agenda-title-append))))
  3002. (defvar org-mobile-creating-agendas) ; defined in org-mobile.el
  3003. (defvar org-agenda-write-buffer-name "Agenda View")
  3004. (defun org-agenda-write (file &optional open nosettings agenda-bufname)
  3005. "Write the current buffer (an agenda view) as a file.
  3006. Depending on the extension of the file name, plain text (.txt),
  3007. HTML (.html or .htm), PDF (.pdf) or Postscript (.ps) is produced.
  3008. If the extension is .ics, translate visible agenda into iCalendar
  3009. format. If the extension is .org, collect all subtrees
  3010. corresponding to the agenda entries and add them in an .org file.
  3011. With prefix argument OPEN, open the new file immediately. If
  3012. NOSETTINGS is given, do not scope the settings of
  3013. `org-agenda-exporter-settings' into the export commands. This is
  3014. used when the settings have already been scoped and we do not
  3015. wish to overrule other, higher priority settings. If
  3016. AGENDA-BUFFER-NAME is provided, use this as the buffer name for
  3017. the agenda to write."
  3018. (interactive "FWrite agenda to file: \nP")
  3019. (if (or (not (file-writable-p file))
  3020. (and (file-exists-p file)
  3021. (if (org-called-interactively-p 'any)
  3022. (not (y-or-n-p (format "Overwrite existing file %s? " file))))))
  3023. (user-error "Cannot write agenda to file %s" file))
  3024. (org-let (if nosettings nil org-agenda-exporter-settings)
  3025. '(save-excursion
  3026. (save-window-excursion
  3027. (let ((bs (copy-sequence (buffer-string))) beg content)
  3028. (with-temp-buffer
  3029. (rename-buffer org-agenda-write-buffer-name t)
  3030. (set-buffer-modified-p nil)
  3031. (insert bs)
  3032. (org-agenda-remove-marked-text 'invisible 'org-filtered)
  3033. (run-hooks 'org-agenda-before-write-hook)
  3034. (cond
  3035. ((org-bound-and-true-p org-mobile-creating-agendas)
  3036. (org-mobile-write-agenda-for-mobile file))
  3037. ((string-match "\\.org\\'" file)
  3038. (let (content p m message-log-max)
  3039. (goto-char (point-min))
  3040. (while (setq p (next-single-property-change (point) 'org-hd-marker nil))
  3041. (goto-char p)
  3042. (setq m (get-text-property (point) 'org-hd-marker))
  3043. (when m
  3044. (push (save-excursion
  3045. (set-buffer (marker-buffer m))
  3046. (goto-char m)
  3047. (org-copy-subtree 1 nil t t)
  3048. org-subtree-clip)
  3049. content)))
  3050. (find-file file)
  3051. (erase-buffer)
  3052. (dolist (s content) (org-paste-subtree 1 s))
  3053. (write-file file)
  3054. (kill-buffer (current-buffer))
  3055. (message "Org file written to %s" file)))
  3056. ((string-match "\\.html?\\'" file)
  3057. (require 'htmlize)
  3058. (set-buffer (htmlize-buffer (current-buffer)))
  3059. (when org-agenda-export-html-style
  3060. ;; replace <style> section with org-agenda-export-html-style
  3061. (goto-char (point-min))
  3062. (kill-region (- (search-forward "<style") 6)
  3063. (search-forward "</style>"))
  3064. (insert org-agenda-export-html-style))
  3065. (write-file file)
  3066. (kill-buffer (current-buffer))
  3067. (message "HTML written to %s" file))
  3068. ((string-match "\\.ps\\'" file)
  3069. (require 'ps-print)
  3070. (ps-print-buffer-with-faces file)
  3071. (message "Postscript written to %s" file))
  3072. ((string-match "\\.pdf\\'" file)
  3073. (require 'ps-print)
  3074. (ps-print-buffer-with-faces
  3075. (concat (file-name-sans-extension file) ".ps"))
  3076. (call-process "ps2pdf" nil nil nil
  3077. (expand-file-name
  3078. (concat (file-name-sans-extension file) ".ps"))
  3079. (expand-file-name file))
  3080. (delete-file (concat (file-name-sans-extension file) ".ps"))
  3081. (message "PDF written to %s" file))
  3082. ((string-match "\\.ics\\'" file)
  3083. (require 'ox-icalendar)
  3084. (org-icalendar-export-current-agenda (expand-file-name file)))
  3085. (t
  3086. (let ((bs (buffer-string)))
  3087. (find-file file)
  3088. (erase-buffer)
  3089. (insert bs)
  3090. (save-buffer 0)
  3091. (kill-buffer (current-buffer))
  3092. (message "Plain text written to %s" file))))))))
  3093. (set-buffer (or agenda-bufname
  3094. (and (org-called-interactively-p 'any) (buffer-name))
  3095. org-agenda-buffer-name)))
  3096. (when open (org-open-file file)))
  3097. (defun org-agenda-remove-marked-text (property &optional value)
  3098. "Delete all text marked with VALUE of PROPERTY.
  3099. VALUE defaults to t."
  3100. (let (beg)
  3101. (setq value (or value t))
  3102. (while (setq beg (text-property-any (point-min) (point-max)
  3103. property value))
  3104. (delete-region
  3105. beg (or (next-single-property-change beg property)
  3106. (point-max))))))
  3107. (defun org-agenda-add-entry-text ()
  3108. "Add entry text to agenda lines.
  3109. This will add a maximum of `org-agenda-add-entry-text-maxlines' lines of the
  3110. entry text following headings shown in the agenda.
  3111. Drawers will be excluded, also the line with scheduling/deadline info."
  3112. (when (and (> org-agenda-add-entry-text-maxlines 0)
  3113. (not (org-bound-and-true-p org-mobile-creating-agendas)))
  3114. (let (m txt)
  3115. (goto-char (point-min))
  3116. (while (not (eobp))
  3117. (if (not (setq m (org-get-at-bol 'org-hd-marker)))
  3118. (beginning-of-line 2)
  3119. (setq txt (org-agenda-get-some-entry-text
  3120. m org-agenda-add-entry-text-maxlines " > "))
  3121. (end-of-line 1)
  3122. (if (string-match "\\S-" txt)
  3123. (insert "\n" txt)
  3124. (or (eobp) (forward-char 1))))))))
  3125. (defun org-agenda-get-some-entry-text (marker n-lines &optional indent
  3126. &rest keep)
  3127. "Extract entry text from MARKER, at most N-LINES lines.
  3128. This will ignore drawers etc, just get the text.
  3129. If INDENT is given, prefix every line with this string. If KEEP is
  3130. given, it is a list of symbols, defining stuff that should not be
  3131. removed from the entry content. Currently only `planning' is allowed here."
  3132. (let (txt drawer-re kwd-time-re ind)
  3133. (save-excursion
  3134. (with-current-buffer (marker-buffer marker)
  3135. (if (not (derived-mode-p 'org-mode))
  3136. (setq txt "")
  3137. (save-excursion
  3138. (save-restriction
  3139. (widen)
  3140. (goto-char marker)
  3141. (end-of-line 1)
  3142. (setq txt (buffer-substring
  3143. (min (1+ (point)) (point-max))
  3144. (progn (outline-next-heading) (point)))
  3145. drawer-re org-drawer-regexp
  3146. kwd-time-re (concat "^[ \t]*" org-keyword-time-regexp
  3147. ".*\n?"))
  3148. (with-temp-buffer
  3149. (insert txt)
  3150. (when org-agenda-add-entry-text-descriptive-links
  3151. (goto-char (point-min))
  3152. (while (org-activate-bracket-links (point-max))
  3153. (add-text-properties (match-beginning 0) (match-end 0)
  3154. '(face org-link))))
  3155. (goto-char (point-min))
  3156. (while (re-search-forward org-bracket-link-regexp (point-max) t)
  3157. (set-text-properties (match-beginning 0) (match-end 0)
  3158. nil))
  3159. (goto-char (point-min))
  3160. (while (re-search-forward drawer-re nil t)
  3161. (delete-region
  3162. (match-beginning 0)
  3163. (progn (re-search-forward
  3164. "^[ \t]*:END:.*\n?" nil 'move)
  3165. (point))))
  3166. (unless (member 'planning keep)
  3167. (goto-char (point-min))
  3168. (while (re-search-forward kwd-time-re nil t)
  3169. (replace-match "")))
  3170. (goto-char (point-min))
  3171. (when org-agenda-entry-text-exclude-regexps
  3172. (let ((re-list org-agenda-entry-text-exclude-regexps) re)
  3173. (while (setq re (pop re-list))
  3174. (goto-char (point-min))
  3175. (while (re-search-forward re nil t)
  3176. (replace-match "")))))
  3177. (goto-char (point-max))
  3178. (skip-chars-backward " \t\n")
  3179. (if (looking-at "[ \t\n]+\\'") (replace-match ""))
  3180. ;; find and remove min common indentation
  3181. (goto-char (point-min))
  3182. (untabify (point-min) (point-max))
  3183. (setq ind (org-get-indentation))
  3184. (while (not (eobp))
  3185. (unless (looking-at "[ \t]*$")
  3186. (setq ind (min ind (org-get-indentation))))
  3187. (beginning-of-line 2))
  3188. (goto-char (point-min))
  3189. (while (not (eobp))
  3190. (unless (looking-at "[ \t]*$")
  3191. (move-to-column ind)
  3192. (delete-region (point-at-bol) (point)))
  3193. (beginning-of-line 2))
  3194. (run-hooks 'org-agenda-entry-text-cleanup-hook)
  3195. (goto-char (point-min))
  3196. (when indent
  3197. (while (and (not (eobp)) (re-search-forward "^" nil t))
  3198. (replace-match indent t t)))
  3199. (goto-char (point-min))
  3200. (while (looking-at "[ \t]*\n") (replace-match ""))
  3201. (goto-char (point-max))
  3202. (when (> (org-current-line)
  3203. n-lines)
  3204. (org-goto-line (1+ n-lines))
  3205. (backward-char 1))
  3206. (setq txt (buffer-substring (point-min) (point)))))))))
  3207. txt))
  3208. (defun org-check-for-org-mode ()
  3209. "Make sure current buffer is in org-mode. Error if not."
  3210. (or (derived-mode-p 'org-mode)
  3211. (error "Cannot execute org-mode agenda command on buffer in %s"
  3212. major-mode)))
  3213. ;;; Agenda prepare and finalize
  3214. (defvar org-agenda-multi nil) ; dynamically scoped
  3215. (defvar org-agenda-pre-window-conf nil)
  3216. (defvar org-agenda-columns-active nil)
  3217. (defvar org-agenda-name nil)
  3218. (defvar org-agenda-tag-filter nil)
  3219. (defvar org-agenda-category-filter nil)
  3220. (defvar org-agenda-regexp-filter nil)
  3221. (defvar org-agenda-effort-filter nil)
  3222. (defvar org-agenda-top-headline-filter nil)
  3223. (defvar org-agenda-tag-filter-preset nil
  3224. "A preset of the tags filter used for secondary agenda filtering.
  3225. This must be a list of strings, each string must be a single tag preceded
  3226. by \"+\" or \"-\".
  3227. This variable should not be set directly, but agenda custom commands can
  3228. bind it in the options section. The preset filter is a global property of
  3229. the entire agenda view. In a block agenda, it will not work reliably to
  3230. define a filter for one of the individual blocks. You need to set it in
  3231. the global options and expect it to be applied to the entire view.")
  3232. (defvar org-agenda-category-filter-preset nil
  3233. "A preset of the category filter used for secondary agenda filtering.
  3234. This must be a list of strings, each string must be a single category
  3235. preceded by \"+\" or \"-\".
  3236. This variable should not be set directly, but agenda custom commands can
  3237. bind it in the options section. The preset filter is a global property of
  3238. the entire agenda view. In a block agenda, it will not work reliably to
  3239. define a filter for one of the individual blocks. You need to set it in
  3240. the global options and expect it to be applied to the entire view.")
  3241. (defvar org-agenda-regexp-filter-preset nil
  3242. "A preset of the regexp filter used for secondary agenda filtering.
  3243. This must be a list of strings, each string must be a single regexp
  3244. preceded by \"+\" or \"-\".
  3245. This variable should not be set directly, but agenda custom commands can
  3246. bind it in the options section. The preset filter is a global property of
  3247. the entire agenda view. In a block agenda, it will not work reliably to
  3248. define a filter for one of the individual blocks. You need to set it in
  3249. the global options and expect it to be applied to the entire view.")
  3250. (defvar org-agenda-effort-filter-preset nil
  3251. "A preset of the effort condition used for secondary agenda filtering.
  3252. This must be a list of strings, each string must be a single regexp
  3253. preceded by \"+\" or \"-\".
  3254. This variable should not be set directly, but agenda custom commands can
  3255. bind it in the options section. The preset filter is a global property of
  3256. the entire agenda view. In a block agenda, it will not work reliably to
  3257. define a filter for one of the individual blocks. You need to set it in
  3258. the global options and expect it to be applied to the entire view.")
  3259. (defun org-agenda-use-sticky-p ()
  3260. "Return non-nil if an agenda buffer named
  3261. `org-agenda-buffer-name' exists and should be shown instead of
  3262. generating a new one."
  3263. (and
  3264. ;; turned off by user
  3265. org-agenda-sticky
  3266. ;; For multi-agenda buffer already exists
  3267. (not org-agenda-multi)
  3268. ;; buffer found
  3269. (get-buffer org-agenda-buffer-name)
  3270. ;; C-u parameter is same as last call
  3271. (with-current-buffer (get-buffer org-agenda-buffer-name)
  3272. (and
  3273. (equal current-prefix-arg
  3274. org-agenda-last-prefix-arg)
  3275. ;; In case user turned stickiness on, while having existing
  3276. ;; Agenda buffer active, don't reuse that buffer, because it
  3277. ;; does not have org variables local
  3278. org-agenda-this-buffer-is-sticky))))
  3279. (defun org-agenda-prepare-window (abuf filter-alist)
  3280. "Setup agenda buffer in the window.
  3281. ABUF is the buffer for the agenda window.
  3282. FILTER-ALIST is an alist of filters we need to apply when
  3283. `org-agenda-persistent-filter' is non-nil."
  3284. (let* ((awin (get-buffer-window abuf)) wconf)
  3285. (cond
  3286. ((equal (current-buffer) abuf) nil)
  3287. (awin (select-window awin))
  3288. ((not (setq wconf (current-window-configuration))))
  3289. ((equal org-agenda-window-setup 'current-window)
  3290. (org-pop-to-buffer-same-window abuf))
  3291. ((equal org-agenda-window-setup 'other-window)
  3292. (org-switch-to-buffer-other-window abuf))
  3293. ((equal org-agenda-window-setup 'other-frame)
  3294. (switch-to-buffer-other-frame abuf))
  3295. ((eq org-agenda-window-setup 'only-window)
  3296. (delete-other-windows)
  3297. (org-pop-to-buffer-same-window abuf))
  3298. ((equal org-agenda-window-setup 'reorganize-frame)
  3299. (delete-other-windows)
  3300. (org-switch-to-buffer-other-window abuf)))
  3301. (setq org-agenda-tag-filter (cdr (assoc 'tag filter-alist)))
  3302. (setq org-agenda-category-filter (cdr (assoc 'cat filter-alist)))
  3303. (setq org-agenda-effort-filter (cdr (assoc 'effort filter-alist)))
  3304. (setq org-agenda-regexp-filter (cdr (assoc 're filter-alist)))
  3305. ;; Additional test in case agenda is invoked from within agenda
  3306. ;; buffer via elisp link.
  3307. (unless (equal (current-buffer) abuf)
  3308. (org-pop-to-buffer-same-window abuf))
  3309. (setq org-agenda-pre-window-conf
  3310. (or wconf org-agenda-pre-window-conf))))
  3311. (defun org-agenda-prepare (&optional name)
  3312. (let ((filter-alist (if org-agenda-persistent-filter
  3313. (with-current-buffer
  3314. (get-buffer-create org-agenda-buffer-name)
  3315. (list `(tag . ,org-agenda-tag-filter)
  3316. `(re . ,org-agenda-regexp-filter)
  3317. `(effort . ,org-agenda-effort-filter)
  3318. `(cat . ,org-agenda-category-filter))))))
  3319. (if (org-agenda-use-sticky-p)
  3320. (progn
  3321. (put 'org-agenda-tag-filter :preset-filter nil)
  3322. (put 'org-agenda-category-filter :preset-filter nil)
  3323. (put 'org-agenda-regexp-filter :preset-filter nil)
  3324. ;; Popup existing buffer
  3325. (org-agenda-prepare-window (get-buffer org-agenda-buffer-name)
  3326. filter-alist)
  3327. (message "Sticky Agenda buffer, use `r' to refresh")
  3328. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  3329. (throw 'exit "Sticky Agenda buffer, use `r' to refresh"))
  3330. (setq org-todo-keywords-for-agenda nil)
  3331. (put 'org-agenda-tag-filter :preset-filter
  3332. org-agenda-tag-filter-preset)
  3333. (put 'org-agenda-category-filter :preset-filter
  3334. org-agenda-category-filter-preset)
  3335. (put 'org-agenda-regexp-filter :preset-filter
  3336. org-agenda-regexp-filter-preset)
  3337. (put 'org-agenda-effort-filter :preset-filter
  3338. org-agenda-effort-filter-preset)
  3339. (if org-agenda-multi
  3340. (progn
  3341. (setq buffer-read-only nil)
  3342. (goto-char (point-max))
  3343. (unless (or (bobp) org-agenda-compact-blocks
  3344. (not org-agenda-block-separator))
  3345. (insert "\n"
  3346. (if (stringp org-agenda-block-separator)
  3347. org-agenda-block-separator
  3348. (make-string (window-width) org-agenda-block-separator))
  3349. "\n"))
  3350. (narrow-to-region (point) (point-max)))
  3351. (setq org-done-keywords-for-agenda nil)
  3352. ;; Setting any org variables that are in org-agenda-local-vars
  3353. ;; list need to be done after the prepare call
  3354. (org-agenda-prepare-window
  3355. (get-buffer-create org-agenda-buffer-name) filter-alist)
  3356. (setq buffer-read-only nil)
  3357. (org-agenda-reset-markers)
  3358. (let ((inhibit-read-only t)) (erase-buffer))
  3359. (org-agenda-mode)
  3360. (setq org-agenda-buffer (current-buffer))
  3361. (setq org-agenda-contributing-files nil)
  3362. (setq org-agenda-columns-active nil)
  3363. (org-agenda-prepare-buffers (org-agenda-files nil 'ifmode))
  3364. (setq org-todo-keywords-for-agenda
  3365. (org-uniquify org-todo-keywords-for-agenda))
  3366. (setq org-done-keywords-for-agenda
  3367. (org-uniquify org-done-keywords-for-agenda))
  3368. (setq org-agenda-last-prefix-arg current-prefix-arg)
  3369. (setq org-agenda-this-buffer-name org-agenda-buffer-name)
  3370. (and name (not org-agenda-name)
  3371. (setq-local org-agenda-name name)))
  3372. (setq buffer-read-only nil))))
  3373. (defvar org-agenda-overriding-columns-format) ; From org-colview.el
  3374. (defun org-agenda-finalize ()
  3375. "Finishing touch for the agenda buffer, called just before displaying it."
  3376. (unless org-agenda-multi
  3377. (save-excursion
  3378. (let ((inhibit-read-only t))
  3379. (goto-char (point-min))
  3380. (save-excursion
  3381. (while (org-activate-bracket-links (point-max))
  3382. (add-text-properties (match-beginning 0) (match-end 0)
  3383. '(face org-link))))
  3384. (save-excursion
  3385. (while (org-activate-plain-links (point-max))
  3386. (add-text-properties (match-beginning 0) (match-end 0)
  3387. '(face org-link))))
  3388. (unless (eq org-agenda-remove-tags t)
  3389. (org-agenda-align-tags))
  3390. (unless org-agenda-with-colors
  3391. (remove-text-properties (point-min) (point-max) '(face nil)))
  3392. (if (and (boundp 'org-agenda-overriding-columns-format)
  3393. org-agenda-overriding-columns-format)
  3394. (setq-local org-agenda-overriding-columns-format
  3395. org-agenda-overriding-columns-format))
  3396. (if (and (boundp 'org-agenda-view-columns-initially)
  3397. org-agenda-view-columns-initially)
  3398. (org-agenda-columns))
  3399. (when org-agenda-fontify-priorities
  3400. (org-agenda-fontify-priorities))
  3401. (when (and org-agenda-dim-blocked-tasks org-blocker-hook)
  3402. (org-agenda-dim-blocked-tasks))
  3403. (org-agenda-mark-clocking-task)
  3404. (when org-agenda-entry-text-mode
  3405. (org-agenda-entry-text-hide)
  3406. (org-agenda-entry-text-show))
  3407. (if (and (functionp 'org-habit-insert-consistency-graphs)
  3408. (save-excursion (next-single-property-change (point-min) 'org-habit-p)))
  3409. (org-habit-insert-consistency-graphs))
  3410. (setq org-agenda-type (org-get-at-bol 'org-agenda-type))
  3411. (unless (or (eq org-agenda-show-inherited-tags 'always)
  3412. (and (listp org-agenda-show-inherited-tags)
  3413. (memq org-agenda-type org-agenda-show-inherited-tags))
  3414. (and (eq org-agenda-show-inherited-tags t)
  3415. (or (eq org-agenda-use-tag-inheritance t)
  3416. (and (listp org-agenda-use-tag-inheritance)
  3417. (not (memq org-agenda-type
  3418. org-agenda-use-tag-inheritance))))))
  3419. (let (mrk)
  3420. (save-excursion
  3421. (goto-char (point-min))
  3422. (while (equal (forward-line) 0)
  3423. (when (setq mrk (get-text-property (point) 'org-hd-marker))
  3424. (put-text-property (point-at-bol) (point-at-eol)
  3425. 'tags (org-with-point-at mrk
  3426. (delete-dups
  3427. (mapcar 'downcase (org-get-tags-at))))))))))
  3428. (run-hooks 'org-agenda-finalize-hook)
  3429. (when org-agenda-top-headline-filter
  3430. (org-agenda-filter-top-headline-apply
  3431. org-agenda-top-headline-filter))
  3432. (when org-agenda-tag-filter
  3433. (org-agenda-filter-apply org-agenda-tag-filter 'tag t))
  3434. (when (get 'org-agenda-tag-filter :preset-filter)
  3435. (org-agenda-filter-apply
  3436. (get 'org-agenda-tag-filter :preset-filter) 'tag t))
  3437. (when org-agenda-category-filter
  3438. (org-agenda-filter-apply org-agenda-category-filter 'category))
  3439. (when (get 'org-agenda-category-filter :preset-filter)
  3440. (org-agenda-filter-apply
  3441. (get 'org-agenda-category-filter :preset-filter) 'category))
  3442. (when org-agenda-regexp-filter
  3443. (org-agenda-filter-apply org-agenda-regexp-filter 'regexp))
  3444. (when (get 'org-agenda-regexp-filter :preset-filter)
  3445. (org-agenda-filter-apply
  3446. (get 'org-agenda-regexp-filter :preset-filter) 'regexp))
  3447. (when org-agenda-effort-filter
  3448. (org-agenda-filter-apply org-agenda-effort-filter 'effort))
  3449. (when (get 'org-agenda-effort-filter :preset-filter)
  3450. (org-agenda-filter-apply
  3451. (get 'org-agenda-effort-filter :preset-filter) 'effort))
  3452. (org-add-hook 'kill-buffer-hook 'org-agenda-reset-markers 'append 'local)))))
  3453. (defun org-agenda-mark-clocking-task ()
  3454. "Mark the current clock entry in the agenda if it is present."
  3455. ;; We need to widen when `org-agenda-finalize' is called from
  3456. ;; `org-agenda-change-all-lines' (e.g. in `org-agenda-clock-in')
  3457. (when org-clock-current-task
  3458. (save-restriction
  3459. (widen)
  3460. (org-agenda-unmark-clocking-task)
  3461. (when (marker-buffer org-clock-hd-marker)
  3462. (save-excursion
  3463. (goto-char (point-min))
  3464. (let (s ov)
  3465. (while (setq s (next-single-property-change (point) 'org-hd-marker))
  3466. (goto-char s)
  3467. (when (equal (org-get-at-bol 'org-hd-marker)
  3468. org-clock-hd-marker)
  3469. (setq ov (make-overlay (point-at-bol) (1+ (point-at-eol))))
  3470. (overlay-put ov 'type 'org-agenda-clocking)
  3471. (overlay-put ov 'face 'org-agenda-clocking)
  3472. (overlay-put ov 'help-echo
  3473. "The clock is running in this item")))))))))
  3474. (defun org-agenda-unmark-clocking-task ()
  3475. "Unmark the current clocking task."
  3476. (mapc (lambda (o)
  3477. (if (eq (overlay-get o 'type) 'org-agenda-clocking)
  3478. (delete-overlay o)))
  3479. (overlays-in (point-min) (point-max))))
  3480. (defun org-agenda-fontify-priorities ()
  3481. "Make highest priority lines bold, and lowest italic."
  3482. (interactive)
  3483. (mapc (lambda (o) (if (eq (overlay-get o 'org-type) 'org-priority)
  3484. (delete-overlay o)))
  3485. (overlays-in (point-min) (point-max)))
  3486. (save-excursion
  3487. (let (b e p ov h l)
  3488. (goto-char (point-min))
  3489. (while (re-search-forward "\\[#\\(.\\)\\]" nil t)
  3490. (setq h (or (get-char-property (point) 'org-highest-priority)
  3491. org-highest-priority)
  3492. l (or (get-char-property (point) 'org-lowest-priority)
  3493. org-lowest-priority)
  3494. p (string-to-char (match-string 1))
  3495. b (match-beginning 0)
  3496. e (if (eq org-agenda-fontify-priorities 'cookies)
  3497. (match-end 0)
  3498. (point-at-eol))
  3499. ov (make-overlay b e))
  3500. (overlay-put
  3501. ov 'face
  3502. (let ((special-face
  3503. (cond ((org-face-from-face-or-color
  3504. 'priority nil
  3505. (cdr (assoc p org-priority-faces))))
  3506. ((and (listp org-agenda-fontify-priorities)
  3507. (org-face-from-face-or-color
  3508. 'priority nil
  3509. (cdr (assoc p org-agenda-fontify-priorities)))))
  3510. ((equal p l) 'italic)
  3511. ((equal p h) 'bold))))
  3512. (if special-face (list special-face 'org-priority) 'org-priority)))
  3513. (overlay-put ov 'org-type 'org-priority)))))
  3514. (defvar org-depend-tag-blocked)
  3515. (defun org-agenda-dim-blocked-tasks (&optional invisible)
  3516. "Dim currently blocked TODOs in the agenda display.
  3517. When INVISIBLE is non-nil, hide currently blocked TODO instead of
  3518. dimming them."
  3519. (interactive "P")
  3520. (when (org-called-interactively-p 'interactive)
  3521. (message "Dim or hide blocked tasks..."))
  3522. (dolist (o (overlays-in (point-min) (point-max)))
  3523. (when (eq (overlay-get o 'org-type) 'org-blocked-todo)
  3524. (delete-overlay o)))
  3525. (save-excursion
  3526. (let ((inhibit-read-only t)
  3527. (org-depend-tag-blocked nil)
  3528. org-blocked-by-checkboxes)
  3529. (goto-char (point-min))
  3530. (while (let ((pos (text-property-not-all
  3531. (point) (point-max) 'todo-state nil)))
  3532. (when pos (goto-char pos)))
  3533. (setq org-blocked-by-checkboxes nil)
  3534. (let ((marker (org-get-at-bol 'org-hd-marker)))
  3535. (when (and (markerp marker)
  3536. (with-current-buffer (marker-buffer marker)
  3537. (save-excursion (goto-char marker)
  3538. (org-entry-blocked-p))))
  3539. ;; Entries blocked by checkboxes cannot be made invisible.
  3540. ;; See `org-agenda-dim-blocked-tasks' for details.
  3541. (let* ((really-invisible
  3542. (and (not org-blocked-by-checkboxes)
  3543. (or invisible (eq org-agenda-dim-blocked-tasks
  3544. 'invisible))))
  3545. (ov (make-overlay (if really-invisible (line-end-position 0)
  3546. (line-beginning-position))
  3547. (line-end-position))))
  3548. (if really-invisible (overlay-put ov 'invisible t)
  3549. (overlay-put ov 'face 'org-agenda-dimmed-todo-face))
  3550. (overlay-put ov 'org-type 'org-blocked-todo))))
  3551. (forward-line))))
  3552. (when (org-called-interactively-p 'interactive)
  3553. (message "Dim or hide blocked tasks...done")))
  3554. (defvar org-agenda-skip-function nil
  3555. "Function to be called at each match during agenda construction.
  3556. If this function returns nil, the current match should not be skipped.
  3557. Otherwise, the function must return a position from where the search
  3558. should be continued.
  3559. This may also be a Lisp form, it will be evaluated.
  3560. Never set this variable using `setq' or so, because then it will apply
  3561. to all future agenda commands. If you do want a global skipping condition,
  3562. use the option `org-agenda-skip-function-global' instead.
  3563. The correct usage for `org-agenda-skip-function' is to bind it with
  3564. `let' to scope it dynamically into the agenda-constructing command.
  3565. A good way to set it is through options in `org-agenda-custom-commands'.")
  3566. (defun org-agenda-skip ()
  3567. "Throw to `:skip' in places that should be skipped.
  3568. Also moves point to the end of the skipped region, so that search can
  3569. continue from there."
  3570. (let ((p (point-at-bol)) to)
  3571. (when (or
  3572. (save-excursion (goto-char p) (looking-at comment-start-skip))
  3573. (and org-agenda-skip-archived-trees (not org-agenda-archives-mode)
  3574. (get-text-property p :org-archived)
  3575. (org-end-of-subtree t))
  3576. (and org-agenda-skip-comment-trees
  3577. (get-text-property p :org-comment)
  3578. (org-end-of-subtree t))
  3579. (and (setq to (or (org-agenda-skip-eval org-agenda-skip-function-global)
  3580. (org-agenda-skip-eval org-agenda-skip-function)))
  3581. (goto-char to))
  3582. (org-in-src-block-p t))
  3583. (throw :skip t))))
  3584. (defun org-agenda-skip-eval (form)
  3585. "If FORM is a function or a list, call (or eval) it and return the result.
  3586. `save-excursion' and `save-match-data' are wrapped around the call, so point
  3587. and match data are returned to the previous state no matter what these
  3588. functions do."
  3589. (let (fp)
  3590. (and form
  3591. (or (setq fp (functionp form))
  3592. (consp form))
  3593. (save-excursion
  3594. (save-match-data
  3595. (if fp
  3596. (funcall form)
  3597. (eval form)))))))
  3598. (defvar org-agenda-markers nil
  3599. "List of all currently active markers created by `org-agenda'.")
  3600. (defvar org-agenda-last-marker-time (org-float-time)
  3601. "Creation time of the last agenda marker.")
  3602. (defun org-agenda-new-marker (&optional pos)
  3603. "Return a new agenda marker.
  3604. Maker is at point, or at POS if non-nil. Org mode keeps a list of
  3605. these markers and resets them when they are no longer in use."
  3606. (let ((m (copy-marker (or pos (point)) t)))
  3607. (setq org-agenda-last-marker-time (org-float-time))
  3608. (if org-agenda-buffer
  3609. (with-current-buffer org-agenda-buffer
  3610. (push m org-agenda-markers))
  3611. (push m org-agenda-markers))
  3612. m))
  3613. (defun org-agenda-reset-markers ()
  3614. "Reset markers created by `org-agenda'."
  3615. (while org-agenda-markers
  3616. (move-marker (pop org-agenda-markers) nil)))
  3617. (defun org-agenda-save-markers-for-cut-and-paste (beg end)
  3618. "Save relative positions of markers in region.
  3619. This check for agenda markers in all agenda buffers currently active."
  3620. (dolist (buf (buffer-list))
  3621. (with-current-buffer buf
  3622. (when (eq major-mode 'org-agenda-mode)
  3623. (mapc (lambda (m) (org-check-and-save-marker m beg end))
  3624. org-agenda-markers)))))
  3625. ;;; Entry text mode
  3626. (defun org-agenda-entry-text-show-here ()
  3627. "Add some text from the entry as context to the current line."
  3628. (let (m txt o)
  3629. (setq m (org-get-at-bol 'org-hd-marker))
  3630. (unless (marker-buffer m)
  3631. (error "No marker points to an entry here"))
  3632. (setq txt (concat "\n" (org-no-properties
  3633. (org-agenda-get-some-entry-text
  3634. m org-agenda-entry-text-maxlines
  3635. org-agenda-entry-text-leaders))))
  3636. (when (string-match "\\S-" txt)
  3637. (setq o (make-overlay (point-at-bol) (point-at-eol)))
  3638. (overlay-put o 'evaporate t)
  3639. (overlay-put o 'org-overlay-type 'agenda-entry-content)
  3640. (overlay-put o 'after-string txt))))
  3641. (defun org-agenda-entry-text-show ()
  3642. "Add entry context for all agenda lines."
  3643. (interactive)
  3644. (save-excursion
  3645. (goto-char (point-max))
  3646. (beginning-of-line 1)
  3647. (while (not (bobp))
  3648. (when (org-get-at-bol 'org-hd-marker)
  3649. (org-agenda-entry-text-show-here))
  3650. (beginning-of-line 0))))
  3651. (defun org-agenda-entry-text-hide ()
  3652. "Remove any shown entry context."
  3653. (delq nil
  3654. (mapcar (lambda (o)
  3655. (if (eq (overlay-get o 'org-overlay-type)
  3656. 'agenda-entry-content)
  3657. (progn (delete-overlay o) t)))
  3658. (overlays-in (point-min) (point-max)))))
  3659. (defun org-agenda-get-day-face (date)
  3660. "Return the face DATE should be displayed with."
  3661. (cond ((and (functionp org-agenda-day-face-function)
  3662. (funcall org-agenda-day-face-function date)))
  3663. ((org-agenda-today-p date) 'org-agenda-date-today)
  3664. ((memq (calendar-day-of-week date) org-agenda-weekend-days)
  3665. 'org-agenda-date-weekend)
  3666. (t 'org-agenda-date)))
  3667. ;;; Agenda timeline
  3668. (defvar org-agenda-only-exact-dates nil) ; dynamically scoped
  3669. (defvar org-agenda-show-log-scoped) ;; dynamically scope in `org-timeline' or `org-agenda-list'
  3670. (defun org-timeline (&optional dotodo)
  3671. "Show a time-sorted view of the entries in the current org file.
  3672. Only entries with a time stamp of today or later will be listed. With
  3673. \\[universal-argument] prefix, all unfinished TODO items will also be shown,
  3674. under the current date.
  3675. If the buffer contains an active region, only check the region for
  3676. dates."
  3677. (interactive "P")
  3678. (let* ((dopast t)
  3679. (org-agenda-show-log-scoped org-agenda-show-log)
  3680. (org-agenda-show-log org-agenda-show-log-scoped)
  3681. (entry (buffer-file-name (or (buffer-base-buffer (current-buffer))
  3682. (current-buffer))))
  3683. (date (calendar-current-date))
  3684. (beg (if (org-region-active-p) (region-beginning) (point-min)))
  3685. (end (if (org-region-active-p) (region-end) (point-max)))
  3686. (day-numbers (org-get-all-dates
  3687. beg end 'no-ranges
  3688. t org-agenda-show-log-scoped ; always include today
  3689. org-timeline-show-empty-dates))
  3690. (org-deadline-warning-days 0)
  3691. (org-agenda-only-exact-dates t)
  3692. (today (org-today))
  3693. (past t)
  3694. args
  3695. s e rtn d emptyp)
  3696. (setq org-agenda-redo-command
  3697. (list 'let
  3698. (list (list 'org-agenda-show-log 'org-agenda-show-log))
  3699. (list 'org-switch-to-buffer-other-window (current-buffer))
  3700. (list 'org-timeline (list 'quote dotodo))))
  3701. (put 'org-agenda-redo-command 'org-lprops nil)
  3702. (if (not dopast)
  3703. ;; Remove past dates from the list of dates.
  3704. (setq day-numbers (delq nil (mapcar (lambda(x)
  3705. (if (>= x today) x nil))
  3706. day-numbers))))
  3707. (org-agenda-prepare (concat "Timeline " (file-name-nondirectory entry)))
  3708. (org-compile-prefix-format 'timeline)
  3709. (org-set-sorting-strategy 'timeline)
  3710. (if org-agenda-show-log-scoped (push :closed args))
  3711. (push :timestamp args)
  3712. (push :deadline args)
  3713. (push :scheduled args)
  3714. (push :sexp args)
  3715. (if dotodo (push :todo args))
  3716. (insert "Timeline of file " entry "\n")
  3717. (add-text-properties (point-min) (point)
  3718. (list 'face 'org-agenda-structure))
  3719. (org-agenda-mark-header-line (point-min))
  3720. (while (setq d (pop day-numbers))
  3721. (if (and (listp d) (eq (car d) :omitted))
  3722. (progn
  3723. (setq s (point))
  3724. (insert (format "\n[... %d empty days omitted]\n\n" (cdr d)))
  3725. (put-text-property s (1- (point)) 'face 'org-agenda-structure))
  3726. (if (listp d) (setq d (car d) emptyp t) (setq emptyp nil))
  3727. (if (and (>= d today)
  3728. dopast
  3729. past)
  3730. (progn
  3731. (setq past nil)
  3732. (insert (make-string 79 ?-) "\n")))
  3733. (setq date (calendar-gregorian-from-absolute d))
  3734. (setq s (point))
  3735. (setq rtn (and (not emptyp)
  3736. (apply 'org-agenda-get-day-entries entry
  3737. date args)))
  3738. (if (or rtn (equal d today) org-timeline-show-empty-dates)
  3739. (progn
  3740. (insert
  3741. (if (stringp org-agenda-format-date)
  3742. (format-time-string org-agenda-format-date
  3743. (org-time-from-absolute date))
  3744. (funcall org-agenda-format-date date))
  3745. "\n")
  3746. (put-text-property s (1- (point)) 'face
  3747. (org-agenda-get-day-face date))
  3748. (put-text-property s (1- (point)) 'org-date-line t)
  3749. (put-text-property s (1- (point)) 'org-agenda-date-header t)
  3750. (if (equal d today)
  3751. (put-text-property s (1- (point)) 'org-today t))
  3752. (and rtn (insert (org-agenda-finalize-entries rtn 'timeline) "\n"))
  3753. (put-text-property s (1- (point)) 'day d)))))
  3754. (goto-char (or (text-property-any (point-min) (point-max) 'org-today t)
  3755. (point-min)))
  3756. (add-text-properties
  3757. (point-min) (point-max)
  3758. `(org-agenda-type timeline org-redo-cmd ,org-agenda-redo-command))
  3759. (org-agenda-finalize)
  3760. (setq buffer-read-only t)))
  3761. (defun org-get-all-dates (beg end &optional no-ranges force-today inactive empty pre-re)
  3762. "Return a list of all relevant day numbers from BEG to END buffer positions.
  3763. If NO-RANGES is non-nil, include only the start and end dates of a range,
  3764. not every single day in the range. If FORCE-TODAY is non-nil, make
  3765. sure that TODAY is included in the list. If INACTIVE is non-nil, also
  3766. inactive time stamps (those in square brackets) are included.
  3767. When EMPTY is non-nil, also include days without any entries."
  3768. (let ((re (concat
  3769. (if pre-re pre-re "")
  3770. (if inactive org-ts-regexp-both org-ts-regexp)))
  3771. dates dates1 date day day1 day2 ts1 ts2 pos)
  3772. (if force-today
  3773. (setq dates (list (org-today))))
  3774. (save-excursion
  3775. (goto-char beg)
  3776. (while (re-search-forward re end t)
  3777. (setq day (time-to-days (org-time-string-to-time
  3778. (substring (match-string 1) 0 10)
  3779. (current-buffer) (match-beginning 0))))
  3780. (or (memq day dates) (push day dates)))
  3781. (unless no-ranges
  3782. (goto-char beg)
  3783. (while (re-search-forward org-tr-regexp end t)
  3784. (setq pos (match-beginning 0))
  3785. (setq ts1 (substring (match-string 1) 0 10)
  3786. ts2 (substring (match-string 2) 0 10)
  3787. day1 (time-to-days (org-time-string-to-time
  3788. ts1 (current-buffer) pos))
  3789. day2 (time-to-days (org-time-string-to-time
  3790. ts2 (current-buffer) pos)))
  3791. (while (< (setq day1 (1+ day1)) day2)
  3792. (or (memq day1 dates) (push day1 dates)))))
  3793. (setq dates (sort dates '<))
  3794. (when empty
  3795. (while (setq day (pop dates))
  3796. (setq day2 (car dates))
  3797. (push day dates1)
  3798. (when (and day2 empty)
  3799. (if (or (eq empty t)
  3800. (and (numberp empty) (<= (- day2 day) empty)))
  3801. (while (< (setq day (1+ day)) day2)
  3802. (push (list day) dates1))
  3803. (push (cons :omitted (- day2 day)) dates1))))
  3804. (setq dates (nreverse dates1)))
  3805. dates)))
  3806. ;;; Agenda Daily/Weekly
  3807. (defvar org-agenda-start-day nil ; dynamically scoped parameter
  3808. "Start day for the agenda view.
  3809. Custom commands can set this variable in the options section.
  3810. This is usually a string like \"2007-11-01\", \"+2d\" or any other
  3811. input allowed when reading a date through the Org calendar.
  3812. See the docstring of `org-read-date' for details.")
  3813. (defvar org-starting-day nil) ; local variable in the agenda buffer
  3814. (defvar org-arg-loc nil) ; local variable
  3815. (defvar org-agenda-buffer-tmp-name nil)
  3816. ;;;###autoload
  3817. (defun org-agenda-list (&optional arg start-day span with-hour)
  3818. "Produce a daily/weekly view from all files in variable `org-agenda-files'.
  3819. The view will be for the current day or week, but from the overview buffer
  3820. you will be able to go to other days/weeks.
  3821. With a numeric prefix argument in an interactive call, the agenda will
  3822. span ARG days. Lisp programs should instead specify SPAN to change
  3823. the number of days. SPAN defaults to `org-agenda-span'.
  3824. START-DAY defaults to TODAY, or to the most recent match for the weekday
  3825. given in `org-agenda-start-on-weekday'.
  3826. When WITH-HOUR is non-nil, only include scheduled and deadline
  3827. items if they have an hour specification like [h]h:mm."
  3828. (interactive "P")
  3829. (if org-agenda-overriding-arguments
  3830. (setq arg (car org-agenda-overriding-arguments)
  3831. start-day (nth 1 org-agenda-overriding-arguments)
  3832. span (nth 2 org-agenda-overriding-arguments)))
  3833. (if (and (integerp arg) (> arg 0))
  3834. (setq span arg arg nil))
  3835. (catch 'exit
  3836. (setq org-agenda-buffer-name
  3837. (or org-agenda-buffer-tmp-name
  3838. (if org-agenda-sticky
  3839. (cond ((and org-keys (stringp org-match))
  3840. (format "*Org Agenda(%s:%s)*" org-keys org-match))
  3841. (org-keys
  3842. (format "*Org Agenda(%s)*" org-keys))
  3843. (t "*Org Agenda(a)*")))
  3844. org-agenda-buffer-name))
  3845. (org-agenda-prepare "Day/Week")
  3846. (setq start-day (or start-day org-agenda-start-day))
  3847. (if (stringp start-day)
  3848. ;; Convert to an absolute day number
  3849. (setq start-day (time-to-days (org-read-date nil t start-day))))
  3850. (org-compile-prefix-format 'agenda)
  3851. (org-set-sorting-strategy 'agenda)
  3852. (let* ((span (org-agenda-ndays-to-span
  3853. (or span org-agenda-ndays org-agenda-span)))
  3854. (today (org-today))
  3855. (sd (or start-day today))
  3856. (ndays (org-agenda-span-to-ndays span sd))
  3857. (org-agenda-start-on-weekday
  3858. (if (or (eq ndays 7) (eq ndays 14))
  3859. org-agenda-start-on-weekday))
  3860. (thefiles (org-agenda-files nil 'ifmode))
  3861. (files thefiles)
  3862. (start (if (or (null org-agenda-start-on-weekday)
  3863. (< ndays 7))
  3864. sd
  3865. (let* ((nt (calendar-day-of-week
  3866. (calendar-gregorian-from-absolute sd)))
  3867. (n1 org-agenda-start-on-weekday)
  3868. (d (- nt n1)))
  3869. (- sd (+ (if (< d 0) 7 0) d)))))
  3870. (day-numbers (list start))
  3871. (day-cnt 0)
  3872. (inhibit-redisplay (not debug-on-error))
  3873. (org-agenda-show-log-scoped org-agenda-show-log)
  3874. s e rtn rtnall file date d start-pos end-pos todayp
  3875. clocktable-start clocktable-end filter)
  3876. (setq org-agenda-redo-command
  3877. (list 'org-agenda-list (list 'quote arg) start-day (list 'quote span) with-hour))
  3878. (dotimes (n (1- ndays))
  3879. (push (1+ (car day-numbers)) day-numbers))
  3880. (setq day-numbers (nreverse day-numbers))
  3881. (setq clocktable-start (car day-numbers)
  3882. clocktable-end (1+ (or (org-last day-numbers) 0)))
  3883. (setq-local org-starting-day (car day-numbers))
  3884. (setq-local org-arg-loc arg)
  3885. (setq-local org-agenda-current-span (org-agenda-ndays-to-span span))
  3886. (unless org-agenda-compact-blocks
  3887. (let* ((d1 (car day-numbers))
  3888. (d2 (org-last day-numbers))
  3889. (w1 (org-days-to-iso-week d1))
  3890. (w2 (org-days-to-iso-week d2)))
  3891. (setq s (point))
  3892. (if org-agenda-overriding-header
  3893. (insert (org-add-props (copy-sequence org-agenda-overriding-header)
  3894. nil 'face 'org-agenda-structure) "\n")
  3895. (insert (org-agenda-span-name span)
  3896. "-agenda"
  3897. (if (< (- d2 d1) 350)
  3898. (if (= w1 w2)
  3899. (format " (W%02d)" w1)
  3900. (format " (W%02d-W%02d)" w1 w2))
  3901. "")
  3902. ":\n")))
  3903. (add-text-properties s (1- (point)) (list 'face 'org-agenda-structure
  3904. 'org-date-line t))
  3905. (org-agenda-mark-header-line s))
  3906. (while (setq d (pop day-numbers))
  3907. (setq date (calendar-gregorian-from-absolute d)
  3908. s (point))
  3909. (if (or (setq todayp (= d today))
  3910. (and (not start-pos) (= d sd)))
  3911. (setq start-pos (point))
  3912. (if (and start-pos (not end-pos))
  3913. (setq end-pos (point))))
  3914. (setq files thefiles
  3915. rtnall nil)
  3916. (while (setq file (pop files))
  3917. (catch 'nextfile
  3918. (org-check-agenda-file file)
  3919. (let ((org-agenda-entry-types org-agenda-entry-types))
  3920. ;; Starred types override non-starred equivalents
  3921. (when (member :deadline* org-agenda-entry-types)
  3922. (setq org-agenda-entry-types
  3923. (delq :deadline org-agenda-entry-types)))
  3924. (when (member :scheduled* org-agenda-entry-types)
  3925. (setq org-agenda-entry-types
  3926. (delq :scheduled org-agenda-entry-types)))
  3927. ;; Honor with-hour
  3928. (when with-hour
  3929. (when (member :deadline org-agenda-entry-types)
  3930. (setq org-agenda-entry-types
  3931. (delq :deadline org-agenda-entry-types))
  3932. (push :deadline* org-agenda-entry-types))
  3933. (when (member :scheduled org-agenda-entry-types)
  3934. (setq org-agenda-entry-types
  3935. (delq :scheduled org-agenda-entry-types))
  3936. (push :scheduled* org-agenda-entry-types)))
  3937. (unless org-agenda-include-deadlines
  3938. (setq org-agenda-entry-types
  3939. (delq :deadline* (delq :deadline org-agenda-entry-types))))
  3940. (cond
  3941. ((memq org-agenda-show-log-scoped '(only clockcheck))
  3942. (setq rtn (org-agenda-get-day-entries
  3943. file date :closed)))
  3944. (org-agenda-show-log-scoped
  3945. (setq rtn (apply 'org-agenda-get-day-entries
  3946. file date
  3947. (append '(:closed) org-agenda-entry-types))))
  3948. (t
  3949. (setq rtn (apply 'org-agenda-get-day-entries
  3950. file date
  3951. org-agenda-entry-types)))))
  3952. (setq rtnall (append rtnall rtn)))) ;; all entries
  3953. (if org-agenda-include-diary
  3954. (let ((org-agenda-search-headline-for-time t))
  3955. (require 'diary-lib)
  3956. (setq rtn (org-get-entries-from-diary date))
  3957. (setq rtnall (append rtnall rtn))))
  3958. (if (or rtnall org-agenda-show-all-dates)
  3959. (progn
  3960. (setq day-cnt (1+ day-cnt))
  3961. (insert
  3962. (if (stringp org-agenda-format-date)
  3963. (format-time-string org-agenda-format-date
  3964. (org-time-from-absolute date))
  3965. (funcall org-agenda-format-date date))
  3966. "\n")
  3967. (put-text-property s (1- (point)) 'face
  3968. (org-agenda-get-day-face date))
  3969. (put-text-property s (1- (point)) 'org-date-line t)
  3970. (put-text-property s (1- (point)) 'org-agenda-date-header t)
  3971. (put-text-property s (1- (point)) 'org-day-cnt day-cnt)
  3972. (when todayp
  3973. (put-text-property s (1- (point)) 'org-today t))
  3974. (setq rtnall
  3975. (org-agenda-add-time-grid-maybe rtnall ndays todayp))
  3976. (if rtnall (insert ;; all entries
  3977. (org-agenda-finalize-entries rtnall 'agenda)
  3978. "\n"))
  3979. (put-text-property s (1- (point)) 'day d)
  3980. (put-text-property s (1- (point)) 'org-day-cnt day-cnt))))
  3981. (when (and org-agenda-clockreport-mode clocktable-start)
  3982. (let ((org-agenda-files (org-agenda-files nil 'ifmode))
  3983. ;; the above line is to ensure the restricted range!
  3984. (p (copy-sequence org-agenda-clockreport-parameter-plist))
  3985. tbl)
  3986. (setq p (org-plist-delete p :block))
  3987. (setq p (plist-put p :tstart clocktable-start))
  3988. (setq p (plist-put p :tend clocktable-end))
  3989. (setq p (plist-put p :scope 'agenda))
  3990. (setq tbl (apply 'org-clock-get-clocktable p))
  3991. (insert tbl)))
  3992. (goto-char (point-min))
  3993. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  3994. (unless (and (pos-visible-in-window-p (point-min))
  3995. (pos-visible-in-window-p (point-max)))
  3996. (goto-char (1- (point-max)))
  3997. (recenter -1)
  3998. (if (not (pos-visible-in-window-p (or start-pos 1)))
  3999. (progn
  4000. (goto-char (or start-pos 1))
  4001. (recenter 1))))
  4002. (goto-char (or start-pos 1))
  4003. (add-text-properties (point-min) (point-max)
  4004. `(org-agenda-type agenda
  4005. org-last-args (,arg ,start-day ,span)
  4006. org-redo-cmd ,org-agenda-redo-command
  4007. org-series-cmd ,org-cmd))
  4008. (if (eq org-agenda-show-log-scoped 'clockcheck)
  4009. (org-agenda-show-clocking-issues))
  4010. (org-agenda-finalize)
  4011. (setq buffer-read-only t)
  4012. (message ""))))
  4013. (defun org-agenda-ndays-to-span (n)
  4014. "Return a span symbol for a span of N days, or N if none matches."
  4015. (cond ((symbolp n) n)
  4016. ((= n 1) 'day)
  4017. ((= n 7) 'week)
  4018. ((= n 14) 'fortnight)
  4019. (t n)))
  4020. (defun org-agenda-span-to-ndays (span &optional start-day)
  4021. "Return ndays from SPAN, possibly starting at START-DAY.
  4022. START-DAY is an absolute time value."
  4023. (cond ((numberp span) span)
  4024. ((eq span 'day) 1)
  4025. ((eq span 'week) 7)
  4026. ((eq span 'fortnight) 14)
  4027. ((eq span 'month)
  4028. (let ((date (calendar-gregorian-from-absolute start-day)))
  4029. (calendar-last-day-of-month (car date) (caddr date))))
  4030. ((eq span 'year)
  4031. (let ((date (calendar-gregorian-from-absolute start-day)))
  4032. (if (calendar-leap-year-p (caddr date)) 366 365)))))
  4033. (defun org-agenda-span-name (span)
  4034. "Return a SPAN name."
  4035. (if (null span)
  4036. ""
  4037. (if (symbolp span)
  4038. (capitalize (symbol-name span))
  4039. (format "%d days" span))))
  4040. ;;; Agenda word search
  4041. (defvar org-agenda-search-history nil)
  4042. (defvar org-search-syntax-table nil
  4043. "Special syntax table for org-mode search.
  4044. In this table, we have single quotes not as word constituents, to
  4045. that when \"+Ameli\" is searched as a work, it will also match \"Ameli's\"")
  4046. (defvar org-mode-syntax-table) ; From org.el
  4047. (defun org-search-syntax-table ()
  4048. (unless org-search-syntax-table
  4049. (setq org-search-syntax-table (copy-syntax-table org-mode-syntax-table))
  4050. (modify-syntax-entry ?' "." org-search-syntax-table)
  4051. (modify-syntax-entry ?` "." org-search-syntax-table))
  4052. org-search-syntax-table)
  4053. (defvar org-agenda-last-search-view-search-was-boolean nil)
  4054. ;;;###autoload
  4055. (defun org-search-view (&optional todo-only string edit-at)
  4056. "Show all entries that contain a phrase or words or regular expressions.
  4057. With optional prefix argument TODO-ONLY, only consider entries that are
  4058. TODO entries. The argument STRING can be used to pass a default search
  4059. string into this function. If EDIT-AT is non-nil, it means that the
  4060. user should get a chance to edit this string, with cursor at position
  4061. EDIT-AT.
  4062. The search string can be viewed either as a phrase that should be found as
  4063. is, or it can be broken into a number of snippets, each of which must match
  4064. in a Boolean way to select an entry. The default depends on the variable
  4065. `org-agenda-search-view-always-boolean'.
  4066. Even if this is turned off (the default) you can always switch to
  4067. Boolean search dynamically by preceding the first word with \"+\" or \"-\".
  4068. The default is a direct search of the whole phrase, where each space in
  4069. the search string can expand to an arbitrary amount of whitespace,
  4070. including newlines.
  4071. If using a Boolean search, the search string is split on whitespace and
  4072. each snippet is searched separately, with logical AND to select an entry.
  4073. Words prefixed with a minus must *not* occur in the entry. Words without
  4074. a prefix or prefixed with a plus must occur in the entry. Matching is
  4075. case-insensitive. Words are enclosed by word delimiters (i.e. they must
  4076. match whole words, not parts of a word) if
  4077. `org-agenda-search-view-force-full-words' is set (default is nil).
  4078. Boolean search snippets enclosed by curly braces are interpreted as
  4079. regular expressions that must or (when preceded with \"-\") must not
  4080. match in the entry. Snippets enclosed into double quotes will be taken
  4081. as a whole, to include whitespace.
  4082. - If the search string starts with an asterisk, search only in headlines.
  4083. - If (possibly after the leading star) the search string starts with an
  4084. exclamation mark, this also means to look at TODO entries only, an effect
  4085. that can also be achieved with a prefix argument.
  4086. - If (possibly after star and exclamation mark) the search string starts
  4087. with a colon, this will mean that the (non-regexp) snippets of the
  4088. Boolean search must match as full words.
  4089. This command searches the agenda files, and in addition the files listed
  4090. in `org-agenda-text-search-extra-files'."
  4091. (interactive "P")
  4092. (if org-agenda-overriding-arguments
  4093. (setq todo-only (car org-agenda-overriding-arguments)
  4094. string (nth 1 org-agenda-overriding-arguments)
  4095. edit-at (nth 2 org-agenda-overriding-arguments)))
  4096. (let* ((props (list 'face nil
  4097. 'done-face 'org-agenda-done
  4098. 'org-not-done-regexp org-not-done-regexp
  4099. 'org-todo-regexp org-todo-regexp
  4100. 'org-complex-heading-regexp org-complex-heading-regexp
  4101. 'mouse-face 'highlight
  4102. 'help-echo (format "mouse-2 or RET jump to location")))
  4103. (full-words org-agenda-search-view-force-full-words)
  4104. (org-agenda-text-search-extra-files org-agenda-text-search-extra-files)
  4105. regexp rtn rtnall files file pos inherited-tags
  4106. marker category level tags c neg re boolean
  4107. ee txt beg end words regexps+ regexps- hdl-only buffer beg1 str)
  4108. (unless (and (not edit-at)
  4109. (stringp string)
  4110. (string-match "\\S-" string))
  4111. (setq string (read-string
  4112. (if org-agenda-search-view-always-boolean
  4113. "[+-]Word/{Regexp} ...: "
  4114. "Phrase or [+-]Word/{Regexp} ...: ")
  4115. (cond
  4116. ((integerp edit-at) (cons string edit-at))
  4117. (edit-at string))
  4118. 'org-agenda-search-history)))
  4119. (catch 'exit
  4120. (if org-agenda-sticky
  4121. (setq org-agenda-buffer-name
  4122. (if (stringp string)
  4123. (format "*Org Agenda(%s:%s)*"
  4124. (or org-keys (or (and todo-only "S") "s")) string)
  4125. (format "*Org Agenda(%s)*" (or (and todo-only "S") "s")))))
  4126. (org-agenda-prepare "SEARCH")
  4127. (org-compile-prefix-format 'search)
  4128. (org-set-sorting-strategy 'search)
  4129. (setq org-agenda-redo-command
  4130. (list 'org-search-view (if todo-only t nil)
  4131. (list 'if 'current-prefix-arg nil string)))
  4132. (setq org-agenda-query-string string)
  4133. (if (equal (string-to-char string) ?*)
  4134. (setq hdl-only t
  4135. words (substring string 1))
  4136. (setq words string))
  4137. (when (equal (string-to-char words) ?!)
  4138. (setq todo-only t
  4139. words (substring words 1)))
  4140. (when (equal (string-to-char words) ?:)
  4141. (setq full-words t
  4142. words (substring words 1)))
  4143. (if (or org-agenda-search-view-always-boolean
  4144. (member (string-to-char words) '(?- ?+ ?\{)))
  4145. (setq boolean t))
  4146. (setq words (org-split-string words))
  4147. (let (www w)
  4148. (while (setq w (pop words))
  4149. (while (and (string-match "\\\\\\'" w) words)
  4150. (setq w (concat (substring w 0 -1) " " (pop words))))
  4151. (push w www))
  4152. (setq words (nreverse www) www nil)
  4153. (while (setq w (pop words))
  4154. (when (and (string-match "\\`[-+]?{" w)
  4155. (not (string-match "}\\'" w)))
  4156. (while (and words (not (string-match "}\\'" (car words))))
  4157. (setq w (concat w " " (pop words))))
  4158. (setq w (concat w " " (pop words))))
  4159. (push w www))
  4160. (setq words (nreverse www)))
  4161. (setq org-agenda-last-search-view-search-was-boolean boolean)
  4162. (when boolean
  4163. (let (wds w)
  4164. (while (setq w (pop words))
  4165. (if (or (equal (substring w 0 1) "\"")
  4166. (and (> (length w) 1)
  4167. (member (substring w 0 1) '("+" "-"))
  4168. (equal (substring w 1 2) "\"")))
  4169. (while (and words (not (equal (substring w -1) "\"")))
  4170. (setq w (concat w " " (pop words)))))
  4171. (and (string-match "\\`\\([-+]?\\)\"" w)
  4172. (setq w (replace-match "\\1" nil nil w)))
  4173. (and (equal (substring w -1) "\"") (setq w (substring w 0 -1)))
  4174. (push w wds))
  4175. (setq words (nreverse wds))))
  4176. (if boolean
  4177. (mapc (lambda (w)
  4178. (setq c (string-to-char w))
  4179. (if (equal c ?-)
  4180. (setq neg t w (substring w 1))
  4181. (if (equal c ?+)
  4182. (setq neg nil w (substring w 1))
  4183. (setq neg nil)))
  4184. (if (string-match "\\`{.*}\\'" w)
  4185. (setq re (substring w 1 -1))
  4186. (if full-words
  4187. (setq re (concat "\\<" (regexp-quote (downcase w)) "\\>"))
  4188. (setq re (regexp-quote (downcase w)))))
  4189. (if neg (push re regexps-) (push re regexps+)))
  4190. words)
  4191. (push (mapconcat (lambda (w) (regexp-quote w)) words "\\s-+")
  4192. regexps+))
  4193. (setq regexps+ (sort regexps+ (lambda (a b) (> (length a) (length b)))))
  4194. (if (not regexps+)
  4195. (setq regexp org-outline-regexp-bol)
  4196. (setq regexp (pop regexps+))
  4197. (if hdl-only (setq regexp (concat org-outline-regexp-bol ".*?"
  4198. regexp))))
  4199. (setq files (org-agenda-files nil 'ifmode))
  4200. (when (eq (car org-agenda-text-search-extra-files) 'agenda-archives)
  4201. (pop org-agenda-text-search-extra-files)
  4202. (setq files (org-add-archive-files files)))
  4203. (setq files (append files org-agenda-text-search-extra-files)
  4204. rtnall nil)
  4205. (while (setq file (pop files))
  4206. (setq ee nil)
  4207. (catch 'nextfile
  4208. (org-check-agenda-file file)
  4209. (setq buffer (if (file-exists-p file)
  4210. (org-get-agenda-file-buffer file)
  4211. (error "No such file %s" file)))
  4212. (if (not buffer)
  4213. ;; If file does not exist, make sure an error message is sent
  4214. (setq rtn (list (format "ORG-AGENDA-ERROR: No such org-file %s"
  4215. file))))
  4216. (with-current-buffer buffer
  4217. (with-syntax-table (org-search-syntax-table)
  4218. (unless (derived-mode-p 'org-mode)
  4219. (error "Agenda file %s is not in `org-mode'" file))
  4220. (let ((case-fold-search t))
  4221. (save-excursion
  4222. (save-restriction
  4223. (if (eq buffer org-agenda-restrict)
  4224. (narrow-to-region org-agenda-restrict-begin
  4225. org-agenda-restrict-end)
  4226. (widen))
  4227. (goto-char (point-min))
  4228. (unless (or (org-at-heading-p)
  4229. (outline-next-heading))
  4230. (throw 'nextfile t))
  4231. (goto-char (max (point-min) (1- (point))))
  4232. (while (re-search-forward regexp nil t)
  4233. (org-back-to-heading t)
  4234. (while (and (not (zerop org-agenda-search-view-max-outline-level))
  4235. (> (org-reduced-level (org-outline-level))
  4236. org-agenda-search-view-max-outline-level)
  4237. (forward-line -1)
  4238. (outline-back-to-heading t)))
  4239. (skip-chars-forward "* ")
  4240. (setq beg (point-at-bol)
  4241. beg1 (point)
  4242. end (progn
  4243. (outline-next-heading)
  4244. (while (and (not (zerop org-agenda-search-view-max-outline-level))
  4245. (> (org-reduced-level (org-outline-level))
  4246. org-agenda-search-view-max-outline-level)
  4247. (forward-line 1)
  4248. (outline-next-heading)))
  4249. (point)))
  4250. (catch :skip
  4251. (goto-char beg)
  4252. (org-agenda-skip)
  4253. (setq str (buffer-substring-no-properties
  4254. (point-at-bol)
  4255. (if hdl-only (point-at-eol) end)))
  4256. (mapc (lambda (wr) (when (string-match wr str)
  4257. (goto-char (1- end))
  4258. (throw :skip t)))
  4259. regexps-)
  4260. (mapc (lambda (wr) (unless (string-match wr str)
  4261. (goto-char (1- end))
  4262. (throw :skip t)))
  4263. (if todo-only
  4264. (cons (concat "^\\*+[ \t]+"
  4265. org-not-done-regexp)
  4266. regexps+)
  4267. regexps+))
  4268. (goto-char beg)
  4269. (setq marker (org-agenda-new-marker (point))
  4270. category (org-get-category)
  4271. level (make-string (org-reduced-level (org-outline-level)) ? )
  4272. inherited-tags
  4273. (or (eq org-agenda-show-inherited-tags 'always)
  4274. (and (listp org-agenda-show-inherited-tags)
  4275. (memq 'todo org-agenda-show-inherited-tags))
  4276. (and (eq org-agenda-show-inherited-tags t)
  4277. (or (eq org-agenda-use-tag-inheritance t)
  4278. (memq 'todo org-agenda-use-tag-inheritance))))
  4279. tags (org-get-tags-at nil (not inherited-tags))
  4280. txt (org-agenda-format-item
  4281. ""
  4282. (buffer-substring-no-properties
  4283. beg1 (point-at-eol))
  4284. level category tags t))
  4285. (org-add-props txt props
  4286. 'org-marker marker 'org-hd-marker marker
  4287. 'org-todo-regexp org-todo-regexp
  4288. 'level level
  4289. 'org-complex-heading-regexp org-complex-heading-regexp
  4290. 'priority 1000
  4291. 'type "search")
  4292. (push txt ee)
  4293. (goto-char (1- end))))))))))
  4294. (setq rtn (nreverse ee))
  4295. (setq rtnall (append rtnall rtn)))
  4296. (if org-agenda-overriding-header
  4297. (insert (org-add-props (copy-sequence org-agenda-overriding-header)
  4298. nil 'face 'org-agenda-structure) "\n")
  4299. (insert "Search words: ")
  4300. (add-text-properties (point-min) (1- (point))
  4301. (list 'face 'org-agenda-structure))
  4302. (setq pos (point))
  4303. (insert string "\n")
  4304. (add-text-properties pos (1- (point)) (list 'face 'org-warning))
  4305. (setq pos (point))
  4306. (unless org-agenda-multi
  4307. (insert (substitute-command-keys "\
  4308. Press `\\[org-agenda-manipulate-query-add]', \
  4309. `\\[org-agenda-manipulate-query-subtract]' to add/sub word, \
  4310. `\\[org-agenda-manipulate-query-add-re]', \
  4311. `\\[org-agenda-manipulate-query-subtract-re]' to add/sub regexp, \
  4312. `\\[universal-argument] \\[org-agenda-redo]' to edit\n"))
  4313. (add-text-properties pos (1- (point))
  4314. (list 'face 'org-agenda-structure))))
  4315. (org-agenda-mark-header-line (point-min))
  4316. (when rtnall
  4317. (insert (org-agenda-finalize-entries rtnall 'search) "\n"))
  4318. (goto-char (point-min))
  4319. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4320. (add-text-properties (point-min) (point-max)
  4321. `(org-agenda-type search
  4322. org-last-args (,todo-only ,string ,edit-at)
  4323. org-redo-cmd ,org-agenda-redo-command
  4324. org-series-cmd ,org-cmd))
  4325. (org-agenda-finalize)
  4326. (setq buffer-read-only t))))
  4327. ;;; Agenda TODO list
  4328. (defun org-agenda-propertize-selected-todo-keywords (keywords)
  4329. "Use `org-todo-keyword-faces' for the selected todo KEYWORDS."
  4330. (concat
  4331. (if (or (equal keywords "ALL") (not keywords))
  4332. (propertize "ALL" 'face 'warning)
  4333. (mapconcat
  4334. (lambda (kw)
  4335. (propertize kw 'face (org-get-todo-face kw)))
  4336. (org-split-string keywords "|")
  4337. "|"))
  4338. "\n"))
  4339. (defvar org-select-this-todo-keyword nil)
  4340. (defvar org-last-arg nil)
  4341. ;;;###autoload
  4342. (defun org-todo-list (&optional arg)
  4343. "Show all (not done) TODO entries from all agenda file in a single list.
  4344. The prefix arg can be used to select a specific TODO keyword and limit
  4345. the list to these. When using \\[universal-argument], you will be prompted
  4346. for a keyword. A numeric prefix directly selects the Nth keyword in
  4347. `org-todo-keywords-1'."
  4348. (interactive "P")
  4349. (if org-agenda-overriding-arguments
  4350. (setq arg org-agenda-overriding-arguments))
  4351. (if (and (stringp arg) (not (string-match "\\S-" arg))) (setq arg nil))
  4352. (let* ((today (org-today))
  4353. (date (calendar-gregorian-from-absolute today))
  4354. (kwds org-todo-keywords-for-agenda)
  4355. (completion-ignore-case t)
  4356. (org-select-this-todo-keyword
  4357. (if (stringp arg) arg
  4358. (and arg (integerp arg) (> arg 0)
  4359. (nth (1- arg) kwds))))
  4360. rtn rtnall files file pos)
  4361. (when (equal arg '(4))
  4362. (setq org-select-this-todo-keyword
  4363. (org-icompleting-read "Keyword (or KWD1|K2D2|...): "
  4364. (mapcar 'list kwds) nil nil)))
  4365. (and (equal 0 arg) (setq org-select-this-todo-keyword nil))
  4366. (catch 'exit
  4367. (if org-agenda-sticky
  4368. (setq org-agenda-buffer-name
  4369. (if (stringp org-select-this-todo-keyword)
  4370. (format "*Org Agenda(%s:%s)*" (or org-keys "t")
  4371. org-select-this-todo-keyword)
  4372. (format "*Org Agenda(%s)*" (or org-keys "t")))))
  4373. (org-agenda-prepare "TODO")
  4374. (org-compile-prefix-format 'todo)
  4375. (org-set-sorting-strategy 'todo)
  4376. (setq org-agenda-redo-command
  4377. `(org-todo-list (or (and (numberp current-prefix-arg)
  4378. current-prefix-arg)
  4379. ,org-select-this-todo-keyword
  4380. current-prefix-arg ,arg)))
  4381. (setq files (org-agenda-files nil 'ifmode)
  4382. rtnall nil)
  4383. (while (setq file (pop files))
  4384. (catch 'nextfile
  4385. (org-check-agenda-file file)
  4386. (setq rtn (org-agenda-get-day-entries file date :todo))
  4387. (setq rtnall (append rtnall rtn))))
  4388. (if org-agenda-overriding-header
  4389. (insert (org-add-props (copy-sequence org-agenda-overriding-header)
  4390. nil 'face 'org-agenda-structure) "\n")
  4391. (insert "Global list of TODO items of type: ")
  4392. (add-text-properties (point-min) (1- (point))
  4393. (list 'face 'org-agenda-structure
  4394. 'short-heading
  4395. (concat "ToDo: "
  4396. (or org-select-this-todo-keyword "ALL"))))
  4397. (org-agenda-mark-header-line (point-min))
  4398. (insert (org-agenda-propertize-selected-todo-keywords
  4399. org-select-this-todo-keyword))
  4400. (setq pos (point))
  4401. (unless org-agenda-multi
  4402. (insert (substitute-command-keys "Available with \
  4403. `N \\[org-agenda-redo]': (0)[ALL]"))
  4404. (let ((n 0) s)
  4405. (mapc (lambda (x)
  4406. (setq s (format "(%d)%s" (setq n (1+ n)) x))
  4407. (if (> (+ (current-column) (string-width s) 1) (frame-width))
  4408. (insert "\n "))
  4409. (insert " " s))
  4410. kwds))
  4411. (insert "\n"))
  4412. (add-text-properties pos (1- (point)) (list 'face 'org-agenda-structure)))
  4413. (org-agenda-mark-header-line (point-min))
  4414. (when rtnall
  4415. (insert (org-agenda-finalize-entries rtnall 'todo) "\n"))
  4416. (goto-char (point-min))
  4417. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4418. (add-text-properties (point-min) (point-max)
  4419. `(org-agenda-type todo
  4420. org-last-args ,arg
  4421. org-redo-cmd ,org-agenda-redo-command
  4422. org-series-cmd ,org-cmd))
  4423. (org-agenda-finalize)
  4424. (setq buffer-read-only t))))
  4425. ;;; Agenda tags match
  4426. ;;;###autoload
  4427. (defun org-tags-view (&optional todo-only match)
  4428. "Show all headlines for all `org-agenda-files' matching a TAGS criterion.
  4429. The prefix arg TODO-ONLY limits the search to TODO entries."
  4430. (interactive "P")
  4431. (if org-agenda-overriding-arguments
  4432. (setq todo-only (car org-agenda-overriding-arguments)
  4433. match (nth 1 org-agenda-overriding-arguments)))
  4434. (let* ((org-tags-match-list-sublevels
  4435. org-tags-match-list-sublevels)
  4436. (completion-ignore-case t)
  4437. rtn rtnall files file pos matcher
  4438. buffer)
  4439. (when (and (stringp match) (not (string-match "\\S-" match)))
  4440. (setq match nil))
  4441. (catch 'exit
  4442. (if org-agenda-sticky
  4443. (setq org-agenda-buffer-name
  4444. (if (stringp match)
  4445. (format "*Org Agenda(%s:%s)*"
  4446. (or org-keys (or (and todo-only "M") "m")) match)
  4447. (format "*Org Agenda(%s)*" (or (and todo-only "M") "m")))))
  4448. ;; Prepare agendas (and `org-tag-alist-for-agenda') before
  4449. ;; expanding tags within `org-make-tags-matcher'
  4450. (org-agenda-prepare (concat "TAGS " match))
  4451. (setq matcher (org-make-tags-matcher match)
  4452. match (car matcher) matcher (cdr matcher))
  4453. (org-compile-prefix-format 'tags)
  4454. (org-set-sorting-strategy 'tags)
  4455. (setq org-agenda-query-string match)
  4456. (setq org-agenda-redo-command
  4457. (list 'org-tags-view `(quote ,todo-only)
  4458. (list 'if 'current-prefix-arg nil `(quote ,org-agenda-query-string))))
  4459. (setq files (org-agenda-files nil 'ifmode)
  4460. rtnall nil)
  4461. (while (setq file (pop files))
  4462. (catch 'nextfile
  4463. (org-check-agenda-file file)
  4464. (setq buffer (if (file-exists-p file)
  4465. (org-get-agenda-file-buffer file)
  4466. (error "No such file %s" file)))
  4467. (if (not buffer)
  4468. ;; If file does not exist, error message to agenda
  4469. (setq rtn (list
  4470. (format "ORG-AGENDA-ERROR: No such org-file %s" file))
  4471. rtnall (append rtnall rtn))
  4472. (with-current-buffer buffer
  4473. (unless (derived-mode-p 'org-mode)
  4474. (error "Agenda file %s is not in `org-mode'" file))
  4475. (save-excursion
  4476. (save-restriction
  4477. (if (eq buffer org-agenda-restrict)
  4478. (narrow-to-region org-agenda-restrict-begin
  4479. org-agenda-restrict-end)
  4480. (widen))
  4481. (setq rtn (org-scan-tags 'agenda matcher todo-only))
  4482. (setq rtnall (append rtnall rtn))))))))
  4483. (if org-agenda-overriding-header
  4484. (insert (org-add-props (copy-sequence org-agenda-overriding-header)
  4485. nil 'face 'org-agenda-structure) "\n")
  4486. (insert "Headlines with TAGS match: ")
  4487. (add-text-properties (point-min) (1- (point))
  4488. (list 'face 'org-agenda-structure
  4489. 'short-heading
  4490. (concat "Match: " match)))
  4491. (setq pos (point))
  4492. (insert match "\n")
  4493. (add-text-properties pos (1- (point)) (list 'face 'org-warning))
  4494. (setq pos (point))
  4495. (unless org-agenda-multi
  4496. (insert (substitute-command-keys
  4497. "Press `\\[universal-argument] \\[org-agenda-redo]' \
  4498. to search again with new search string\n")))
  4499. (add-text-properties pos (1- (point)) (list 'face 'org-agenda-structure)))
  4500. (org-agenda-mark-header-line (point-min))
  4501. (when rtnall
  4502. (insert (org-agenda-finalize-entries rtnall 'tags) "\n"))
  4503. (goto-char (point-min))
  4504. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4505. (add-text-properties (point-min) (point-max)
  4506. `(org-agenda-type tags
  4507. org-last-args (,todo-only ,match)
  4508. org-redo-cmd ,org-agenda-redo-command
  4509. org-series-cmd ,org-cmd))
  4510. (org-agenda-finalize)
  4511. (setq buffer-read-only t))))
  4512. ;;; Agenda Finding stuck projects
  4513. (defvar org-agenda-skip-regexp nil
  4514. "Regular expression used in skipping subtrees for the agenda.
  4515. This is basically a temporary global variable that can be set and then
  4516. used by user-defined selections using `org-agenda-skip-function'.")
  4517. (defvar org-agenda-overriding-header nil
  4518. "When set during agenda, todo and tags searches it replaces the header.
  4519. This variable should not be set directly, but custom commands can bind it
  4520. in the options section.")
  4521. (defun org-agenda-skip-entry-when-regexp-matches ()
  4522. "Check if the current entry contains match for `org-agenda-skip-regexp'.
  4523. If yes, it returns the end position of this entry, causing agenda commands
  4524. to skip the entry but continuing the search in the subtree. This is a
  4525. function that can be put into `org-agenda-skip-function' for the duration
  4526. of a command."
  4527. (let ((end (save-excursion (org-end-of-subtree t)))
  4528. skip)
  4529. (save-excursion
  4530. (setq skip (re-search-forward org-agenda-skip-regexp end t)))
  4531. (and skip end)))
  4532. (defun org-agenda-skip-subtree-when-regexp-matches ()
  4533. "Check if the current subtree contains match for `org-agenda-skip-regexp'.
  4534. If yes, it returns the end position of this tree, causing agenda commands
  4535. to skip this subtree. This is a function that can be put into
  4536. `org-agenda-skip-function' for the duration of a command."
  4537. (let ((end (save-excursion (org-end-of-subtree t)))
  4538. skip)
  4539. (save-excursion
  4540. (setq skip (re-search-forward org-agenda-skip-regexp end t)))
  4541. (and skip end)))
  4542. (defun org-agenda-skip-entry-when-regexp-matches-in-subtree ()
  4543. "Check if the current subtree contains match for `org-agenda-skip-regexp'.
  4544. If yes, it returns the end position of the current entry (NOT the tree),
  4545. causing agenda commands to skip the entry but continuing the search in
  4546. the subtree. This is a function that can be put into
  4547. `org-agenda-skip-function' for the duration of a command. An important
  4548. use of this function is for the stuck project list."
  4549. (let ((end (save-excursion (org-end-of-subtree t)))
  4550. (entry-end (save-excursion (outline-next-heading) (1- (point))))
  4551. skip)
  4552. (save-excursion
  4553. (setq skip (re-search-forward org-agenda-skip-regexp end t)))
  4554. (and skip entry-end)))
  4555. (defun org-agenda-skip-entry-if (&rest conditions)
  4556. "Skip entry if any of CONDITIONS is true.
  4557. See `org-agenda-skip-if' for details."
  4558. (org-agenda-skip-if nil conditions))
  4559. (defun org-agenda-skip-subtree-if (&rest conditions)
  4560. "Skip subtree if any of CONDITIONS is true.
  4561. See `org-agenda-skip-if' for details."
  4562. (org-agenda-skip-if t conditions))
  4563. (defun org-agenda-skip-if (subtree conditions)
  4564. "Checks current entity for CONDITIONS.
  4565. If SUBTREE is non-nil, the entire subtree is checked. Otherwise, only
  4566. the entry (i.e. the text before the next heading) is checked.
  4567. CONDITIONS is a list of symbols, boolean OR is used to combine the results
  4568. from different tests. Valid conditions are:
  4569. scheduled Check if there is a scheduled cookie
  4570. notscheduled Check if there is no scheduled cookie
  4571. deadline Check if there is a deadline
  4572. notdeadline Check if there is no deadline
  4573. timestamp Check if there is a timestamp (also deadline or scheduled)
  4574. nottimestamp Check if there is no timestamp (also deadline or scheduled)
  4575. regexp Check if regexp matches
  4576. notregexp Check if regexp does not match.
  4577. todo Check if TODO keyword matches
  4578. nottodo Check if TODO keyword does not match
  4579. The regexp is taken from the conditions list, it must come right after
  4580. the `regexp' or `notregexp' element.
  4581. `todo' and `nottodo' accept as an argument a list of todo
  4582. keywords, which may include \"*\" to match any todo keyword.
  4583. (org-agenda-skip-entry-if \\='todo \\='(\"TODO\" \"WAITING\"))
  4584. would skip all entries with \"TODO\" or \"WAITING\" keywords.
  4585. Instead of a list, a keyword class may be given. For example:
  4586. (org-agenda-skip-entry-if \\='nottodo \\='done)
  4587. would skip entries that haven't been marked with any of \"DONE\"
  4588. keywords. Possible classes are: `todo', `done', `any'.
  4589. If any of these conditions is met, this function returns the end point of
  4590. the entity, causing the search to continue from there. This is a function
  4591. that can be put into `org-agenda-skip-function' for the duration of a command."
  4592. (let (beg end m)
  4593. (org-back-to-heading t)
  4594. (setq beg (point)
  4595. end (if subtree
  4596. (progn (org-end-of-subtree t) (point))
  4597. (progn (outline-next-heading) (1- (point)))))
  4598. (goto-char beg)
  4599. (and
  4600. (or
  4601. (and (memq 'scheduled conditions)
  4602. (re-search-forward org-scheduled-time-regexp end t))
  4603. (and (memq 'notscheduled conditions)
  4604. (not (re-search-forward org-scheduled-time-regexp end t)))
  4605. (and (memq 'deadline conditions)
  4606. (re-search-forward org-deadline-time-regexp end t))
  4607. (and (memq 'notdeadline conditions)
  4608. (not (re-search-forward org-deadline-time-regexp end t)))
  4609. (and (memq 'timestamp conditions)
  4610. (re-search-forward org-ts-regexp end t))
  4611. (and (memq 'nottimestamp conditions)
  4612. (not (re-search-forward org-ts-regexp end t)))
  4613. (and (setq m (memq 'regexp conditions))
  4614. (stringp (nth 1 m))
  4615. (re-search-forward (nth 1 m) end t))
  4616. (and (setq m (memq 'notregexp conditions))
  4617. (stringp (nth 1 m))
  4618. (not (re-search-forward (nth 1 m) end t)))
  4619. (and (or
  4620. (setq m (memq 'nottodo conditions))
  4621. (setq m (memq 'todo-unblocked conditions))
  4622. (setq m (memq 'nottodo-unblocked conditions))
  4623. (setq m (memq 'todo conditions)))
  4624. (org-agenda-skip-if-todo m end)))
  4625. end)))
  4626. (defun org-agenda-skip-if-todo (args end)
  4627. "Helper function for `org-agenda-skip-if', do not use it directly.
  4628. ARGS is a list with first element either `todo', `nottodo',
  4629. `todo-unblocked' or `nottodo-unblocked'. The remainder is either
  4630. a list of TODO keywords, or a state symbol `todo' or `done' or
  4631. `any'."
  4632. (let ((kw (car args))
  4633. (arg (cadr args))
  4634. todo-wds todo-re)
  4635. (setq todo-wds
  4636. (org-uniquify
  4637. (cond
  4638. ((listp arg) ;; list of keywords
  4639. (if (member "*" arg)
  4640. (mapcar 'substring-no-properties org-todo-keywords-1)
  4641. arg))
  4642. ((symbolp arg) ;; keyword class name
  4643. (cond
  4644. ((eq arg 'todo)
  4645. (org-delete-all org-done-keywords
  4646. (mapcar 'substring-no-properties
  4647. org-todo-keywords-1)))
  4648. ((eq arg 'done) org-done-keywords)
  4649. ((eq arg 'any)
  4650. (mapcar 'substring-no-properties org-todo-keywords-1)))))))
  4651. (setq todo-re
  4652. (concat "^\\*+[ \t]+\\<\\("
  4653. (mapconcat 'identity todo-wds "\\|")
  4654. "\\)\\>"))
  4655. (cond
  4656. ((eq kw 'todo) (re-search-forward todo-re end t))
  4657. ((eq kw 'nottodo) (not (re-search-forward todo-re end t)))
  4658. ((eq kw 'todo-unblocked)
  4659. (catch 'unblocked
  4660. (while (re-search-forward todo-re end t)
  4661. (or (org-entry-blocked-p) (throw 'unblocked t)))
  4662. nil))
  4663. ((eq kw 'nottodo-unblocked)
  4664. (catch 'unblocked
  4665. (while (re-search-forward todo-re end t)
  4666. (or (org-entry-blocked-p) (throw 'unblocked nil)))
  4667. t))
  4668. )))
  4669. ;;;###autoload
  4670. (defun org-agenda-list-stuck-projects (&rest ignore)
  4671. "Create agenda view for projects that are stuck.
  4672. Stuck projects are project that have no next actions. For the definitions
  4673. of what a project is and how to check if it stuck, customize the variable
  4674. `org-stuck-projects'."
  4675. (interactive)
  4676. (let* ((org-agenda-skip-function
  4677. 'org-agenda-skip-entry-when-regexp-matches-in-subtree)
  4678. ;; We could have used org-agenda-skip-if here.
  4679. (org-agenda-overriding-header
  4680. (or org-agenda-overriding-header "List of stuck projects: "))
  4681. (matcher (nth 0 org-stuck-projects))
  4682. (todo (nth 1 org-stuck-projects))
  4683. (todo-wds (if (member "*" todo)
  4684. (progn
  4685. (org-agenda-prepare-buffers (org-agenda-files
  4686. nil 'ifmode))
  4687. (org-delete-all
  4688. org-done-keywords-for-agenda
  4689. (copy-sequence org-todo-keywords-for-agenda)))
  4690. todo))
  4691. (todo-re (concat "^\\*+[ \t]+\\("
  4692. (mapconcat 'identity todo-wds "\\|")
  4693. "\\)\\>"))
  4694. (tags (nth 2 org-stuck-projects))
  4695. (tags-re (if (member "*" tags)
  4696. (concat org-outline-regexp-bol
  4697. (org-re ".*:[[:alnum:]_@#%]+:[ \t]*$"))
  4698. (if tags
  4699. (concat org-outline-regexp-bol
  4700. ".*:\\("
  4701. (mapconcat 'identity tags "\\|")
  4702. (org-re "\\):[[:alnum:]_@#%:]*[ \t]*$")))))
  4703. (gen-re (nth 3 org-stuck-projects))
  4704. (re-list
  4705. (delq nil
  4706. (list
  4707. (if todo todo-re)
  4708. (if tags tags-re)
  4709. (and gen-re (stringp gen-re) (string-match "\\S-" gen-re)
  4710. gen-re)))))
  4711. (setq org-agenda-skip-regexp
  4712. (if re-list
  4713. (mapconcat 'identity re-list "\\|")
  4714. (error "No information how to identify unstuck projects")))
  4715. (org-tags-view nil matcher)
  4716. (setq org-agenda-buffer-name (buffer-name))
  4717. (with-current-buffer org-agenda-buffer-name
  4718. (setq org-agenda-redo-command
  4719. `(org-agenda-list-stuck-projects ,current-prefix-arg)))))
  4720. ;;; Diary integration
  4721. (defvar org-disable-agenda-to-diary nil) ;Dynamically-scoped param.
  4722. (defvar diary-list-entries-hook)
  4723. (defvar diary-time-regexp)
  4724. (defun org-get-entries-from-diary (date)
  4725. "Get the (Emacs Calendar) diary entries for DATE."
  4726. (require 'diary-lib)
  4727. (let* ((diary-fancy-buffer "*temporary-fancy-diary-buffer*")
  4728. (diary-display-function 'diary-fancy-display)
  4729. (pop-up-frames nil)
  4730. (diary-list-entries-hook
  4731. (cons 'org-diary-default-entry diary-list-entries-hook))
  4732. (diary-file-name-prefix nil) ; turn this feature off
  4733. (diary-modify-entry-list-string-function 'org-modify-diary-entry-string)
  4734. entries
  4735. (org-disable-agenda-to-diary t))
  4736. (save-excursion
  4737. (save-window-excursion
  4738. (funcall (if (fboundp 'diary-list-entries)
  4739. 'diary-list-entries 'list-diary-entries)
  4740. date 1)))
  4741. (if (not (get-buffer diary-fancy-buffer))
  4742. (setq entries nil)
  4743. (with-current-buffer diary-fancy-buffer
  4744. (setq buffer-read-only nil)
  4745. (if (zerop (buffer-size))
  4746. ;; No entries
  4747. (setq entries nil)
  4748. ;; Omit the date and other unnecessary stuff
  4749. (org-agenda-cleanup-fancy-diary)
  4750. ;; Add prefix to each line and extend the text properties
  4751. (if (zerop (buffer-size))
  4752. (setq entries nil)
  4753. (setq entries (buffer-substring (point-min) (- (point-max) 1)))
  4754. (setq entries
  4755. (with-temp-buffer
  4756. (insert entries) (goto-char (point-min))
  4757. (while (re-search-forward "\n[ \t]+\\(.+\\)$" nil t)
  4758. (unless (save-match-data (string-match diary-time-regexp (match-string 1)))
  4759. (replace-match (concat "; " (match-string 1)))))
  4760. (buffer-string)))))
  4761. (set-buffer-modified-p nil)
  4762. (kill-buffer diary-fancy-buffer)))
  4763. (when entries
  4764. (setq entries (org-split-string entries "\n"))
  4765. (setq entries
  4766. (mapcar
  4767. (lambda (x)
  4768. (setq x (org-agenda-format-item "" x nil "Diary" nil 'time))
  4769. ;; Extend the text properties to the beginning of the line
  4770. (org-add-props x (text-properties-at (1- (length x)) x)
  4771. 'type "diary" 'date date 'face 'org-agenda-diary))
  4772. entries)))))
  4773. (defvar org-agenda-cleanup-fancy-diary-hook nil
  4774. "Hook run when the fancy diary buffer is cleaned up.")
  4775. (defun org-agenda-cleanup-fancy-diary ()
  4776. "Remove unwanted stuff in buffer created by `fancy-diary-display'.
  4777. This gets rid of the date, the underline under the date, and
  4778. the dummy entry installed by `org-mode' to ensure non-empty diary for each
  4779. date. It also removes lines that contain only whitespace."
  4780. (goto-char (point-min))
  4781. (if (looking-at ".*?:[ \t]*")
  4782. (progn
  4783. (replace-match "")
  4784. (re-search-forward "\n=+$" nil t)
  4785. (replace-match "")
  4786. (while (re-search-backward "^ +\n?" nil t) (replace-match "")))
  4787. (re-search-forward "\n=+$" nil t)
  4788. (delete-region (point-min) (min (point-max) (1+ (match-end 0)))))
  4789. (goto-char (point-min))
  4790. (while (re-search-forward "^ +\n" nil t)
  4791. (replace-match ""))
  4792. (goto-char (point-min))
  4793. (if (re-search-forward "^Org-mode dummy\n?" nil t)
  4794. (replace-match ""))
  4795. (run-hooks 'org-agenda-cleanup-fancy-diary-hook))
  4796. ;; Make sure entries from the diary have the right text properties.
  4797. (eval-after-load "diary-lib"
  4798. '(if (boundp 'diary-modify-entry-list-string-function)
  4799. ;; We can rely on the hook, nothing to do
  4800. nil
  4801. ;; Hook not available, must use advice to make this work
  4802. (defadvice add-to-diary-list (before org-mark-diary-entry activate)
  4803. "Make the position visible."
  4804. (if (and org-disable-agenda-to-diary ;; called from org-agenda
  4805. (stringp string)
  4806. buffer-file-name)
  4807. (setq string (org-modify-diary-entry-string string))))))
  4808. (defun org-modify-diary-entry-string (string)
  4809. "Add text properties to string, allowing org-mode to act on it."
  4810. (org-add-props string nil
  4811. 'mouse-face 'highlight
  4812. 'help-echo (if buffer-file-name
  4813. (format "mouse-2 or RET jump to diary file %s"
  4814. (abbreviate-file-name buffer-file-name))
  4815. "")
  4816. 'org-agenda-diary-link t
  4817. 'org-marker (org-agenda-new-marker (point-at-bol))))
  4818. (defun org-diary-default-entry ()
  4819. "Add a dummy entry to the diary.
  4820. Needed to avoid empty dates which mess up holiday display."
  4821. ;; Catch the error if dealing with the new add-to-diary-alist
  4822. (when org-disable-agenda-to-diary
  4823. (condition-case nil
  4824. (org-add-to-diary-list original-date "Org-mode dummy" "")
  4825. (error
  4826. (org-add-to-diary-list original-date "Org-mode dummy" "" nil)))))
  4827. (defun org-add-to-diary-list (&rest args)
  4828. (if (fboundp 'diary-add-to-list)
  4829. (apply 'diary-add-to-list args)
  4830. (apply 'add-to-diary-list args)))
  4831. (defvar org-diary-last-run-time nil)
  4832. ;;;###autoload
  4833. (defun org-diary (&rest args)
  4834. "Return diary information from org files.
  4835. This function can be used in a \"sexp\" diary entry in the Emacs calendar.
  4836. It accesses org files and extracts information from those files to be
  4837. listed in the diary. The function accepts arguments specifying what
  4838. items should be listed. For a list of arguments allowed here, see the
  4839. variable `org-agenda-entry-types'.
  4840. The call in the diary file should look like this:
  4841. &%%(org-diary) ~/path/to/some/orgfile.org
  4842. Use a separate line for each org file to check. Or, if you omit the file name,
  4843. all files listed in `org-agenda-files' will be checked automatically:
  4844. &%%(org-diary)
  4845. If you don't give any arguments (as in the example above), the default value
  4846. of `org-agenda-entry-types' is used: (:deadline :scheduled :timestamp :sexp).
  4847. So the example above may also be written as
  4848. &%%(org-diary :deadline :timestamp :sexp :scheduled)
  4849. The function expects the lisp variables `entry' and `date' to be provided
  4850. by the caller, because this is how the calendar works. Don't use this
  4851. function from a program - use `org-agenda-get-day-entries' instead."
  4852. (when (> (- (org-float-time)
  4853. org-agenda-last-marker-time)
  4854. 5)
  4855. ;; I am not sure if this works with sticky agendas, because the marker
  4856. ;; list is then no longer a global variable.
  4857. (org-agenda-reset-markers))
  4858. (org-compile-prefix-format 'agenda)
  4859. (org-set-sorting-strategy 'agenda)
  4860. (setq args (or args org-agenda-entry-types))
  4861. (let* ((files (if (and entry (stringp entry) (string-match "\\S-" entry))
  4862. (list entry)
  4863. (org-agenda-files t)))
  4864. (time (org-float-time))
  4865. file rtn results)
  4866. (when (or (not org-diary-last-run-time)
  4867. (> (- time
  4868. org-diary-last-run-time)
  4869. 3))
  4870. (org-agenda-prepare-buffers files))
  4871. (setq org-diary-last-run-time time)
  4872. ;; If this is called during org-agenda, don't return any entries to
  4873. ;; the calendar. Org Agenda will list these entries itself.
  4874. (if org-disable-agenda-to-diary (setq files nil))
  4875. (while (setq file (pop files))
  4876. (setq rtn (apply 'org-agenda-get-day-entries file date args))
  4877. (setq results (append results rtn)))
  4878. (when results
  4879. (setq results
  4880. (mapcar (lambda (i) (replace-regexp-in-string
  4881. org-bracket-link-regexp "\\3" i)) results))
  4882. (concat (org-agenda-finalize-entries results) "\n"))))
  4883. ;;; Agenda entry finders
  4884. (defun org-agenda--timestamp-to-absolute (&rest args)
  4885. "Call `org-time-string-to-absolute' with ARGS.
  4886. However, throw `:skip' whenever an error is raised."
  4887. (condition-case e
  4888. (apply #'org-time-string-to-absolute args)
  4889. (org-diary-sexp-no-match (throw :skip nil))
  4890. (error
  4891. (message "%s; Skipping entry" (error-message-string e))
  4892. (throw :skip nil))))
  4893. (defun org-agenda-get-day-entries (file date &rest args)
  4894. "Does the work for `org-diary' and `org-agenda'.
  4895. FILE is the path to a file to be checked for entries. DATE is date like
  4896. the one returned by `calendar-current-date'. ARGS are symbols indicating
  4897. which kind of entries should be extracted. For details about these, see
  4898. the documentation of `org-diary'."
  4899. (let* ((org-startup-folded nil)
  4900. (org-startup-align-all-tables nil)
  4901. (buffer (if (file-exists-p file) (org-get-agenda-file-buffer file)
  4902. (error "No such file %s" file))))
  4903. (if (not buffer)
  4904. ;; If file does not exist, signal it in diary nonetheless.
  4905. (list (format "ORG-AGENDA-ERROR: No such org-file %s" file))
  4906. (with-current-buffer buffer
  4907. (unless (derived-mode-p 'org-mode)
  4908. (error "Agenda file %s is not in `org-mode'" file))
  4909. (setq org-agenda-buffer (or org-agenda-buffer buffer))
  4910. (save-excursion
  4911. (save-restriction
  4912. (if (eq buffer org-agenda-restrict)
  4913. (narrow-to-region org-agenda-restrict-begin
  4914. org-agenda-restrict-end)
  4915. (widen))
  4916. ;; Rationalize ARGS. Also make sure `:deadline' comes
  4917. ;; first in order to populate DEADLINES before passing it.
  4918. ;;
  4919. ;; We use `delq' since `org-uniquify' duplicates ARGS,
  4920. ;; guarding us from modifying `org-agenda-entry-types'.
  4921. (setf args (org-uniquify (or args org-agenda-entry-types)))
  4922. (when (and (memq :scheduled args) (memq :scheduled* args))
  4923. (setf args (delq :scheduled* args)))
  4924. (cond
  4925. ((memq :deadline args)
  4926. (setf args (cons :deadline
  4927. (delq :deadline (delq :deadline* args)))))
  4928. ((memq :deadline* args)
  4929. (setf args (cons :deadline* (delq :deadline* args)))))
  4930. ;; Collect list of headlines. Return them flattened.
  4931. (let ((case-fold-search nil) results deadlines)
  4932. (dolist (arg args (apply #'nconc (nreverse results)))
  4933. (pcase arg
  4934. ((and :todo (guard (org-agenda-today-p date)))
  4935. (push (org-agenda-get-todos) results))
  4936. (:timestamp
  4937. (push (org-agenda-get-blocks) results)
  4938. (push (org-agenda-get-timestamps deadlines) results))
  4939. (:sexp
  4940. (push (org-agenda-get-sexps) results))
  4941. (:scheduled
  4942. (push (org-agenda-get-scheduled deadlines) results))
  4943. (:scheduled*
  4944. (push (org-agenda-get-scheduled deadlines t) results))
  4945. (:closed
  4946. (push (org-agenda-get-progress) results))
  4947. (:deadline
  4948. (setf deadlines (org-agenda-get-deadlines))
  4949. (push deadlines results))
  4950. (:deadline*
  4951. (setf deadlines (org-agenda-get-deadlines t))
  4952. (push deadlines results)))))))))))
  4953. (defsubst org-em (x y list)
  4954. "Is X or Y a member of LIST?"
  4955. (or (memq x list) (memq y list)))
  4956. (defvar org-heading-keyword-regexp-format) ; defined in org.el
  4957. (defvar org-agenda-sorting-strategy-selected nil)
  4958. (defun org-agenda-entry-get-agenda-timestamp (pom)
  4959. "Retrieve timestamp information for sorting agenda views.
  4960. Given a point or marker POM, returns a cons cell of the timestamp
  4961. and the timestamp type relevant for the sorting strategy in
  4962. `org-agenda-sorting-strategy-selected'."
  4963. (let (ts ts-date-type)
  4964. (save-match-data
  4965. (cond ((org-em 'scheduled-up 'scheduled-down
  4966. org-agenda-sorting-strategy-selected)
  4967. (setq ts (org-entry-get pom "SCHEDULED")
  4968. ts-date-type " scheduled"))
  4969. ((org-em 'deadline-up 'deadline-down
  4970. org-agenda-sorting-strategy-selected)
  4971. (setq ts (org-entry-get pom "DEADLINE")
  4972. ts-date-type " deadline"))
  4973. ((org-em 'ts-up 'ts-down
  4974. org-agenda-sorting-strategy-selected)
  4975. (setq ts (org-entry-get pom "TIMESTAMP")
  4976. ts-date-type " timestamp"))
  4977. ((org-em 'tsia-up 'tsia-down
  4978. org-agenda-sorting-strategy-selected)
  4979. (setq ts (org-entry-get pom "TIMESTAMP_IA")
  4980. ts-date-type " timestamp_ia"))
  4981. ((org-em 'timestamp-up 'timestamp-down
  4982. org-agenda-sorting-strategy-selected)
  4983. (setq ts (or (org-entry-get pom "SCHEDULED")
  4984. (org-entry-get pom "DEADLINE")
  4985. (org-entry-get pom "TIMESTAMP")
  4986. (org-entry-get pom "TIMESTAMP_IA"))
  4987. ts-date-type ""))
  4988. (t (setq ts-date-type "")))
  4989. (cons (when ts (ignore-errors (org-time-string-to-absolute ts)))
  4990. ts-date-type))))
  4991. (defun org-agenda-get-todos ()
  4992. "Return the TODO information for agenda display."
  4993. (let* ((props (list 'face nil
  4994. 'done-face 'org-agenda-done
  4995. 'org-not-done-regexp org-not-done-regexp
  4996. 'org-todo-regexp org-todo-regexp
  4997. 'org-complex-heading-regexp org-complex-heading-regexp
  4998. 'mouse-face 'highlight
  4999. 'help-echo
  5000. (format "mouse-2 or RET jump to org file %s"
  5001. (abbreviate-file-name buffer-file-name))))
  5002. (regexp (format org-heading-keyword-regexp-format
  5003. (cond
  5004. ((and org-select-this-todo-keyword
  5005. (equal org-select-this-todo-keyword "*"))
  5006. org-todo-regexp)
  5007. (org-select-this-todo-keyword
  5008. (concat "\\("
  5009. (mapconcat 'identity
  5010. (org-split-string
  5011. org-select-this-todo-keyword
  5012. "|")
  5013. "\\|") "\\)"))
  5014. (t org-not-done-regexp))))
  5015. marker priority category level tags todo-state
  5016. ts-date ts-date-type ts-date-pair
  5017. ee txt beg end inherited-tags todo-state-end-pos)
  5018. (goto-char (point-min))
  5019. (while (re-search-forward regexp nil t)
  5020. (catch :skip
  5021. (save-match-data
  5022. (beginning-of-line)
  5023. (org-agenda-skip)
  5024. (setq beg (point) end (save-excursion (outline-next-heading) (point)))
  5025. (unless (and (setq todo-state (org-get-todo-state))
  5026. (setq todo-state-end-pos (match-end 2)))
  5027. (goto-char end)
  5028. (throw :skip nil))
  5029. (when (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item end)
  5030. (goto-char (1+ beg))
  5031. (or org-agenda-todo-list-sublevels (org-end-of-subtree 'invisible))
  5032. (throw :skip nil)))
  5033. (goto-char (match-beginning 2))
  5034. (setq marker (org-agenda-new-marker (match-beginning 0))
  5035. category (org-get-category)
  5036. ts-date-pair (org-agenda-entry-get-agenda-timestamp (point))
  5037. ts-date (car ts-date-pair)
  5038. ts-date-type (cdr ts-date-pair)
  5039. txt (org-trim (buffer-substring (match-beginning 2) (match-end 0)))
  5040. inherited-tags
  5041. (or (eq org-agenda-show-inherited-tags 'always)
  5042. (and (listp org-agenda-show-inherited-tags)
  5043. (memq 'todo org-agenda-show-inherited-tags))
  5044. (and (eq org-agenda-show-inherited-tags t)
  5045. (or (eq org-agenda-use-tag-inheritance t)
  5046. (memq 'todo org-agenda-use-tag-inheritance))))
  5047. tags (org-get-tags-at nil (not inherited-tags))
  5048. level (make-string (org-reduced-level (org-outline-level)) ? )
  5049. txt (org-agenda-format-item "" txt level category tags t)
  5050. priority (1+ (org-get-priority txt)))
  5051. (org-add-props txt props
  5052. 'org-marker marker 'org-hd-marker marker
  5053. 'priority priority
  5054. 'level level
  5055. 'ts-date ts-date
  5056. 'type (concat "todo" ts-date-type) 'todo-state todo-state)
  5057. (push txt ee)
  5058. (if org-agenda-todo-list-sublevels
  5059. (goto-char todo-state-end-pos)
  5060. (org-end-of-subtree 'invisible))))
  5061. (nreverse ee)))
  5062. (defun org-agenda-todo-custom-ignore-p (time n)
  5063. "Check whether timestamp is farther away than n number of days.
  5064. This function is invoked if `org-agenda-todo-ignore-deadlines',
  5065. `org-agenda-todo-ignore-scheduled' or
  5066. `org-agenda-todo-ignore-timestamp' is set to an integer."
  5067. (let ((days (org-time-stamp-to-now
  5068. time org-agenda-todo-ignore-time-comparison-use-seconds)))
  5069. (if (>= n 0)
  5070. (>= days n)
  5071. (<= days n))))
  5072. ;;;###autoload
  5073. (defun org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item
  5074. (&optional end)
  5075. "Do we have a reason to ignore this TODO entry because it has a time stamp?"
  5076. (when (or org-agenda-todo-ignore-with-date
  5077. org-agenda-todo-ignore-scheduled
  5078. org-agenda-todo-ignore-deadlines
  5079. org-agenda-todo-ignore-timestamp)
  5080. (setq end (or end (save-excursion (outline-next-heading) (point))))
  5081. (save-excursion
  5082. (or (and org-agenda-todo-ignore-with-date
  5083. (re-search-forward org-ts-regexp end t))
  5084. (and org-agenda-todo-ignore-scheduled
  5085. (re-search-forward org-scheduled-time-regexp end t)
  5086. (cond
  5087. ((eq org-agenda-todo-ignore-scheduled 'future)
  5088. (> (org-time-stamp-to-now
  5089. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5090. ((eq org-agenda-todo-ignore-scheduled 'past)
  5091. (<= (org-time-stamp-to-now
  5092. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5093. ((numberp org-agenda-todo-ignore-scheduled)
  5094. (org-agenda-todo-custom-ignore-p
  5095. (match-string 1) org-agenda-todo-ignore-scheduled))
  5096. (t)))
  5097. (and org-agenda-todo-ignore-deadlines
  5098. (re-search-forward org-deadline-time-regexp end t)
  5099. (cond
  5100. ((memq org-agenda-todo-ignore-deadlines '(t all)) t)
  5101. ((eq org-agenda-todo-ignore-deadlines 'far)
  5102. (not (org-deadline-close (match-string 1))))
  5103. ((eq org-agenda-todo-ignore-deadlines 'future)
  5104. (> (org-time-stamp-to-now
  5105. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5106. ((eq org-agenda-todo-ignore-deadlines 'past)
  5107. (<= (org-time-stamp-to-now
  5108. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5109. ((numberp org-agenda-todo-ignore-deadlines)
  5110. (org-agenda-todo-custom-ignore-p
  5111. (match-string 1) org-agenda-todo-ignore-deadlines))
  5112. (t (org-deadline-close (match-string 1)))))
  5113. (and org-agenda-todo-ignore-timestamp
  5114. (let ((buffer (current-buffer))
  5115. (regexp
  5116. (concat
  5117. org-scheduled-time-regexp "\\|" org-deadline-time-regexp))
  5118. (start (point)))
  5119. ;; Copy current buffer into a temporary one
  5120. (with-temp-buffer
  5121. (insert-buffer-substring buffer start end)
  5122. (goto-char (point-min))
  5123. ;; Delete SCHEDULED and DEADLINE items
  5124. (while (re-search-forward regexp end t)
  5125. (delete-region (match-beginning 0) (match-end 0)))
  5126. (goto-char (point-min))
  5127. ;; No search for timestamp left
  5128. (when (re-search-forward org-ts-regexp nil t)
  5129. (cond
  5130. ((eq org-agenda-todo-ignore-timestamp 'future)
  5131. (> (org-time-stamp-to-now
  5132. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5133. ((eq org-agenda-todo-ignore-timestamp 'past)
  5134. (<= (org-time-stamp-to-now
  5135. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5136. ((numberp org-agenda-todo-ignore-timestamp)
  5137. (org-agenda-todo-custom-ignore-p
  5138. (match-string 1) org-agenda-todo-ignore-timestamp))
  5139. (t))))))))))
  5140. (defun org-agenda-get-timestamps (&optional deadline-results)
  5141. "Return the date stamp information for agenda display."
  5142. (let* ((props (list 'face 'org-agenda-calendar-event
  5143. 'org-not-done-regexp org-not-done-regexp
  5144. 'org-todo-regexp org-todo-regexp
  5145. 'org-complex-heading-regexp org-complex-heading-regexp
  5146. 'mouse-face 'highlight
  5147. 'help-echo
  5148. (format "mouse-2 or RET jump to org file %s"
  5149. (abbreviate-file-name buffer-file-name))))
  5150. (d1 (calendar-absolute-from-gregorian date))
  5151. mm
  5152. (deadline-position-alist
  5153. (mapcar (lambda (a) (and (setq mm (get-text-property
  5154. 0 'org-hd-marker a))
  5155. (cons (marker-position mm) a)))
  5156. deadline-results))
  5157. (remove-re org-ts-regexp)
  5158. (regexp
  5159. (concat
  5160. (if org-agenda-include-inactive-timestamps "[[<]" "<")
  5161. (regexp-quote
  5162. (substring
  5163. (format-time-string
  5164. (car org-time-stamp-formats)
  5165. (apply 'encode-time ; DATE bound by calendar
  5166. (list 0 0 0 (nth 1 date) (car date) (nth 2 date))))
  5167. 1 11))
  5168. "\\|\\(<[0-9]+-[0-9]+-[0-9]+[^>\n]+?\\+[0-9]+[hdwmy]>\\)"
  5169. "\\|\\(<%%\\(([^>\n]+)\\)>\\)"))
  5170. marker hdmarker deadlinep scheduledp clockp closedp inactivep
  5171. donep tmp priority category level ee txt timestr tags
  5172. b0 b3 e3 head todo-state end-of-match show-all warntime habitp
  5173. inherited-tags ts-date)
  5174. (goto-char (point-min))
  5175. (while (setq end-of-match (re-search-forward regexp nil t))
  5176. (setq b0 (match-beginning 0)
  5177. b3 (match-beginning 3) e3 (match-end 3)
  5178. todo-state (save-match-data (ignore-errors (org-get-todo-state)))
  5179. habitp (and (functionp 'org-is-habit-p) (save-match-data (org-is-habit-p)))
  5180. show-all (or (eq org-agenda-repeating-timestamp-show-all t)
  5181. (member todo-state
  5182. org-agenda-repeating-timestamp-show-all)))
  5183. (catch :skip
  5184. (and (org-at-date-range-p) (throw :skip nil))
  5185. (org-agenda-skip)
  5186. (if (and (match-end 1)
  5187. (not (= d1 (org-agenda--timestamp-to-absolute
  5188. (match-string 1) d1 nil show-all
  5189. (current-buffer) b0))))
  5190. (throw :skip nil))
  5191. (if (and e3
  5192. (not (org-diary-sexp-entry (buffer-substring b3 e3) "" date)))
  5193. (throw :skip nil))
  5194. (setq tmp (buffer-substring (max (point-min)
  5195. (- b0 org-ds-keyword-length))
  5196. b0)
  5197. timestr (if b3 "" (buffer-substring b0 (point-at-eol)))
  5198. inactivep (= (char-after b0) ?\[)
  5199. deadlinep (string-match org-deadline-regexp tmp)
  5200. scheduledp (string-match org-scheduled-regexp tmp)
  5201. closedp (and org-agenda-include-inactive-timestamps
  5202. (string-match org-closed-string tmp))
  5203. clockp (and org-agenda-include-inactive-timestamps
  5204. (or (string-match org-clock-string tmp)
  5205. (string-match "]-+\\'" tmp)))
  5206. warntime (get-text-property (point) 'org-appt-warntime)
  5207. donep (member todo-state org-done-keywords))
  5208. (if (or scheduledp deadlinep closedp clockp
  5209. (and donep org-agenda-skip-timestamp-if-done))
  5210. (throw :skip t))
  5211. (if (string-match ">" timestr)
  5212. ;; substring should only run to end of time stamp
  5213. (setq timestr (substring timestr 0 (match-end 0))))
  5214. (setq marker (org-agenda-new-marker b0)
  5215. category (org-get-category b0))
  5216. (save-excursion
  5217. (if (not (re-search-backward org-outline-regexp-bol nil t))
  5218. (throw :skip nil)
  5219. (goto-char (match-beginning 0))
  5220. (if (and (eq t org-agenda-skip-timestamp-if-deadline-is-shown)
  5221. (assoc (point) deadline-position-alist))
  5222. (throw :skip nil))
  5223. (setq hdmarker (org-agenda-new-marker)
  5224. inherited-tags
  5225. (or (eq org-agenda-show-inherited-tags 'always)
  5226. (and (listp org-agenda-show-inherited-tags)
  5227. (memq 'agenda org-agenda-show-inherited-tags))
  5228. (and (eq org-agenda-show-inherited-tags t)
  5229. (or (eq org-agenda-use-tag-inheritance t)
  5230. (memq 'agenda org-agenda-use-tag-inheritance))))
  5231. tags (org-get-tags-at nil (not inherited-tags))
  5232. level (make-string (org-reduced-level (org-outline-level)) ? ))
  5233. (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
  5234. (setq head (or (match-string 1) ""))
  5235. (setq txt (org-agenda-format-item
  5236. (if inactivep org-agenda-inactive-leader nil)
  5237. head level category tags timestr
  5238. remove-re habitp)))
  5239. (setq priority (org-get-priority txt))
  5240. (org-add-props txt props 'priority priority
  5241. 'org-marker marker 'org-hd-marker hdmarker
  5242. 'date date
  5243. 'level level
  5244. 'ts-date
  5245. (ignore-errors (org-time-string-to-absolute timestr))
  5246. 'todo-state todo-state
  5247. 'warntime warntime
  5248. 'type "timestamp")
  5249. (push txt ee))
  5250. (if org-agenda-skip-additional-timestamps-same-entry
  5251. (outline-next-heading)
  5252. (goto-char end-of-match))))
  5253. (nreverse ee)))
  5254. (defun org-agenda-get-sexps ()
  5255. "Return the sexp information for agenda display."
  5256. (require 'diary-lib)
  5257. (let* ((props (list 'face 'org-agenda-calendar-sexp
  5258. 'mouse-face 'highlight
  5259. 'help-echo
  5260. (format "mouse-2 or RET jump to org file %s"
  5261. (abbreviate-file-name buffer-file-name))))
  5262. (regexp "^&?%%(")
  5263. marker category extra level ee txt tags entry
  5264. result beg b sexp sexp-entry todo-state warntime inherited-tags)
  5265. (goto-char (point-min))
  5266. (while (re-search-forward regexp nil t)
  5267. (catch :skip
  5268. (org-agenda-skip)
  5269. (setq beg (match-beginning 0))
  5270. (goto-char (1- (match-end 0)))
  5271. (setq b (point))
  5272. (forward-sexp 1)
  5273. (setq sexp (buffer-substring b (point)))
  5274. (setq sexp-entry (if (looking-at "[ \t]*\\(\\S-.*\\)")
  5275. (org-trim (match-string 1))
  5276. ""))
  5277. (setq result (org-diary-sexp-entry sexp sexp-entry date))
  5278. (when result
  5279. (setq marker (org-agenda-new-marker beg)
  5280. level (make-string (org-reduced-level (org-outline-level)) ? )
  5281. category (org-get-category beg)
  5282. inherited-tags
  5283. (or (eq org-agenda-show-inherited-tags 'always)
  5284. (and (listp org-agenda-show-inherited-tags)
  5285. (memq 'agenda org-agenda-show-inherited-tags))
  5286. (and (eq org-agenda-show-inherited-tags t)
  5287. (or (eq org-agenda-use-tag-inheritance t)
  5288. (memq 'agenda org-agenda-use-tag-inheritance))))
  5289. tags (org-get-tags-at nil (not inherited-tags))
  5290. todo-state (org-get-todo-state)
  5291. warntime (get-text-property (point) 'org-appt-warntime)
  5292. extra nil)
  5293. (dolist (r (if (stringp result)
  5294. (list result)
  5295. result)) ;; we expect a list here
  5296. (when (and org-agenda-diary-sexp-prefix
  5297. (string-match org-agenda-diary-sexp-prefix r))
  5298. (setq extra (match-string 0 r)
  5299. r (replace-match "" nil nil r)))
  5300. (if (string-match "\\S-" r)
  5301. (setq txt r)
  5302. (setq txt "SEXP entry returned empty string"))
  5303. (setq txt (org-agenda-format-item extra txt level category tags 'time))
  5304. (org-add-props txt props 'org-marker marker
  5305. 'date date 'todo-state todo-state
  5306. 'level level 'type "sexp" 'warntime warntime)
  5307. (push txt ee)))))
  5308. (nreverse ee)))
  5309. ;; Calendar sanity: define some functions that are independent of
  5310. ;; `calendar-date-style'.
  5311. ;; Normally I would like to use ISO format when calling the diary functions,
  5312. ;; but to make sure we still have Emacs 22 compatibility we bind
  5313. ;; also `european-calendar-style' and use european format
  5314. (defun org-anniversary (year month day &optional mark)
  5315. "Like `diary-anniversary', but with fixed (ISO) order of arguments."
  5316. (org-no-warnings
  5317. (let ((calendar-date-style 'european) (european-calendar-style t))
  5318. (diary-anniversary day month year mark))))
  5319. (defun org-cyclic (N year month day &optional mark)
  5320. "Like `diary-cyclic', but with fixed (ISO) order of arguments."
  5321. (org-no-warnings
  5322. (let ((calendar-date-style 'european) (european-calendar-style t))
  5323. (diary-cyclic N day month year mark))))
  5324. (defun org-block (Y1 M1 D1 Y2 M2 D2 &optional mark)
  5325. "Like `diary-block', but with fixed (ISO) order of arguments."
  5326. (org-no-warnings
  5327. (let ((calendar-date-style 'european) (european-calendar-style t))
  5328. (diary-block D1 M1 Y1 D2 M2 Y2 mark))))
  5329. (defun org-date (year month day &optional mark)
  5330. "Like `diary-date', but with fixed (ISO) order of arguments."
  5331. (org-no-warnings
  5332. (let ((calendar-date-style 'european) (european-calendar-style t))
  5333. (diary-date day month year mark))))
  5334. ;; Define the `org-class' function
  5335. (defun org-class (y1 m1 d1 y2 m2 d2 dayname &rest skip-weeks)
  5336. "Entry applies if date is between dates on DAYNAME, but skips SKIP-WEEKS.
  5337. DAYNAME is a number between 0 (Sunday) and 6 (Saturday).
  5338. SKIP-WEEKS is any number of ISO weeks in the block period for which the
  5339. item should be skipped. If any of the SKIP-WEEKS arguments is the symbol
  5340. `holidays', then any date that is known by the Emacs calendar to be a
  5341. holiday will also be skipped. If SKIP-WEEKS arguments are holiday strings,
  5342. then those holidays will be skipped."
  5343. (let* ((date1 (calendar-absolute-from-gregorian (list m1 d1 y1)))
  5344. (date2 (calendar-absolute-from-gregorian (list m2 d2 y2)))
  5345. (d (calendar-absolute-from-gregorian date))
  5346. (h (when skip-weeks (calendar-check-holidays date))))
  5347. (and
  5348. (<= date1 d)
  5349. (<= d date2)
  5350. (= (calendar-day-of-week date) dayname)
  5351. (or (not skip-weeks)
  5352. (progn
  5353. (require 'cal-iso)
  5354. (not (member (car (calendar-iso-from-absolute d)) skip-weeks))))
  5355. (not (or (and h (memq 'holidays skip-weeks))
  5356. (delq nil (mapcar (lambda(g) (member g skip-weeks)) h))))
  5357. entry)))
  5358. (defun org-diary-class (m1 d1 y1 m2 d2 y2 dayname &rest skip-weeks)
  5359. "Like `org-class', but honor `calendar-date-style'.
  5360. The order of the first 2 times 3 arguments depends on the variable
  5361. `calendar-date-style' or, if that is not defined, on `european-calendar-style'.
  5362. So for American calendars, give this as MONTH DAY YEAR, for European as
  5363. DAY MONTH YEAR, and for ISO as YEAR MONTH DAY.
  5364. DAYNAME is a number between 0 (Sunday) and 6 (Saturday). SKIP-WEEKS
  5365. is any number of ISO weeks in the block period for which the item should
  5366. be skipped.
  5367. This function is here only for backward compatibility and it is deprecated,
  5368. please use `org-class' instead."
  5369. (let* ((date1 (org-order-calendar-date-args m1 d1 y1))
  5370. (date2 (org-order-calendar-date-args m2 d2 y2)))
  5371. (org-class
  5372. (nth 2 date1) (car date1) (nth 1 date1)
  5373. (nth 2 date2) (car date2) (nth 1 date2)
  5374. dayname skip-weeks)))
  5375. (make-obsolete 'org-diary-class 'org-class "")
  5376. (defalias 'org-get-closed 'org-agenda-get-progress)
  5377. (defun org-agenda-get-progress ()
  5378. "Return the logged TODO entries for agenda display."
  5379. (let* ((props (list 'mouse-face 'highlight
  5380. 'org-not-done-regexp org-not-done-regexp
  5381. 'org-todo-regexp org-todo-regexp
  5382. 'org-complex-heading-regexp org-complex-heading-regexp
  5383. 'help-echo
  5384. (format "mouse-2 or RET jump to org file %s"
  5385. (abbreviate-file-name buffer-file-name))))
  5386. (items (if (consp org-agenda-show-log-scoped)
  5387. org-agenda-show-log-scoped
  5388. (if (eq org-agenda-show-log-scoped 'clockcheck)
  5389. '(clock)
  5390. org-agenda-log-mode-items)))
  5391. (parts
  5392. (delq nil
  5393. (list
  5394. (if (memq 'closed items) (concat "\\<" org-closed-string))
  5395. (if (memq 'clock items) (concat "\\<" org-clock-string))
  5396. (if (memq 'state items) "- State \"\\([a-zA-Z0-9]+\\)\".*?"))))
  5397. (parts-re (if parts (mapconcat 'identity parts "\\|")
  5398. (error "`org-agenda-log-mode-items' is empty")))
  5399. (regexp (concat
  5400. "\\(" parts-re "\\)"
  5401. " *\\["
  5402. (regexp-quote
  5403. (substring
  5404. (format-time-string
  5405. (car org-time-stamp-formats)
  5406. (apply 'encode-time ; DATE bound by calendar
  5407. (list 0 0 0 (nth 1 date) (car date) (nth 2 date))))
  5408. 1 11))))
  5409. (org-agenda-search-headline-for-time nil)
  5410. marker hdmarker priority category level tags closedp
  5411. statep clockp state ee txt extra timestr rest clocked inherited-tags)
  5412. (goto-char (point-min))
  5413. (while (re-search-forward regexp nil t)
  5414. (catch :skip
  5415. (org-agenda-skip)
  5416. (setq marker (org-agenda-new-marker (match-beginning 0))
  5417. closedp (equal (match-string 1) org-closed-string)
  5418. statep (equal (string-to-char (match-string 1)) ?-)
  5419. clockp (not (or closedp statep))
  5420. state (and statep (match-string 2))
  5421. category (org-get-category (match-beginning 0))
  5422. timestr (buffer-substring (match-beginning 0) (point-at-eol)))
  5423. (when (string-match "\\]" timestr)
  5424. ;; substring should only run to end of time stamp
  5425. (setq rest (substring timestr (match-end 0))
  5426. timestr (substring timestr 0 (match-end 0)))
  5427. (if (and (not closedp) (not statep)
  5428. (string-match "\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)\\].*?\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)"
  5429. rest))
  5430. (progn (setq timestr (concat (substring timestr 0 -1)
  5431. "-" (match-string 1 rest) "]"))
  5432. (setq clocked (match-string 2 rest)))
  5433. (setq clocked "-")))
  5434. (save-excursion
  5435. (setq extra
  5436. (cond
  5437. ((not org-agenda-log-mode-add-notes) nil)
  5438. (statep
  5439. (and (looking-at ".*\\\\\n[ \t]*\\([^-\n \t].*?\\)[ \t]*$")
  5440. (match-string 1)))
  5441. (clockp
  5442. (and (looking-at ".*\n[ \t]*-[ \t]+\\([^-\n \t].*?\\)[ \t]*$")
  5443. (match-string 1)))))
  5444. (if (not (re-search-backward org-outline-regexp-bol nil t))
  5445. (throw :skip nil)
  5446. (goto-char (match-beginning 0))
  5447. (setq hdmarker (org-agenda-new-marker)
  5448. inherited-tags
  5449. (or (eq org-agenda-show-inherited-tags 'always)
  5450. (and (listp org-agenda-show-inherited-tags)
  5451. (memq 'todo org-agenda-show-inherited-tags))
  5452. (and (eq org-agenda-show-inherited-tags t)
  5453. (or (eq org-agenda-use-tag-inheritance t)
  5454. (memq 'todo org-agenda-use-tag-inheritance))))
  5455. tags (org-get-tags-at nil (not inherited-tags))
  5456. level (make-string (org-reduced-level (org-outline-level)) ? ))
  5457. (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
  5458. (setq txt (match-string 1))
  5459. (when extra
  5460. (if (string-match "\\([ \t]+\\)\\(:[^ \n\t]*?:\\)[ \t]*$" txt)
  5461. (setq txt (concat (substring txt 0 (match-beginning 1))
  5462. " - " extra " " (match-string 2 txt)))
  5463. (setq txt (concat txt " - " extra))))
  5464. (setq txt (org-agenda-format-item
  5465. (cond
  5466. (closedp "Closed: ")
  5467. (statep (concat "State: (" state ")"))
  5468. (t (concat "Clocked: (" clocked ")")))
  5469. txt level category tags timestr)))
  5470. (setq priority 100000)
  5471. (org-add-props txt props
  5472. 'org-marker marker 'org-hd-marker hdmarker 'face 'org-agenda-done
  5473. 'priority priority 'level level
  5474. 'type "closed" 'date date
  5475. 'undone-face 'org-warning 'done-face 'org-agenda-done)
  5476. (push txt ee))
  5477. (goto-char (point-at-eol))))
  5478. (nreverse ee)))
  5479. (defun org-agenda-show-clocking-issues ()
  5480. "Add overlays, showing issues with clocking.
  5481. See also the user option `org-agenda-clock-consistency-checks'."
  5482. (interactive)
  5483. (let* ((org-time-clocksum-use-effort-durations nil)
  5484. (pl org-agenda-clock-consistency-checks)
  5485. (re (concat "^[ \t]*"
  5486. org-clock-string
  5487. "[ \t]+"
  5488. "\\(\\[.*?\\]\\)" ; group 1 is first stamp
  5489. "\\(-\\{1,3\\}\\(\\[.*?\\]\\)\\)?")) ; group 3 is second
  5490. (tlstart 0.)
  5491. (tlend 0.)
  5492. (maxtime (org-hh:mm-string-to-minutes
  5493. (or (plist-get pl :max-duration) "24:00")))
  5494. (mintime (org-hh:mm-string-to-minutes
  5495. (or (plist-get pl :min-duration) 0)))
  5496. (maxgap (org-hh:mm-string-to-minutes
  5497. ;; default 30:00 means never complain
  5498. (or (plist-get pl :max-gap) "30:00")))
  5499. (gapok (mapcar 'org-hh:mm-string-to-minutes
  5500. (plist-get pl :gap-ok-around)))
  5501. (def-face (or (plist-get pl :default-face)
  5502. '((:background "DarkRed") (:foreground "white"))))
  5503. issue face m te ts dt ov)
  5504. (goto-char (point-min))
  5505. (while (re-search-forward " Clocked: +(-\\|\\([0-9]+:[0-9]+\\))" nil t)
  5506. (setq issue nil face def-face)
  5507. (catch 'next
  5508. (setq m (org-get-at-bol 'org-marker)
  5509. te nil ts nil)
  5510. (unless (and m (markerp m))
  5511. (setq issue "No valid clock line") (throw 'next t))
  5512. (org-with-point-at m
  5513. (save-excursion
  5514. (goto-char (point-at-bol))
  5515. (unless (looking-at re)
  5516. (error "No valid Clock line")
  5517. (throw 'next t))
  5518. (unless (match-end 3)
  5519. (setq issue "No end time"
  5520. face (or (plist-get pl :no-end-time-face) face))
  5521. (throw 'next t))
  5522. (setq ts (match-string 1)
  5523. te (match-string 3)
  5524. ts (org-float-time
  5525. (apply 'encode-time (org-parse-time-string ts)))
  5526. te (org-float-time
  5527. (apply 'encode-time (org-parse-time-string te)))
  5528. dt (- te ts))))
  5529. (cond
  5530. ((> dt (* 60 maxtime))
  5531. ;; a very long clocking chunk
  5532. (setq issue (format "Clocking interval is very long: %s"
  5533. (org-minutes-to-clocksum-string
  5534. (floor (/ (float dt) 60.))))
  5535. face (or (plist-get pl :long-face) face)))
  5536. ((< dt (* 60 mintime))
  5537. ;; a very short clocking chunk
  5538. (setq issue (format "Clocking interval is very short: %s"
  5539. (org-minutes-to-clocksum-string
  5540. (floor (/ (float dt) 60.))))
  5541. face (or (plist-get pl :short-face) face)))
  5542. ((and (> tlend 0) (< ts tlend))
  5543. ;; Two clock entries are overlapping
  5544. (setq issue (format "Clocking overlap: %d minutes"
  5545. (/ (- tlend ts) 60))
  5546. face (or (plist-get pl :overlap-face) face)))
  5547. ((and (> tlend 0) (> ts (+ tlend (* 60 maxgap))))
  5548. ;; There is a gap, lets see if we need to report it
  5549. (unless (org-agenda-check-clock-gap tlend ts gapok)
  5550. (setq issue (format "Clocking gap: %d minutes"
  5551. (/ (- ts tlend) 60))
  5552. face (or (plist-get pl :gap-face) face))))
  5553. (t nil)))
  5554. (setq tlend (or te tlend) tlstart (or ts tlstart))
  5555. (when issue
  5556. ;; OK, there was some issue, add an overlay to show the issue
  5557. (setq ov (make-overlay (point-at-bol) (point-at-eol)))
  5558. (overlay-put ov 'before-string
  5559. (concat
  5560. (org-add-props
  5561. (format "%-43s" (concat " " issue))
  5562. nil
  5563. 'face face)
  5564. "\n"))
  5565. (overlay-put ov 'evaporate t)))))
  5566. (defun org-agenda-check-clock-gap (t1 t2 ok-list)
  5567. "Check if gap T1 -> T2 contains one of the OK-LIST time-of-day values."
  5568. (catch 'exit
  5569. (unless ok-list
  5570. ;; there are no OK times for gaps...
  5571. (throw 'exit nil))
  5572. (if (> (- (/ t2 36000) (/ t1 36000)) 24)
  5573. ;; This is more than 24 hours, so it is OK.
  5574. ;; because we have at least one OK time, that must be in the
  5575. ;; 24 hour interval.
  5576. (throw 'exit t))
  5577. ;; We have a shorter gap.
  5578. ;; Now we have to get the minute of the day when these times are
  5579. (let* ((t1dec (decode-time (seconds-to-time t1)))
  5580. (t2dec (decode-time (seconds-to-time t2)))
  5581. ;; compute the minute on the day
  5582. (min1 (+ (nth 1 t1dec) (* 60 (nth 2 t1dec))))
  5583. (min2 (+ (nth 1 t2dec) (* 60 (nth 2 t2dec)))))
  5584. (when (< min2 min1)
  5585. ;; if min2 is smaller than min1, this means it is on the next day.
  5586. ;; Wrap it to after midnight.
  5587. (setq min2 (+ min2 1440)))
  5588. ;; Now check if any of the OK times is in the gap
  5589. (mapc (lambda (x)
  5590. ;; Wrap the time to after midnight if necessary
  5591. (if (< x min1) (setq x (+ x 1440)))
  5592. ;; Check if in interval
  5593. (and (<= min1 x) (>= min2 x) (throw 'exit t)))
  5594. ok-list)
  5595. ;; Nope, this gap is not OK
  5596. nil)))
  5597. (defun org-agenda-get-deadlines (&optional with-hour)
  5598. "Return the deadline information for agenda display.
  5599. When WITH-HOUR is non-nil, only return deadlines with an hour
  5600. specification like [h]h:mm."
  5601. (let* ((props (list 'mouse-face 'highlight
  5602. 'org-not-done-regexp org-not-done-regexp
  5603. 'org-todo-regexp org-todo-regexp
  5604. 'org-complex-heading-regexp org-complex-heading-regexp
  5605. 'help-echo
  5606. (format "mouse-2 or RET jump to org file %s"
  5607. (abbreviate-file-name buffer-file-name))))
  5608. (regexp (if with-hour
  5609. org-deadline-time-hour-regexp
  5610. org-deadline-time-regexp))
  5611. (todayp (org-agenda-today-p date)) ; DATE bound by calendar.
  5612. (current (calendar-absolute-from-gregorian date))
  5613. deadline-items)
  5614. (goto-char (point-min))
  5615. (while (re-search-forward regexp nil t)
  5616. (catch :skip
  5617. (unless (save-match-data (org-at-planning-p)) (throw :skip nil))
  5618. (org-agenda-skip)
  5619. (let* ((s (match-string 1))
  5620. (pos (1- (match-beginning 1)))
  5621. (todo-state (save-match-data (org-get-todo-state)))
  5622. (donep (member todo-state org-done-keywords))
  5623. (show-all (or (eq org-agenda-repeating-timestamp-show-all t)
  5624. (member todo-state
  5625. org-agenda-repeating-timestamp-show-all)))
  5626. ;; DEADLINE is the current scheduled date. When it
  5627. ;; contains a repeater and SHOW-ALL is non-nil,
  5628. ;; LAST-REPEAT is the repeat closest to CURRENT.
  5629. ;; Otherwise, LAST-REPEAT is equal to DEADLINE.
  5630. (last-repeat (org-agenda--timestamp-to-absolute
  5631. s current 'past show-all (current-buffer) pos))
  5632. (deadline (org-agenda--timestamp-to-absolute s current))
  5633. (diff (- last-repeat current))
  5634. (suppress-prewarning
  5635. (let ((scheduled
  5636. (and org-agenda-skip-deadline-prewarning-if-scheduled
  5637. (org-entry-get nil "SCHEDULED"))))
  5638. (cond
  5639. ((not scheduled) nil)
  5640. ;; The current item has a scheduled date, so
  5641. ;; evaluate its prewarning lead time.
  5642. ((integerp org-agenda-skip-deadline-prewarning-if-scheduled)
  5643. ;; Use global prewarning-restart lead time.
  5644. org-agenda-skip-deadline-prewarning-if-scheduled)
  5645. ((eq org-agenda-skip-deadline-prewarning-if-scheduled
  5646. 'pre-scheduled)
  5647. ;; Set pre-warning to no earlier than SCHEDULED.
  5648. (min (- last-repeat
  5649. (org-agenda--timestamp-to-absolute
  5650. scheduled current 'past show-all
  5651. (current-buffer)
  5652. (save-excursion
  5653. (beginning-of-line)
  5654. (1+ (search-forward org-deadline-string)))))
  5655. org-deadline-warning-days))
  5656. ;; Set pre-warning to deadline.
  5657. (t 0))))
  5658. (wdays (if suppress-prewarning
  5659. (let ((org-deadline-warning-days suppress-prewarning))
  5660. (org-get-wdays s))
  5661. (org-get-wdays s))))
  5662. ;; When to show a deadline in the calendar: if the
  5663. ;; expiration is within WDAYS warning time. Past-due
  5664. ;; deadlines are only shown on the current date
  5665. (unless (or (and (<= diff wdays)
  5666. (and todayp (not org-agenda-only-exact-dates)))
  5667. (= diff 0))
  5668. (throw :skip nil))
  5669. ;; Skip done tasks if `org-agenda-skip-deadline-if-done' is
  5670. ;; non-nil or if it isn't applicable to CURRENT deadline.
  5671. (when (and donep
  5672. (or org-agenda-skip-deadline-if-done
  5673. (/= deadline current)))
  5674. (throw :skip nil))
  5675. (save-excursion
  5676. (re-search-backward "^\\*+[ \t]+" nil t)
  5677. (goto-char (match-end 0))
  5678. (let* ((category (org-get-category))
  5679. (level
  5680. (make-string (org-reduced-level (org-outline-level)) ?\s))
  5681. (head (buffer-substring (point) (line-end-position)))
  5682. (inherited-tags
  5683. (or (eq org-agenda-show-inherited-tags 'always)
  5684. (and (listp org-agenda-show-inherited-tags)
  5685. (memq 'agenda org-agenda-show-inherited-tags))
  5686. (and (eq org-agenda-show-inherited-tags t)
  5687. (or (eq org-agenda-use-tag-inheritance t)
  5688. (memq 'agenda
  5689. org-agenda-use-tag-inheritance)))))
  5690. (tags (org-get-tags-at nil (not inherited-tags)))
  5691. (timestr
  5692. (if (string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
  5693. (concat (substring s (match-beginning 1)) " ")
  5694. 'time))
  5695. (item
  5696. (org-agenda-format-item
  5697. ;; For past deadlines, make sure to report time
  5698. ;; difference since date S, not since closest
  5699. ;; repeater.
  5700. (let ((diff (if (< (org-today) current) diff
  5701. (- deadline current))))
  5702. (if (= diff 0) (car org-agenda-deadline-leaders)
  5703. (let ((future (nth 1 org-agenda-deadline-leaders))
  5704. (past (nth 2 org-agenda-deadline-leaders)))
  5705. (cond ((> diff 0) (format future diff))
  5706. ((string= future past) (format past diff))
  5707. (t (format past (abs diff)))))))
  5708. head level category tags
  5709. (and (= diff 0) timestr)))
  5710. (face (org-agenda-deadline-face
  5711. (- 1 (/ (float (- deadline current)) (max wdays 1)))))
  5712. (upcomingp (and todayp (> diff 0)))
  5713. (warntime (get-text-property (point) 'org-appt-warntime)))
  5714. (org-add-props item props
  5715. 'org-marker (org-agenda-new-marker pos)
  5716. 'org-hd-marker (org-agenda-new-marker (line-beginning-position))
  5717. 'warntime warntime
  5718. 'level level
  5719. 'ts-date deadline
  5720. 'priority (- (org-get-priority item) diff)
  5721. 'todo-state todo-state
  5722. 'type (if upcomingp "upcoming-deadline" "deadline")
  5723. 'date (if upcomingp date deadline)
  5724. 'face (if donep 'org-agenda-done face)
  5725. 'undone-face face
  5726. 'done-face 'org-agenda-done)
  5727. (push item deadline-items))))))
  5728. (nreverse deadline-items)))
  5729. (defun org-agenda-deadline-face (fraction)
  5730. "Return the face to displaying a deadline item.
  5731. FRACTION is what fraction of the head-warning time has passed."
  5732. (let ((faces org-agenda-deadline-faces) f)
  5733. (catch 'exit
  5734. (while (setq f (pop faces))
  5735. (if (>= fraction (car f)) (throw 'exit (cdr f)))))))
  5736. (defun org-agenda-get-scheduled (&optional deadlines with-hour)
  5737. "Return the scheduled information for agenda display.
  5738. Optional argument DEADLINES is a list of deadline items to be
  5739. displayed in agenda view. When WITH-HOUR is non-nil, only return
  5740. scheduled items with an hour specification like [h]h:mm."
  5741. (let* ((props (list 'org-not-done-regexp org-not-done-regexp
  5742. 'org-todo-regexp org-todo-regexp
  5743. 'org-complex-heading-regexp org-complex-heading-regexp
  5744. 'done-face 'org-agenda-done
  5745. 'mouse-face 'highlight
  5746. 'help-echo
  5747. (format "mouse-2 or RET jump to org file %s"
  5748. (abbreviate-file-name buffer-file-name))))
  5749. (regexp (if with-hour
  5750. org-scheduled-time-hour-regexp
  5751. org-scheduled-time-regexp))
  5752. (todayp (org-agenda-today-p date)) ; DATE bound by calendar.
  5753. (current (calendar-absolute-from-gregorian date))
  5754. (deadline-pos
  5755. (mapcar (lambda (d)
  5756. (let ((m (get-text-property 0 'org-hd-marker d)))
  5757. (and m (marker-position m))))
  5758. deadlines))
  5759. scheduled-items)
  5760. (goto-char (point-min))
  5761. (while (re-search-forward regexp nil t)
  5762. (catch :skip
  5763. (unless (save-match-data (org-at-planning-p)) (throw :skip nil))
  5764. (org-agenda-skip)
  5765. (let* ((s (match-string 1))
  5766. (pos (1- (match-beginning 1)))
  5767. (todo-state (save-match-data (org-get-todo-state)))
  5768. (donep (member todo-state org-done-keywords))
  5769. (show-all (or (eq org-agenda-repeating-timestamp-show-all t)
  5770. (member todo-state
  5771. org-agenda-repeating-timestamp-show-all)))
  5772. ;; SCHEDULE is the current scheduled date. When it
  5773. ;; contains a repeater and SHOW-ALL is non-nil,
  5774. ;; LAST-REPEAT is the repeat closest to CURRENT.
  5775. ;; Otherwise, LAST-REPEAT is equal to SCHEDULE.
  5776. (last-repeat (org-agenda--timestamp-to-absolute
  5777. s current 'past show-all (current-buffer) pos))
  5778. (schedule (org-agenda--timestamp-to-absolute s current))
  5779. (diff (- last-repeat current))
  5780. (warntime (get-text-property (point) 'org-appt-warntime))
  5781. (pastschedp (< schedule (org-today)))
  5782. (habitp (and (fboundp 'org-is-habit-p) (org-is-habit-p)))
  5783. (suppress-delay
  5784. (let ((deadline (and org-agenda-skip-scheduled-delay-if-deadline
  5785. (org-entry-get nil "DEADLINE"))))
  5786. (cond
  5787. ((not deadline) nil)
  5788. ;; The current item has a deadline date, so
  5789. ;; evaluate its delay time.
  5790. ((integerp org-agenda-skip-scheduled-delay-if-deadline)
  5791. ;; Use global delay time.
  5792. (- org-agenda-skip-scheduled-delay-if-deadline))
  5793. ((eq org-agenda-skip-scheduled-delay-if-deadline
  5794. 'post-deadline)
  5795. ;; Set delay to no later than DEADLINE. If
  5796. ;; DEADLINE has a repeater, compare last schedule
  5797. ;; repeat and last deadline repeat.
  5798. (min (- last-repeat
  5799. (org-agenda--timestamp-to-absolute
  5800. deadline current 'past show-all
  5801. (current-buffer)
  5802. (save-excursion
  5803. (beginning-of-line)
  5804. (1+ (search-forward org-deadline-string)))))
  5805. org-scheduled-delay-days))
  5806. (t 0))))
  5807. (ddays
  5808. (cond
  5809. ;; Nullify delay when a repeater triggered already
  5810. ;; and the delay is of the form --Xd.
  5811. ((and (save-match-data (string-match "--[0-9]+[hdwmy]" s))
  5812. (/= schedule last-repeat))
  5813. 0)
  5814. (suppress-delay
  5815. (let ((org-scheduled-delay-days suppress-delay))
  5816. (org-get-wdays s t t)))
  5817. (t (org-get-wdays s t)))))
  5818. ;; Only show a scheduled item in the calendar if it is on or
  5819. ;; past the current date. Skip it if it has been displayed
  5820. ;; for more than `org-scheduled-past-days'.
  5821. (unless (or (and (>= ddays 0) (= diff (- ddays)))
  5822. (and (< (+ diff ddays) 0)
  5823. (< (abs diff) org-scheduled-past-days)
  5824. (and todayp (not org-agenda-only-exact-dates)))
  5825. (and todayp
  5826. habitp
  5827. (bound-and-true-p org-habit-show-all-today)))
  5828. (throw :skip nil))
  5829. ;; Skip done habits, or tasks if
  5830. ;; `org-agenda-skip-deadline-if-done' is non-nil or if it
  5831. ;; was scheduled in the past anyway.
  5832. (when (and donep
  5833. (or org-agenda-skip-scheduled-if-done
  5834. (/= schedule current)
  5835. habitp))
  5836. (throw :skip nil))
  5837. ;; Skip entry if it already appears as a deadline, per
  5838. ;; `org-agenda-skip-scheduled-if-deadline-is-shown'. This
  5839. ;; doesn't apply to habits.
  5840. (when (pcase org-agenda-skip-scheduled-if-deadline-is-shown
  5841. ((guard
  5842. (or (not (assq (line-beginning-position 0) deadline-pos))
  5843. habitp))
  5844. nil)
  5845. (`repeated-after-deadline
  5846. (>= last-repeat
  5847. (time-to-days (org-get-deadline-time (point)))))
  5848. (`not-today pastschedp)
  5849. (`t t)
  5850. (_ nil))
  5851. (throw :skip nil))
  5852. ;; Skip habits if `org-habit-show-habits' is nil, or if we
  5853. ;; only show them for today.
  5854. (when (and habitp
  5855. (or (not (bound-and-true-p org-habit-show-habits))
  5856. (and (not todayp)
  5857. (bound-and-true-p
  5858. org-habit-show-habits-only-for-today))))
  5859. (throw :skip nil))
  5860. (save-excursion
  5861. (re-search-backward "^\\*+[ \t]+" nil t)
  5862. (goto-char (match-end 0))
  5863. (let* ((category (org-get-category))
  5864. (inherited-tags
  5865. (or (eq org-agenda-show-inherited-tags 'always)
  5866. (and (listp org-agenda-show-inherited-tags)
  5867. (memq 'agenda org-agenda-show-inherited-tags))
  5868. (and (eq org-agenda-show-inherited-tags t)
  5869. (or (eq org-agenda-use-tag-inheritance t)
  5870. (memq 'agenda
  5871. org-agenda-use-tag-inheritance)))))
  5872. (tags (org-get-tags-at nil (not inherited-tags)))
  5873. (level
  5874. (make-string (org-reduced-level (org-outline-level)) ?\s))
  5875. (head (buffer-substring (point) (line-end-position)))
  5876. (timestr
  5877. (if (string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
  5878. (concat (substring s (match-beginning 1)) " ")
  5879. 'time))
  5880. (item (org-agenda-format-item
  5881. ;; For past scheduled dates, make sure to
  5882. ;; report time difference since SCHEDULE,
  5883. ;; not since closest repeater.
  5884. (let ((diff (if (< (org-today) current) diff
  5885. (- schedule current))))
  5886. (if (= diff 0) (car org-agenda-scheduled-leaders)
  5887. (format (nth 1 org-agenda-scheduled-leaders)
  5888. (- 1 diff))))
  5889. head level category tags
  5890. (and (= diff 0) timestr)
  5891. nil habitp))
  5892. (face (cond ((and (not habitp) pastschedp)
  5893. 'org-scheduled-previously)
  5894. (todayp 'org-scheduled-today)
  5895. (t 'org-scheduled)))
  5896. (habitp (and habitp (org-habit-parse-todo))))
  5897. (org-add-props item props
  5898. 'undone-face face
  5899. 'face (if donep 'org-agenda-done face)
  5900. 'org-marker (org-agenda-new-marker pos)
  5901. 'org-hd-marker (org-agenda-new-marker (line-beginning-position))
  5902. 'type (if pastschedp "past-scheduled" "scheduled")
  5903. 'date (if pastschedp schedule date)
  5904. 'ts-date schedule
  5905. 'warntime warntime
  5906. 'level level
  5907. 'priority (if habitp (org-habit-get-priority habitp)
  5908. (+ 94 (- 5 diff) (org-get-priority item)))
  5909. 'org-habit-p habitp
  5910. 'todo-state todo-state)
  5911. (push item scheduled-items))))))
  5912. (nreverse scheduled-items)))
  5913. (defun org-agenda-get-blocks ()
  5914. "Return the date-range information for agenda display."
  5915. (let* ((props (list 'face nil
  5916. 'org-not-done-regexp org-not-done-regexp
  5917. 'org-todo-regexp org-todo-regexp
  5918. 'org-complex-heading-regexp org-complex-heading-regexp
  5919. 'mouse-face 'highlight
  5920. 'help-echo
  5921. (format "mouse-2 or RET jump to org file %s"
  5922. (abbreviate-file-name buffer-file-name))))
  5923. (regexp org-tr-regexp)
  5924. (d0 (calendar-absolute-from-gregorian date))
  5925. marker hdmarker ee txt d1 d2 s1 s2 category
  5926. level todo-state tags pos head donep inherited-tags)
  5927. (goto-char (point-min))
  5928. (while (re-search-forward regexp nil t)
  5929. (catch :skip
  5930. (org-agenda-skip)
  5931. (setq pos (point))
  5932. (let ((start-time (match-string 1))
  5933. (end-time (match-string 2)))
  5934. (setq s1 (match-string 1)
  5935. s2 (match-string 2)
  5936. d1 (time-to-days (org-time-string-to-time s1 (current-buffer) pos))
  5937. d2 (time-to-days (org-time-string-to-time s2 (current-buffer) pos)))
  5938. (if (and (> (- d0 d1) -1) (> (- d2 d0) -1))
  5939. ;; Only allow days between the limits, because the normal
  5940. ;; date stamps will catch the limits.
  5941. (save-excursion
  5942. (setq todo-state (org-get-todo-state))
  5943. (setq donep (member todo-state org-done-keywords))
  5944. (if (and donep org-agenda-skip-timestamp-if-done)
  5945. (throw :skip t))
  5946. (setq marker (org-agenda-new-marker (point))
  5947. category (org-get-category))
  5948. (if (not (re-search-backward org-outline-regexp-bol nil t))
  5949. (throw :skip nil)
  5950. (goto-char (match-beginning 0))
  5951. (setq hdmarker (org-agenda-new-marker (point))
  5952. inherited-tags
  5953. (or (eq org-agenda-show-inherited-tags 'always)
  5954. (and (listp org-agenda-show-inherited-tags)
  5955. (memq 'agenda org-agenda-show-inherited-tags))
  5956. (and (eq org-agenda-show-inherited-tags t)
  5957. (or (eq org-agenda-use-tag-inheritance t)
  5958. (memq 'agenda org-agenda-use-tag-inheritance))))
  5959. tags (org-get-tags-at nil (not inherited-tags)))
  5960. (setq level (make-string (org-reduced-level (org-outline-level)) ? ))
  5961. (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
  5962. (setq head (match-string 1))
  5963. (let ((remove-re
  5964. (if org-agenda-remove-timeranges-from-blocks
  5965. (concat
  5966. "<" (regexp-quote s1) ".*?>"
  5967. "--"
  5968. "<" (regexp-quote s2) ".*?>")
  5969. nil)))
  5970. (setq txt (org-agenda-format-item
  5971. (format
  5972. (nth (if (= d1 d2) 0 1)
  5973. org-agenda-timerange-leaders)
  5974. (1+ (- d0 d1)) (1+ (- d2 d1)))
  5975. head level category tags
  5976. (cond ((and (= d1 d0) (= d2 d0))
  5977. (concat "<" start-time ">--<" end-time ">"))
  5978. ((= d1 d0)
  5979. (concat "<" start-time ">"))
  5980. ((= d2 d0)
  5981. (concat "<" end-time ">")))
  5982. remove-re))))
  5983. (org-add-props txt props
  5984. 'org-marker marker 'org-hd-marker hdmarker
  5985. 'type "block" 'date date
  5986. 'level level
  5987. 'todo-state todo-state
  5988. 'priority (org-get-priority txt))
  5989. (push txt ee))))
  5990. (goto-char pos)))
  5991. ;; Sort the entries by expiration date.
  5992. (nreverse ee)))
  5993. ;;; Agenda presentation and sorting
  5994. (defvar org-prefix-has-time nil
  5995. "A flag, set by `org-compile-prefix-format'.
  5996. The flag is set if the currently compiled format contains a `%t'.")
  5997. (defvar org-prefix-has-tag nil
  5998. "A flag, set by `org-compile-prefix-format'.
  5999. The flag is set if the currently compiled format contains a `%T'.")
  6000. (defvar org-prefix-has-effort nil
  6001. "A flag, set by `org-compile-prefix-format'.
  6002. The flag is set if the currently compiled format contains a `%e'.")
  6003. (defvar org-prefix-has-breadcrumbs nil
  6004. "A flag, set by `org-compile-prefix-format'.
  6005. The flag is set if the currently compiled format contains a `%b'.")
  6006. (defvar org-prefix-category-length nil
  6007. "Used by `org-compile-prefix-format' to remember the category field width.")
  6008. (defvar org-prefix-category-max-length nil
  6009. "Used by `org-compile-prefix-format' to remember the category field width.")
  6010. (defun org-agenda-get-category-icon (category)
  6011. "Return an image for CATEGORY according to `org-agenda-category-icon-alist'."
  6012. (dolist (entry org-agenda-category-icon-alist)
  6013. (when (org-string-match-p (car entry) category)
  6014. (if (listp (cadr entry))
  6015. (return (cadr entry))
  6016. (return (apply 'create-image (cdr entry)))))))
  6017. (defun org-agenda-format-item (extra txt &optional level category tags dotime
  6018. remove-re habitp)
  6019. "Format TXT to be inserted into the agenda buffer.
  6020. In particular, add the prefix and corresponding text properties.
  6021. EXTRA must be a string to replace the `%s' specifier in the prefix format.
  6022. LEVEL may be a string to replace the `%l' specifier.
  6023. CATEGORY (a string, a symbol or nil) may be used to overrule the default
  6024. category taken from local variable or file name. It will replace the `%c'
  6025. specifier in the format.
  6026. DOTIME, when non-nil, indicates that a time-of-day should be extracted from
  6027. TXT for sorting of this entry, and for the `%t' specifier in the format.
  6028. When DOTIME is a string, this string is searched for a time before TXT is.
  6029. TAGS can be the tags of the headline.
  6030. Any match of REMOVE-RE will be removed from TXT."
  6031. ;; We keep the org-prefix-* variable values along with a compiled
  6032. ;; formatter, so that multiple agendas existing at the same time do
  6033. ;; not step on each other toes.
  6034. ;;
  6035. ;; It was inconvenient to make these variables buffer local in
  6036. ;; Agenda buffers, because this function expects to be called with
  6037. ;; the buffer where item comes from being current, and not agenda
  6038. ;; buffer
  6039. (let* ((bindings (car org-prefix-format-compiled))
  6040. (formatter (cadr org-prefix-format-compiled)))
  6041. (loop for (var value) in bindings
  6042. do (set var value))
  6043. (save-match-data
  6044. ;; Diary entries sometimes have extra whitespace at the beginning
  6045. (setq txt (org-trim txt))
  6046. ;; Fix the tags part in txt
  6047. (setq txt (org-agenda-fix-displayed-tags
  6048. txt tags
  6049. org-agenda-show-inherited-tags
  6050. org-agenda-hide-tags-regexp))
  6051. (let* ((category (or category
  6052. (if buffer-file-name
  6053. (file-name-sans-extension
  6054. (file-name-nondirectory buffer-file-name))
  6055. "")))
  6056. (category-icon (org-agenda-get-category-icon category))
  6057. (category-icon (if category-icon
  6058. (propertize " " 'display category-icon)
  6059. ""))
  6060. (effort (and (not (string= txt ""))
  6061. (get-text-property 1 'effort txt)))
  6062. ;; time, tag, effort are needed for the eval of the prefix format
  6063. (tag (if tags (nth (1- (length tags)) tags) ""))
  6064. time
  6065. (ts (if dotime (concat
  6066. (if (stringp dotime) dotime "")
  6067. (and org-agenda-search-headline-for-time txt))))
  6068. (time-of-day (and dotime (org-get-time-of-day ts)))
  6069. stamp plain s0 s1 s2 rtn srp l
  6070. duration breadcrumbs)
  6071. (and (derived-mode-p 'org-mode) buffer-file-name
  6072. (add-to-list 'org-agenda-contributing-files buffer-file-name))
  6073. (when (and dotime time-of-day)
  6074. ;; Extract starting and ending time and move them to prefix
  6075. (when (or (setq stamp (string-match org-stamp-time-of-day-regexp ts))
  6076. (setq plain (string-match org-plain-time-of-day-regexp ts)))
  6077. (setq s0 (match-string 0 ts)
  6078. srp (and stamp (match-end 3))
  6079. s1 (match-string (if plain 1 2) ts)
  6080. s2 (match-string (if plain 8 (if srp 4 6)) ts))
  6081. ;; If the times are in TXT (not in DOTIMES), and the prefix will list
  6082. ;; them, we might want to remove them there to avoid duplication.
  6083. ;; The user can turn this off with a variable.
  6084. (if (and org-prefix-has-time
  6085. org-agenda-remove-times-when-in-prefix (or stamp plain)
  6086. (string-match (concat (regexp-quote s0) " *") txt)
  6087. (not (equal ?\] (string-to-char (substring txt (match-end 0)))))
  6088. (if (eq org-agenda-remove-times-when-in-prefix 'beg)
  6089. (= (match-beginning 0) 0)
  6090. t))
  6091. (setq txt (replace-match "" nil nil txt))))
  6092. ;; Normalize the time(s) to 24 hour
  6093. (if s1 (setq s1 (org-get-time-of-day s1 'string t)))
  6094. (if s2 (setq s2 (org-get-time-of-day s2 'string t)))
  6095. ;; Try to set s2 if s1 and `org-agenda-default-appointment-duration' are set
  6096. (let (org-time-clocksum-use-effort-durations)
  6097. (when (and s1 (not s2) org-agenda-default-appointment-duration)
  6098. (setq s2
  6099. (org-minutes-to-clocksum-string
  6100. (+ (org-hh:mm-string-to-minutes s1)
  6101. org-agenda-default-appointment-duration)))))
  6102. ;; Compute the duration
  6103. (when s2
  6104. (setq duration (- (org-hh:mm-string-to-minutes s2)
  6105. (org-hh:mm-string-to-minutes s1)))))
  6106. (when (string-match (org-re "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$")
  6107. txt)
  6108. ;; Tags are in the string
  6109. (if (or (eq org-agenda-remove-tags t)
  6110. (and org-agenda-remove-tags
  6111. org-prefix-has-tag))
  6112. (setq txt (replace-match "" t t txt))
  6113. (setq txt (replace-match
  6114. (concat (make-string (max (- 50 (length txt)) 1) ?\ )
  6115. (match-string 2 txt))
  6116. t t txt))))
  6117. (when remove-re
  6118. (while (string-match remove-re txt)
  6119. (setq txt (replace-match "" t t txt))))
  6120. ;; Set org-heading property on `txt' to mark the start of the
  6121. ;; heading.
  6122. (add-text-properties 0 (length txt) '(org-heading t) txt)
  6123. ;; Prepare the variables needed in the eval of the compiled format
  6124. (if org-prefix-has-breadcrumbs
  6125. (setq breadcrumbs (org-with-point-at (org-get-at-bol 'org-marker)
  6126. (let ((s (org-display-outline-path nil nil "->" t)))
  6127. (if (eq "" s) "" (concat s "->"))))))
  6128. (setq time (cond (s2 (concat
  6129. (org-agenda-time-of-day-to-ampm-maybe s1)
  6130. "-" (org-agenda-time-of-day-to-ampm-maybe s2)
  6131. (if org-agenda-timegrid-use-ampm " ")))
  6132. (s1 (concat
  6133. (org-agenda-time-of-day-to-ampm-maybe s1)
  6134. (if org-agenda-timegrid-use-ampm
  6135. "........ "
  6136. "......")))
  6137. (t ""))
  6138. extra (or (and (not habitp) extra) "")
  6139. category (if (symbolp category) (symbol-name category) category)
  6140. level (or level ""))
  6141. (if (string-match org-bracket-link-regexp category)
  6142. (progn
  6143. (setq l (if (match-end 3)
  6144. (- (match-end 3) (match-beginning 3))
  6145. (- (match-end 1) (match-beginning 1))))
  6146. (when (< l (or org-prefix-category-length 0))
  6147. (setq category (copy-sequence category))
  6148. (org-add-props category nil
  6149. 'extra-space (make-string
  6150. (- org-prefix-category-length l 1) ?\ ))))
  6151. (if (and org-prefix-category-max-length
  6152. (>= (length category) org-prefix-category-max-length))
  6153. (setq category (substring category 0 (1- org-prefix-category-max-length)))))
  6154. ;; Evaluate the compiled format
  6155. (setq rtn (concat (eval formatter) txt))
  6156. ;; And finally add the text properties
  6157. (remove-text-properties 0 (length rtn) '(line-prefix t wrap-prefix t) rtn)
  6158. (org-add-props rtn nil
  6159. 'org-category category
  6160. 'tags (mapcar 'org-downcase-keep-props tags)
  6161. 'org-highest-priority org-highest-priority
  6162. 'org-lowest-priority org-lowest-priority
  6163. 'time-of-day time-of-day
  6164. 'duration duration
  6165. 'breadcrumbs breadcrumbs
  6166. 'txt txt
  6167. 'level level
  6168. 'time time
  6169. 'extra extra
  6170. 'format org-prefix-format-compiled
  6171. 'dotime dotime)))))
  6172. (defun org-agenda-fix-displayed-tags (txt tags add-inherited hide-re)
  6173. "Remove tags string from TXT, and add a modified list of tags.
  6174. The modified list may contain inherited tags, and tags matched by
  6175. `org-agenda-hide-tags-regexp' will be removed."
  6176. (when (or add-inherited hide-re)
  6177. (if (string-match (org-re "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$") txt)
  6178. (setq txt (substring txt 0 (match-beginning 0))))
  6179. (setq tags
  6180. (delq nil
  6181. (mapcar (lambda (tg)
  6182. (if (or (and hide-re (string-match hide-re tg))
  6183. (and (not add-inherited)
  6184. (get-text-property 0 'inherited tg)))
  6185. nil
  6186. tg))
  6187. tags)))
  6188. (when tags
  6189. (let ((have-i (get-text-property 0 'inherited (car tags)))
  6190. i)
  6191. (setq txt (concat txt " :"
  6192. (mapconcat
  6193. (lambda (x)
  6194. (setq i (get-text-property 0 'inherited x))
  6195. (if (and have-i (not i))
  6196. (progn
  6197. (setq have-i nil)
  6198. (concat ":" x))
  6199. x))
  6200. tags ":")
  6201. (if have-i "::" ":"))))))
  6202. txt)
  6203. (defun org-downcase-keep-props (s)
  6204. (let ((props (text-properties-at 0 s)))
  6205. (setq s (downcase s))
  6206. (add-text-properties 0 (length s) props s)
  6207. s))
  6208. (defvar org-agenda-sorting-strategy) ;; because the def is in a let form
  6209. (defun org-agenda-add-time-grid-maybe (list ndays todayp)
  6210. "Add a time-grid for agenda items which need it.
  6211. LIST is the list of agenda items formatted by `org-agenda-list'.
  6212. NDAYS is the span of the current agenda view.
  6213. TODAYP is t when the current agenda view is on today."
  6214. (catch 'exit
  6215. (cond ((not org-agenda-use-time-grid) (throw 'exit list))
  6216. ((and todayp (member 'today (car org-agenda-time-grid))))
  6217. ((and (= ndays 1) (member 'daily (car org-agenda-time-grid))))
  6218. ((member 'weekly (car org-agenda-time-grid)))
  6219. (t (throw 'exit list)))
  6220. (let* ((have (delq nil (mapcar
  6221. (lambda (x) (get-text-property 1 'time-of-day x))
  6222. list)))
  6223. (string (nth 1 org-agenda-time-grid))
  6224. (gridtimes (nth 2 org-agenda-time-grid))
  6225. (req (car org-agenda-time-grid))
  6226. (remove (member 'remove-match req))
  6227. new time)
  6228. (if (and (member 'require-timed req) (not have))
  6229. ;; don't show empty grid
  6230. (throw 'exit list))
  6231. (while (setq time (pop gridtimes))
  6232. (unless (and remove (member time have))
  6233. (setq time (replace-regexp-in-string " " "0" (format "%04s" time)))
  6234. (push (org-agenda-format-item
  6235. nil string nil "" nil
  6236. (concat (substring time 0 -2) ":" (substring time -2)))
  6237. new)
  6238. (put-text-property
  6239. 2 (length (car new)) 'face 'org-time-grid (car new))))
  6240. (when (and todayp org-agenda-show-current-time-in-grid)
  6241. (push (org-agenda-format-item
  6242. nil org-agenda-current-time-string nil "" nil
  6243. (format-time-string "%H:%M "))
  6244. new)
  6245. (put-text-property
  6246. 2 (length (car new)) 'face 'org-agenda-current-time (car new)))
  6247. (if (member 'time-up org-agenda-sorting-strategy-selected)
  6248. (append new list)
  6249. (append list new)))))
  6250. (defun org-compile-prefix-format (key)
  6251. "Compile the prefix format into a Lisp form that can be evaluated.
  6252. The resulting form and associated variable bindings is returned
  6253. and stored in the variable `org-prefix-format-compiled'."
  6254. (setq org-prefix-has-time nil
  6255. org-prefix-has-tag nil
  6256. org-prefix-category-length nil
  6257. org-prefix-has-effort nil
  6258. org-prefix-has-breadcrumbs nil)
  6259. (let ((s (cond
  6260. ((stringp org-agenda-prefix-format)
  6261. org-agenda-prefix-format)
  6262. ((assq key org-agenda-prefix-format)
  6263. (cdr (assq key org-agenda-prefix-format)))
  6264. (t " %-12:c%?-12t% s")))
  6265. (start 0)
  6266. varform vars var e c f opt)
  6267. (while (string-match "%\\(\\?\\)?\\([-+]?[0-9.]*\\)\\([ .;,:!?=|/<>]?\\)\\([cltseib]\\|(.+)\\)"
  6268. s start)
  6269. (setq var (or (cdr (assoc (match-string 4 s)
  6270. '(("c" . category) ("t" . time) ("l" . level) ("s" . extra)
  6271. ("i" . category-icon) ("T" . tag) ("e" . effort) ("b" . breadcrumbs))))
  6272. 'eval)
  6273. c (or (match-string 3 s) "")
  6274. opt (match-beginning 1)
  6275. start (1+ (match-beginning 0)))
  6276. (if (equal var 'time) (setq org-prefix-has-time t))
  6277. (if (equal var 'tag) (setq org-prefix-has-tag t))
  6278. (if (equal var 'effort) (setq org-prefix-has-effort t))
  6279. (if (equal var 'breadcrumbs) (setq org-prefix-has-breadcrumbs t))
  6280. (setq f (concat "%" (match-string 2 s) "s"))
  6281. (when (equal var 'category)
  6282. (setq org-prefix-category-length
  6283. (floor (abs (string-to-number (match-string 2 s)))))
  6284. (setq org-prefix-category-max-length
  6285. (let ((x (match-string 2 s)))
  6286. (save-match-data
  6287. (if (string-match "\\.[0-9]+" x)
  6288. (string-to-number (substring (match-string 0 x) 1)))))))
  6289. (if (eq var 'eval)
  6290. (setq varform `(format ,f (org-eval ,(read (match-string 4 s)))))
  6291. (if opt
  6292. (setq varform
  6293. `(if (or (equal "" ,var) (equal nil ,var))
  6294. ""
  6295. (format ,f (concat ,var ,c))))
  6296. (setq varform
  6297. `(format ,f (if (or (equal ,var "")
  6298. (equal ,var nil)) ""
  6299. (concat ,var ,c (get-text-property 0 'extra-space ,var)))))))
  6300. (setq s (replace-match "%s" t nil s))
  6301. (push varform vars))
  6302. (setq vars (nreverse vars))
  6303. (with-current-buffer (or org-agenda-buffer (current-buffer))
  6304. (setq org-prefix-format-compiled
  6305. (list
  6306. `((org-prefix-has-time ,org-prefix-has-time)
  6307. (org-prefix-has-tag ,org-prefix-has-tag)
  6308. (org-prefix-category-length ,org-prefix-category-length)
  6309. (org-prefix-has-effort ,org-prefix-has-effort)
  6310. (org-prefix-has-breadcrumbs ,org-prefix-has-breadcrumbs))
  6311. `(format ,s ,@vars))))))
  6312. (defun org-set-sorting-strategy (key)
  6313. (if (symbolp (car org-agenda-sorting-strategy))
  6314. ;; the old format
  6315. (setq org-agenda-sorting-strategy-selected org-agenda-sorting-strategy)
  6316. (setq org-agenda-sorting-strategy-selected
  6317. (or (cdr (assq key org-agenda-sorting-strategy))
  6318. (cdr (assq 'agenda org-agenda-sorting-strategy))
  6319. '(time-up category-keep priority-down)))))
  6320. (defun org-get-time-of-day (s &optional string mod24)
  6321. "Check string S for a time of day.
  6322. If found, return it as a military time number between 0 and 2400.
  6323. If not found, return nil.
  6324. The optional STRING argument forces conversion into a 5 character wide string
  6325. HH:MM."
  6326. (save-match-data
  6327. (when
  6328. (and
  6329. (or (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)\\([AaPp][Mm]\\)?\\> *" s)
  6330. (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?\\([AaPp][Mm]\\)\\> *" s))
  6331. (not (eq (get-text-property 1 'face s) 'org-link)))
  6332. (let* ((h (string-to-number (match-string 1 s)))
  6333. (m (if (match-end 3) (string-to-number (match-string 3 s)) 0))
  6334. (ampm (if (match-end 4) (downcase (match-string 4 s))))
  6335. (am-p (equal ampm "am"))
  6336. (h1 (cond ((not ampm) h)
  6337. ((= h 12) (if am-p 0 12))
  6338. (t (+ h (if am-p 0 12)))))
  6339. (h2 (if (and string mod24 (not (and (= m 0) (= h1 24))))
  6340. (mod h1 24) h1))
  6341. (t0 (+ (* 100 h2) m))
  6342. (t1 (concat (if (>= h1 24) "+" " ")
  6343. (if (and org-agenda-time-leading-zero
  6344. (< t0 1000)) "0" "")
  6345. (if (< t0 100) "0" "")
  6346. (if (< t0 10) "0" "")
  6347. (int-to-string t0))))
  6348. (if string (concat (substring t1 -4 -2) ":" (substring t1 -2)) t0)))))
  6349. (defvar org-agenda-before-sorting-filter-function nil
  6350. "Function to be applied to agenda items prior to sorting.
  6351. Prior to sorting also means just before they are inserted into the agenda.
  6352. To aid sorting, you may revisit the original entries and add more text
  6353. properties which will later be used by the sorting functions.
  6354. The function should take a string argument, an agenda line.
  6355. It has access to the text properties in that line, which contain among
  6356. other things, the property `org-hd-marker' that points to the entry
  6357. where the line comes from. Note that not all lines going into the agenda
  6358. have this property, only most.
  6359. The function should return the modified string. It is probably best
  6360. to ONLY change text properties.
  6361. You can also use this function as a filter, by returning nil for lines
  6362. you don't want to have in the agenda at all. For this application, you
  6363. could bind the variable in the options section of a custom command.")
  6364. (defun org-agenda-finalize-entries (list &optional type)
  6365. "Sort, limit and concatenate the LIST of agenda items.
  6366. The optional argument TYPE tells the agenda type."
  6367. (let ((max-effort (cond ((listp org-agenda-max-effort)
  6368. (cdr (assoc type org-agenda-max-effort)))
  6369. (t org-agenda-max-effort)))
  6370. (max-todo (cond ((listp org-agenda-max-todos)
  6371. (cdr (assoc type org-agenda-max-todos)))
  6372. (t org-agenda-max-todos)))
  6373. (max-tags (cond ((listp org-agenda-max-tags)
  6374. (cdr (assoc type org-agenda-max-tags)))
  6375. (t org-agenda-max-tags)))
  6376. (max-entries (cond ((listp org-agenda-max-entries)
  6377. (cdr (assoc type org-agenda-max-entries)))
  6378. (t org-agenda-max-entries))))
  6379. (when org-agenda-before-sorting-filter-function
  6380. (setq list
  6381. (delq nil
  6382. (mapcar
  6383. org-agenda-before-sorting-filter-function list))))
  6384. (setq list (mapcar 'org-agenda-highlight-todo list)
  6385. list (mapcar 'identity (sort list 'org-entries-lessp)))
  6386. (when max-effort
  6387. (setq list (org-agenda-limit-entries
  6388. list 'effort-minutes max-effort
  6389. (lambda (e) (or e (if org-sort-agenda-noeffort-is-high
  6390. 32767 -1))))))
  6391. (when max-todo
  6392. (setq list (org-agenda-limit-entries list 'todo-state max-todo)))
  6393. (when max-tags
  6394. (setq list (org-agenda-limit-entries list 'tags max-tags)))
  6395. (when max-entries
  6396. (setq list (org-agenda-limit-entries list 'org-hd-marker max-entries)))
  6397. (mapconcat 'identity list "\n")))
  6398. (defun org-agenda-limit-entries (list prop limit &optional fn)
  6399. "Limit the number of agenda entries."
  6400. (let ((include (and limit (< limit 0))))
  6401. (if limit
  6402. (let ((fun (or fn (lambda (p) (if p 1))))
  6403. (lim 0))
  6404. (delq nil
  6405. (mapcar
  6406. (lambda (e)
  6407. (let ((pval (funcall
  6408. fun (get-text-property (1- (length e))
  6409. prop e))))
  6410. (if pval (setq lim (+ lim pval)))
  6411. (cond ((and pval (<= lim (abs limit))) e)
  6412. ((and include (not pval)) e))))
  6413. list)))
  6414. list)))
  6415. (defun org-agenda-limit-interactively (remove)
  6416. "In agenda, interactively limit entries to various maximums."
  6417. (interactive "P")
  6418. (if remove
  6419. (progn (setq org-agenda-max-entries nil
  6420. org-agenda-max-todos nil
  6421. org-agenda-max-tags nil
  6422. org-agenda-max-effort nil)
  6423. (org-agenda-redo))
  6424. (let* ((max (read-char "Number of [e]ntries [t]odos [T]ags [E]ffort? "))
  6425. (msg (cond ((= max ?E) "How many minutes? ")
  6426. ((= max ?e) "How many entries? ")
  6427. ((= max ?t) "How many TODO entries? ")
  6428. ((= max ?T) "How many tagged entries? ")
  6429. (t (user-error "Wrong input"))))
  6430. (num (string-to-number (read-from-minibuffer msg))))
  6431. (cond ((equal max ?e)
  6432. (let ((org-agenda-max-entries num)) (org-agenda-redo)))
  6433. ((equal max ?t)
  6434. (let ((org-agenda-max-todos num)) (org-agenda-redo)))
  6435. ((equal max ?T)
  6436. (let ((org-agenda-max-tags num)) (org-agenda-redo)))
  6437. ((equal max ?E)
  6438. (let ((org-agenda-max-effort num)) (org-agenda-redo))))))
  6439. (org-agenda-fit-window-to-buffer))
  6440. (defun org-agenda-highlight-todo (x)
  6441. (let ((org-done-keywords org-done-keywords-for-agenda)
  6442. (case-fold-search nil)
  6443. re)
  6444. (if (eq x 'line)
  6445. (save-excursion
  6446. (beginning-of-line 1)
  6447. (setq re (org-get-at-bol 'org-todo-regexp))
  6448. (goto-char (or (text-property-any (point-at-bol) (point-at-eol) 'org-heading t) (point)))
  6449. (when (looking-at (concat "[ \t]*\\.*\\(" re "\\) +"))
  6450. (add-text-properties (match-beginning 0) (match-end 1)
  6451. (list 'face (org-get-todo-face 1)))
  6452. (let ((s (buffer-substring (match-beginning 1) (match-end 1))))
  6453. (delete-region (match-beginning 1) (1- (match-end 0)))
  6454. (goto-char (match-beginning 1))
  6455. (insert (format org-agenda-todo-keyword-format s)))))
  6456. (let ((pl (text-property-any 0 (length x) 'org-heading t x)))
  6457. (setq re (get-text-property 0 'org-todo-regexp x))
  6458. (when (and re
  6459. ;; Test `pl' because if there's no heading content,
  6460. ;; there's no point matching to highlight. Note
  6461. ;; that if we didn't test `pl' first, and there
  6462. ;; happened to be no keyword from `org-todo-regexp'
  6463. ;; on this heading line, then the `equal' comparison
  6464. ;; afterwards would spuriously succeed in the case
  6465. ;; where `pl' is nil -- causing an args-out-of-range
  6466. ;; error when we try to add text properties to text
  6467. ;; that isn't there.
  6468. pl
  6469. (equal (string-match (concat "\\(\\.*\\)" re "\\( +\\)")
  6470. x pl) pl))
  6471. (add-text-properties
  6472. (or (match-end 1) (match-end 0)) (match-end 0)
  6473. (list 'face (org-get-todo-face (match-string 2 x)))
  6474. x)
  6475. (when (match-end 1)
  6476. (setq x (concat (substring x 0 (match-end 1))
  6477. (format org-agenda-todo-keyword-format
  6478. (match-string 2 x))
  6479. (org-add-props " " (text-properties-at 0 x))
  6480. (substring x (match-end 3)))))))
  6481. x)))
  6482. (defsubst org-cmp-values (a b property)
  6483. "Compare the numeric value of text PROPERTY for string A and B."
  6484. (let ((pa (or (get-text-property (1- (length a)) property a) 0))
  6485. (pb (or (get-text-property (1- (length b)) property b) 0)))
  6486. (cond ((> pa pb) +1)
  6487. ((< pa pb) -1))))
  6488. (defsubst org-cmp-effort (a b)
  6489. "Compare the effort values of string A and B."
  6490. (let* ((def (if org-sort-agenda-noeffort-is-high 32767 -1))
  6491. (ea (or (get-text-property (1- (length a)) 'effort-minutes a) def))
  6492. (eb (or (get-text-property (1- (length b)) 'effort-minutes b) def)))
  6493. (cond ((> ea eb) +1)
  6494. ((< ea eb) -1))))
  6495. (defsubst org-cmp-category (a b)
  6496. "Compare the string values of categories of strings A and B."
  6497. (let ((ca (or (get-text-property (1- (length a)) 'org-category a) ""))
  6498. (cb (or (get-text-property (1- (length b)) 'org-category b) "")))
  6499. (cond ((string-lessp ca cb) -1)
  6500. ((string-lessp cb ca) +1))))
  6501. (defsubst org-cmp-todo-state (a b)
  6502. "Compare the todo states of strings A and B."
  6503. (let* ((ma (or (get-text-property 1 'org-marker a)
  6504. (get-text-property 1 'org-hd-marker a)))
  6505. (mb (or (get-text-property 1 'org-marker b)
  6506. (get-text-property 1 'org-hd-marker b)))
  6507. (fa (and ma (marker-buffer ma)))
  6508. (fb (and mb (marker-buffer mb)))
  6509. (todo-kwds
  6510. (or (and fa (with-current-buffer fa org-todo-keywords-1))
  6511. (and fb (with-current-buffer fb org-todo-keywords-1))))
  6512. (ta (or (get-text-property 1 'todo-state a) ""))
  6513. (tb (or (get-text-property 1 'todo-state b) ""))
  6514. (la (- (length (member ta todo-kwds))))
  6515. (lb (- (length (member tb todo-kwds))))
  6516. (donepa (member ta org-done-keywords-for-agenda))
  6517. (donepb (member tb org-done-keywords-for-agenda)))
  6518. (cond ((and donepa (not donepb)) -1)
  6519. ((and (not donepa) donepb) +1)
  6520. ((< la lb) -1)
  6521. ((< lb la) +1))))
  6522. (defsubst org-cmp-alpha (a b)
  6523. "Compare the headlines, alphabetically."
  6524. (let* ((pla (text-property-any 0 (length a) 'org-heading t a))
  6525. (plb (text-property-any 0 (length b) 'org-heading t b))
  6526. (ta (and pla (substring a pla)))
  6527. (tb (and plb (substring b plb))))
  6528. (when pla
  6529. (if (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp a) "")
  6530. "\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *") ta)
  6531. (setq ta (substring ta (match-end 0))))
  6532. (setq ta (downcase ta)))
  6533. (when plb
  6534. (if (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp b) "")
  6535. "\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *") tb)
  6536. (setq tb (substring tb (match-end 0))))
  6537. (setq tb (downcase tb)))
  6538. (cond ((not ta) +1)
  6539. ((not tb) -1)
  6540. ((string-lessp ta tb) -1)
  6541. ((string-lessp tb ta) +1))))
  6542. (defsubst org-cmp-tag (a b)
  6543. "Compare the string values of the first tags of A and B."
  6544. (let ((ta (car (last (get-text-property 1 'tags a))))
  6545. (tb (car (last (get-text-property 1 'tags b)))))
  6546. (cond ((not ta) +1)
  6547. ((not tb) -1)
  6548. ((string-lessp ta tb) -1)
  6549. ((string-lessp tb ta) +1))))
  6550. (defsubst org-cmp-time (a b)
  6551. "Compare the time-of-day values of strings A and B."
  6552. (let* ((def (if org-sort-agenda-notime-is-late 9901 -1))
  6553. (ta (or (get-text-property 1 'time-of-day a) def))
  6554. (tb (or (get-text-property 1 'time-of-day b) def)))
  6555. (cond ((< ta tb) -1)
  6556. ((< tb ta) +1))))
  6557. (defsubst org-cmp-ts (a b type)
  6558. "Compare the timestamps values of entries A and B.
  6559. When TYPE is \"scheduled\", \"deadline\", \"timestamp\" or
  6560. \"timestamp_ia\", compare within each of these type. When TYPE
  6561. is the empty string, compare all timestamps without respect of
  6562. their type."
  6563. (let* ((def (if org-sort-agenda-notime-is-late most-positive-fixnum -1))
  6564. (ta (or (and (string-match type (or (get-text-property 1 'type a) ""))
  6565. (get-text-property 1 'ts-date a))
  6566. def))
  6567. (tb (or (and (string-match type (or (get-text-property 1 'type b) ""))
  6568. (get-text-property 1 'ts-date b))
  6569. def)))
  6570. (cond ((< ta tb) -1)
  6571. ((< tb ta) +1))))
  6572. (defsubst org-cmp-habit-p (a b)
  6573. "Compare the todo states of strings A and B."
  6574. (let ((ha (get-text-property 1 'org-habit-p a))
  6575. (hb (get-text-property 1 'org-habit-p b)))
  6576. (cond ((and ha (not hb)) -1)
  6577. ((and (not ha) hb) +1))))
  6578. (defun org-entries-lessp (a b)
  6579. "Predicate for sorting agenda entries."
  6580. ;; The following variables will be used when the form is evaluated.
  6581. ;; So even though the compiler complains, keep them.
  6582. (let* ((ss org-agenda-sorting-strategy-selected)
  6583. (timestamp-up (and (org-em 'timestamp-up 'timestamp-down ss)
  6584. (org-cmp-ts a b "")))
  6585. (timestamp-down (if timestamp-up (- timestamp-up) nil))
  6586. (scheduled-up (and (org-em 'scheduled-up 'scheduled-down ss)
  6587. (org-cmp-ts a b "scheduled")))
  6588. (scheduled-down (if scheduled-up (- scheduled-up) nil))
  6589. (deadline-up (and (org-em 'deadline-up 'deadline-down ss)
  6590. (org-cmp-ts a b "deadline")))
  6591. (deadline-down (if deadline-up (- deadline-up) nil))
  6592. (tsia-up (and (org-em 'tsia-up 'tsia-down ss)
  6593. (org-cmp-ts a b "timestamp_ia")))
  6594. (tsia-down (if tsia-up (- tsia-up) nil))
  6595. (ts-up (and (org-em 'ts-up 'ts-down ss)
  6596. (org-cmp-ts a b "timestamp")))
  6597. (ts-down (if ts-up (- ts-up) nil))
  6598. (time-up (and (org-em 'time-up 'time-down ss)
  6599. (org-cmp-time a b)))
  6600. (time-down (if time-up (- time-up) nil))
  6601. (stats-up (and (org-em 'stats-up 'stats-down ss)
  6602. (org-cmp-values a b 'org-stats)))
  6603. (stats-down (if stats-up (- stats-up) nil))
  6604. (priority-up (and (org-em 'priority-up 'priority-down ss)
  6605. (org-cmp-values a b 'priority)))
  6606. (priority-down (if priority-up (- priority-up) nil))
  6607. (effort-up (and (org-em 'effort-up 'effort-down ss)
  6608. (org-cmp-effort a b)))
  6609. (effort-down (if effort-up (- effort-up) nil))
  6610. (category-up (and (or (org-em 'category-up 'category-down ss)
  6611. (memq 'category-keep ss))
  6612. (org-cmp-category a b)))
  6613. (category-down (if category-up (- category-up) nil))
  6614. (category-keep (if category-up +1 nil))
  6615. (tag-up (and (org-em 'tag-up 'tag-down ss)
  6616. (org-cmp-tag a b)))
  6617. (tag-down (if tag-up (- tag-up) nil))
  6618. (todo-state-up (and (org-em 'todo-state-up 'todo-state-down ss)
  6619. (org-cmp-todo-state a b)))
  6620. (todo-state-down (if todo-state-up (- todo-state-up) nil))
  6621. (habit-up (and (org-em 'habit-up 'habit-down ss)
  6622. (org-cmp-habit-p a b)))
  6623. (habit-down (if habit-up (- habit-up) nil))
  6624. (alpha-up (and (org-em 'alpha-up 'alpha-down ss)
  6625. (org-cmp-alpha a b)))
  6626. (alpha-down (if alpha-up (- alpha-up) nil))
  6627. (need-user-cmp (org-em 'user-defined-up 'user-defined-down ss))
  6628. user-defined-up user-defined-down)
  6629. (if (and need-user-cmp org-agenda-cmp-user-defined
  6630. (functionp org-agenda-cmp-user-defined))
  6631. (setq user-defined-up
  6632. (funcall org-agenda-cmp-user-defined a b)
  6633. user-defined-down (if user-defined-up (- user-defined-up) nil)))
  6634. (cdr (assoc
  6635. (eval (cons 'or org-agenda-sorting-strategy-selected))
  6636. '((-1 . t) (1 . nil) (nil . nil))))))
  6637. ;;; Agenda restriction lock
  6638. (defvar org-agenda-restriction-lock-overlay (make-overlay 1 1)
  6639. "Overlay to mark the headline to which agenda commands are restricted.")
  6640. (overlay-put org-agenda-restriction-lock-overlay
  6641. 'face 'org-agenda-restriction-lock)
  6642. (overlay-put org-agenda-restriction-lock-overlay
  6643. 'help-echo "Agendas are currently limited to this subtree.")
  6644. (org-detach-overlay org-agenda-restriction-lock-overlay)
  6645. ;;;###autoload
  6646. (defun org-agenda-set-restriction-lock (&optional type)
  6647. "Set restriction lock for agenda, to current subtree or file.
  6648. Restriction will be the file if TYPE is `file', or if type is the
  6649. universal prefix \\='(4), or if the cursor is before the first headline
  6650. in the file. Otherwise, restriction will be to the current subtree."
  6651. (interactive "P")
  6652. (org-agenda-remove-restriction-lock 'noupdate)
  6653. (and (equal type '(4)) (setq type 'file))
  6654. (setq type (cond
  6655. (type type)
  6656. ((org-at-heading-p) 'subtree)
  6657. ((condition-case nil (org-back-to-heading t) (error nil))
  6658. 'subtree)
  6659. (t 'file)))
  6660. (if (eq type 'subtree)
  6661. (progn
  6662. (setq org-agenda-restrict (current-buffer))
  6663. (setq org-agenda-overriding-restriction 'subtree)
  6664. (put 'org-agenda-files 'org-restrict
  6665. (list (buffer-file-name (buffer-base-buffer))))
  6666. (org-back-to-heading t)
  6667. (move-overlay org-agenda-restriction-lock-overlay
  6668. (point)
  6669. (if org-agenda-restriction-lock-highlight-subtree
  6670. (save-excursion (org-end-of-subtree t t) (point))
  6671. (point-at-eol)))
  6672. (move-marker org-agenda-restrict-begin (point))
  6673. (move-marker org-agenda-restrict-end
  6674. (save-excursion (org-end-of-subtree t t)))
  6675. (message "Locking agenda restriction to subtree"))
  6676. (put 'org-agenda-files 'org-restrict
  6677. (list (buffer-file-name (buffer-base-buffer))))
  6678. (setq org-agenda-restrict nil)
  6679. (setq org-agenda-overriding-restriction 'file)
  6680. (move-marker org-agenda-restrict-begin nil)
  6681. (move-marker org-agenda-restrict-end nil)
  6682. (message "Locking agenda restriction to file"))
  6683. (setq current-prefix-arg nil)
  6684. (org-agenda-maybe-redo))
  6685. (defun org-agenda-remove-restriction-lock (&optional noupdate)
  6686. "Remove the agenda restriction lock."
  6687. (interactive "P")
  6688. (org-detach-overlay org-agenda-restriction-lock-overlay)
  6689. (org-detach-overlay org-speedbar-restriction-lock-overlay)
  6690. (setq org-agenda-overriding-restriction nil)
  6691. (setq org-agenda-restrict nil)
  6692. (put 'org-agenda-files 'org-restrict nil)
  6693. (move-marker org-agenda-restrict-begin nil)
  6694. (move-marker org-agenda-restrict-end nil)
  6695. (setq current-prefix-arg nil)
  6696. (message "Agenda restriction lock removed")
  6697. (or noupdate (org-agenda-maybe-redo)))
  6698. (defun org-agenda-maybe-redo ()
  6699. "If there is any window showing the agenda view, update it."
  6700. (let ((w (get-buffer-window (or org-agenda-this-buffer-name
  6701. org-agenda-buffer-name)
  6702. t))
  6703. (w0 (selected-window)))
  6704. (when w
  6705. (select-window w)
  6706. (org-agenda-redo)
  6707. (select-window w0)
  6708. (if org-agenda-overriding-restriction
  6709. (message "Agenda view shifted to new %s restriction"
  6710. org-agenda-overriding-restriction)
  6711. (message "Agenda restriction lock removed")))))
  6712. ;;; Agenda commands
  6713. (defun org-agenda-check-type (error &rest types)
  6714. "Check if agenda buffer is of allowed type.
  6715. If ERROR is non-nil, throw an error, otherwise just return nil.
  6716. Allowed types are `agenda' `timeline' `todo' `tags' `search'."
  6717. (if (not org-agenda-type)
  6718. (error "No Org agenda currently displayed")
  6719. (if (memq org-agenda-type types)
  6720. t
  6721. (if error
  6722. (error "Not allowed in %s-type agenda buffers" org-agenda-type)
  6723. nil))))
  6724. (defun org-agenda-Quit ()
  6725. "Exit the agenda, killing the agenda buffer.
  6726. Like `org-agenda-quit', but kill the buffer even when
  6727. `org-agenda-sticky' is non-nil."
  6728. (interactive)
  6729. (org-agenda--quit))
  6730. (defun org-agenda-quit ()
  6731. "Exit the agenda.
  6732. When `org-agenda-sticky' is non-nil, bury the agenda buffer
  6733. instead of killing it.
  6734. When `org-agenda-restore-windows-after-quit' is non-nil, restore
  6735. the pre-agenda window configuration.
  6736. When column view is active, exit column view instead of the
  6737. agenda."
  6738. (interactive)
  6739. (org-agenda--quit org-agenda-sticky))
  6740. (defun org-agenda--quit (&optional bury)
  6741. (if org-agenda-columns-active
  6742. (org-columns-quit)
  6743. (let ((wconf org-agenda-pre-window-conf)
  6744. (buf (current-buffer))
  6745. (org-agenda-last-indirect-window
  6746. (and (eq org-indirect-buffer-display 'other-window)
  6747. org-agenda-last-indirect-buffer
  6748. (get-buffer-window org-agenda-last-indirect-buffer))))
  6749. (cond
  6750. ((eq org-agenda-window-setup 'other-frame)
  6751. (delete-frame))
  6752. ((and org-agenda-restore-windows-after-quit
  6753. wconf)
  6754. ;; Maybe restore the pre-agenda window configuration. Reset
  6755. ;; `org-agenda-pre-window-conf' before running
  6756. ;; `set-window-configuration', which loses the current buffer.
  6757. (setq org-agenda-pre-window-conf nil)
  6758. (set-window-configuration wconf))
  6759. (t
  6760. (when org-agenda-last-indirect-window
  6761. (delete-window org-agenda-last-indirect-window))
  6762. (and (not (eq org-agenda-window-setup 'current-window))
  6763. (not (one-window-p))
  6764. (delete-window))))
  6765. (if bury
  6766. ;; Set the agenda buffer as the current buffer instead of
  6767. ;; passing it as an argument to `bury-buffer' so that
  6768. ;; `bury-buffer' removes it from the window.
  6769. (with-current-buffer buf
  6770. (bury-buffer))
  6771. (kill-buffer buf)
  6772. (setq org-agenda-archives-mode nil
  6773. org-agenda-buffer nil)))))
  6774. (defun org-agenda-exit ()
  6775. "Exit the agenda, killing Org buffers loaded by the agenda.
  6776. Like `org-agenda-Quit', but kill any buffers that were created by
  6777. the agenda. Org buffers visited directly by the user will not be
  6778. touched. Also, exit the agenda even if it is in column view."
  6779. (interactive)
  6780. (when org-agenda-columns-active
  6781. (org-columns-quit))
  6782. (org-release-buffers org-agenda-new-buffers)
  6783. (setq org-agenda-new-buffers nil)
  6784. (org-agenda-Quit))
  6785. (defun org-agenda-kill-all-agenda-buffers ()
  6786. "Kill all buffers in `org-agenda-mode'.
  6787. This is used when toggling sticky agendas."
  6788. (interactive)
  6789. (let (blist)
  6790. (dolist (buf (buffer-list))
  6791. (when (with-current-buffer buf (eq major-mode 'org-agenda-mode))
  6792. (push buf blist)))
  6793. (mapc 'kill-buffer blist)))
  6794. (defun org-agenda-execute (arg)
  6795. "Execute another agenda command, keeping same window.
  6796. So this is just a shortcut for \\<global-map>`\\[org-agenda]', available
  6797. in the agenda."
  6798. (interactive "P")
  6799. (let ((org-agenda-window-setup 'current-window))
  6800. (org-agenda arg)))
  6801. (defun org-agenda-redo (&optional all)
  6802. "Rebuild possibly ALL agenda view(s) in the current buffer."
  6803. (interactive "P")
  6804. (let* ((p (or (and (looking-at "\\'") (1- (point))) (point)))
  6805. (cpa (unless (eq all t) current-prefix-arg))
  6806. (org-agenda-doing-sticky-redo org-agenda-sticky)
  6807. (org-agenda-sticky nil)
  6808. (org-agenda-buffer-name (or org-agenda-this-buffer-name
  6809. org-agenda-buffer-name))
  6810. (org-agenda-keep-modes t)
  6811. (tag-filter org-agenda-tag-filter)
  6812. (tag-preset (get 'org-agenda-tag-filter :preset-filter))
  6813. (top-hl-filter org-agenda-top-headline-filter)
  6814. (cat-filter org-agenda-category-filter)
  6815. (cat-preset (get 'org-agenda-category-filter :preset-filter))
  6816. (re-filter org-agenda-regexp-filter)
  6817. (re-preset (get 'org-agenda-regexp-filter :preset-filter))
  6818. (effort-filter org-agenda-effort-filter)
  6819. (effort-preset (get 'org-agenda-effort-filter :preset-filter))
  6820. (org-agenda-tag-filter-while-redo (or tag-filter tag-preset))
  6821. (cols org-agenda-columns-active)
  6822. (line (org-current-line))
  6823. (window-line (- line (org-current-line (window-start))))
  6824. (lprops (get 'org-agenda-redo-command 'org-lprops))
  6825. (redo-cmd (get-text-property p 'org-redo-cmd))
  6826. (last-args (get-text-property p 'org-last-args))
  6827. (org-agenda-overriding-cmd (get-text-property p 'org-series-cmd))
  6828. (org-agenda-overriding-cmd-arguments
  6829. (unless (eq all t)
  6830. (cond ((listp last-args)
  6831. (cons (or cpa (car last-args)) (cdr last-args)))
  6832. ((stringp last-args)
  6833. last-args))))
  6834. (series-redo-cmd (get-text-property p 'org-series-redo-cmd)))
  6835. (put 'org-agenda-tag-filter :preset-filter nil)
  6836. (put 'org-agenda-category-filter :preset-filter nil)
  6837. (put 'org-agenda-regexp-filter :preset-filter nil)
  6838. (put 'org-agenda-effort-filter :preset-filter nil)
  6839. (and cols (org-columns-quit))
  6840. (message "Rebuilding agenda buffer...")
  6841. (if series-redo-cmd
  6842. (eval series-redo-cmd)
  6843. (org-let lprops redo-cmd))
  6844. (setq org-agenda-undo-list nil
  6845. org-agenda-pending-undo-list nil
  6846. org-agenda-tag-filter tag-filter
  6847. org-agenda-category-filter cat-filter
  6848. org-agenda-regexp-filter re-filter
  6849. org-agenda-effort-filter effort-filter
  6850. org-agenda-top-headline-filter top-hl-filter)
  6851. (message "Rebuilding agenda buffer...done")
  6852. (put 'org-agenda-tag-filter :preset-filter tag-preset)
  6853. (put 'org-agenda-category-filter :preset-filter cat-preset)
  6854. (put 'org-agenda-regexp-filter :preset-filter re-preset)
  6855. (put 'org-agenda-effort-filter :preset-filter effort-preset)
  6856. (let ((tag (or tag-filter tag-preset))
  6857. (cat (or cat-filter cat-preset))
  6858. (effort (or effort-filter effort-preset))
  6859. (re (or re-filter re-preset)))
  6860. (when tag (org-agenda-filter-apply tag 'tag t))
  6861. (when cat (org-agenda-filter-apply cat 'category))
  6862. (when effort (org-agenda-filter-apply effort 'effort))
  6863. (when re (org-agenda-filter-apply re 'regexp)))
  6864. (and top-hl-filter (org-agenda-filter-top-headline-apply top-hl-filter))
  6865. (and cols (org-called-interactively-p 'any) (org-agenda-columns))
  6866. (org-goto-line line)
  6867. (recenter window-line)))
  6868. (defvar org-global-tags-completion-table nil)
  6869. (defvar org-agenda-filter-form nil)
  6870. (defvar org-agenda-filtered-by-category nil)
  6871. (defun org-agenda-filter-by-category (strip)
  6872. "Filter lines in the agenda buffer that have a specific category.
  6873. The category is that of the current line.
  6874. Without prefix argument, keep only the lines of that category.
  6875. With a prefix argument, exclude the lines of that category.
  6876. "
  6877. (interactive "P")
  6878. (if (and org-agenda-filtered-by-category
  6879. org-agenda-category-filter)
  6880. (org-agenda-filter-show-all-cat)
  6881. (let ((cat (org-no-properties (org-get-at-eol 'org-category 1))))
  6882. (cond
  6883. ((and cat strip)
  6884. (org-agenda-filter-apply
  6885. (push (concat "-" cat) org-agenda-category-filter) 'category))
  6886. (cat
  6887. (org-agenda-filter-apply
  6888. (setq org-agenda-category-filter
  6889. (list (concat "+" cat))) 'category))
  6890. (t (error "No category at point"))))))
  6891. (defun org-find-top-headline (&optional pos)
  6892. "Find the topmost parent headline and return it."
  6893. (save-excursion
  6894. (with-current-buffer (if pos (marker-buffer pos) (current-buffer))
  6895. (if pos (goto-char pos))
  6896. ;; Skip up to the topmost parent
  6897. (while (ignore-errors (outline-up-heading 1) t))
  6898. (ignore-errors
  6899. (nth 4 (org-heading-components))))))
  6900. (defvar org-agenda-filtered-by-top-headline nil)
  6901. (defun org-agenda-filter-by-top-headline (strip)
  6902. "Keep only those lines that are descendants from the same top headline.
  6903. The top headline is that of the current line."
  6904. (interactive "P")
  6905. (if org-agenda-filtered-by-top-headline
  6906. (progn
  6907. (setq org-agenda-filtered-by-top-headline nil
  6908. org-agenda-top-headline-filter nil)
  6909. (org-agenda-filter-show-all-top-filter))
  6910. (let ((toph (org-find-top-headline (org-get-at-bol 'org-hd-marker))))
  6911. (if toph (org-agenda-filter-top-headline-apply toph strip)
  6912. (error "No top-level headline at point")))))
  6913. (defvar org-agenda-regexp-filter nil)
  6914. (defun org-agenda-filter-by-regexp (strip)
  6915. "Filter agenda entries by a regular expression.
  6916. Regexp filters are cumulative.
  6917. With no prefix argument, keep entries matching the regexp.
  6918. With one prefix argument, filter out entries matching the regexp.
  6919. With two prefix arguments, remove the regexp filters."
  6920. (interactive "P")
  6921. (if (not (equal strip '(16)))
  6922. (let ((flt (concat (if (equal strip '(4)) "-" "+")
  6923. (read-from-minibuffer
  6924. (if (equal strip '(4))
  6925. "Filter out entries matching regexp: "
  6926. "Narrow to entries matching regexp: ")))))
  6927. (push flt org-agenda-regexp-filter)
  6928. (org-agenda-filter-apply org-agenda-regexp-filter 'regexp))
  6929. (org-agenda-filter-show-all-re)
  6930. (message "Regexp filter removed")))
  6931. (defvar org-agenda-effort-filter nil)
  6932. (defun org-agenda-filter-by-effort (strip)
  6933. "Filter agenda entries by effort.
  6934. With no prefix argument, keep entries matching the effort condition.
  6935. With one prefix argument, filter out entries matching the condition.
  6936. With two prefix arguments, remove the effort filters."
  6937. (interactive "P")
  6938. (cond ((member strip '(nil 4))
  6939. (let ((efforts (org-split-string
  6940. (or (cdr (assoc (concat org-effort-property "_ALL")
  6941. org-global-properties))
  6942. "0 0:10 0:30 1:00 2:00 3:00 4:00 5:00 6:00 7:00 8:00"
  6943. "")))
  6944. (eff -1)
  6945. effort-prompt op)
  6946. (while (not (member op '(?< ?> ?=)))
  6947. (setq op (read-char-exclusive "Effort operator? (> = or <)")))
  6948. (loop for i from 0 to 9 do
  6949. (setq effort-prompt
  6950. (concat
  6951. effort-prompt " ["
  6952. (if (= i 9) "0" (int-to-string (1+ i)))
  6953. "]" (nth i efforts))))
  6954. (message "Effort %s%s" (char-to-string op) effort-prompt)
  6955. (while (or (< eff 0) (> eff 9))
  6956. (setq eff (string-to-number (char-to-string (read-char-exclusive)))))
  6957. (setq org-agenda-effort-filter
  6958. (list (concat (if strip "-" "+")
  6959. (char-to-string op) (nth (1- eff) efforts))))
  6960. (org-agenda-filter-apply org-agenda-effort-filter 'effort)))
  6961. (t (org-agenda-filter-show-all-effort)
  6962. (message "Effort filter removed"))))
  6963. (defun org-agenda-filter-remove-all ()
  6964. "Remove all filters from the current agenda buffer."
  6965. (interactive)
  6966. (when org-agenda-tag-filter
  6967. (org-agenda-filter-show-all-tag))
  6968. (when org-agenda-category-filter
  6969. (org-agenda-filter-show-all-cat))
  6970. (when org-agenda-regexp-filter
  6971. (org-agenda-filter-show-all-re))
  6972. (when org-agenda-top-headline-filter
  6973. (org-agenda-filter-show-all-top-filter))
  6974. (when org-agenda-effort-filter
  6975. (org-agenda-filter-show-all-effort))
  6976. (org-agenda-finalize))
  6977. (defun org-agenda-filter-by-tag (arg &optional char exclude)
  6978. "Keep only those lines in the agenda buffer that have a specific tag.
  6979. The tag is selected with its fast selection letter, as
  6980. configured. With a single \\[universal-argument] prefix ARG,
  6981. exclude the agenda search. With a double \\[universal-argument]
  6982. prefix ARG, filter the literal tag. I.e. don't filter on all its
  6983. group members.
  6984. A lisp caller can specify CHAR. EXCLUDE means that the new tag should be
  6985. used to exclude the search - the interactive user can also press `-' or `+'
  6986. to switch between filtering and excluding."
  6987. (interactive "P")
  6988. (let* ((alist org-tag-alist-for-agenda)
  6989. (tag-chars (mapconcat
  6990. (lambda (x) (if (and (not (symbolp (car x)))
  6991. (cdr x))
  6992. (char-to-string (cdr x))
  6993. ""))
  6994. org-tag-alist-for-agenda ""))
  6995. (valid-char-list (append '(?\t ?\r ?/ ?. ?\s ?q)
  6996. (string-to-list tag-chars)))
  6997. (exclude (or exclude (equal arg '(4))))
  6998. (expand (not (equal arg '(16))))
  6999. (inhibit-read-only t)
  7000. (current org-agenda-tag-filter)
  7001. a n tag)
  7002. (unless char
  7003. (while (not (memq char valid-char-list))
  7004. (message
  7005. "%s by tag [%s ], [TAB], %s[/]:off, [+/-]:filter/exclude%s, [q]:quit"
  7006. (if exclude "Exclude" "Filter") tag-chars
  7007. (if org-agenda-auto-exclude-function "[RET], " "")
  7008. (if expand "" ", no grouptag expand"))
  7009. (setq char (read-char-exclusive))
  7010. ;; Excluding or filtering down
  7011. (cond ((eq char ?-) (setq exclude t))
  7012. ((eq char ?+) (setq exclude nil)))))
  7013. (when (eq char ?\t)
  7014. (unless (local-variable-p 'org-global-tags-completion-table (current-buffer))
  7015. (setq-local org-global-tags-completion-table
  7016. (org-global-tags-completion-table)))
  7017. (let ((completion-ignore-case t))
  7018. (setq tag (org-icompleting-read
  7019. "Tag: " org-global-tags-completion-table))))
  7020. (cond
  7021. ((eq char ?\r)
  7022. (org-agenda-filter-show-all-tag)
  7023. (when org-agenda-auto-exclude-function
  7024. (setq org-agenda-tag-filter nil)
  7025. (dolist (tag (org-agenda-get-represented-tags))
  7026. (let ((modifier (funcall org-agenda-auto-exclude-function tag)))
  7027. (if modifier
  7028. (push modifier org-agenda-tag-filter))))
  7029. (if (not (null org-agenda-tag-filter))
  7030. (org-agenda-filter-apply org-agenda-tag-filter 'tag expand))))
  7031. ((eq char ?/)
  7032. (org-agenda-filter-show-all-tag)
  7033. (when (get 'org-agenda-tag-filter :preset-filter)
  7034. (org-agenda-filter-apply org-agenda-tag-filter 'tag expand)))
  7035. ((eq char ?.)
  7036. (setq org-agenda-tag-filter
  7037. (mapcar (lambda(tag) (concat "+" tag))
  7038. (org-get-at-bol 'tags)))
  7039. (org-agenda-filter-apply org-agenda-tag-filter 'tag expand))
  7040. ((eq char ?q)) ;If q, abort (even if there is a q-key for a tag...)
  7041. ((or (eq char ?\s)
  7042. (setq a (rassoc char alist))
  7043. (and tag (setq a (cons tag nil))))
  7044. (org-agenda-filter-show-all-tag)
  7045. (setq tag (car a))
  7046. (setq org-agenda-tag-filter
  7047. (cons (concat (if exclude "-" "+") tag)
  7048. current))
  7049. (org-agenda-filter-apply org-agenda-tag-filter 'tag expand))
  7050. (t (error "Invalid tag selection character %c" char)))))
  7051. (defun org-agenda-get-represented-tags ()
  7052. "Get a list of all tags currently represented in the agenda."
  7053. (let (p tags)
  7054. (save-excursion
  7055. (goto-char (point-min))
  7056. (while (setq p (next-single-property-change (point) 'tags))
  7057. (goto-char p)
  7058. (mapc (lambda (x) (add-to-list 'tags x))
  7059. (get-text-property (point) 'tags))))
  7060. tags))
  7061. (defun org-agenda-filter-by-tag-refine (arg &optional char)
  7062. "Refine the current filter. See `org-agenda-filter-by-tag'."
  7063. (interactive "P")
  7064. (org-agenda-filter-by-tag arg char 'refine))
  7065. (defun org-agenda-filter-make-matcher (filter type &optional expand)
  7066. "Create the form that tests a line for agenda filter. Optional
  7067. argument EXPAND can be used for the TYPE tag and will expand the
  7068. tags in the FILTER if any of the tags in FILTER are grouptags."
  7069. (let (f f1)
  7070. (cond
  7071. ;; Tag filter
  7072. ((eq type 'tag)
  7073. (setq filter
  7074. (delete-dups
  7075. (append (get 'org-agenda-tag-filter :preset-filter)
  7076. filter)))
  7077. (dolist (x filter)
  7078. (let ((op (string-to-char x)))
  7079. (if expand (setq x (org-agenda-filter-expand-tags (list x) t))
  7080. (setq x (list x)))
  7081. (setq f1 (org-agenda-filter-make-matcher-tag-exp x op))
  7082. (push f1 f))))
  7083. ;; Category filter
  7084. ((eq type 'category)
  7085. (setq filter
  7086. (delete-dups
  7087. (append (get 'org-agenda-category-filter :preset-filter)
  7088. filter)))
  7089. (dolist (x filter)
  7090. (if (equal "-" (substring x 0 1))
  7091. (setq f1 (list 'not (list 'equal (substring x 1) 'cat)))
  7092. (setq f1 (list 'equal (substring x 1) 'cat)))
  7093. (push f1 f)))
  7094. ;; Regexp filter
  7095. ((eq type 'regexp)
  7096. (setq filter
  7097. (delete-dups
  7098. (append (get 'org-agenda-regexp-filter :preset-filter)
  7099. filter)))
  7100. (dolist (x filter)
  7101. (if (equal "-" (substring x 0 1))
  7102. (setq f1 (list 'not (list 'string-match (substring x 1) 'txt)))
  7103. (setq f1 (list 'string-match (substring x 1) 'txt)))
  7104. (push f1 f)))
  7105. ;; Effort filter
  7106. ((eq type 'effort)
  7107. (setq filter
  7108. (delete-dups
  7109. (append (get 'org-agenda-effort-filter :preset-filter)
  7110. filter)))
  7111. (dolist (x filter)
  7112. (push (org-agenda-filter-effort-form x) f))))
  7113. (cons 'and (nreverse f))))
  7114. (defun org-agenda-filter-make-matcher-tag-exp (tags op)
  7115. "Return a form associated to tag-expression TAGS.
  7116. Build a form testing a line for agenda filter for
  7117. tag-expressions. OP is an operator of type CHAR that allows the
  7118. function to set the right switches in the returned form."
  7119. (let (form)
  7120. ;; Any of the expressions can match if OP is +, all must match if
  7121. ;; the operator is -.
  7122. (dolist (x tags (cons (if (eq op ?-) 'and 'or) form))
  7123. (let* ((tag (substring x 1))
  7124. (f (cond
  7125. ((string= "" tag) '(not tags))
  7126. ((and (string-match-p "\\`{" tag) (string-match-p "}\\'" tag))
  7127. ;; TAG is a regexp.
  7128. (list 'org-match-any-p (substring tag 1 -1) 'tags))
  7129. (t (list 'member (downcase tag) 'tags)))))
  7130. (push (if (eq op ?-) (list 'not f) f) form)))))
  7131. (defun org-agenda-filter-effort-form (e)
  7132. "Return the form to compare the effort of the current line with what E says.
  7133. E looks like \"+<2:25\"."
  7134. (let (op)
  7135. (setq e (substring e 1))
  7136. (setq op (string-to-char e) e (substring e 1))
  7137. (setq op (cond ((equal op ?<) '<=)
  7138. ((equal op ?>) '>=)
  7139. ((equal op ??) op)
  7140. (t '=)))
  7141. (list 'org-agenda-compare-effort (list 'quote op)
  7142. (org-duration-string-to-minutes e))))
  7143. (defun org-agenda-compare-effort (op value)
  7144. "Compare the effort of the current line with VALUE, using OP.
  7145. If the line does not have an effort defined, return nil."
  7146. (let ((eff (org-get-at-eol 'effort-minutes 1)))
  7147. (funcall op (or eff (if org-sort-agenda-noeffort-is-high 32767 -1))
  7148. value)))
  7149. (defun org-agenda-filter-expand-tags (filter &optional no-operator)
  7150. "Expand group tags in FILTER for the agenda.
  7151. When NO-OPERATOR is non-nil, do not add the + operator to returned tags."
  7152. (if org-group-tags
  7153. (let ((case-fold-search t) rtn)
  7154. (mapc
  7155. (lambda (f)
  7156. (let (f0 dir)
  7157. (if (string-match "^\\([+-]\\)\\(.+\\)" f)
  7158. (setq dir (match-string 1 f) f0 (match-string 2 f))
  7159. (setq dir (if no-operator "" "+") f0 f))
  7160. (setq rtn (append (mapcar (lambda(f1) (concat dir f1))
  7161. (org-tags-expand f0 t t))
  7162. rtn))))
  7163. filter)
  7164. (reverse rtn))
  7165. filter))
  7166. (defun org-agenda-filter-apply (filter type &optional expand)
  7167. "Set FILTER as the new agenda filter and apply it. Optional
  7168. argument EXPAND can be used for the TYPE tag and will expand the
  7169. tags in the FILTER if any of the tags in FILTER are grouptags."
  7170. ;; Deactivate `org-agenda-entry-text-mode' when filtering
  7171. (if org-agenda-entry-text-mode (org-agenda-entry-text-mode))
  7172. (let (tags cat txt)
  7173. (setq org-agenda-filter-form (org-agenda-filter-make-matcher filter type expand))
  7174. ;; Only set `org-agenda-filtered-by-category' to t when a unique
  7175. ;; category is used as the filter:
  7176. (setq org-agenda-filtered-by-category
  7177. (and (eq type 'category)
  7178. (not (equal (substring (car filter) 0 1) "-"))))
  7179. (org-agenda-set-mode-name)
  7180. (save-excursion
  7181. (goto-char (point-min))
  7182. (while (not (eobp))
  7183. (if (org-get-at-bol 'org-marker)
  7184. (progn
  7185. (setq tags (org-get-at-bol 'tags)
  7186. cat (org-get-at-eol 'org-category 1)
  7187. txt (org-get-at-eol 'txt 1))
  7188. (if (not (eval org-agenda-filter-form))
  7189. (org-agenda-filter-hide-line type))
  7190. (beginning-of-line 2))
  7191. (beginning-of-line 2))))
  7192. (if (get-char-property (point) 'invisible)
  7193. (ignore-errors (org-agenda-previous-line)))))
  7194. (defun org-agenda-filter-top-headline-apply (hl &optional negative)
  7195. "Filter by top headline HL."
  7196. (org-agenda-set-mode-name)
  7197. (save-excursion
  7198. (goto-char (point-min))
  7199. (while (not (eobp))
  7200. (let* ((pos (org-get-at-bol 'org-hd-marker))
  7201. (tophl (and pos (org-find-top-headline pos))))
  7202. (if (and tophl (funcall (if negative 'identity 'not)
  7203. (string= hl tophl)))
  7204. (org-agenda-filter-hide-line 'top-headline)))
  7205. (beginning-of-line 2)))
  7206. (if (get-char-property (point) 'invisible)
  7207. (org-agenda-previous-line))
  7208. (setq org-agenda-top-headline-filter hl
  7209. org-agenda-filtered-by-top-headline t))
  7210. (defun org-agenda-filter-hide-line (type)
  7211. "Hide lines with TYPE in the agenda buffer."
  7212. (let* ((b (max (point-min) (1- (point-at-bol))))
  7213. (e (point-at-eol)))
  7214. (let ((inhibit-read-only t))
  7215. (add-text-properties
  7216. b e `(invisible org-filtered org-filter-type ,type)))))
  7217. (defun org-agenda-remove-filter (type)
  7218. (interactive)
  7219. "Remove filter of type TYPE from the agenda buffer."
  7220. (save-excursion
  7221. (goto-char (point-min))
  7222. (let ((inhibit-read-only t) pos)
  7223. (while (setq pos (text-property-any (point) (point-max) 'org-filter-type type))
  7224. (goto-char pos)
  7225. (remove-text-properties
  7226. (point) (next-single-property-change (point) 'org-filter-type)
  7227. `(invisible org-filtered org-filter-type ,type))))
  7228. (set (intern (format "org-agenda-%s-filter" (intern-soft type))) nil)
  7229. (setq org-agenda-filter-form nil)
  7230. (org-agenda-set-mode-name)
  7231. (org-agenda-finalize)))
  7232. (defun org-agenda-filter-show-all-tag nil
  7233. (org-agenda-remove-filter 'tag))
  7234. (defun org-agenda-filter-show-all-re nil
  7235. (org-agenda-remove-filter 'regexp))
  7236. (defun org-agenda-filter-show-all-effort nil
  7237. (org-agenda-remove-filter 'effort))
  7238. (defun org-agenda-filter-show-all-cat nil
  7239. (org-agenda-remove-filter 'category))
  7240. (defun org-agenda-filter-show-all-top-filter nil
  7241. (org-agenda-remove-filter 'top-headline))
  7242. (defun org-agenda-manipulate-query-add ()
  7243. "Manipulate the query by adding a search term with positive selection.
  7244. Positive selection means the term must be matched for selection of an entry."
  7245. (interactive)
  7246. (org-agenda-manipulate-query ?\[))
  7247. (defun org-agenda-manipulate-query-subtract ()
  7248. "Manipulate the query by adding a search term with negative selection.
  7249. Negative selection means term must not be matched for selection of an entry."
  7250. (interactive)
  7251. (org-agenda-manipulate-query ?\]))
  7252. (defun org-agenda-manipulate-query-add-re ()
  7253. "Manipulate the query by adding a search regexp with positive selection.
  7254. Positive selection means the regexp must match for selection of an entry."
  7255. (interactive)
  7256. (org-agenda-manipulate-query ?\{))
  7257. (defun org-agenda-manipulate-query-subtract-re ()
  7258. "Manipulate the query by adding a search regexp with negative selection.
  7259. Negative selection means regexp must not match for selection of an entry."
  7260. (interactive)
  7261. (org-agenda-manipulate-query ?\}))
  7262. (defun org-agenda-manipulate-query (char)
  7263. (cond
  7264. ((memq org-agenda-type '(timeline agenda))
  7265. (let ((org-agenda-include-inactive-timestamps t))
  7266. (org-agenda-redo))
  7267. (message "Display now includes inactive timestamps as well"))
  7268. ((eq org-agenda-type 'search)
  7269. (org-add-to-string
  7270. 'org-agenda-query-string
  7271. (if org-agenda-last-search-view-search-was-boolean
  7272. (cdr (assoc char '((?\[ . " +") (?\] . " -")
  7273. (?\{ . " +{}") (?\} . " -{}"))))
  7274. " "))
  7275. (setq org-agenda-redo-command
  7276. (list 'org-search-view
  7277. (car (get-text-property (min (1- (point-max)) (point))
  7278. 'org-last-args))
  7279. org-agenda-query-string
  7280. (+ (length org-agenda-query-string)
  7281. (if (member char '(?\{ ?\})) 0 1))))
  7282. (set-register org-agenda-query-register org-agenda-query-string)
  7283. (let ((org-agenda-overriding-arguments
  7284. (cdr org-agenda-redo-command)))
  7285. (org-agenda-redo)))
  7286. (t (error "Cannot manipulate query for %s-type agenda buffers"
  7287. org-agenda-type))))
  7288. (defun org-add-to-string (var string)
  7289. (set var (concat (symbol-value var) string)))
  7290. (defun org-agenda-goto-date (span)
  7291. "Jump to DATE in agenda."
  7292. (interactive "P")
  7293. (let* ((org-read-date-prefer-future
  7294. (eval org-agenda-jump-prefer-future))
  7295. (date (org-read-date))
  7296. (day (time-to-days (org-time-string-to-time date)))
  7297. (org-agenda-sticky-orig org-agenda-sticky)
  7298. (org-agenda-buffer-tmp-name (buffer-name))
  7299. (args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7300. (0-arg (or current-prefix-arg (car args)))
  7301. (2-arg (nth 2 args))
  7302. (with-hour-p (nth 4 org-agenda-redo-command))
  7303. (newcmd (list 'org-agenda-list 0-arg date
  7304. (org-agenda-span-to-ndays
  7305. 2-arg (org-time-string-to-absolute date))
  7306. with-hour-p))
  7307. (newargs (cdr newcmd))
  7308. (inhibit-read-only t)
  7309. org-agenda-sticky)
  7310. (if (not (org-agenda-check-type t 'agenda))
  7311. (error "Not available in non-agenda views")
  7312. (add-text-properties (point-min) (point-max)
  7313. `(org-redo-cmd ,newcmd org-last-args ,newargs))
  7314. (org-agenda-redo)
  7315. (goto-char (point-min))
  7316. (while (not (or (= (or (get-text-property (point) 'day) 0) day)
  7317. (save-excursion (move-beginning-of-line 2) (eobp))))
  7318. (move-beginning-of-line 2))
  7319. (setq org-agenda-sticky org-agenda-sticky-orig
  7320. org-agenda-this-buffer-is-sticky org-agenda-sticky))))
  7321. (defun org-agenda-goto-today ()
  7322. "Go to today."
  7323. (interactive)
  7324. (org-agenda-check-type t 'timeline 'agenda)
  7325. (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7326. (curspan (nth 2 args))
  7327. (tdpos (text-property-any (point-min) (point-max) 'org-today t)))
  7328. (cond
  7329. (tdpos (goto-char tdpos))
  7330. ((eq org-agenda-type 'agenda)
  7331. (let* ((sd (org-agenda-compute-starting-span
  7332. (org-today) (or curspan org-agenda-ndays org-agenda-span)))
  7333. (org-agenda-overriding-arguments args))
  7334. (setf (nth 1 org-agenda-overriding-arguments) sd)
  7335. (org-agenda-redo)
  7336. (org-agenda-find-same-or-today-or-agenda)))
  7337. (t (error "Cannot find today")))))
  7338. (defun org-agenda-find-same-or-today-or-agenda (&optional cnt)
  7339. (goto-char
  7340. (or (and cnt (text-property-any (point-min) (point-max) 'org-day-cnt cnt))
  7341. (text-property-any (point-min) (point-max) 'org-today t)
  7342. (text-property-any (point-min) (point-max) 'org-agenda-type 'agenda)
  7343. (and (get-text-property (min (1- (point-max)) (point)) 'org-series)
  7344. (org-agenda-backward-block))
  7345. (point-min))))
  7346. (defun org-agenda-backward-block ()
  7347. "Move backward by one agenda block."
  7348. (interactive)
  7349. (org-agenda-forward-block 'backward))
  7350. (defun org-agenda-forward-block (&optional backward)
  7351. "Move forward by one agenda block.
  7352. When optional argument BACKWARD is set, go backward"
  7353. (interactive)
  7354. (cond ((not (derived-mode-p 'org-agenda-mode))
  7355. (user-error
  7356. "Cannot execute this command outside of org-agenda-mode buffers"))
  7357. ((looking-at (if backward "\\`" "\\'"))
  7358. (message "Already at the %s block" (if backward "first" "last")))
  7359. (t (let ((pos (prog1 (point)
  7360. (ignore-errors (if backward (backward-char 1)
  7361. (move-end-of-line 1)))))
  7362. (f (if backward
  7363. 'previous-single-property-change
  7364. 'next-single-property-change))
  7365. moved dest)
  7366. (while (and (setq dest (funcall
  7367. f (point) 'org-agenda-structural-header))
  7368. (not (get-text-property
  7369. (point) 'org-agenda-structural-header)))
  7370. (setq moved t)
  7371. (goto-char dest))
  7372. (if moved (move-beginning-of-line 1)
  7373. (goto-char (if backward (point-min) (point-max)))
  7374. (move-beginning-of-line 1)
  7375. (message "No %s block" (if backward "previous" "further")))))))
  7376. (defun org-agenda-later (arg)
  7377. "Go forward in time by the current span.
  7378. With prefix ARG, go forward that many times the current span."
  7379. (interactive "p")
  7380. (org-agenda-check-type t 'agenda)
  7381. (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7382. (span (or (nth 2 args) org-agenda-current-span))
  7383. (sd (or (nth 1 args) (org-get-at-bol 'day) org-starting-day))
  7384. (greg (calendar-gregorian-from-absolute sd))
  7385. (cnt (org-get-at-bol 'org-day-cnt))
  7386. greg2)
  7387. (cond
  7388. ((numberp span)
  7389. (setq sd (+ (* span arg) sd)))
  7390. ((eq span 'day)
  7391. (setq sd (+ arg sd)))
  7392. ((eq span 'week)
  7393. (setq sd (+ (* 7 arg) sd)))
  7394. ((eq span 'fortnight)
  7395. (setq sd (+ (* 14 arg) sd)))
  7396. ((eq span 'month)
  7397. (setq greg2 (list (+ (car greg) arg) (nth 1 greg) (nth 2 greg))
  7398. sd (calendar-absolute-from-gregorian greg2))
  7399. (setcar greg2 (1+ (car greg2))))
  7400. ((eq span 'year)
  7401. (setq greg2 (list (car greg) (nth 1 greg) (+ arg (nth 2 greg)))
  7402. sd (calendar-absolute-from-gregorian greg2))
  7403. (setcar (nthcdr 2 greg2) (1+ (nth 2 greg2))))
  7404. (t
  7405. (setq sd (+ (* span arg) sd))))
  7406. (let ((org-agenda-overriding-cmd
  7407. ;; `cmd' may have been set by `org-agenda-run-series' which
  7408. ;; uses `org-agenda-overriding-cmd' to decide whether
  7409. ;; overriding is allowed for `cmd'
  7410. (get-text-property (min (1- (point-max)) (point)) 'org-series-cmd))
  7411. (org-agenda-overriding-arguments
  7412. (list (car args) sd span)))
  7413. (org-agenda-redo)
  7414. (org-agenda-find-same-or-today-or-agenda cnt))))
  7415. (defun org-agenda-earlier (arg)
  7416. "Go backward in time by the current span.
  7417. With prefix ARG, go backward that many times the current span."
  7418. (interactive "p")
  7419. (org-agenda-later (- arg)))
  7420. (defun org-agenda-view-mode-dispatch ()
  7421. "Call one of the view mode commands."
  7422. (interactive)
  7423. (message "View: [d]ay [w]eek for[t]night [m]onth [y]ear [SPC]reset [q]uit/abort
  7424. time[G]rid [[]inactive [f]ollow [l]og [L]og-all [c]lockcheck
  7425. [a]rch-trees [A]rch-files clock[R]eport include[D]iary [E]ntryText")
  7426. (let ((a (read-char-exclusive)))
  7427. (case a
  7428. (?\ (call-interactively 'org-agenda-reset-view))
  7429. (?d (call-interactively 'org-agenda-day-view))
  7430. (?w (call-interactively 'org-agenda-week-view))
  7431. (?t (call-interactively 'org-agenda-fortnight-view))
  7432. (?m (call-interactively 'org-agenda-month-view))
  7433. (?y (call-interactively 'org-agenda-year-view))
  7434. (?l (call-interactively 'org-agenda-log-mode))
  7435. (?L (org-agenda-log-mode '(4)))
  7436. (?c (org-agenda-log-mode 'clockcheck))
  7437. ((?F ?f) (call-interactively 'org-agenda-follow-mode))
  7438. (?a (call-interactively 'org-agenda-archives-mode))
  7439. (?A (org-agenda-archives-mode 'files))
  7440. ((?R ?r) (call-interactively 'org-agenda-clockreport-mode))
  7441. ((?E ?e) (call-interactively 'org-agenda-entry-text-mode))
  7442. (?G (call-interactively 'org-agenda-toggle-time-grid))
  7443. (?D (call-interactively 'org-agenda-toggle-diary))
  7444. (?\! (call-interactively 'org-agenda-toggle-deadlines))
  7445. (?\[ (let ((org-agenda-include-inactive-timestamps t))
  7446. (org-agenda-check-type t 'timeline 'agenda)
  7447. (org-agenda-redo))
  7448. (message "Display now includes inactive timestamps as well"))
  7449. (?q (message "Abort"))
  7450. (otherwise (error "Invalid key" )))))
  7451. (defun org-agenda-reset-view ()
  7452. "Switch to default view for agenda."
  7453. (interactive)
  7454. (org-agenda-change-time-span (or org-agenda-ndays org-agenda-span)))
  7455. (defun org-agenda-day-view (&optional day-of-month)
  7456. "Switch to daily view for agenda.
  7457. With argument DAY-OF-MONTH, switch to that day of the month."
  7458. (interactive "P")
  7459. (org-agenda-change-time-span 'day day-of-month))
  7460. (defun org-agenda-week-view (&optional iso-week)
  7461. "Switch to daily view for agenda.
  7462. With argument ISO-WEEK, switch to the corresponding ISO week.
  7463. If ISO-WEEK has more then 2 digits, only the last two encode the
  7464. week. Any digits before this encode a year. So 200712 means
  7465. week 12 of year 2007. Years in the range 1938-2037 can also be
  7466. written as 2-digit years."
  7467. (interactive "P")
  7468. (org-agenda-change-time-span 'week iso-week))
  7469. (defun org-agenda-fortnight-view (&optional iso-week)
  7470. "Switch to daily view for agenda.
  7471. With argument ISO-WEEK, switch to the corresponding ISO week.
  7472. If ISO-WEEK has more then 2 digits, only the last two encode the
  7473. week. Any digits before this encode a year. So 200712 means
  7474. week 12 of year 2007. Years in the range 1938-2037 can also be
  7475. written as 2-digit years."
  7476. (interactive "P")
  7477. (org-agenda-change-time-span 'fortnight iso-week))
  7478. (defun org-agenda-month-view (&optional month)
  7479. "Switch to monthly view for agenda.
  7480. With argument MONTH, switch to that month."
  7481. (interactive "P")
  7482. (org-agenda-change-time-span 'month month))
  7483. (defun org-agenda-year-view (&optional year)
  7484. "Switch to yearly view for agenda.
  7485. With argument YEAR, switch to that year.
  7486. If MONTH has more then 2 digits, only the last two encode the
  7487. month. Any digits before this encode a year. So 200712 means
  7488. December year 2007. Years in the range 1938-2037 can also be
  7489. written as 2-digit years."
  7490. (interactive "P")
  7491. (when year
  7492. (setq year (org-small-year-to-year year)))
  7493. (if (y-or-n-p "Are you sure you want to compute the agenda for an entire year? ")
  7494. (org-agenda-change-time-span 'year year)
  7495. (error "Abort")))
  7496. (defun org-agenda-change-time-span (span &optional n)
  7497. "Change the agenda view to SPAN.
  7498. SPAN may be `day', `week', `fortnight', `month', `year'."
  7499. (org-agenda-check-type t 'agenda)
  7500. (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7501. (curspan (nth 2 args)))
  7502. (if (and (not n) (equal curspan span))
  7503. (error "Viewing span is already \"%s\"" span))
  7504. (let* ((sd (or (org-get-at-bol 'day)
  7505. (nth 1 args)
  7506. org-starting-day))
  7507. (sd (org-agenda-compute-starting-span sd span n))
  7508. (org-agenda-overriding-cmd
  7509. (get-text-property (min (1- (point-max)) (point)) 'org-series-cmd))
  7510. (org-agenda-overriding-arguments
  7511. (list (car args) sd span)))
  7512. (org-agenda-redo)
  7513. (org-agenda-find-same-or-today-or-agenda))
  7514. (org-agenda-set-mode-name)
  7515. (message "Switched to %s view" span)))
  7516. (defun org-agenda-compute-starting-span (sd span &optional n)
  7517. "Compute starting date for agenda.
  7518. SPAN may be `day', `week', `fortnight', `month', `year'. The return value
  7519. is a cons cell with the starting date and the number of days,
  7520. so that the date SD will be in that range."
  7521. (let* ((greg (calendar-gregorian-from-absolute sd))
  7522. (dg (nth 1 greg))
  7523. (mg (car greg))
  7524. (yg (nth 2 greg)))
  7525. (cond
  7526. ((eq span 'day)
  7527. (when n
  7528. (setq sd (+ (calendar-absolute-from-gregorian
  7529. (list mg 1 yg))
  7530. n -1))))
  7531. ((or (eq span 'week) (eq span 'fortnight))
  7532. (let* ((nt (calendar-day-of-week
  7533. (calendar-gregorian-from-absolute sd)))
  7534. (d (if org-agenda-start-on-weekday
  7535. (- nt org-agenda-start-on-weekday)
  7536. 0))
  7537. y1)
  7538. (setq sd (- sd (+ (if (< d 0) 7 0) d)))
  7539. (when n
  7540. (require 'cal-iso)
  7541. (when (> n 99)
  7542. (setq y1 (org-small-year-to-year (/ n 100))
  7543. n (mod n 100)))
  7544. (setq sd
  7545. (calendar-iso-to-absolute
  7546. (list n 1
  7547. (or y1 (nth 2 (calendar-iso-from-absolute sd)))))))))
  7548. ((eq span 'month)
  7549. (let (y1)
  7550. (when (and n (> n 99))
  7551. (setq y1 (org-small-year-to-year (/ n 100))
  7552. n (mod n 100)))
  7553. (setq sd (calendar-absolute-from-gregorian
  7554. (list (or n mg) 1 (or y1 yg))))))
  7555. ((eq span 'year)
  7556. (setq sd (calendar-absolute-from-gregorian
  7557. (list 1 1 (or n yg))))))
  7558. sd))
  7559. (defun org-agenda-next-date-line (&optional arg)
  7560. "Jump to the next line indicating a date in agenda buffer."
  7561. (interactive "p")
  7562. (org-agenda-check-type t 'agenda 'timeline)
  7563. (beginning-of-line 1)
  7564. ;; This does not work if user makes date format that starts with a blank
  7565. (if (looking-at "^\\S-") (forward-char 1))
  7566. (if (not (re-search-forward "^\\S-" nil t arg))
  7567. (progn
  7568. (backward-char 1)
  7569. (error "No next date after this line in this buffer")))
  7570. (goto-char (match-beginning 0)))
  7571. (defun org-agenda-previous-date-line (&optional arg)
  7572. "Jump to the previous line indicating a date in agenda buffer."
  7573. (interactive "p")
  7574. (org-agenda-check-type t 'agenda 'timeline)
  7575. (beginning-of-line 1)
  7576. (if (not (re-search-backward "^\\S-" nil t arg))
  7577. (error "No previous date before this line in this buffer")))
  7578. ;; Initialize the highlight
  7579. (defvar org-hl (make-overlay 1 1))
  7580. (overlay-put org-hl 'face 'highlight)
  7581. (defun org-highlight (begin end &optional buffer)
  7582. "Highlight a region with overlay."
  7583. (move-overlay org-hl begin end (or buffer (current-buffer))))
  7584. (defun org-unhighlight ()
  7585. "Detach overlay INDEX."
  7586. (org-detach-overlay org-hl))
  7587. (defun org-unhighlight-once ()
  7588. "Remove the highlight from its position, and this function from the hook."
  7589. (remove-hook 'pre-command-hook 'org-unhighlight-once)
  7590. (org-unhighlight))
  7591. (defvar org-agenda-pre-follow-window-conf nil)
  7592. (defun org-agenda-follow-mode ()
  7593. "Toggle follow mode in an agenda buffer."
  7594. (interactive)
  7595. (unless org-agenda-follow-mode
  7596. (setq org-agenda-pre-follow-window-conf
  7597. (current-window-configuration)))
  7598. (setq org-agenda-follow-mode (not org-agenda-follow-mode))
  7599. (unless org-agenda-follow-mode
  7600. (set-window-configuration org-agenda-pre-follow-window-conf))
  7601. (org-agenda-set-mode-name)
  7602. (org-agenda-do-context-action)
  7603. (message "Follow mode is %s"
  7604. (if org-agenda-follow-mode "on" "off")))
  7605. (defun org-agenda-entry-text-mode (&optional arg)
  7606. "Toggle entry text mode in an agenda buffer."
  7607. (interactive "P")
  7608. (if (or org-agenda-tag-filter
  7609. org-agenda-category-filter
  7610. org-agenda-regexp-filter
  7611. org-agenda-top-headline-filter)
  7612. (user-error "Can't show entry text in filtered views")
  7613. (setq org-agenda-entry-text-mode (or (integerp arg)
  7614. (not org-agenda-entry-text-mode)))
  7615. (org-agenda-entry-text-hide)
  7616. (and org-agenda-entry-text-mode
  7617. (let ((org-agenda-entry-text-maxlines
  7618. (if (integerp arg) arg org-agenda-entry-text-maxlines)))
  7619. (org-agenda-entry-text-show)))
  7620. (org-agenda-set-mode-name)
  7621. (message "Entry text mode is %s%s"
  7622. (if org-agenda-entry-text-mode "on" "off")
  7623. (if (not org-agenda-entry-text-mode) ""
  7624. (format " (maximum number of lines is %d)"
  7625. (if (integerp arg) arg org-agenda-entry-text-maxlines))))))
  7626. (defun org-agenda-clockreport-mode ()
  7627. "Toggle clocktable mode in an agenda buffer."
  7628. (interactive)
  7629. (org-agenda-check-type t 'agenda)
  7630. (setq org-agenda-clockreport-mode (not org-agenda-clockreport-mode))
  7631. (setq org-agenda-start-with-clockreport-mode org-agenda-clockreport-mode)
  7632. (org-agenda-set-mode-name)
  7633. (org-agenda-redo)
  7634. (message "Clocktable mode is %s"
  7635. (if org-agenda-clockreport-mode "on" "off")))
  7636. (defun org-agenda-log-mode (&optional special)
  7637. "Toggle log mode in an agenda buffer.
  7638. With argument SPECIAL, show all possible log items, not only the ones
  7639. configured in `org-agenda-log-mode-items'.
  7640. With a double \\[universal-argument] prefix arg, show *only* \
  7641. log items, nothing else."
  7642. (interactive "P")
  7643. (org-agenda-check-type t 'agenda 'timeline)
  7644. (setq org-agenda-show-log
  7645. (cond
  7646. ((equal special '(16)) 'only)
  7647. ((eq special 'clockcheck)
  7648. (if (eq org-agenda-show-log 'clockcheck)
  7649. nil 'clockcheck))
  7650. (special '(closed clock state))
  7651. (t (not org-agenda-show-log))))
  7652. (setq org-agenda-start-with-log-mode org-agenda-show-log)
  7653. (org-agenda-set-mode-name)
  7654. (org-agenda-redo)
  7655. (message "Log mode is %s"
  7656. (if org-agenda-show-log "on" "off")))
  7657. (defun org-agenda-archives-mode (&optional with-files)
  7658. "Toggle inclusion of items in trees marked with :ARCHIVE:.
  7659. When called with a prefix argument, include all archive files as well."
  7660. (interactive "P")
  7661. (setq org-agenda-archives-mode
  7662. (if with-files t (if org-agenda-archives-mode nil 'trees)))
  7663. (org-agenda-set-mode-name)
  7664. (org-agenda-redo)
  7665. (message
  7666. "%s"
  7667. (cond
  7668. ((eq org-agenda-archives-mode nil)
  7669. "No archives are included")
  7670. ((eq org-agenda-archives-mode 'trees)
  7671. (format "Trees with :%s: tag are included" org-archive-tag))
  7672. ((eq org-agenda-archives-mode t)
  7673. (format "Trees with :%s: tag and all active archive files are included"
  7674. org-archive-tag)))))
  7675. (defun org-agenda-toggle-diary ()
  7676. "Toggle diary inclusion in an agenda buffer."
  7677. (interactive)
  7678. (org-agenda-check-type t 'agenda)
  7679. (setq org-agenda-include-diary (not org-agenda-include-diary))
  7680. (org-agenda-redo)
  7681. (org-agenda-set-mode-name)
  7682. (message "Diary inclusion turned %s"
  7683. (if org-agenda-include-diary "on" "off")))
  7684. (defun org-agenda-toggle-deadlines ()
  7685. "Toggle inclusion of entries with a deadline in an agenda buffer."
  7686. (interactive)
  7687. (org-agenda-check-type t 'agenda)
  7688. (setq org-agenda-include-deadlines (not org-agenda-include-deadlines))
  7689. (org-agenda-redo)
  7690. (org-agenda-set-mode-name)
  7691. (message "Deadlines inclusion turned %s"
  7692. (if org-agenda-include-deadlines "on" "off")))
  7693. (defun org-agenda-toggle-time-grid ()
  7694. "Toggle time grid in an agenda buffer."
  7695. (interactive)
  7696. (org-agenda-check-type t 'agenda)
  7697. (setq org-agenda-use-time-grid (not org-agenda-use-time-grid))
  7698. (org-agenda-redo)
  7699. (org-agenda-set-mode-name)
  7700. (message "Time-grid turned %s"
  7701. (if org-agenda-use-time-grid "on" "off")))
  7702. (defun org-agenda-set-mode-name ()
  7703. "Set the mode name to indicate all the small mode settings."
  7704. (setq mode-name
  7705. (list "Org-Agenda"
  7706. (if (get 'org-agenda-files 'org-restrict) " []" "")
  7707. " "
  7708. '(:eval (org-agenda-span-name org-agenda-current-span))
  7709. (if org-agenda-follow-mode " Follow" "")
  7710. (if org-agenda-entry-text-mode " ETxt" "")
  7711. (if org-agenda-include-diary " Diary" "")
  7712. (if org-agenda-include-deadlines " Ddl" "")
  7713. (if org-agenda-use-time-grid " Grid" "")
  7714. (if (and (boundp 'org-habit-show-habits)
  7715. org-habit-show-habits) " Habit" "")
  7716. (cond
  7717. ((consp org-agenda-show-log) " LogAll")
  7718. ((eq org-agenda-show-log 'clockcheck) " ClkCk")
  7719. (org-agenda-show-log " Log")
  7720. (t ""))
  7721. (if (or org-agenda-category-filter
  7722. (get 'org-agenda-category-filter :preset-filter))
  7723. '(:eval (org-propertize
  7724. (concat " <"
  7725. (mapconcat
  7726. 'identity
  7727. (append
  7728. (get 'org-agenda-category-filter :preset-filter)
  7729. org-agenda-category-filter)
  7730. "")
  7731. ">")
  7732. 'face 'org-agenda-filter-category
  7733. 'help-echo "Category used in filtering")) "")
  7734. (if (or org-agenda-tag-filter
  7735. (get 'org-agenda-tag-filter :preset-filter))
  7736. '(:eval (org-propertize
  7737. (concat " {"
  7738. (mapconcat
  7739. 'identity
  7740. (append
  7741. (get 'org-agenda-tag-filter :preset-filter)
  7742. org-agenda-tag-filter)
  7743. "")
  7744. "}")
  7745. 'face 'org-agenda-filter-tags
  7746. 'help-echo "Tags used in filtering")) "")
  7747. (if (or org-agenda-effort-filter
  7748. (get 'org-agenda-effort-filter :preset-filter))
  7749. '(:eval (org-propertize
  7750. (concat " {"
  7751. (mapconcat
  7752. 'identity
  7753. (append
  7754. (get 'org-agenda-effort-filter :preset-filter)
  7755. org-agenda-effort-filter)
  7756. "")
  7757. "}")
  7758. 'face 'org-agenda-filter-effort
  7759. 'help-echo "Effort conditions used in filtering")) "")
  7760. (if (or org-agenda-regexp-filter
  7761. (get 'org-agenda-regexp-filter :preset-filter))
  7762. '(:eval (org-propertize
  7763. (concat " ["
  7764. (mapconcat
  7765. 'identity
  7766. (append
  7767. (get 'org-agenda-regexp-filter :preset-filter)
  7768. org-agenda-regexp-filter)
  7769. "")
  7770. "]")
  7771. 'face 'org-agenda-filter-regexp
  7772. 'help-echo "Regexp used in filtering")) "")
  7773. (if org-agenda-archives-mode
  7774. (if (eq org-agenda-archives-mode t)
  7775. " Archives"
  7776. (format " :%s:" org-archive-tag))
  7777. "")
  7778. (if org-agenda-clockreport-mode " Clock" "")))
  7779. (force-mode-line-update))
  7780. (define-obsolete-function-alias
  7781. 'org-agenda-post-command-hook 'org-agenda-update-agenda-type "24.3")
  7782. (defun org-agenda-update-agenda-type ()
  7783. "Update the agenda type after each command."
  7784. (setq org-agenda-type
  7785. (or (get-text-property (point) 'org-agenda-type)
  7786. (get-text-property (max (point-min) (1- (point))) 'org-agenda-type))))
  7787. (defun org-agenda-next-line ()
  7788. "Move cursor to the next line, and show if follow mode is active."
  7789. (interactive)
  7790. (call-interactively 'next-line)
  7791. (org-agenda-do-context-action))
  7792. (defun org-agenda-previous-line ()
  7793. "Move cursor to the previous line, and show if follow-mode is active."
  7794. (interactive)
  7795. (call-interactively 'previous-line)
  7796. (org-agenda-do-context-action))
  7797. (defun org-agenda-next-item (n)
  7798. "Move cursor to next agenda item."
  7799. (interactive "p")
  7800. (let ((col (current-column)))
  7801. (dotimes (c n)
  7802. (when (next-single-property-change (point-at-eol) 'org-marker)
  7803. (move-end-of-line 1)
  7804. (goto-char (next-single-property-change (point) 'org-marker))))
  7805. (org-move-to-column col))
  7806. (org-agenda-do-context-action))
  7807. (defun org-agenda-previous-item (n)
  7808. "Move cursor to next agenda item."
  7809. (interactive "p")
  7810. (dotimes (c n)
  7811. (let ((col (current-column))
  7812. (goto (save-excursion
  7813. (move-end-of-line 0)
  7814. (previous-single-property-change (point) 'org-marker))))
  7815. (if goto (goto-char goto))
  7816. (org-move-to-column col)))
  7817. (org-agenda-do-context-action))
  7818. (defun org-agenda-do-context-action ()
  7819. "Show outline path and, maybe, follow mode window."
  7820. (let ((m (org-get-at-bol 'org-marker)))
  7821. (when (and (markerp m) (marker-buffer m))
  7822. (and org-agenda-follow-mode
  7823. (if org-agenda-follow-indirect
  7824. (org-agenda-tree-to-indirect-buffer nil)
  7825. (org-agenda-show)))
  7826. (and org-agenda-show-outline-path
  7827. (org-with-point-at m (org-display-outline-path t))))))
  7828. (defun org-agenda-show-tags ()
  7829. "Show the tags applicable to the current item."
  7830. (interactive)
  7831. (let* ((tags (org-get-at-bol 'tags)))
  7832. (if tags
  7833. (message "Tags are :%s:"
  7834. (org-no-properties (mapconcat 'identity tags ":")))
  7835. (message "No tags associated with this line"))))
  7836. (defun org-agenda-goto (&optional highlight)
  7837. "Go to the entry at point in the corresponding Org-mode file."
  7838. (interactive)
  7839. (let* ((marker (or (org-get-at-bol 'org-marker)
  7840. (org-agenda-error)))
  7841. (buffer (marker-buffer marker))
  7842. (pos (marker-position marker)))
  7843. (switch-to-buffer-other-window buffer)
  7844. (widen)
  7845. (push-mark)
  7846. (goto-char pos)
  7847. (when (derived-mode-p 'org-mode)
  7848. (org-show-context 'agenda)
  7849. (save-excursion
  7850. (and (outline-next-heading)
  7851. (org-flag-heading nil))) ; show the next heading
  7852. (when (outline-invisible-p)
  7853. (outline-show-entry)) ; display invisible text
  7854. (recenter (/ (window-height) 2))
  7855. (org-back-to-heading t)
  7856. (if (re-search-forward org-complex-heading-regexp nil t)
  7857. (goto-char (match-beginning 4))))
  7858. (run-hooks 'org-agenda-after-show-hook)
  7859. (and highlight (org-highlight (point-at-bol) (point-at-eol)))))
  7860. (defvar org-agenda-after-show-hook nil
  7861. "Normal hook run after an item has been shown from the agenda.
  7862. Point is in the buffer where the item originated.")
  7863. (defun org-agenda-kill ()
  7864. "Kill the entry or subtree belonging to the current agenda entry."
  7865. (interactive)
  7866. (or (eq major-mode 'org-agenda-mode) (error "Not in agenda"))
  7867. (let* ((bufname-orig (buffer-name))
  7868. (marker (or (org-get-at-bol 'org-marker)
  7869. (org-agenda-error)))
  7870. (buffer (marker-buffer marker))
  7871. (pos (marker-position marker))
  7872. (type (org-get-at-bol 'type))
  7873. dbeg dend (n 0) conf)
  7874. (org-with-remote-undo buffer
  7875. (with-current-buffer buffer
  7876. (save-excursion
  7877. (goto-char pos)
  7878. (if (and (derived-mode-p 'org-mode) (not (member type '("sexp"))))
  7879. (setq dbeg (progn (org-back-to-heading t) (point))
  7880. dend (org-end-of-subtree t t))
  7881. (setq dbeg (point-at-bol)
  7882. dend (min (point-max) (1+ (point-at-eol)))))
  7883. (goto-char dbeg)
  7884. (while (re-search-forward "^[ \t]*\\S-" dend t) (setq n (1+ n)))))
  7885. (setq conf (or (eq t org-agenda-confirm-kill)
  7886. (and (numberp org-agenda-confirm-kill)
  7887. (> n org-agenda-confirm-kill))))
  7888. (and conf
  7889. (not (y-or-n-p
  7890. (format "Delete entry with %d lines in buffer \"%s\"? "
  7891. n (buffer-name buffer))))
  7892. (error "Abort"))
  7893. (let ((org-agenda-buffer-name bufname-orig))
  7894. (org-remove-subtree-entries-from-agenda buffer dbeg dend))
  7895. (with-current-buffer buffer (delete-region dbeg dend))
  7896. (message "Agenda item and source killed"))))
  7897. (defvar org-archive-default-command) ; defined in org-archive.el
  7898. (defun org-agenda-archive-default ()
  7899. "Archive the entry or subtree belonging to the current agenda entry."
  7900. (interactive)
  7901. (require 'org-archive)
  7902. (org-agenda-archive-with org-archive-default-command))
  7903. (defun org-agenda-archive-default-with-confirmation ()
  7904. "Archive the entry or subtree belonging to the current agenda entry."
  7905. (interactive)
  7906. (require 'org-archive)
  7907. (org-agenda-archive-with org-archive-default-command 'confirm))
  7908. (defun org-agenda-archive ()
  7909. "Archive the entry or subtree belonging to the current agenda entry."
  7910. (interactive)
  7911. (org-agenda-archive-with 'org-archive-subtree))
  7912. (defun org-agenda-archive-to-archive-sibling ()
  7913. "Move the entry to the archive sibling."
  7914. (interactive)
  7915. (org-agenda-archive-with 'org-archive-to-archive-sibling))
  7916. (defun org-agenda-archive-with (cmd &optional confirm)
  7917. "Move the entry to the archive sibling."
  7918. (interactive)
  7919. (or (eq major-mode 'org-agenda-mode) (error "Not in agenda"))
  7920. (let* ((bufname-orig (buffer-name))
  7921. (marker (or (org-get-at-bol 'org-marker)
  7922. (org-agenda-error)))
  7923. (buffer (marker-buffer marker))
  7924. (pos (marker-position marker)))
  7925. (org-with-remote-undo buffer
  7926. (with-current-buffer buffer
  7927. (if (derived-mode-p 'org-mode)
  7928. (if (and confirm
  7929. (not (y-or-n-p "Archive this subtree or entry? ")))
  7930. (error "Abort")
  7931. (save-window-excursion
  7932. (goto-char pos)
  7933. (let ((org-agenda-buffer-name bufname-orig))
  7934. (org-remove-subtree-entries-from-agenda))
  7935. (org-back-to-heading t)
  7936. (funcall cmd)))
  7937. (error "Archiving works only in Org-mode files"))))))
  7938. (defun org-remove-subtree-entries-from-agenda (&optional buf beg end)
  7939. "Remove all lines in the agenda that correspond to a given subtree.
  7940. The subtree is the one in buffer BUF, starting at BEG and ending at END.
  7941. If this information is not given, the function uses the tree at point."
  7942. (let ((buf (or buf (current-buffer))) m p)
  7943. (save-excursion
  7944. (unless (and beg end)
  7945. (org-back-to-heading t)
  7946. (setq beg (point))
  7947. (org-end-of-subtree t)
  7948. (setq end (point)))
  7949. (set-buffer (get-buffer org-agenda-buffer-name))
  7950. (save-excursion
  7951. (goto-char (point-max))
  7952. (beginning-of-line 1)
  7953. (while (not (bobp))
  7954. (when (and (setq m (org-get-at-bol 'org-marker))
  7955. (equal buf (marker-buffer m))
  7956. (setq p (marker-position m))
  7957. (>= p beg)
  7958. (< p end))
  7959. (let ((inhibit-read-only t))
  7960. (delete-region (point-at-bol) (1+ (point-at-eol)))))
  7961. (beginning-of-line 0))))))
  7962. (defun org-agenda-refile (&optional goto rfloc no-update)
  7963. "Refile the item at point.
  7964. When GOTO is 0 or \\='(64) or a triple \\[universal-argument] prefix argument,
  7965. clear the refile cache.
  7966. When GOTO is \\='(16) or a double \\[universal-argument] prefix argument,
  7967. go to the location of the last refiled item.
  7968. RFLOC can be a refile location obtained in a different way.
  7969. When NO-UPDATE is non-nil, don't redo the agenda buffer."
  7970. (interactive "P")
  7971. (cond
  7972. ((member goto '(0 (64)))
  7973. (org-refile-cache-clear))
  7974. ((equal goto '(16))
  7975. (org-refile-goto-last-stored))
  7976. (t
  7977. (let* ((buffer-orig (buffer-name))
  7978. (marker (or (org-get-at-bol 'org-hd-marker)
  7979. (org-agenda-error)))
  7980. (buffer (marker-buffer marker))
  7981. (pos (marker-position marker))
  7982. (rfloc (or rfloc
  7983. (org-refile-get-location
  7984. (if goto "Goto" "Refile to") buffer
  7985. org-refile-allow-creating-parent-nodes))))
  7986. (with-current-buffer buffer
  7987. (save-excursion
  7988. (save-restriction
  7989. (widen)
  7990. (goto-char marker)
  7991. (let ((org-agenda-buffer-name buffer-orig))
  7992. (org-remove-subtree-entries-from-agenda))
  7993. (org-refile goto buffer rfloc)))))
  7994. (unless no-update (org-agenda-redo)))))
  7995. (defun org-agenda-open-link (&optional arg)
  7996. "Open the link(s) in the current entry, if any.
  7997. This looks for a link in the displayed line in the agenda.
  7998. It also looks at the text of the entry itself."
  7999. (interactive "P")
  8000. (let* ((marker (or (org-get-at-bol 'org-hd-marker)
  8001. (org-get-at-bol 'org-marker)))
  8002. (buffer (and marker (marker-buffer marker)))
  8003. (prefix (buffer-substring (point-at-bol) (point-at-eol)))
  8004. (lkall (and buffer (org-offer-links-in-entry
  8005. buffer marker arg prefix)))
  8006. (lk0 (car lkall))
  8007. (lk (if (stringp lk0) (list lk0) lk0))
  8008. (lkend (cdr lkall))
  8009. trg)
  8010. (cond
  8011. ((and buffer lk)
  8012. (mapcar (lambda(l)
  8013. (with-current-buffer buffer
  8014. (setq trg (and (string-match org-bracket-link-regexp l)
  8015. (match-string 1 l)))
  8016. (if (or (not trg) (string-match org-any-link-re trg))
  8017. (save-excursion
  8018. (save-restriction
  8019. (widen)
  8020. (goto-char marker)
  8021. (when (search-forward l nil lkend)
  8022. (goto-char (match-beginning 0))
  8023. (org-open-at-point))))
  8024. ;; This is an internal link, widen the buffer
  8025. (switch-to-buffer-other-window buffer)
  8026. (widen)
  8027. (goto-char marker)
  8028. (when (search-forward l nil lkend)
  8029. (goto-char (match-beginning 0))
  8030. (org-open-at-point)))))
  8031. lk))
  8032. ((or (org-in-regexp (concat "\\(" org-bracket-link-regexp "\\)"))
  8033. (save-excursion
  8034. (beginning-of-line 1)
  8035. (looking-at (concat ".*?\\(" org-bracket-link-regexp "\\)"))))
  8036. (org-open-link-from-string (match-string 1)))
  8037. (t (message "No link to open here")))))
  8038. (defun org-agenda-copy-local-variable (var)
  8039. "Get a variable from a referenced buffer and install it here."
  8040. (let ((m (org-get-at-bol 'org-marker)))
  8041. (when (and m (buffer-live-p (marker-buffer m)))
  8042. (set (make-local-variable var)
  8043. (with-current-buffer (marker-buffer m)
  8044. (symbol-value var))))))
  8045. (defun org-agenda-switch-to (&optional delete-other-windows)
  8046. "Go to the Org mode file which contains the item at point.
  8047. When optional argument DELETE-OTHER-WINDOWS is non-nil, the
  8048. displayed Org file fills the frame."
  8049. (interactive)
  8050. (if (and org-return-follows-link
  8051. (not (org-get-at-bol 'org-marker))
  8052. (org-in-regexp org-bracket-link-regexp))
  8053. (org-open-link-from-string (match-string 0))
  8054. (let* ((marker (or (org-get-at-bol 'org-marker)
  8055. (org-agenda-error)))
  8056. (buffer (marker-buffer marker))
  8057. (pos (marker-position marker)))
  8058. (unless buffer (user-error "Trying to switch to non-existent buffer"))
  8059. (org-pop-to-buffer-same-window buffer)
  8060. (when delete-other-windows (delete-other-windows))
  8061. (widen)
  8062. (goto-char pos)
  8063. (when (derived-mode-p 'org-mode)
  8064. (org-show-context 'agenda)
  8065. (run-hooks 'org-agenda-after-show-hook)))))
  8066. (defun org-agenda-goto-mouse (ev)
  8067. "Go to the Org-mode file which contains the item at the mouse click."
  8068. (interactive "e")
  8069. (mouse-set-point ev)
  8070. (org-agenda-goto))
  8071. (defun org-agenda-show (&optional full-entry)
  8072. "Display the Org-mode file which contains the item at point.
  8073. With prefix argument FULL-ENTRY, make the entire entry visible
  8074. if it was hidden in the outline."
  8075. (interactive "P")
  8076. (let ((win (selected-window)))
  8077. (org-agenda-goto t)
  8078. (when full-entry (org-show-entry))
  8079. (select-window win)))
  8080. (defvar org-agenda-show-window nil)
  8081. (defun org-agenda-show-and-scroll-up (&optional arg)
  8082. "Display the Org-mode file which contains the item at point.
  8083. When called repeatedly, scroll the window that is displaying the buffer.
  8084. With a \\[universal-argument] prefix, use `org-show-entry' instead of
  8085. `show-subtree' to display the item, so that drawers and logbooks stay
  8086. folded."
  8087. (interactive "P")
  8088. (let ((win (selected-window)))
  8089. (if (and (window-live-p org-agenda-show-window)
  8090. (eq this-command last-command))
  8091. (progn
  8092. (select-window org-agenda-show-window)
  8093. (ignore-errors (scroll-up)))
  8094. (org-agenda-goto t)
  8095. (if arg (org-show-entry) (outline-show-subtree))
  8096. (setq org-agenda-show-window (selected-window)))
  8097. (select-window win)))
  8098. (defun org-agenda-show-scroll-down ()
  8099. "Scroll down the window showing the agenda."
  8100. (interactive)
  8101. (let ((win (selected-window)))
  8102. (when (window-live-p org-agenda-show-window)
  8103. (select-window org-agenda-show-window)
  8104. (ignore-errors (scroll-down))
  8105. (select-window win))))
  8106. (defun org-agenda-show-1 (&optional more)
  8107. "Display the Org-mode file which contains the item at point.
  8108. The prefix arg selects the amount of information to display:
  8109. 0 hide the subtree
  8110. 1 just show the entry according to defaults.
  8111. 2 show the children view
  8112. 3 show the subtree view
  8113. 4 show the entire subtree and any LOGBOOK drawers
  8114. 5 show the entire subtree and any drawers
  8115. With prefix argument FULL-ENTRY, make the entire entry visible
  8116. if it was hidden in the outline."
  8117. (interactive "p")
  8118. (let ((win (selected-window)))
  8119. (org-agenda-goto t)
  8120. (org-back-to-heading)
  8121. (set-window-start (selected-window) (point-at-bol))
  8122. (cond
  8123. ((= more 0)
  8124. (outline-hide-subtree)
  8125. (save-excursion
  8126. (org-back-to-heading)
  8127. (run-hook-with-args 'org-cycle-hook 'folded))
  8128. (message "Remote: FOLDED"))
  8129. ((and (org-called-interactively-p 'any) (= more 1))
  8130. (message "Remote: show with default settings"))
  8131. ((= more 2)
  8132. (outline-show-entry)
  8133. (org-show-children)
  8134. (save-excursion
  8135. (org-back-to-heading)
  8136. (run-hook-with-args 'org-cycle-hook 'children))
  8137. (message "Remote: CHILDREN"))
  8138. ((= more 3)
  8139. (outline-show-subtree)
  8140. (save-excursion
  8141. (org-back-to-heading)
  8142. (run-hook-with-args 'org-cycle-hook 'subtree))
  8143. (message "Remote: SUBTREE"))
  8144. ((= more 4)
  8145. (outline-show-subtree)
  8146. (save-excursion
  8147. (org-back-to-heading)
  8148. (org-cycle-hide-drawers 'subtree '("LOGBOOK")))
  8149. (message "Remote: SUBTREE AND LOGBOOK"))
  8150. ((> more 4)
  8151. (outline-show-subtree)
  8152. (message "Remote: SUBTREE AND ALL DRAWERS")))
  8153. (select-window win)))
  8154. (defvar org-agenda-cycle-counter nil)
  8155. (defun org-agenda-cycle-show (&optional n)
  8156. "Show the current entry in another window, with default settings.
  8157. Default settings are taken from `org-show-context-detail'. When
  8158. use repeatedly in immediate succession, the remote entry will
  8159. cycle through visibility
  8160. children -> subtree -> folded
  8161. When called with a numeric prefix arg, that arg will be passed through to
  8162. `org-agenda-show-1'. For the interpretation of that argument, see the
  8163. docstring of `org-agenda-show-1'."
  8164. (interactive "P")
  8165. (if (integerp n)
  8166. (setq org-agenda-cycle-counter n)
  8167. (if (not (eq last-command this-command))
  8168. (setq org-agenda-cycle-counter 1)
  8169. (if (equal org-agenda-cycle-counter 0)
  8170. (setq org-agenda-cycle-counter 2)
  8171. (setq org-agenda-cycle-counter (1+ org-agenda-cycle-counter))
  8172. (if (> org-agenda-cycle-counter 3)
  8173. (setq org-agenda-cycle-counter 0)))))
  8174. (org-agenda-show-1 org-agenda-cycle-counter))
  8175. (defun org-agenda-recenter (arg)
  8176. "Display the Org-mode file which contains the item at point and recenter."
  8177. (interactive "P")
  8178. (let ((win (selected-window)))
  8179. (org-agenda-goto t)
  8180. (recenter arg)
  8181. (select-window win)))
  8182. (defun org-agenda-show-mouse (ev)
  8183. "Display the Org-mode file which contains the item at the mouse click."
  8184. (interactive "e")
  8185. (mouse-set-point ev)
  8186. (org-agenda-show))
  8187. (defun org-agenda-check-no-diary ()
  8188. "Check if the entry is a diary link and abort if yes."
  8189. (if (org-get-at-bol 'org-agenda-diary-link)
  8190. (org-agenda-error)))
  8191. (defun org-agenda-error ()
  8192. "Throw an error when a command is not allowed in the agenda."
  8193. (user-error "Command not allowed in this line"))
  8194. (defun org-agenda-tree-to-indirect-buffer (arg)
  8195. "Show the subtree corresponding to the current entry in an indirect buffer.
  8196. This calls the command `org-tree-to-indirect-buffer' from the original buffer.
  8197. With a numerical prefix ARG, go up to this level and then take that tree.
  8198. With a negative numeric ARG, go up by this number of levels.
  8199. With a \\[universal-argument] prefix, make a separate frame for this tree (i.e. don't
  8200. use the dedicated frame)."
  8201. (interactive "P")
  8202. (if current-prefix-arg
  8203. (org-agenda-do-tree-to-indirect-buffer arg)
  8204. (let ((agenda-buffer (buffer-name))
  8205. (agenda-window (selected-window))
  8206. (indirect-window
  8207. (and org-last-indirect-buffer
  8208. (get-buffer-window org-last-indirect-buffer))))
  8209. (save-window-excursion (org-agenda-do-tree-to-indirect-buffer arg))
  8210. (unless (or (eq org-indirect-buffer-display 'new-frame)
  8211. (eq org-indirect-buffer-display 'dedicated-frame))
  8212. (unwind-protect
  8213. (unless (and indirect-window (window-live-p indirect-window))
  8214. (setq indirect-window (split-window agenda-window)))
  8215. (and indirect-window (select-window indirect-window))
  8216. (switch-to-buffer org-last-indirect-buffer :norecord)
  8217. (fit-window-to-buffer indirect-window)))
  8218. (select-window (get-buffer-window agenda-buffer))
  8219. (setq org-agenda-last-indirect-buffer org-last-indirect-buffer))))
  8220. (defun org-agenda-do-tree-to-indirect-buffer (arg)
  8221. "Same as `org-agenda-tree-to-indirect-buffer' without saving window."
  8222. (org-agenda-check-no-diary)
  8223. (let* ((marker (or (org-get-at-bol 'org-marker)
  8224. (org-agenda-error)))
  8225. (buffer (marker-buffer marker))
  8226. (pos (marker-position marker)))
  8227. (with-current-buffer buffer
  8228. (save-excursion
  8229. (goto-char pos)
  8230. (funcall 'org-tree-to-indirect-buffer arg)))))
  8231. (defvar org-last-heading-marker (make-marker)
  8232. "Marker pointing to the headline that last changed its TODO state
  8233. by a remote command from the agenda.")
  8234. (defun org-agenda-todo-nextset ()
  8235. "Switch TODO entry to next sequence."
  8236. (interactive)
  8237. (org-agenda-todo 'nextset))
  8238. (defun org-agenda-todo-previousset ()
  8239. "Switch TODO entry to previous sequence."
  8240. (interactive)
  8241. (org-agenda-todo 'previousset))
  8242. (defun org-agenda-todo (&optional arg)
  8243. "Cycle TODO state of line at point, also in Org-mode file.
  8244. This changes the line at point, all other lines in the agenda referring to
  8245. the same tree node, and the headline of the tree node in the Org-mode file."
  8246. (interactive "P")
  8247. (org-agenda-check-no-diary)
  8248. (let* ((col (current-column))
  8249. (marker (or (org-get-at-bol 'org-marker)
  8250. (org-agenda-error)))
  8251. (buffer (marker-buffer marker))
  8252. (pos (marker-position marker))
  8253. (hdmarker (org-get-at-bol 'org-hd-marker))
  8254. (todayp (org-agenda-today-p (org-get-at-bol 'day)))
  8255. (inhibit-read-only t)
  8256. org-agenda-headline-snapshot-before-repeat newhead just-one)
  8257. (org-with-remote-undo buffer
  8258. (with-current-buffer buffer
  8259. (widen)
  8260. (goto-char pos)
  8261. (org-show-context 'agenda)
  8262. (save-excursion
  8263. (and (outline-next-heading)
  8264. (org-flag-heading nil))) ; show the next heading
  8265. (let ((current-prefix-arg arg))
  8266. (call-interactively 'org-todo))
  8267. (and (bolp) (forward-char 1))
  8268. (setq newhead (org-get-heading))
  8269. (when (and (org-bound-and-true-p
  8270. org-agenda-headline-snapshot-before-repeat)
  8271. (not (equal org-agenda-headline-snapshot-before-repeat
  8272. newhead))
  8273. todayp)
  8274. (setq newhead org-agenda-headline-snapshot-before-repeat
  8275. just-one t))
  8276. (save-excursion
  8277. (org-back-to-heading)
  8278. (move-marker org-last-heading-marker (point))))
  8279. (beginning-of-line 1)
  8280. (save-window-excursion
  8281. (org-agenda-change-all-lines newhead hdmarker 'fixface just-one))
  8282. (when (org-bound-and-true-p org-clock-out-when-done)
  8283. (string-match (concat "^" (regexp-opt org-done-keywords-for-agenda))
  8284. newhead)
  8285. (org-agenda-unmark-clocking-task))
  8286. (org-move-to-column col)
  8287. (org-agenda-mark-clocking-task))))
  8288. (defun org-agenda-add-note (&optional arg)
  8289. "Add a time-stamped note to the entry at point."
  8290. (interactive "P")
  8291. (org-agenda-check-no-diary)
  8292. (let* ((marker (or (org-get-at-bol 'org-marker)
  8293. (org-agenda-error)))
  8294. (buffer (marker-buffer marker))
  8295. (pos (marker-position marker))
  8296. (hdmarker (org-get-at-bol 'org-hd-marker))
  8297. (inhibit-read-only t))
  8298. (with-current-buffer buffer
  8299. (widen)
  8300. (goto-char pos)
  8301. (org-show-context 'agenda)
  8302. (save-excursion
  8303. (and (outline-next-heading)
  8304. (org-flag-heading nil))) ; show the next heading
  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. (save-excursion (save-restriction (widen)
  8321. (goto-char hdmarker)
  8322. (org-get-tags-at)))))
  8323. props m pl undone-face done-face finish new dotime level cat tags)
  8324. (save-excursion
  8325. (goto-char (point-max))
  8326. (beginning-of-line 1)
  8327. (while (not finish)
  8328. (setq finish (bobp))
  8329. (when (and (setq m (org-get-at-bol 'org-hd-marker))
  8330. (or (not just-this) (= (org-current-line) line))
  8331. (equal m hdmarker))
  8332. (setq props (text-properties-at (point))
  8333. dotime (org-get-at-bol 'dotime)
  8334. cat (org-get-at-eol 'org-category 1)
  8335. level (org-get-at-bol 'level)
  8336. tags thetags
  8337. new
  8338. (let ((org-prefix-format-compiled
  8339. (or (get-text-property (min (1- (point-max)) (point)) 'format)
  8340. org-prefix-format-compiled))
  8341. (extra (org-get-at-bol 'extra)))
  8342. (with-current-buffer (marker-buffer hdmarker)
  8343. (save-excursion
  8344. (save-restriction
  8345. (widen)
  8346. (org-agenda-format-item extra newhead level cat tags dotime)))))
  8347. pl (text-property-any (point-at-bol) (point-at-eol) 'org-heading t)
  8348. undone-face (org-get-at-bol 'undone-face)
  8349. done-face (org-get-at-bol 'done-face))
  8350. (beginning-of-line 1)
  8351. (cond
  8352. ((equal new "")
  8353. (and (looking-at ".*\n?") (replace-match "")))
  8354. ((looking-at ".*")
  8355. (replace-match new t t)
  8356. (beginning-of-line 1)
  8357. (add-text-properties (point-at-bol) (point-at-eol) props)
  8358. (when fixface
  8359. (add-text-properties
  8360. (point-at-bol) (point-at-eol)
  8361. (list 'face
  8362. (if org-last-todo-state-is-todo
  8363. undone-face done-face))))
  8364. (org-agenda-highlight-todo 'line)
  8365. (beginning-of-line 1))
  8366. (t (error "Line update did not work")))
  8367. (save-restriction
  8368. (narrow-to-region (point-at-bol) (point-at-eol))
  8369. (org-agenda-finalize)))
  8370. (beginning-of-line 0)))))
  8371. (defun org-agenda-align-tags (&optional line)
  8372. "Align all tags in agenda items to `org-agenda-tags-column'."
  8373. (let ((inhibit-read-only t) l c)
  8374. (save-excursion
  8375. (goto-char (if line (point-at-bol) (point-min)))
  8376. (while (re-search-forward (org-re "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$")
  8377. (if line (point-at-eol) nil) t)
  8378. (add-text-properties
  8379. (match-beginning 2) (match-end 2)
  8380. (list 'face (delq nil (let ((prop (get-text-property
  8381. (match-beginning 2) 'face)))
  8382. (or (listp prop) (setq prop (list prop)))
  8383. (if (memq 'org-tag prop)
  8384. prop
  8385. (cons 'org-tag prop))))))
  8386. (setq l (- (match-end 2) (match-beginning 2))
  8387. c (if (< org-agenda-tags-column 0)
  8388. (- (abs org-agenda-tags-column) l)
  8389. org-agenda-tags-column))
  8390. (delete-region (match-beginning 1) (match-end 1))
  8391. (goto-char (match-beginning 1))
  8392. (insert (org-add-props
  8393. (make-string (max 1 (- c (current-column))) ?\ )
  8394. (plist-put (copy-sequence (text-properties-at (point)))
  8395. 'face nil))))
  8396. (goto-char (point-min))
  8397. (org-font-lock-add-tag-faces (point-max)))))
  8398. (defun org-agenda-priority-up ()
  8399. "Increase the priority of line at point, also in Org-mode file."
  8400. (interactive)
  8401. (org-agenda-priority 'up))
  8402. (defun org-agenda-priority-down ()
  8403. "Decrease the priority of line at point, also in Org-mode file."
  8404. (interactive)
  8405. (org-agenda-priority 'down))
  8406. (defun org-agenda-priority (&optional force-direction)
  8407. "Set the priority of line at point, also in Org-mode file.
  8408. This changes the line at point, all other lines in the agenda referring to
  8409. the same tree node, and the headline of the tree node in the Org-mode file.
  8410. Called with a universal prefix arg, show the priority instead of setting it."
  8411. (interactive "P")
  8412. (if (equal force-direction '(4))
  8413. (org-show-priority)
  8414. (unless org-enable-priority-commands
  8415. (error "Priority commands are disabled"))
  8416. (org-agenda-check-no-diary)
  8417. (let* ((col (current-column))
  8418. (marker (or (org-get-at-bol 'org-marker)
  8419. (org-agenda-error)))
  8420. (hdmarker (org-get-at-bol 'org-hd-marker))
  8421. (buffer (marker-buffer hdmarker))
  8422. (pos (marker-position hdmarker))
  8423. (inhibit-read-only t)
  8424. newhead)
  8425. (org-with-remote-undo buffer
  8426. (with-current-buffer buffer
  8427. (widen)
  8428. (goto-char pos)
  8429. (org-show-context 'agenda)
  8430. (save-excursion
  8431. (and (outline-next-heading)
  8432. (org-flag-heading nil))) ; show the next heading
  8433. (funcall 'org-priority force-direction)
  8434. (end-of-line 1)
  8435. (setq newhead (org-get-heading)))
  8436. (org-agenda-change-all-lines newhead hdmarker)
  8437. (org-move-to-column col)))))
  8438. ;; FIXME: should fix the tags property of the agenda line.
  8439. (defun org-agenda-set-tags (&optional tag onoff)
  8440. "Set tags for the current headline."
  8441. (interactive)
  8442. (org-agenda-check-no-diary)
  8443. (if (and (org-region-active-p) (org-called-interactively-p 'any))
  8444. (call-interactively 'org-change-tag-in-region)
  8445. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8446. (org-agenda-error)))
  8447. (buffer (marker-buffer hdmarker))
  8448. (pos (marker-position hdmarker))
  8449. (inhibit-read-only t)
  8450. newhead)
  8451. (org-with-remote-undo buffer
  8452. (with-current-buffer buffer
  8453. (widen)
  8454. (goto-char pos)
  8455. (save-excursion
  8456. (org-show-context 'agenda))
  8457. (save-excursion
  8458. (and (outline-next-heading)
  8459. (org-flag-heading nil))) ; show the next heading
  8460. (goto-char pos)
  8461. (if tag
  8462. (org-toggle-tag tag onoff)
  8463. (call-interactively 'org-set-tags))
  8464. (end-of-line 1)
  8465. (setq newhead (org-get-heading)))
  8466. (org-agenda-change-all-lines newhead hdmarker)
  8467. (beginning-of-line 1)))))
  8468. (defun org-agenda-set-property ()
  8469. "Set a property for the current headline."
  8470. (interactive)
  8471. (org-agenda-check-no-diary)
  8472. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8473. (org-agenda-error)))
  8474. (buffer (marker-buffer hdmarker))
  8475. (pos (marker-position hdmarker))
  8476. (inhibit-read-only t)
  8477. newhead)
  8478. (org-with-remote-undo buffer
  8479. (with-current-buffer buffer
  8480. (widen)
  8481. (goto-char pos)
  8482. (save-excursion
  8483. (org-show-context 'agenda))
  8484. (save-excursion
  8485. (and (outline-next-heading)
  8486. (org-flag-heading nil))) ; show the next heading
  8487. (goto-char pos)
  8488. (call-interactively 'org-set-property)))))
  8489. (defun org-agenda-set-effort ()
  8490. "Set the effort property for the current headline."
  8491. (interactive)
  8492. (org-agenda-check-no-diary)
  8493. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8494. (org-agenda-error)))
  8495. (buffer (marker-buffer hdmarker))
  8496. (pos (marker-position hdmarker))
  8497. (inhibit-read-only t)
  8498. newhead)
  8499. (org-with-remote-undo buffer
  8500. (with-current-buffer buffer
  8501. (widen)
  8502. (goto-char pos)
  8503. (save-excursion
  8504. (org-show-context 'agenda))
  8505. (save-excursion
  8506. (and (outline-next-heading)
  8507. (org-flag-heading nil))) ; show the next heading
  8508. (goto-char pos)
  8509. (call-interactively 'org-set-effort)
  8510. (end-of-line 1)
  8511. (setq newhead (org-get-heading)))
  8512. (org-agenda-change-all-lines newhead hdmarker))))
  8513. (defun org-agenda-toggle-archive-tag ()
  8514. "Toggle the archive tag for the current entry."
  8515. (interactive)
  8516. (org-agenda-check-no-diary)
  8517. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8518. (org-agenda-error)))
  8519. (buffer (marker-buffer hdmarker))
  8520. (pos (marker-position hdmarker))
  8521. (inhibit-read-only t)
  8522. newhead)
  8523. (org-with-remote-undo buffer
  8524. (with-current-buffer buffer
  8525. (widen)
  8526. (goto-char pos)
  8527. (org-show-context 'agenda)
  8528. (save-excursion
  8529. (and (outline-next-heading)
  8530. (org-flag-heading nil))) ; show the next heading
  8531. (call-interactively 'org-toggle-archive-tag)
  8532. (end-of-line 1)
  8533. (setq newhead (org-get-heading)))
  8534. (org-agenda-change-all-lines newhead hdmarker)
  8535. (beginning-of-line 1))))
  8536. (defun org-agenda-do-date-later (arg)
  8537. (interactive "P")
  8538. (cond
  8539. ((or (equal arg '(16))
  8540. (memq last-command
  8541. '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
  8542. (setq this-command 'org-agenda-date-later-minutes)
  8543. (org-agenda-date-later-minutes 1))
  8544. ((or (equal arg '(4))
  8545. (memq last-command
  8546. '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
  8547. (setq this-command 'org-agenda-date-later-hours)
  8548. (org-agenda-date-later-hours 1))
  8549. (t
  8550. (org-agenda-date-later (prefix-numeric-value arg)))))
  8551. (defun org-agenda-do-date-earlier (arg)
  8552. (interactive "P")
  8553. (cond
  8554. ((or (equal arg '(16))
  8555. (memq last-command
  8556. '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
  8557. (setq this-command 'org-agenda-date-earlier-minutes)
  8558. (org-agenda-date-earlier-minutes 1))
  8559. ((or (equal arg '(4))
  8560. (memq last-command
  8561. '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
  8562. (setq this-command 'org-agenda-date-earlier-hours)
  8563. (org-agenda-date-earlier-hours 1))
  8564. (t
  8565. (org-agenda-date-earlier (prefix-numeric-value arg)))))
  8566. (defun org-agenda-date-later (arg &optional what)
  8567. "Change the date of this item to ARG day(s) later."
  8568. (interactive "p")
  8569. (org-agenda-check-type t 'agenda 'timeline)
  8570. (org-agenda-check-no-diary)
  8571. (let* ((marker (or (org-get-at-bol 'org-marker)
  8572. (org-agenda-error)))
  8573. (buffer (marker-buffer marker))
  8574. (pos (marker-position marker))
  8575. cdate today)
  8576. (org-with-remote-undo buffer
  8577. (with-current-buffer buffer
  8578. (widen)
  8579. (goto-char pos)
  8580. (if (not (org-at-timestamp-p))
  8581. (error "Cannot find time stamp"))
  8582. (when (and org-agenda-move-date-from-past-immediately-to-today
  8583. (equal arg 1)
  8584. (or (not what) (eq what 'day))
  8585. (not (save-match-data (org-at-date-range-p))))
  8586. (setq cdate (org-parse-time-string (match-string 0) 'nodefault)
  8587. cdate (calendar-absolute-from-gregorian
  8588. (list (nth 4 cdate) (nth 3 cdate) (nth 5 cdate)))
  8589. today (org-today))
  8590. (if (> today cdate)
  8591. ;; immediately shift to today
  8592. (setq arg (- today cdate))))
  8593. (org-timestamp-change arg (or what 'day))
  8594. (when (and (org-at-date-range-p)
  8595. (re-search-backward org-tr-regexp-both (point-at-bol)))
  8596. (let ((end org-last-changed-timestamp))
  8597. (org-timestamp-change arg (or what 'day))
  8598. (setq org-last-changed-timestamp
  8599. (concat org-last-changed-timestamp "--" end)))))
  8600. (org-agenda-show-new-time marker org-last-changed-timestamp))
  8601. (message "Time stamp changed to %s" org-last-changed-timestamp)))
  8602. (defun org-agenda-date-earlier (arg &optional what)
  8603. "Change the date of this item to ARG day(s) earlier."
  8604. (interactive "p")
  8605. (org-agenda-date-later (- arg) what))
  8606. (defun org-agenda-date-later-minutes (arg)
  8607. "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
  8608. (interactive "p")
  8609. (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
  8610. (org-agenda-date-later arg 'minute))
  8611. (defun org-agenda-date-earlier-minutes (arg)
  8612. "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
  8613. (interactive "p")
  8614. (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
  8615. (org-agenda-date-earlier arg 'minute))
  8616. (defun org-agenda-date-later-hours (arg)
  8617. "Change the time of this item, in hour steps."
  8618. (interactive "p")
  8619. (org-agenda-date-later arg 'hour))
  8620. (defun org-agenda-date-earlier-hours (arg)
  8621. "Change the time of this item, in hour steps."
  8622. (interactive "p")
  8623. (org-agenda-date-earlier arg 'hour))
  8624. (defun org-agenda-show-new-time (marker stamp &optional prefix)
  8625. "Show new date stamp via text properties."
  8626. ;; We use text properties to make this undoable
  8627. (let ((inhibit-read-only t))
  8628. (setq stamp (concat prefix " => " stamp " "))
  8629. (save-excursion
  8630. (goto-char (point-max))
  8631. (while (not (bobp))
  8632. (when (equal marker (org-get-at-bol 'org-marker))
  8633. (remove-text-properties (point-at-bol) (point-at-eol) '(display))
  8634. (org-move-to-column (- (window-width) (length stamp)) t)
  8635. (if (featurep 'xemacs)
  8636. ;; Use `duplicable' property to trigger undo recording
  8637. (let ((ex (make-extent nil nil))
  8638. (gl (make-glyph stamp)))
  8639. (set-glyph-face gl 'secondary-selection)
  8640. (set-extent-properties
  8641. ex (list 'invisible t 'end-glyph gl 'duplicable t))
  8642. (insert-extent ex (1- (point)) (point-at-eol)))
  8643. (add-text-properties
  8644. (1- (point)) (point-at-eol)
  8645. (list 'display (org-add-props stamp nil
  8646. 'face '(secondary-selection default)))))
  8647. (beginning-of-line 1))
  8648. (beginning-of-line 0)))))
  8649. (defun org-agenda-date-prompt (arg)
  8650. "Change the date of this item. Date is prompted for, with default today.
  8651. The prefix ARG is passed to the `org-time-stamp' command and can therefore
  8652. be used to request time specification in the time stamp."
  8653. (interactive "P")
  8654. (org-agenda-check-type t 'agenda 'timeline)
  8655. (org-agenda-check-no-diary)
  8656. (let* ((marker (or (org-get-at-bol 'org-marker)
  8657. (org-agenda-error)))
  8658. (buffer (marker-buffer marker))
  8659. (pos (marker-position marker)))
  8660. (org-with-remote-undo buffer
  8661. (with-current-buffer buffer
  8662. (widen)
  8663. (goto-char pos)
  8664. (if (not (org-at-timestamp-p t))
  8665. (error "Cannot find time stamp"))
  8666. (org-time-stamp arg (equal (char-after (match-beginning 0)) ?\[)))
  8667. (org-agenda-show-new-time marker org-last-changed-timestamp))
  8668. (message "Time stamp changed to %s" org-last-changed-timestamp)))
  8669. (defun org-agenda-schedule (arg &optional time)
  8670. "Schedule the item at point.
  8671. ARG is passed through to `org-schedule'."
  8672. (interactive "P")
  8673. (org-agenda-check-type t 'agenda 'timeline 'todo 'tags 'search)
  8674. (org-agenda-check-no-diary)
  8675. (let* ((marker (or (org-get-at-bol 'org-marker)
  8676. (org-agenda-error)))
  8677. (type (marker-insertion-type marker))
  8678. (buffer (marker-buffer marker))
  8679. (pos (marker-position marker))
  8680. ts)
  8681. (set-marker-insertion-type marker t)
  8682. (org-with-remote-undo buffer
  8683. (with-current-buffer buffer
  8684. (widen)
  8685. (goto-char pos)
  8686. (setq ts (org-schedule arg time)))
  8687. (org-agenda-show-new-time marker ts " S"))
  8688. (message "%s" ts)))
  8689. (defun org-agenda-deadline (arg &optional time)
  8690. "Schedule the item at point.
  8691. ARG is passed through to `org-deadline'."
  8692. (interactive "P")
  8693. (org-agenda-check-type t 'agenda 'timeline 'todo 'tags 'search)
  8694. (org-agenda-check-no-diary)
  8695. (let* ((marker (or (org-get-at-bol 'org-marker)
  8696. (org-agenda-error)))
  8697. (buffer (marker-buffer marker))
  8698. (pos (marker-position marker))
  8699. ts)
  8700. (org-with-remote-undo buffer
  8701. (with-current-buffer buffer
  8702. (widen)
  8703. (goto-char pos)
  8704. (setq ts (org-deadline arg time)))
  8705. (org-agenda-show-new-time marker ts " D"))
  8706. (message "%s" ts)))
  8707. (defun org-agenda-clock-in (&optional arg)
  8708. "Start the clock on the currently selected item."
  8709. (interactive "P")
  8710. (org-agenda-check-no-diary)
  8711. (if (equal arg '(4))
  8712. (org-clock-in arg)
  8713. (let* ((marker (or (org-get-at-bol 'org-marker)
  8714. (org-agenda-error)))
  8715. (hdmarker (or (org-get-at-bol 'org-hd-marker) marker))
  8716. (pos (marker-position marker))
  8717. (col (current-column))
  8718. newhead)
  8719. (org-with-remote-undo (marker-buffer marker)
  8720. (with-current-buffer (marker-buffer marker)
  8721. (widen)
  8722. (goto-char pos)
  8723. (org-show-context 'agenda)
  8724. (org-show-entry)
  8725. (org-cycle-hide-drawers 'children)
  8726. (org-clock-in arg)
  8727. (setq newhead (org-get-heading)))
  8728. (org-agenda-change-all-lines newhead hdmarker))
  8729. (org-move-to-column col))))
  8730. (defun org-agenda-clock-out ()
  8731. "Stop the currently running clock."
  8732. (interactive)
  8733. (unless (marker-buffer org-clock-marker)
  8734. (error "No running clock"))
  8735. (let ((marker (make-marker)) (col (current-column)) newhead)
  8736. (org-with-remote-undo (marker-buffer org-clock-marker)
  8737. (with-current-buffer (marker-buffer org-clock-marker)
  8738. (save-excursion
  8739. (save-restriction
  8740. (widen)
  8741. (goto-char org-clock-marker)
  8742. (org-back-to-heading t)
  8743. (move-marker marker (point))
  8744. (org-clock-out)
  8745. (setq newhead (org-get-heading))))))
  8746. (org-agenda-change-all-lines newhead marker)
  8747. (move-marker marker nil)
  8748. (org-move-to-column col)
  8749. (org-agenda-unmark-clocking-task)))
  8750. (defun org-agenda-clock-cancel (&optional arg)
  8751. "Cancel the currently running clock."
  8752. (interactive "P")
  8753. (unless (marker-buffer org-clock-marker)
  8754. (user-error "No running clock"))
  8755. (org-with-remote-undo (marker-buffer org-clock-marker)
  8756. (org-clock-cancel)))
  8757. (defun org-agenda-clock-goto ()
  8758. "Jump to the currently clocked in task within the agenda.
  8759. If the currently clocked in task is not listed in the agenda
  8760. buffer, display it in another window."
  8761. (interactive)
  8762. (let (pos)
  8763. (mapc (lambda (o)
  8764. (if (eq (overlay-get o 'type) 'org-agenda-clocking)
  8765. (setq pos (overlay-start o))))
  8766. (overlays-in (point-min) (point-max)))
  8767. (cond (pos (goto-char pos))
  8768. ;; If the currently clocked entry is not in the agenda
  8769. ;; buffer, we visit it in another window:
  8770. (org-clock-current-task
  8771. (org-switch-to-buffer-other-window (org-clock-goto)))
  8772. (t (message "No running clock, use `C-c C-x C-j' to jump to the most recent one")))))
  8773. (defun org-agenda-diary-entry-in-org-file ()
  8774. "Make a diary entry in the file `org-agenda-diary-file'."
  8775. (let (d1 d2 char (text "") dp1 dp2)
  8776. (if (equal (buffer-name) "*Calendar*")
  8777. (setq d1 (calendar-cursor-to-date t)
  8778. d2 (car calendar-mark-ring))
  8779. (setq dp1 (get-text-property (point-at-bol) 'day))
  8780. (unless dp1 (user-error "No date defined in current line"))
  8781. (setq d1 (calendar-gregorian-from-absolute dp1)
  8782. d2 (and (ignore-errors (mark))
  8783. (save-excursion
  8784. (goto-char (mark))
  8785. (setq dp2 (get-text-property (point-at-bol) 'day)))
  8786. (calendar-gregorian-from-absolute dp2))))
  8787. (message "Diary entry: [d]ay [a]nniversary [b]lock [j]ump to date tree")
  8788. (setq char (read-char-exclusive))
  8789. (cond
  8790. ((equal char ?d)
  8791. (setq text (read-string "Day entry: "))
  8792. (org-agenda-add-entry-to-org-agenda-diary-file 'day text d1)
  8793. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  8794. ((equal char ?a)
  8795. (setq d1 (list (car d1) (nth 1 d1)
  8796. (read-number (format "Reference year [%d]: " (nth 2 d1))
  8797. (nth 2 d1))))
  8798. (setq text (read-string "Anniversary (use %d to show years): "))
  8799. (org-agenda-add-entry-to-org-agenda-diary-file 'anniversary text d1)
  8800. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  8801. ((equal char ?b)
  8802. (setq text (read-string "Block entry: "))
  8803. (unless (and d1 d2 (not (equal d1 d2)))
  8804. (user-error "No block of days selected"))
  8805. (org-agenda-add-entry-to-org-agenda-diary-file 'block text d1 d2)
  8806. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  8807. ((equal char ?j)
  8808. (org-switch-to-buffer-other-window
  8809. (find-file-noselect org-agenda-diary-file))
  8810. (require 'org-datetree)
  8811. (org-datetree-find-date-create d1)
  8812. (org-reveal t))
  8813. (t (user-error "Invalid selection character `%c'" char)))))
  8814. (defcustom org-agenda-insert-diary-strategy 'date-tree
  8815. "Where in `org-agenda-diary-file' should new entries be added?
  8816. Valid values:
  8817. date-tree in the date tree, as first child of the date
  8818. date-tree-last in the date tree, as last child of the date
  8819. top-level as top-level entries at the end of the file."
  8820. :group 'org-agenda
  8821. :type '(choice
  8822. (const :tag "first in a date tree" date-tree)
  8823. (const :tag "last in a date tree" date-tree-last)
  8824. (const :tag "as top level at end of file" top-level)))
  8825. (defcustom org-agenda-insert-diary-extract-time nil
  8826. "Non-nil means extract any time specification from the diary entry."
  8827. :group 'org-agenda
  8828. :version "24.1"
  8829. :type 'boolean)
  8830. (defcustom org-agenda-bulk-mark-char ">"
  8831. "A single-character string to be used as the bulk mark."
  8832. :group 'org-agenda
  8833. :version "24.1"
  8834. :type 'string)
  8835. (defun org-agenda-add-entry-to-org-agenda-diary-file (type text &optional d1 d2)
  8836. "Add a diary entry with TYPE to `org-agenda-diary-file'.
  8837. If TEXT is not empty, it will become the headline of the new entry, and
  8838. the resulting entry will not be shown. When TEXT is empty, switch to
  8839. `org-agenda-diary-file' and let the user finish the entry there."
  8840. (let ((cw (current-window-configuration)))
  8841. (org-switch-to-buffer-other-window
  8842. (find-file-noselect org-agenda-diary-file))
  8843. (widen)
  8844. (goto-char (point-min))
  8845. (cond
  8846. ((eq type 'anniversary)
  8847. (or (re-search-forward "^*[ \t]+Anniversaries" nil t)
  8848. (progn
  8849. (or (org-at-heading-p t)
  8850. (progn
  8851. (outline-next-heading)
  8852. (insert "* Anniversaries\n\n")
  8853. (beginning-of-line -1)))))
  8854. (outline-next-heading)
  8855. (org-back-over-empty-lines)
  8856. (backward-char 1)
  8857. (insert "\n")
  8858. (insert (format "%%%%(org-anniversary %d %2d %2d) %s"
  8859. (nth 2 d1) (car d1) (nth 1 d1) text)))
  8860. ((eq type 'day)
  8861. (let ((org-prefix-has-time t)
  8862. (org-agenda-time-leading-zero t)
  8863. fmt time time2)
  8864. (if org-agenda-insert-diary-extract-time
  8865. ;; Use org-agenda-format-item to parse text for a time-range and
  8866. ;; remove it. FIXME: This is a hack, we should refactor
  8867. ;; that function to make time extraction available separately
  8868. (setq fmt (org-agenda-format-item nil text nil nil nil t)
  8869. time (get-text-property 0 'time fmt)
  8870. time2 (if (> (length time) 0)
  8871. ;; split-string removes trailing ...... if
  8872. ;; no end time given. First space
  8873. ;; separates time from date.
  8874. (concat " " (car (split-string time "\\.")))
  8875. nil)
  8876. text (get-text-property 0 'txt fmt)))
  8877. (if (eq org-agenda-insert-diary-strategy 'top-level)
  8878. (org-agenda-insert-diary-as-top-level text)
  8879. (require 'org-datetree)
  8880. (org-datetree-find-date-create d1)
  8881. (org-agenda-insert-diary-make-new-entry text))
  8882. (org-insert-time-stamp (org-time-from-absolute
  8883. (calendar-absolute-from-gregorian d1))
  8884. nil nil nil nil time2))
  8885. (end-of-line 0))
  8886. ((eq type 'block)
  8887. (if (> (calendar-absolute-from-gregorian d1)
  8888. (calendar-absolute-from-gregorian d2))
  8889. (setq d1 (prog1 d2 (setq d2 d1))))
  8890. (if (eq org-agenda-insert-diary-strategy 'top-level)
  8891. (org-agenda-insert-diary-as-top-level text)
  8892. (require 'org-datetree)
  8893. (org-datetree-find-date-create d1)
  8894. (org-agenda-insert-diary-make-new-entry text))
  8895. (org-insert-time-stamp (org-time-from-absolute
  8896. (calendar-absolute-from-gregorian d1)))
  8897. (insert "--")
  8898. (org-insert-time-stamp (org-time-from-absolute
  8899. (calendar-absolute-from-gregorian d2)))
  8900. (end-of-line 0)))
  8901. (if (string-match "\\S-" text)
  8902. (progn
  8903. (set-window-configuration cw)
  8904. (message "%s entry added to %s"
  8905. (capitalize (symbol-name type))
  8906. (abbreviate-file-name org-agenda-diary-file)))
  8907. (org-reveal t)
  8908. (message "Please finish entry here"))))
  8909. (defun org-agenda-insert-diary-as-top-level (text)
  8910. "Make new entry as a top-level entry at the end of the file.
  8911. Add TEXT as headline, and position the cursor in the second line so that
  8912. a timestamp can be added there."
  8913. (widen)
  8914. (goto-char (point-max))
  8915. (unless (bolp) (insert "\n"))
  8916. (org-insert-heading nil t t)
  8917. (insert text)
  8918. (org-end-of-meta-data)
  8919. (unless (bolp) (insert "\n"))
  8920. (when org-adapt-indentation (org-indent-to-column 2)))
  8921. (defun org-agenda-insert-diary-make-new-entry (text)
  8922. "Make a new entry with TEXT as a child of the current subtree.
  8923. Position the point in the heading's first body line so that
  8924. a timestamp can be added there."
  8925. (cond
  8926. ((eq org-agenda-insert-diary-strategy 'date-tree-last)
  8927. (end-of-line)
  8928. (org-insert-heading '(4) t)
  8929. (org-do-demote))
  8930. (t
  8931. (outline-next-heading)
  8932. (org-back-over-empty-lines)
  8933. (unless (looking-at "[ \t]*$") (save-excursion (insert "\n")))
  8934. (org-insert-heading nil t)
  8935. (org-do-demote)))
  8936. (let ((col (current-column)))
  8937. (insert text)
  8938. (org-end-of-meta-data)
  8939. ;; Ensure point is left on a blank line, at proper indentation.
  8940. (unless (bolp) (insert "\n"))
  8941. (unless (org-looking-at-p "^[ \t]*$") (save-excursion (insert "\n")))
  8942. (when org-adapt-indentation (org-indent-to-column col)))
  8943. (org-show-set-visibility 'lineage))
  8944. (defun org-agenda-diary-entry ()
  8945. "Make a diary entry, like the `i' command from the calendar.
  8946. All the standard commands work: block, weekly etc.
  8947. When `org-agenda-diary-file' points to a file,
  8948. `org-agenda-diary-entry-in-org-file' is called instead to create
  8949. entries in that Org-mode file."
  8950. (interactive)
  8951. (if (not (eq org-agenda-diary-file 'diary-file))
  8952. (org-agenda-diary-entry-in-org-file)
  8953. (require 'diary-lib)
  8954. (let* ((char (progn
  8955. (message "Diary entry: [d]ay [w]eekly [m]onthly [y]early [a]nniversary [b]lock [c]yclic")
  8956. (read-char-exclusive)))
  8957. (cmd (cdr (assoc char
  8958. '((?d . diary-insert-entry)
  8959. (?w . diary-insert-weekly-entry)
  8960. (?m . diary-insert-monthly-entry)
  8961. (?y . diary-insert-yearly-entry)
  8962. (?a . diary-insert-anniversary-entry)
  8963. (?b . diary-insert-block-entry)
  8964. (?c . diary-insert-cyclic-entry)))))
  8965. (oldf (symbol-function 'calendar-cursor-to-date))
  8966. ;; (buf (get-file-buffer (substitute-in-file-name diary-file)))
  8967. (point (point))
  8968. (mark (or (mark t) (point))))
  8969. (unless cmd
  8970. (user-error "No command associated with <%c>" char))
  8971. (unless (and (get-text-property point 'day)
  8972. (or (not (equal ?b char))
  8973. (get-text-property mark 'day)))
  8974. (user-error "Don't know which date to use for diary entry"))
  8975. ;; We implement this by hacking the `calendar-cursor-to-date' function
  8976. ;; and the `calendar-mark-ring' variable. Saves a lot of code.
  8977. (let ((calendar-mark-ring
  8978. (list (calendar-gregorian-from-absolute
  8979. (or (get-text-property mark 'day)
  8980. (get-text-property point 'day))))))
  8981. (unwind-protect
  8982. (progn
  8983. (fset 'calendar-cursor-to-date
  8984. (lambda (&optional error dummy)
  8985. (calendar-gregorian-from-absolute
  8986. (get-text-property point 'day))))
  8987. (call-interactively cmd))
  8988. (fset 'calendar-cursor-to-date oldf))))))
  8989. (defun org-agenda-execute-calendar-command (cmd)
  8990. "Execute a calendar command from the agenda with date from cursor."
  8991. (org-agenda-check-type t 'agenda 'timeline)
  8992. (require 'diary-lib)
  8993. (unless (get-text-property (min (1- (point-max)) (point)) 'day)
  8994. (user-error "Don't know which date to use for the calendar command"))
  8995. (let* ((oldf (symbol-function 'calendar-cursor-to-date))
  8996. (point (point))
  8997. (date (calendar-gregorian-from-absolute
  8998. (get-text-property point 'day)))
  8999. ;; the following 2 vars are needed in the calendar
  9000. (displayed-month (car date))
  9001. (displayed-year (nth 2 date)))
  9002. (unwind-protect
  9003. (progn
  9004. (fset 'calendar-cursor-to-date
  9005. (lambda (&optional error dummy)
  9006. (calendar-gregorian-from-absolute
  9007. (get-text-property point 'day))))
  9008. (call-interactively cmd))
  9009. (fset 'calendar-cursor-to-date oldf))))
  9010. (defun org-agenda-phases-of-moon ()
  9011. "Display the phases of the moon for the 3 months around the cursor date."
  9012. (interactive)
  9013. (org-agenda-execute-calendar-command 'calendar-lunar-phases))
  9014. (defun org-agenda-holidays ()
  9015. "Display the holidays for the 3 months around the cursor date."
  9016. (interactive)
  9017. (org-agenda-execute-calendar-command 'calendar-list-holidays))
  9018. (defvar calendar-longitude) ; defined in calendar.el
  9019. (defvar calendar-latitude) ; defined in calendar.el
  9020. (defvar calendar-location-name) ; defined in calendar.el
  9021. (defun org-agenda-sunrise-sunset (arg)
  9022. "Display sunrise and sunset for the cursor date.
  9023. Latitude and longitude can be specified with the variables
  9024. `calendar-latitude' and `calendar-longitude'. When called with prefix
  9025. argument, latitude and longitude will be prompted for."
  9026. (interactive "P")
  9027. (require 'solar)
  9028. (let ((calendar-longitude (if arg nil calendar-longitude))
  9029. (calendar-latitude (if arg nil calendar-latitude))
  9030. (calendar-location-name
  9031. (if arg "the given coordinates" calendar-location-name)))
  9032. (org-agenda-execute-calendar-command 'calendar-sunrise-sunset)))
  9033. (defun org-agenda-goto-calendar ()
  9034. "Open the Emacs calendar with the date at the cursor."
  9035. (interactive)
  9036. (org-agenda-check-type t 'agenda 'timeline)
  9037. (let* ((day (or (get-text-property (min (1- (point-max)) (point)) 'day)
  9038. (user-error "Don't know which date to open in calendar")))
  9039. (date (calendar-gregorian-from-absolute day))
  9040. (calendar-move-hook nil)
  9041. (calendar-view-holidays-initially-flag nil)
  9042. (calendar-view-diary-initially-flag nil))
  9043. (calendar)
  9044. (calendar-goto-date date)))
  9045. ;;;###autoload
  9046. (defun org-calendar-goto-agenda ()
  9047. "Compute the Org-mode agenda for the calendar date displayed at the cursor.
  9048. This is a command that has to be installed in `calendar-mode-map'."
  9049. (interactive)
  9050. ;; Temporarily disable sticky agenda since user clearly wants to
  9051. ;; refresh view anyway.
  9052. (let ((org-agenda-buffer-tmp-name "*Org Agenda(a)*")
  9053. (org-agenda-sticky nil))
  9054. (org-agenda-list nil (calendar-absolute-from-gregorian
  9055. (calendar-cursor-to-date))
  9056. nil)))
  9057. (defun org-agenda-convert-date ()
  9058. (interactive)
  9059. (org-agenda-check-type t 'agenda 'timeline)
  9060. (let ((day (get-text-property (min (1- (point-max)) (point)) 'day))
  9061. date s)
  9062. (unless day
  9063. (user-error "Don't know which date to convert"))
  9064. (setq date (calendar-gregorian-from-absolute day))
  9065. (setq s (concat
  9066. "Gregorian: " (calendar-date-string date) "\n"
  9067. "ISO: " (calendar-iso-date-string date) "\n"
  9068. "Day of Yr: " (calendar-day-of-year-string date) "\n"
  9069. "Julian: " (calendar-julian-date-string date) "\n"
  9070. "Astron. JD: " (calendar-astro-date-string date)
  9071. " (Julian date number at noon UTC)\n"
  9072. "Hebrew: " (calendar-hebrew-date-string date) " (until sunset)\n"
  9073. "Islamic: " (calendar-islamic-date-string date) " (until sunset)\n"
  9074. "French: " (calendar-french-date-string date) "\n"
  9075. "Bahá’í: " (calendar-bahai-date-string date) " (until sunset)\n"
  9076. "Mayan: " (calendar-mayan-date-string date) "\n"
  9077. "Coptic: " (calendar-coptic-date-string date) "\n"
  9078. "Ethiopic: " (calendar-ethiopic-date-string date) "\n"
  9079. "Persian: " (calendar-persian-date-string date) "\n"
  9080. "Chinese: " (calendar-chinese-date-string date) "\n"))
  9081. (with-output-to-temp-buffer "*Dates*"
  9082. (princ s))
  9083. (org-fit-window-to-buffer (get-buffer-window "*Dates*"))))
  9084. ;;; Bulk commands
  9085. (defun org-agenda-bulk-marked-p ()
  9086. (eq (get-char-property (point-at-bol) 'type)
  9087. 'org-marked-entry-overlay))
  9088. (defun org-agenda-bulk-mark (&optional arg)
  9089. "Mark the entry at point for future bulk action."
  9090. (interactive "p")
  9091. (dotimes (i (or arg 1))
  9092. (unless (org-get-at-bol 'org-agenda-diary-link)
  9093. (let* ((m (org-get-at-bol 'org-hd-marker))
  9094. ov)
  9095. (unless (org-agenda-bulk-marked-p)
  9096. (unless m (user-error "Nothing to mark at point"))
  9097. (push m org-agenda-bulk-marked-entries)
  9098. (setq ov (make-overlay (point-at-bol) (+ 2 (point-at-bol))))
  9099. (org-overlay-display ov (concat org-agenda-bulk-mark-char " ")
  9100. (org-get-todo-face "TODO")
  9101. 'evaporate)
  9102. (overlay-put ov 'type 'org-marked-entry-overlay))
  9103. (end-of-line 1)
  9104. (or (ignore-errors
  9105. (goto-char (next-single-property-change (point) 'org-hd-marker)))
  9106. (beginning-of-line 2))
  9107. (while (and (get-char-property (point) 'invisible) (not (eobp)))
  9108. (beginning-of-line 2))
  9109. (message "%d entries marked for bulk action"
  9110. (length org-agenda-bulk-marked-entries))))))
  9111. (defun org-agenda-bulk-mark-all ()
  9112. "Mark all entries for future agenda bulk action."
  9113. (interactive)
  9114. (org-agenda-bulk-mark-regexp "."))
  9115. (defun org-agenda-bulk-mark-regexp (regexp)
  9116. "Mark entries matching REGEXP for future agenda bulk action."
  9117. (interactive "sMark entries matching regexp: ")
  9118. (let ((entries-marked 0) txt-at-point)
  9119. (save-excursion
  9120. (goto-char (point-min))
  9121. (goto-char (next-single-property-change (point) 'org-hd-marker))
  9122. (while (and (re-search-forward regexp nil t)
  9123. (setq txt-at-point (get-text-property (point) 'txt)))
  9124. (when (string-match regexp txt-at-point)
  9125. (setq entries-marked (1+ entries-marked))
  9126. (call-interactively 'org-agenda-bulk-mark))))
  9127. (if (not entries-marked)
  9128. (message "No entry matching this regexp."))))
  9129. (defun org-agenda-bulk-unmark (&optional arg)
  9130. "Unmark the entry at point for future bulk action."
  9131. (interactive "P")
  9132. (if arg
  9133. (org-agenda-bulk-unmark-all)
  9134. (cond ((org-agenda-bulk-marked-p)
  9135. (org-agenda-bulk-remove-overlays
  9136. (point-at-bol) (+ 2 (point-at-bol)))
  9137. (setq org-agenda-bulk-marked-entries
  9138. (delete (org-get-at-bol 'org-hd-marker)
  9139. org-agenda-bulk-marked-entries))
  9140. (end-of-line 1)
  9141. (or (ignore-errors
  9142. (goto-char (next-single-property-change (point) 'txt)))
  9143. (beginning-of-line 2))
  9144. (while (and (get-char-property (point) 'invisible) (not (eobp)))
  9145. (beginning-of-line 2))
  9146. (message "%d entries left marked for bulk action"
  9147. (length org-agenda-bulk-marked-entries)))
  9148. (t (message "No entry to unmark here")))))
  9149. (defun org-agenda-bulk-toggle-all ()
  9150. "Toggle all marks for bulk action."
  9151. (interactive)
  9152. (save-excursion
  9153. (goto-char (point-min))
  9154. (while (ignore-errors
  9155. (goto-char (next-single-property-change (point) 'org-hd-marker)))
  9156. (org-agenda-bulk-toggle))))
  9157. (defun org-agenda-bulk-toggle ()
  9158. "Toggle the mark at point for bulk action."
  9159. (interactive)
  9160. (if (org-agenda-bulk-marked-p)
  9161. (org-agenda-bulk-unmark)
  9162. (org-agenda-bulk-mark)))
  9163. (defun org-agenda-bulk-remove-overlays (&optional beg end)
  9164. "Remove the mark overlays between BEG and END in the agenda buffer.
  9165. BEG and END default to the buffer limits.
  9166. This only removes the overlays, it does not remove the markers
  9167. from the list in `org-agenda-bulk-marked-entries'."
  9168. (interactive)
  9169. (mapc (lambda (ov)
  9170. (and (eq (overlay-get ov 'type) 'org-marked-entry-overlay)
  9171. (delete-overlay ov)))
  9172. (overlays-in (or beg (point-min)) (or end (point-max)))))
  9173. (defun org-agenda-bulk-unmark-all ()
  9174. "Remove all marks in the agenda buffer.
  9175. This will remove the markers and the overlays."
  9176. (interactive)
  9177. (if (null org-agenda-bulk-marked-entries)
  9178. (message "No entry to unmark")
  9179. (mapc (lambda (m) (move-marker m nil)) org-agenda-bulk-marked-entries)
  9180. (setq org-agenda-bulk-marked-entries nil)
  9181. (org-agenda-bulk-remove-overlays (point-min) (point-max))))
  9182. (defcustom org-agenda-persistent-marks nil
  9183. "Non-nil means marked items will stay marked after a bulk action.
  9184. You can toggle this interactively by typing `p' when prompted for a
  9185. bulk action."
  9186. :group 'org-agenda
  9187. :version "24.1"
  9188. :type 'boolean)
  9189. (defun org-agenda-bulk-action (&optional arg)
  9190. "Execute an remote-editing action on all marked entries.
  9191. The prefix arg is passed through to the command if possible."
  9192. (interactive "P")
  9193. ;; Make sure we have markers, and only valid ones
  9194. (unless org-agenda-bulk-marked-entries (user-error "No entries are marked"))
  9195. (mapc
  9196. (lambda (m)
  9197. (unless (and (markerp m)
  9198. (marker-buffer m)
  9199. (buffer-live-p (marker-buffer m))
  9200. (marker-position m))
  9201. (user-error "Marker %s for bulk command is invalid" m)))
  9202. org-agenda-bulk-marked-entries)
  9203. ;; Prompt for the bulk command
  9204. (let* ((msg (if org-agenda-persistent-marks "Bulk (persistent): " "Bulk: ")))
  9205. (message (concat msg "[$]arch [A]rch->sib [t]odo [+/-]tag [s]chd [d]eadline [r]efile "
  9206. "[S]catter [f]unction "
  9207. (when org-agenda-bulk-custom-functions
  9208. (concat " Custom: ["
  9209. (mapconcat (lambda(f) (char-to-string (car f)))
  9210. org-agenda-bulk-custom-functions "")
  9211. "]"))))
  9212. (catch 'exit
  9213. (let* ((action (read-char-exclusive))
  9214. (org-log-refile (if org-log-refile 'time nil))
  9215. (entries (reverse org-agenda-bulk-marked-entries))
  9216. (org-overriding-default-time
  9217. (if (get-text-property (point) 'org-agenda-date-header)
  9218. (org-get-cursor-date)))
  9219. redo-at-end
  9220. cmd rfloc state e tag pos (cnt 0) (cntskip 0))
  9221. (cond
  9222. ((equal action ?p)
  9223. (let ((org-agenda-persistent-marks
  9224. (not org-agenda-persistent-marks)))
  9225. (org-agenda-bulk-action)
  9226. (throw 'exit nil)))
  9227. ((equal action ?$)
  9228. (setq cmd '(org-agenda-archive)))
  9229. ((equal action ?A)
  9230. (setq cmd '(org-agenda-archive-to-archive-sibling)))
  9231. ((member action '(?r ?w))
  9232. (setq rfloc (org-refile-get-location
  9233. "Refile to"
  9234. (marker-buffer (car entries))
  9235. org-refile-allow-creating-parent-nodes))
  9236. (if (nth 3 rfloc)
  9237. (setcar (nthcdr 3 rfloc)
  9238. (move-marker (make-marker) (nth 3 rfloc)
  9239. (or (get-file-buffer (nth 1 rfloc))
  9240. (find-buffer-visiting (nth 1 rfloc))
  9241. (error "This should not happen")))))
  9242. (setq cmd (list 'org-agenda-refile nil (list 'quote rfloc) t)
  9243. redo-at-end t))
  9244. ((equal action ?t)
  9245. (setq state (org-icompleting-read
  9246. "Todo state: "
  9247. (with-current-buffer (marker-buffer (car entries))
  9248. (mapcar 'list org-todo-keywords-1))))
  9249. (setq cmd `(let ((org-inhibit-blocking t)
  9250. (org-inhibit-logging 'note))
  9251. (org-agenda-todo ,state))))
  9252. ((memq action '(?- ?+))
  9253. (setq tag (org-icompleting-read
  9254. (format "Tag to %s: " (if (eq action ?+) "add" "remove"))
  9255. (with-current-buffer (marker-buffer (car entries))
  9256. (delq nil
  9257. (mapcar (lambda (x)
  9258. (if (stringp (car x)) x)) org-tag-alist)))))
  9259. (setq cmd `(org-agenda-set-tags ,tag ,(if (eq action ?+) ''on ''off))))
  9260. ((memq action '(?s ?d))
  9261. (let* ((time
  9262. (unless arg
  9263. (org-read-date
  9264. nil nil nil
  9265. (if (eq action ?s) "(Re)Schedule to" "(Re)Set Deadline to")
  9266. org-overriding-default-time)))
  9267. (c1 (if (eq action ?s) 'org-agenda-schedule 'org-agenda-deadline)))
  9268. (setq cmd `(eval '(,c1 arg ,time)))))
  9269. ((equal action ?S)
  9270. (if (not (org-agenda-check-type nil 'agenda 'timeline 'todo))
  9271. (user-error "Can't scatter tasks in \"%s\" agenda view" org-agenda-type)
  9272. (let ((days (read-number
  9273. (format "Scatter tasks across how many %sdays: "
  9274. (if arg "week" "")) 7)))
  9275. (setq cmd
  9276. `(let ((distance (1+ (random ,days))))
  9277. (if arg
  9278. (let ((dist distance)
  9279. (day-of-week
  9280. (calendar-day-of-week
  9281. (calendar-gregorian-from-absolute (org-today)))))
  9282. (dotimes (i (1+ dist))
  9283. (while (member day-of-week org-agenda-weekend-days)
  9284. (incf distance)
  9285. (incf day-of-week)
  9286. (if (= day-of-week 7)
  9287. (setq day-of-week 0)))
  9288. (incf day-of-week)
  9289. (if (= day-of-week 7)
  9290. (setq day-of-week 0)))))
  9291. ;; silently fail when try to replan a sexp entry
  9292. (condition-case nil
  9293. (let* ((date (calendar-gregorian-from-absolute
  9294. (+ (org-today) distance)))
  9295. (time (encode-time 0 0 0 (nth 1 date) (nth 0 date)
  9296. (nth 2 date))))
  9297. (org-agenda-schedule nil time))
  9298. (error nil)))))))
  9299. ((assoc action org-agenda-bulk-custom-functions)
  9300. (setq cmd (list (cadr (assoc action org-agenda-bulk-custom-functions)))
  9301. redo-at-end t))
  9302. ((equal action ?f)
  9303. (setq cmd (list (intern
  9304. (org-icompleting-read "Function: "
  9305. obarray 'fboundp t nil nil)))))
  9306. (t (user-error "Invalid bulk action")))
  9307. ;; Sort the markers, to make sure that parents are handled before children
  9308. (setq entries (sort entries
  9309. (lambda (a b)
  9310. (cond
  9311. ((equal (marker-buffer a) (marker-buffer b))
  9312. (< (marker-position a) (marker-position b)))
  9313. (t
  9314. (string< (buffer-name (marker-buffer a))
  9315. (buffer-name (marker-buffer b))))))))
  9316. ;; Now loop over all markers and apply cmd
  9317. (while (setq e (pop entries))
  9318. (setq pos (text-property-any (point-min) (point-max) 'org-hd-marker e))
  9319. (if (not pos)
  9320. (progn (message "Skipping removed entry at %s" e)
  9321. (setq cntskip (1+ cntskip)))
  9322. (goto-char pos)
  9323. (let (org-loop-over-headlines-in-active-region)
  9324. (eval cmd))
  9325. ;; `post-command-hook' is not run yet. We make sure any
  9326. ;; pending log note is processed.
  9327. (when (or (memq 'org-add-log-note (default-value 'post-command-hook))
  9328. (memq 'org-add-log-note post-command-hook))
  9329. (org-add-log-note))
  9330. (setq cnt (1+ cnt))))
  9331. (when redo-at-end (org-agenda-redo))
  9332. (unless org-agenda-persistent-marks
  9333. (org-agenda-bulk-unmark-all))
  9334. (message "Acted on %d entries%s%s"
  9335. cnt
  9336. (if (= cntskip 0)
  9337. ""
  9338. (format ", skipped %d (disappeared before their turn)"
  9339. cntskip))
  9340. (if (not org-agenda-persistent-marks)
  9341. "" " (kept marked)"))))))
  9342. (defun org-agenda-capture (&optional with-time)
  9343. "Call `org-capture' with the date at point.
  9344. With a `C-1' prefix, use the HH:MM value at point (if any) or the
  9345. current HH:MM time."
  9346. (interactive "P")
  9347. (if (not (eq major-mode 'org-agenda-mode))
  9348. (user-error "You cannot do this outside of agenda buffers")
  9349. (let ((org-overriding-default-time
  9350. (org-get-cursor-date (equal with-time 1))))
  9351. (call-interactively 'org-capture))))
  9352. ;;; Dragging agenda lines forward/backward
  9353. (defun org-agenda-reapply-filters ()
  9354. "Re-apply all agenda filters."
  9355. (mapcar
  9356. (lambda(f) (when (car f) (org-agenda-filter-apply (car f) (cadr f) t)))
  9357. `((,org-agenda-tag-filter tag)
  9358. (,org-agenda-category-filter category)
  9359. (,org-agenda-regexp-filter regexp)
  9360. (,org-agenda-effort-filter effort)
  9361. (,(get 'org-agenda-tag-filter :preset-filter) tag)
  9362. (,(get 'org-agenda-category-filter :preset-filter) category)
  9363. (,(get 'org-agenda-effort-filter :preset-filter) effort)
  9364. (,(get 'org-agenda-regexp-filter :preset-filter) regexp))))
  9365. (defun org-agenda-drag-line-forward (arg &optional backward)
  9366. "Drag an agenda line forward by ARG lines.
  9367. When the optional argument `backward' is non-nil, move backward."
  9368. (interactive "p")
  9369. (let ((inhibit-read-only t) lst line)
  9370. (if (or (not (get-text-property (point) 'txt))
  9371. (save-excursion
  9372. (dotimes (n arg)
  9373. (move-beginning-of-line (if backward 0 2))
  9374. (push (not (get-text-property (point) 'txt)) lst))
  9375. (delq nil lst)))
  9376. (message "Cannot move line forward")
  9377. (let ((end (save-excursion (move-beginning-of-line 2) (point))))
  9378. (move-beginning-of-line 1)
  9379. (setq line (buffer-substring (point) end))
  9380. (delete-region (point) end)
  9381. (move-beginning-of-line (funcall (if backward '1- '1+) arg))
  9382. (insert line)
  9383. (org-agenda-reapply-filters)
  9384. (org-agenda-mark-clocking-task)
  9385. (move-beginning-of-line 0)))))
  9386. (defun org-agenda-drag-line-backward (arg)
  9387. "Drag an agenda line backward by ARG lines."
  9388. (interactive "p")
  9389. (org-agenda-drag-line-forward arg t))
  9390. ;;; Flagging notes
  9391. (defun org-agenda-show-the-flagging-note ()
  9392. "Display the flagging note in the other window.
  9393. When called a second time in direct sequence, offer to remove the FLAGGING
  9394. tag and (if present) the flagging note."
  9395. (interactive)
  9396. (let ((hdmarker (org-get-at-bol 'org-hd-marker))
  9397. (win (selected-window))
  9398. note heading newhead)
  9399. (unless hdmarker
  9400. (user-error "No linked entry at point"))
  9401. (if (and (eq this-command last-command)
  9402. (y-or-n-p "Unflag and remove any flagging note? "))
  9403. (progn
  9404. (org-agenda-remove-flag hdmarker)
  9405. (let ((win (get-buffer-window "*Flagging Note*")))
  9406. (and win (delete-window win)))
  9407. (message "Entry unflagged"))
  9408. (setq note (org-entry-get hdmarker "THEFLAGGINGNOTE"))
  9409. (unless note
  9410. (user-error "No flagging note"))
  9411. (org-kill-new note)
  9412. (org-switch-to-buffer-other-window "*Flagging Note*")
  9413. (erase-buffer)
  9414. (insert note)
  9415. (goto-char (point-min))
  9416. (while (re-search-forward "\\\\n" nil t)
  9417. (replace-match "\n" t t))
  9418. (goto-char (point-min))
  9419. (select-window win)
  9420. (message (substitute-command-keys "Flagging note pushed to kill ring. \
  9421. Press \\[org-agenda-show-the-flagging-note] again to remove tag and note")))))
  9422. (defun org-agenda-remove-flag (marker)
  9423. "Remove the FLAGGED tag and any flagging note in the entry."
  9424. (let (newhead)
  9425. (org-with-point-at marker
  9426. (org-toggle-tag "FLAGGED" 'off)
  9427. (org-entry-delete nil "THEFLAGGINGNOTE")
  9428. (setq newhead (org-get-heading)))
  9429. (org-agenda-change-all-lines newhead marker)
  9430. (message "Entry unflagged")))
  9431. (defun org-agenda-get-any-marker (&optional pos)
  9432. (or (get-text-property (or pos (point-at-bol)) 'org-hd-marker)
  9433. (get-text-property (or pos (point-at-bol)) 'org-marker)))
  9434. ;;; Appointment reminders
  9435. (defvar appt-time-msg-list) ; defined in appt.el
  9436. ;;;###autoload
  9437. (defun org-agenda-to-appt (&optional refresh filter &rest args)
  9438. "Activate appointments found in `org-agenda-files'.
  9439. With a \\[universal-argument] prefix, refresh the list of
  9440. appointments.
  9441. If FILTER is t, interactively prompt the user for a regular
  9442. expression, and filter out entries that don't match it.
  9443. If FILTER is a string, use this string as a regular expression
  9444. for filtering entries out.
  9445. If FILTER is a function, filter out entries against which
  9446. calling the function returns nil. This function takes one
  9447. argument: an entry from `org-agenda-get-day-entries'.
  9448. FILTER can also be an alist with the car of each cell being
  9449. either `headline' or `category'. For example:
  9450. \\='((headline \"IMPORTANT\")
  9451. (category \"Work\"))
  9452. will only add headlines containing IMPORTANT or headlines
  9453. belonging to the \"Work\" category.
  9454. ARGS are symbols indicating what kind of entries to consider.
  9455. By default `org-agenda-to-appt' will use :deadline*, :scheduled*
  9456. \(i.e., deadlines and scheduled items with a hh:mm specification)
  9457. and :timestamp entries. See the docstring of `org-diary' for
  9458. details and examples.
  9459. If an entry has a APPT_WARNTIME property, its value will be used
  9460. to override `appt-message-warning-time'."
  9461. (interactive "P")
  9462. (if refresh (setq appt-time-msg-list nil))
  9463. (if (eq filter t)
  9464. (setq filter (read-from-minibuffer "Regexp filter: ")))
  9465. (let* ((cnt 0) ; count added events
  9466. (scope (or args '(:deadline* :scheduled* :timestamp)))
  9467. (org-agenda-new-buffers nil)
  9468. (org-deadline-warning-days 0)
  9469. ;; Do not use `org-today' here because appt only takes
  9470. ;; time and without date as argument, so it may pass wrong
  9471. ;; information otherwise
  9472. (today (org-date-to-gregorian
  9473. (time-to-days (current-time))))
  9474. (org-agenda-restrict nil)
  9475. (files (org-agenda-files 'unrestricted)) entries file
  9476. (org-agenda-buffer nil))
  9477. ;; Get all entries which may contain an appt
  9478. (org-agenda-prepare-buffers files)
  9479. (while (setq file (pop files))
  9480. (setq entries
  9481. (delq nil
  9482. (append entries
  9483. (apply 'org-agenda-get-day-entries
  9484. file today scope)))))
  9485. ;; Map thru entries and find if we should filter them out
  9486. (mapc
  9487. (lambda(x)
  9488. (let* ((evt (org-trim
  9489. (replace-regexp-in-string
  9490. org-bracket-link-regexp "\\3"
  9491. (or (get-text-property 1 'txt x) ""))))
  9492. (cat (get-text-property (1- (length x)) 'org-category x))
  9493. (tod (get-text-property 1 'time-of-day x))
  9494. (ok (or (null filter)
  9495. (and (stringp filter) (string-match filter evt))
  9496. (and (functionp filter) (funcall filter x))
  9497. (and (listp filter)
  9498. (let ((cat-filter (cadr (assoc 'category filter)))
  9499. (evt-filter (cadr (assoc 'headline filter))))
  9500. (or (and (stringp cat-filter)
  9501. (string-match cat-filter cat))
  9502. (and (stringp evt-filter)
  9503. (string-match evt-filter evt)))))))
  9504. (wrn (get-text-property 1 'warntime x)))
  9505. ;; FIXME: Shall we remove text-properties for the appt text?
  9506. ;; (setq evt (set-text-properties 0 (length evt) nil evt))
  9507. (when (and ok tod)
  9508. (setq tod (concat "00" (number-to-string tod))
  9509. tod (when (string-match
  9510. "\\([0-9]\\{1,2\\}\\)\\([0-9]\\{2\\}\\)\\'" tod)
  9511. (concat (match-string 1 tod) ":"
  9512. (match-string 2 tod))))
  9513. (if (version< emacs-version "23.3")
  9514. (appt-add tod evt)
  9515. (appt-add tod evt wrn))
  9516. (setq cnt (1+ cnt))))) entries)
  9517. (org-release-buffers org-agenda-new-buffers)
  9518. (if (eq cnt 0)
  9519. (message "No event to add")
  9520. (message "Added %d event%s for today" cnt (if (> cnt 1) "s" "")))))
  9521. (defun org-agenda-today-p (date)
  9522. "Non nil when DATE means today.
  9523. DATE is either a list of the form (month day year) or a number of
  9524. days as returned by `calendar-absolute-from-gregorian' or
  9525. `org-today'. This function considers `org-extend-today-until'
  9526. when defining today."
  9527. (eq (org-today)
  9528. (if (consp date) (calendar-absolute-from-gregorian date) date)))
  9529. (define-obsolete-function-alias 'org-agenda-todayp 'org-agenda-today-p "25.1")
  9530. (defun org-agenda-todo-yesterday (&optional arg)
  9531. "Like `org-agenda-todo' but the time of change will be 23:59 of yesterday."
  9532. (interactive "P")
  9533. (let* ((org-use-effective-time t)
  9534. (hour (third (decode-time
  9535. (org-current-time))))
  9536. (org-extend-today-until (1+ hour)))
  9537. (org-agenda-todo arg)))
  9538. (provide 'org-agenda)
  9539. ;;; org-agenda.el ends here