org-agenda.el 391 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116
  1. ;;; org-agenda.el --- Dynamic task and appointment lists for Org
  2. ;; Copyright (C) 2004-2014 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-absolute-from-iso "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-datetree-find-date-create "org-datetree"
  64. (date &optional keep-restriction))
  65. (declare-function org-columns-quit "org-colview" ())
  66. (declare-function diary-date-display-form "diary-lib" (&optional type))
  67. (declare-function org-mobile-write-agenda-for-mobile "org-mobile" (file))
  68. (declare-function org-habit-insert-consistency-graphs
  69. "org-habit" (&optional line))
  70. (declare-function org-is-habit-p "org-habit" (&optional pom))
  71. (declare-function org-habit-parse-todo "org-habit" (&optional pom))
  72. (declare-function org-habit-get-priority "org-habit" (habit &optional moment))
  73. (declare-function org-pop-to-buffer-same-window "org-compat"
  74. (&optional buffer-or-name norecord label))
  75. (declare-function org-agenda-columns "org-colview" ())
  76. (declare-function org-add-archive-files "org-archive" (files))
  77. (declare-function org-capture "org-capture" (&optional goto keys))
  78. (defvar calendar-mode-map) ; defined in calendar.el
  79. (defvar org-clock-current-task nil) ; defined in org-clock.el
  80. (defvar org-mobile-force-id-on-agenda-items) ; defined in org-mobile.el
  81. (defvar org-habit-show-habits) ; defined in org-habit.el
  82. (defvar org-habit-show-habits-only-for-today)
  83. (defvar org-habit-show-all-today)
  84. ;; Defined somewhere in this file, but used before definition.
  85. (defvar org-agenda-buffer-name "*Org Agenda*")
  86. (defvar org-agenda-overriding-header nil)
  87. (defvar org-agenda-title-append nil)
  88. (org-no-warnings (defvar entry)) ;; unprefixed, from calendar.el
  89. (org-no-warnings (defvar date)) ;; unprefixed, from calendar.el
  90. (defvar original-date) ; dynamically scoped, calendar.el does scope this
  91. (defvar org-agenda-undo-list nil
  92. "List of undoable operations in the agenda since last refresh.")
  93. (defvar org-agenda-pending-undo-list nil
  94. "In a series of undo commands, this is the list of remaining undo items.")
  95. (defcustom org-agenda-confirm-kill 1
  96. "When set, remote killing from the agenda buffer needs confirmation.
  97. When t, a confirmation is always needed. When a number N, confirmation is
  98. only needed when the text to be killed contains more than N non-white lines."
  99. :group 'org-agenda
  100. :type '(choice
  101. (const :tag "Never" nil)
  102. (const :tag "Always" t)
  103. (integer :tag "When more than N lines")))
  104. (defcustom org-agenda-compact-blocks nil
  105. "Non-nil means make the block agenda more compact.
  106. This is done globally by leaving out lines like the agenda span
  107. name and week number or the separator lines."
  108. :group 'org-agenda
  109. :type 'boolean)
  110. (defcustom org-agenda-block-separator ?=
  111. "The separator between blocks in the agenda.
  112. If this is a string, it will be used as the separator, with a newline added.
  113. If it is a character, it will be repeated to fill the window width.
  114. If nil the separator is disabled. In `org-agenda-custom-commands' this
  115. addresses the separator between the current and the previous block."
  116. :group 'org-agenda
  117. :type '(choice
  118. (const :tag "Disabled" nil)
  119. (character)
  120. (string)))
  121. (defgroup org-agenda-export nil
  122. "Options concerning exporting agenda views in Org-mode."
  123. :tag "Org Agenda Export"
  124. :group 'org-agenda)
  125. (defcustom org-agenda-with-colors t
  126. "Non-nil means use colors in agenda views."
  127. :group 'org-agenda-export
  128. :type 'boolean)
  129. (defcustom org-agenda-exporter-settings nil
  130. "Alist of variable/value pairs that should be active during agenda export.
  131. This is a good place to set options for ps-print and for htmlize.
  132. Note that the way this is implemented, the values will be evaluated
  133. before assigned to the variables. So make sure to quote values you do
  134. *not* want evaluated, for example
  135. (setq org-agenda-exporter-settings
  136. '((ps-print-color-p 'black-white)))"
  137. :group 'org-agenda-export
  138. :type '(repeat
  139. (list
  140. (variable)
  141. (sexp :tag "Value"))))
  142. (defcustom org-agenda-before-write-hook '(org-agenda-add-entry-text)
  143. "Hook run in a temporary buffer before writing the agenda to an export file.
  144. A useful function for this hook is `org-agenda-add-entry-text'."
  145. :group 'org-agenda-export
  146. :type 'hook
  147. :options '(org-agenda-add-entry-text))
  148. (defcustom org-agenda-add-entry-text-maxlines 0
  149. "Maximum number of entry text lines to be added to agenda.
  150. This is only relevant when `org-agenda-add-entry-text' is part of
  151. `org-agenda-before-write-hook', which is the default.
  152. When this is 0, nothing will happen. When it is greater than 0, it
  153. specifies the maximum number of lines that will be added for each entry
  154. that is listed in the agenda view.
  155. Note that this variable is not used during display, only when exporting
  156. the agenda. For agenda display, see the variables `org-agenda-entry-text-mode'
  157. and `org-agenda-entry-text-maxlines'."
  158. :group 'org-agenda
  159. :type 'integer)
  160. (defcustom org-agenda-add-entry-text-descriptive-links t
  161. "Non-nil means export org-links as descriptive links in agenda added text.
  162. This variable applies to the text added to the agenda when
  163. `org-agenda-add-entry-text-maxlines' is larger than 0.
  164. When this variable nil, the URL will (also) be shown."
  165. :group 'org-agenda
  166. :type 'boolean)
  167. (defcustom org-agenda-export-html-style nil
  168. "The style specification for exported HTML Agenda files.
  169. If this variable contains a string, it will replace the default <style>
  170. section as produced by `htmlize'.
  171. Since there are different ways of setting style information, this variable
  172. needs to contain the full HTML structure to provide a style, including the
  173. surrounding HTML tags. The style specifications should include definitions
  174. the fonts used by the agenda, here is an example:
  175. <style type=\"text/css\">
  176. p { font-weight: normal; color: gray; }
  177. .org-agenda-structure {
  178. font-size: 110%;
  179. color: #003399;
  180. font-weight: 600;
  181. }
  182. .org-todo {
  183. color: #cc6666;
  184. font-weight: bold;
  185. }
  186. .org-agenda-done {
  187. color: #339933;
  188. }
  189. .org-done {
  190. color: #339933;
  191. }
  192. .title { text-align: center; }
  193. .todo, .deadline { color: red; }
  194. .done { color: green; }
  195. </style>
  196. or, if you want to keep the style in a file,
  197. <link rel=\"stylesheet\" type=\"text/css\" href=\"mystyles.css\">
  198. As the value of this option simply gets inserted into the HTML <head> header,
  199. you can \"misuse\" it to also add other text to the header."
  200. :group 'org-agenda-export
  201. :group 'org-export-html
  202. :type '(choice
  203. (const nil)
  204. (string)))
  205. (defcustom org-agenda-persistent-filter nil
  206. "When set, keep filters from one agenda view to the next."
  207. :group 'org-agenda
  208. :type 'boolean)
  209. (defgroup org-agenda-custom-commands nil
  210. "Options concerning agenda views in Org-mode."
  211. :tag "Org Agenda Custom Commands"
  212. :group 'org-agenda)
  213. (defconst org-sorting-choice
  214. '(choice
  215. (const time-up) (const time-down)
  216. (const timestamp-up) (const timestamp-down)
  217. (const scheduled-up) (const scheduled-down)
  218. (const deadline-up) (const deadline-down)
  219. (const ts-up) (const ts-down)
  220. (const tsia-up) (const tsia-down)
  221. (const category-keep) (const category-up) (const category-down)
  222. (const tag-down) (const tag-up)
  223. (const priority-up) (const priority-down)
  224. (const todo-state-up) (const todo-state-down)
  225. (const effort-up) (const effort-down)
  226. (const habit-up) (const habit-down)
  227. (const alpha-up) (const alpha-down)
  228. (const user-defined-up) (const user-defined-down))
  229. "Sorting choices.")
  230. ;; Keep custom values for `org-agenda-filter-preset' compatible with
  231. ;; the new variable `org-agenda-tag-filter-preset'.
  232. (org-defvaralias 'org-agenda-filter-preset 'org-agenda-tag-filter-preset)
  233. (org-defvaralias 'org-agenda-filter 'org-agenda-tag-filter)
  234. (defvar org-agenda-entry-types '(:deadline :scheduled :timestamp :sexp)
  235. "List of types searched for when creating the daily/weekly agenda.
  236. This variable is a list of symbols that controls the types of
  237. items that appear in the daily/weekly agenda. Allowed symbols in this
  238. list are are
  239. :timestamp List items containing a date stamp or date range matching
  240. the selected date. This includes sexp entries in angular
  241. brackets.
  242. :sexp List entries resulting from plain diary-like sexps.
  243. :deadline List deadline due on that date. When the date is today,
  244. also list any deadlines past due, or due within
  245. `org-deadline-warning-days'. `:deadline' must appear before
  246. `:scheduled' if the setting of
  247. `org-agenda-skip-scheduled-if-deadline-is-shown' is to have
  248. any effect.
  249. :deadline* Same as above, but only include the deadline if it has an
  250. hour specification as [h]h:mm.
  251. :scheduled List all items which are scheduled for the given date.
  252. The diary for *today* also contains items which were
  253. scheduled earlier and are not yet marked DONE.
  254. :scheduled* Same as above, but only include the scheduled item if it
  255. has an hour specification as [h]h:mm.
  256. By default, all four non-starred types are turned on.
  257. When :scheduled* or :deadline* are included, :schedule or :deadline
  258. will be ignored.
  259. Never set this variable globally using `setq', because then it
  260. will apply to all future agenda commands. Instead, bind it with
  261. `let' to scope it dynamically into the agenda-constructing
  262. command. A good way to set it is through options in
  263. `org-agenda-custom-commands'. For a more flexible (though
  264. somewhat less efficient) way of determining what is included in
  265. the daily/weekly agenda, see `org-agenda-skip-function'.")
  266. (defconst org-agenda-custom-commands-local-options
  267. `(repeat :tag "Local settings for this command. Remember to quote values"
  268. (choice :tag "Setting"
  269. (list :tag "Heading for this block"
  270. (const org-agenda-overriding-header)
  271. (string :tag "Headline"))
  272. (list :tag "Files to be searched"
  273. (const org-agenda-files)
  274. (list
  275. (const :format "" quote)
  276. (repeat (file))))
  277. (list :tag "Sorting strategy"
  278. (const org-agenda-sorting-strategy)
  279. (list
  280. (const :format "" quote)
  281. (repeat
  282. ,org-sorting-choice)))
  283. (list :tag "Prefix format"
  284. (const org-agenda-prefix-format :value " %-12:c%?-12t% s")
  285. (string))
  286. (list :tag "Number of days in agenda"
  287. (const org-agenda-span)
  288. (choice (const :tag "Day" day)
  289. (const :tag "Week" week)
  290. (const :tag "Fortnight" fortnight)
  291. (const :tag "Month" month)
  292. (const :tag "Year" year)
  293. (integer :tag "Custom")))
  294. (list :tag "Fixed starting date"
  295. (const org-agenda-start-day)
  296. (string :value "2007-11-01"))
  297. (list :tag "Start on day of week"
  298. (const org-agenda-start-on-weekday)
  299. (choice :value 1
  300. (const :tag "Today" nil)
  301. (integer :tag "Weekday No.")))
  302. (list :tag "Include data from diary"
  303. (const org-agenda-include-diary)
  304. (boolean))
  305. (list :tag "Deadline Warning days"
  306. (const org-deadline-warning-days)
  307. (integer :value 1))
  308. (list :tag "Category filter preset"
  309. (const org-agenda-category-filter-preset)
  310. (list
  311. (const :format "" quote)
  312. (repeat
  313. (string :tag "+category or -category"))))
  314. (list :tag "Tags filter preset"
  315. (const org-agenda-tag-filter-preset)
  316. (list
  317. (const :format "" quote)
  318. (repeat
  319. (string :tag "+tag or -tag"))))
  320. (list :tag "Regexp filter preset"
  321. (const org-agenda-regexp-filter-preset)
  322. (list
  323. (const :format "" quote)
  324. (repeat
  325. (string :tag "+regexp or -regexp"))))
  326. (list :tag "Set daily/weekly entry types"
  327. (const org-agenda-entry-types)
  328. (list
  329. (const :format "" quote)
  330. (set :greedy t :value ,org-agenda-entry-types
  331. (const :deadline)
  332. (const :scheduled)
  333. (const :deadline*)
  334. (const :scheduled*)
  335. (const :timestamp)
  336. (const :sexp))))
  337. (list :tag "Standard skipping condition"
  338. :value (org-agenda-skip-function '(org-agenda-skip-entry-if))
  339. (const org-agenda-skip-function)
  340. (list
  341. (const :format "" quote)
  342. (list
  343. (choice
  344. :tag "Skipping range"
  345. (const :tag "Skip entry" org-agenda-skip-entry-if)
  346. (const :tag "Skip subtree" org-agenda-skip-subtree-if))
  347. (repeat :inline t :tag "Conditions for skipping"
  348. (choice
  349. :tag "Condition type"
  350. (list :tag "Regexp matches" :inline t
  351. (const :format "" 'regexp)
  352. (regexp))
  353. (list :tag "Regexp does not match" :inline t
  354. (const :format "" 'notregexp)
  355. (regexp))
  356. (list :tag "TODO state is" :inline t
  357. (const 'todo)
  358. (choice
  359. (const :tag "Any not-done state" 'todo)
  360. (const :tag "Any done state" 'done)
  361. (const :tag "Any state" 'any)
  362. (list :tag "Keyword list"
  363. (const :format "" quote)
  364. (repeat (string :tag "Keyword")))))
  365. (list :tag "TODO state is not" :inline t
  366. (const 'nottodo)
  367. (choice
  368. (const :tag "Any not-done state" 'todo)
  369. (const :tag "Any done state" 'done)
  370. (const :tag "Any state" 'any)
  371. (list :tag "Keyword list"
  372. (const :format "" quote)
  373. (repeat (string :tag "Keyword")))))
  374. (const :tag "scheduled" 'scheduled)
  375. (const :tag "not scheduled" 'notscheduled)
  376. (const :tag "deadline" 'deadline)
  377. (const :tag "no deadline" 'notdeadline)
  378. (const :tag "timestamp" 'timestamp)
  379. (const :tag "no timestamp" 'nottimestamp))))))
  380. (list :tag "Non-standard skipping condition"
  381. :value (org-agenda-skip-function)
  382. (const org-agenda-skip-function)
  383. (sexp :tag "Function or form (quoted!)"))
  384. (list :tag "Any variable"
  385. (variable :tag "Variable")
  386. (sexp :tag "Value (sexp)"))))
  387. "Selection of examples for agenda command settings.
  388. This will be spliced into the custom type of
  389. `org-agenda-custom-commands'.")
  390. (defcustom org-agenda-custom-commands
  391. '(("n" "Agenda and all TODO's" ((agenda "") (alltodo ""))))
  392. "Custom commands for the agenda.
  393. These commands will be offered on the splash screen displayed by the
  394. agenda dispatcher \\[org-agenda]. Each entry is a list like this:
  395. (key desc type match settings files)
  396. key The key (one or more characters as a string) to be associated
  397. with the command.
  398. desc A description of the command, when omitted or nil, a default
  399. description is built using MATCH.
  400. type The command type, any of the following symbols:
  401. agenda The daily/weekly agenda.
  402. todo Entries with a specific TODO keyword, in all agenda files.
  403. search Entries containing search words entry or headline.
  404. tags Tags/Property/TODO match in all agenda files.
  405. tags-todo Tags/P/T match in all agenda files, TODO entries only.
  406. todo-tree Sparse tree of specific TODO keyword in *current* file.
  407. tags-tree Sparse tree with all tags matches in *current* file.
  408. occur-tree Occur sparse tree for *current* file.
  409. ... A user-defined function.
  410. match What to search for:
  411. - a single keyword for TODO keyword searches
  412. - a tags match expression for tags searches
  413. - a word search expression for text searches.
  414. - a regular expression for occur searches
  415. For all other commands, this should be the empty string.
  416. settings A list of option settings, similar to that in a let form, so like
  417. this: ((opt1 val1) (opt2 val2) ...). The values will be
  418. evaluated at the moment of execution, so quote them when needed.
  419. files A list of files file to write the produced agenda buffer to
  420. with the command `org-store-agenda-views'.
  421. If a file name ends in \".html\", an HTML version of the buffer
  422. is written out. If it ends in \".ps\", a postscript version is
  423. produced. Otherwise, only the plain text is written to the file.
  424. You can also define a set of commands, to create a composite agenda buffer.
  425. In this case, an entry looks like this:
  426. (key desc (cmd1 cmd2 ...) general-settings-for-whole-set files)
  427. where
  428. desc A description string to be displayed in the dispatcher menu.
  429. cmd An agenda command, similar to the above. However, tree commands
  430. are not allowed, but instead you can get agenda and global todo list.
  431. So valid commands for a set are:
  432. (agenda \"\" settings)
  433. (alltodo \"\" settings)
  434. (stuck \"\" settings)
  435. (todo \"match\" settings files)
  436. (search \"match\" settings files)
  437. (tags \"match\" settings files)
  438. (tags-todo \"match\" settings files)
  439. Each command can carry a list of options, and another set of options can be
  440. given for the whole set of commands. Individual command options take
  441. precedence over the general options.
  442. When using several characters as key to a command, the first characters
  443. are prefix commands. For the dispatcher to display useful information, you
  444. should provide a description for the prefix, like
  445. (setq org-agenda-custom-commands
  446. '((\"h\" . \"HOME + Name tag searches\") ; describe prefix \"h\"
  447. (\"hl\" tags \"+HOME+Lisa\")
  448. (\"hp\" tags \"+HOME+Peter\")
  449. (\"hk\" tags \"+HOME+Kim\")))"
  450. :group 'org-agenda-custom-commands
  451. :type `(repeat
  452. (choice :value ("x" "Describe command here" tags "" nil)
  453. (list :tag "Single command"
  454. (string :tag "Access Key(s) ")
  455. (option (string :tag "Description"))
  456. (choice
  457. (const :tag "Agenda" agenda)
  458. (const :tag "TODO list" alltodo)
  459. (const :tag "Search words" search)
  460. (const :tag "Stuck projects" stuck)
  461. (const :tag "Tags/Property match (all agenda files)" tags)
  462. (const :tag "Tags/Property match of TODO entries (all agenda files)" tags-todo)
  463. (const :tag "TODO keyword search (all agenda files)" todo)
  464. (const :tag "Tags sparse tree (current buffer)" tags-tree)
  465. (const :tag "TODO keyword tree (current buffer)" todo-tree)
  466. (const :tag "Occur tree (current buffer)" occur-tree)
  467. (sexp :tag "Other, user-defined function"))
  468. (string :tag "Match (only for some commands)")
  469. ,org-agenda-custom-commands-local-options
  470. (option (repeat :tag "Export" (file :tag "Export to"))))
  471. (list :tag "Command series, all agenda files"
  472. (string :tag "Access Key(s)")
  473. (string :tag "Description ")
  474. (repeat :tag "Component"
  475. (choice
  476. (list :tag "Agenda"
  477. (const :format "" agenda)
  478. (const :tag "" :format "" "")
  479. ,org-agenda-custom-commands-local-options)
  480. (list :tag "TODO list (all keywords)"
  481. (const :format "" alltodo)
  482. (const :tag "" :format "" "")
  483. ,org-agenda-custom-commands-local-options)
  484. (list :tag "Search words"
  485. (const :format "" search)
  486. (string :tag "Match")
  487. ,org-agenda-custom-commands-local-options)
  488. (list :tag "Stuck projects"
  489. (const :format "" stuck)
  490. (const :tag "" :format "" "")
  491. ,org-agenda-custom-commands-local-options)
  492. (list :tag "Tags search"
  493. (const :format "" tags)
  494. (string :tag "Match")
  495. ,org-agenda-custom-commands-local-options)
  496. (list :tag "Tags search, TODO entries only"
  497. (const :format "" tags-todo)
  498. (string :tag "Match")
  499. ,org-agenda-custom-commands-local-options)
  500. (list :tag "TODO keyword search"
  501. (const :format "" todo)
  502. (string :tag "Match")
  503. ,org-agenda-custom-commands-local-options)
  504. (list :tag "Other, user-defined function"
  505. (symbol :tag "function")
  506. (string :tag "Match")
  507. ,org-agenda-custom-commands-local-options)))
  508. (repeat :tag "Settings for entire command set"
  509. (list (variable :tag "Any variable")
  510. (sexp :tag "Value")))
  511. (option (repeat :tag "Export" (file :tag "Export to"))))
  512. (cons :tag "Prefix key documentation"
  513. (string :tag "Access Key(s)")
  514. (string :tag "Description ")))))
  515. (defcustom org-agenda-query-register ?o
  516. "The register holding the current query string.
  517. The purpose of this is that if you construct a query string interactively,
  518. you can then use it to define a custom command."
  519. :group 'org-agenda-custom-commands
  520. :type 'character)
  521. (defcustom org-stuck-projects
  522. '("+LEVEL=2/-DONE" ("TODO" "NEXT" "NEXTACTION") nil "")
  523. "How to identify stuck projects.
  524. This is a list of four items:
  525. 1. A tags/todo/property matcher string that is used to identify a project.
  526. See the manual for a description of tag and property searches.
  527. The entire tree below a headline matched by this is considered one project.
  528. 2. A list of TODO keywords identifying non-stuck projects.
  529. If the project subtree contains any headline with one of these todo
  530. keywords, the project is considered to be not stuck. If you specify
  531. \"*\" as a keyword, any TODO keyword will mark the project unstuck.
  532. 3. A list of tags identifying non-stuck projects.
  533. If the project subtree contains any headline with one of these tags,
  534. the project is considered to be not stuck. If you specify \"*\" as
  535. a tag, any tag will mark the project unstuck. Note that this is about
  536. the explicit presence of a tag somewhere in the subtree, inherited
  537. tags do not count here. If inherited tags make a project not stuck,
  538. use \"-TAG\" in the tags part of the matcher under (1.) above.
  539. 4. An arbitrary regular expression matching non-stuck projects.
  540. If the project turns out to be not stuck, search continues also in the
  541. subtree to see if any of the subtasks have project status.
  542. See also the variable `org-tags-match-list-sublevels' which applies
  543. to projects matched by this search as well.
  544. After defining this variable, you may use \\[org-agenda-list-stuck-projects]
  545. or `C-c a #' to produce the list."
  546. :group 'org-agenda-custom-commands
  547. :type '(list
  548. (string :tag "Tags/TODO match to identify a project")
  549. (repeat :tag "Projects are *not* stuck if they have an entry with TODO keyword any of" (string))
  550. (repeat :tag "Projects are *not* stuck if they have an entry with TAG being any of" (string))
  551. (regexp :tag "Projects are *not* stuck if this regexp matches inside the subtree")))
  552. (defcustom org-agenda-filter-effort-default-operator "<"
  553. "The default operator for effort estimate filtering.
  554. If you select an effort estimate limit without first pressing an operator,
  555. this one will be used."
  556. :group 'org-agenda-custom-commands
  557. :type '(choice (const :tag "less or equal" "<")
  558. (const :tag "greater or equal"">")
  559. (const :tag "equal" "=")))
  560. (defgroup org-agenda-skip nil
  561. "Options concerning skipping parts of agenda files."
  562. :tag "Org Agenda Skip"
  563. :group 'org-agenda)
  564. (defcustom org-agenda-skip-function-global nil
  565. "Function to be called at each match during agenda construction.
  566. If this function returns nil, the current match should not be skipped.
  567. If the function decided to skip an agenda match, is must return the
  568. buffer position from which the search should be continued.
  569. This may also be a Lisp form, which will be evaluated.
  570. This variable will be applied to every agenda match, including
  571. tags/property searches and TODO lists. So try to make the test function
  572. do its checking as efficiently as possible. To implement a skipping
  573. condition just for specific agenda commands, use the variable
  574. `org-agenda-skip-function' which can be set in the options section
  575. of custom agenda commands."
  576. :group 'org-agenda-skip
  577. :type 'sexp)
  578. (defgroup org-agenda-daily/weekly nil
  579. "Options concerning the daily/weekly agenda."
  580. :tag "Org Agenda Daily/Weekly"
  581. :group 'org-agenda)
  582. (defgroup org-agenda-todo-list nil
  583. "Options concerning the global todo list agenda view."
  584. :tag "Org Agenda Todo List"
  585. :group 'org-agenda)
  586. (defgroup org-agenda-match-view nil
  587. "Options concerning the general tags/property/todo match agenda view."
  588. :tag "Org Agenda Match View"
  589. :group 'org-agenda)
  590. (defgroup org-agenda-search-view nil
  591. "Options concerning the search agenda view."
  592. :tag "Org Agenda Search View"
  593. :group 'org-agenda)
  594. (defvar org-agenda-archives-mode nil
  595. "Non-nil means the agenda will include archived items.
  596. If this is the symbol `trees', trees in the selected agenda scope
  597. that are marked with the ARCHIVE tag will be included anyway. When this is
  598. t, also all archive files associated with the current selection of agenda
  599. files will be included.")
  600. (defcustom org-agenda-restriction-lock-highlight-subtree t
  601. "Non-nil means highlight the whole subtree when restriction is active.
  602. Otherwise only highlight the headline. Highlighting the whole subtree is
  603. useful to ensure no edits happen beyond the restricted region."
  604. :group 'org-agenda
  605. :type 'boolean)
  606. (defcustom org-agenda-skip-comment-trees t
  607. "Non-nil means skip trees that start with the COMMENT keyword.
  608. When nil, these trees are also scanned by agenda commands."
  609. :group 'org-agenda-skip
  610. :type 'boolean)
  611. (defcustom org-agenda-todo-list-sublevels t
  612. "Non-nil means check also the sublevels of a TODO entry for TODO entries.
  613. When nil, the sublevels of a TODO entry are not checked, resulting in
  614. potentially much shorter TODO lists."
  615. :group 'org-agenda-skip
  616. :group 'org-agenda-todo-list
  617. :type 'boolean)
  618. (defcustom org-agenda-todo-ignore-with-date nil
  619. "Non-nil means don't show entries with a date in the global todo list.
  620. You can use this if you prefer to mark mere appointments with a TODO keyword,
  621. but don't want them to show up in the TODO list.
  622. When this is set, it also covers deadlines and scheduled items, the settings
  623. of `org-agenda-todo-ignore-scheduled' and `org-agenda-todo-ignore-deadlines'
  624. will be ignored.
  625. See also the variable `org-agenda-tags-todo-honor-ignore-options'."
  626. :group 'org-agenda-skip
  627. :group 'org-agenda-todo-list
  628. :type 'boolean)
  629. (defcustom org-agenda-todo-ignore-timestamp nil
  630. "Non-nil means don't show entries with a timestamp.
  631. This applies when creating the global todo list.
  632. Valid values are:
  633. past Don't show entries for today or in the past.
  634. future Don't show entries with a timestamp in the future.
  635. The idea behind this is that if it has a future
  636. timestamp, you don't want to think about it until the
  637. date.
  638. all Don't show any entries with a timestamp in the global todo list.
  639. The idea behind this is that by setting a timestamp, you
  640. have already \"taken care\" of this item.
  641. This variable can also have an integer as a value. If positive (N),
  642. todos with a timestamp N or more days in the future will be ignored. If
  643. negative (-N), todos with a timestamp N or more days in the past will be
  644. ignored. If 0, todos with a timestamp either today or in the future will
  645. be ignored. For example, a value of -1 will exclude todos with a
  646. timestamp in the past (yesterday or earlier), while a value of 7 will
  647. exclude todos with a timestamp a week or more in the future.
  648. See also `org-agenda-todo-ignore-with-date'.
  649. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  650. to make his option also apply to the tags-todo list."
  651. :group 'org-agenda-skip
  652. :group 'org-agenda-todo-list
  653. :version "24.1"
  654. :type '(choice
  655. (const :tag "Ignore future timestamp todos" future)
  656. (const :tag "Ignore past or present timestamp todos" past)
  657. (const :tag "Ignore all timestamp todos" all)
  658. (const :tag "Show timestamp todos" nil)
  659. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  660. (defcustom org-agenda-todo-ignore-scheduled nil
  661. "Non-nil means, ignore some scheduled TODO items when making TODO list.
  662. This applies when creating the global todo list.
  663. Valid values are:
  664. past Don't show entries scheduled today or in the past.
  665. future Don't show entries scheduled in the future.
  666. The idea behind this is that by scheduling it, you don't want to
  667. think about it until the scheduled date.
  668. all Don't show any scheduled entries in the global todo list.
  669. The idea behind this is that by scheduling it, you have already
  670. \"taken care\" of this item.
  671. t Same as `all', for backward compatibility.
  672. This variable can also have an integer as a value. See
  673. `org-agenda-todo-ignore-timestamp' for more details.
  674. See also `org-agenda-todo-ignore-with-date'.
  675. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  676. to make his option also apply to the tags-todo list."
  677. :group 'org-agenda-skip
  678. :group 'org-agenda-todo-list
  679. :type '(choice
  680. (const :tag "Ignore future-scheduled todos" future)
  681. (const :tag "Ignore past- or present-scheduled todos" past)
  682. (const :tag "Ignore all scheduled todos" all)
  683. (const :tag "Ignore all scheduled todos (compatibility)" t)
  684. (const :tag "Show scheduled todos" nil)
  685. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  686. (defcustom org-agenda-todo-ignore-deadlines nil
  687. "Non-nil means ignore some deadline TODO items when making TODO list.
  688. There are different motivations for using different values, please think
  689. carefully when configuring this variable.
  690. This applies when creating the global todo list.
  691. Valid values are:
  692. near Don't show near deadline entries. A deadline is near when it is
  693. closer than `org-deadline-warning-days' days. The idea behind this
  694. is that such items will appear in the agenda anyway.
  695. far Don't show TODO entries where a deadline has been defined, but
  696. the deadline is not near. This is useful if you don't want to
  697. use the todo list to figure out what to do now.
  698. past Don't show entries with a deadline timestamp for today or in the past.
  699. future Don't show entries with a deadline timestamp in the future, not even
  700. when they become `near' ones. Use it with caution.
  701. all Ignore all TODO entries that do have a deadline.
  702. t Same as `near', for backward compatibility.
  703. This variable can also have an integer as a value. See
  704. `org-agenda-todo-ignore-timestamp' for more details.
  705. See also `org-agenda-todo-ignore-with-date'.
  706. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  707. to make his option also apply to the tags-todo list."
  708. :group 'org-agenda-skip
  709. :group 'org-agenda-todo-list
  710. :type '(choice
  711. (const :tag "Ignore near deadlines" near)
  712. (const :tag "Ignore near deadlines (compatibility)" t)
  713. (const :tag "Ignore far deadlines" far)
  714. (const :tag "Ignore all TODOs with a deadlines" all)
  715. (const :tag "Show all TODOs, even if they have a deadline" nil)
  716. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  717. (defcustom org-agenda-todo-ignore-time-comparison-use-seconds nil
  718. "Time unit to use when possibly ignoring an agenda item.
  719. See the docstring of various `org-agenda-todo-ignore-*' options.
  720. The default is to compare time stamps using days. An item is thus
  721. considered to be in the future if it is at least one day after today.
  722. Non-nil means to compare time stamps using seconds. An item is then
  723. considered future if it has a time value later than current time."
  724. :group 'org-agenda-skip
  725. :group 'org-agenda-todo-list
  726. :version "24.4"
  727. :package-version '(Org . "8.0")
  728. :type '(choice
  729. (const :tag "Compare time with days" nil)
  730. (const :tag "Compare time with seconds" t)))
  731. (defcustom org-agenda-tags-todo-honor-ignore-options nil
  732. "Non-nil means honor todo-list ignores options also in tags-todo search.
  733. The variables
  734. `org-agenda-todo-ignore-with-date',
  735. `org-agenda-todo-ignore-timestamp',
  736. `org-agenda-todo-ignore-scheduled',
  737. `org-agenda-todo-ignore-deadlines'
  738. make the global TODO list skip entries that have time stamps of certain
  739. kinds. If this option is set, the same options will also apply for the
  740. tags-todo search, which is the general tags/property matcher
  741. restricted to unfinished TODO entries only."
  742. :group 'org-agenda-skip
  743. :group 'org-agenda-todo-list
  744. :group 'org-agenda-match-view
  745. :type 'boolean)
  746. (defcustom org-agenda-skip-scheduled-if-done nil
  747. "Non-nil means don't show scheduled items in agenda when they are done.
  748. This is relevant for the daily/weekly agenda, not for the TODO list. And
  749. it applies only to the actual date of the scheduling. Warnings about
  750. an item with a past scheduling dates are always turned off when the item
  751. is DONE."
  752. :group 'org-agenda-skip
  753. :group 'org-agenda-daily/weekly
  754. :type 'boolean)
  755. (defcustom org-agenda-skip-scheduled-if-deadline-is-shown nil
  756. "Non-nil means skip scheduling line if same entry shows because of deadline.
  757. In the agenda of today, an entry can show up multiple times
  758. because it is both scheduled and has a nearby deadline, and maybe
  759. a plain time stamp as well.
  760. When this variable is nil, the entry will be shown several times.
  761. When set to t, then only the deadline is shown and the fact that
  762. the entry is scheduled today or was scheduled previously is not
  763. shown.
  764. When set to the symbol `not-today', skip scheduled previously,
  765. but not scheduled today.
  766. When set to the symbol `repeated-after-deadline', skip scheduled
  767. items if they are repeated beyond the current deadline."
  768. :group 'org-agenda-skip
  769. :group 'org-agenda-daily/weekly
  770. :type '(choice
  771. (const :tag "Never" nil)
  772. (const :tag "Always" t)
  773. (const :tag "Not when scheduled today" not-today)
  774. (const :tag "When repeated past deadline" repeated-after-deadline)))
  775. (defcustom org-agenda-skip-timestamp-if-deadline-is-shown nil
  776. "Non-nil means skip timestamp line if same entry shows because of deadline.
  777. In the agenda of today, an entry can show up multiple times
  778. because it has both a plain timestamp and has a nearby deadline.
  779. When this variable is t, then only the deadline is shown and the
  780. fact that the entry has a timestamp for or including today is not
  781. shown. When this variable is nil, the entry will be shown
  782. several times."
  783. :group 'org-agenda-skip
  784. :group 'org-agenda-daily/weekly
  785. :version "24.1"
  786. :type '(choice
  787. (const :tag "Never" nil)
  788. (const :tag "Always" t)))
  789. (defcustom org-agenda-skip-deadline-if-done nil
  790. "Non-nil means don't show deadlines when the corresponding item is done.
  791. When nil, the deadline is still shown and should give you a happy feeling.
  792. This is relevant for the daily/weekly agenda. And it applied only to the
  793. actually date of the deadline. Warnings about approaching and past-due
  794. deadlines are always turned off when the item is DONE."
  795. :group 'org-agenda-skip
  796. :group 'org-agenda-daily/weekly
  797. :type 'boolean)
  798. (defcustom org-agenda-skip-deadline-prewarning-if-scheduled nil
  799. "Non-nil means skip deadline prewarning when entry is also scheduled.
  800. This will apply on all days where a prewarning for the deadline would
  801. be shown, but not at the day when the entry is actually due. On that day,
  802. the deadline will be shown anyway.
  803. This variable may be set to nil, t, the symbol `pre-scheduled',
  804. or a number which will then give the number of days before the actual
  805. deadline when the prewarnings should resume. The symbol `pre-scheduled'
  806. eliminates the deadline prewarning only prior to the scheduled date.
  807. This can be used in a workflow where the first showing of the deadline will
  808. trigger you to schedule it, and then you don't want to be reminded of it
  809. because you will take care of it on the day when scheduled."
  810. :group 'org-agenda-skip
  811. :group 'org-agenda-daily/weekly
  812. :version "24.1"
  813. :type '(choice
  814. (const :tag "Always show prewarning" nil)
  815. (const :tag "Remove prewarning prior to scheduled date" pre-scheduled)
  816. (const :tag "Remove prewarning if entry is scheduled" t)
  817. (integer :tag "Restart prewarning N days before deadline")))
  818. (defcustom org-agenda-skip-scheduled-delay-if-deadline nil
  819. "Non-nil means skip scheduled delay when entry also has a deadline.
  820. This variable may be set to nil, t, the symbol `post-deadline',
  821. or a number which will then give the number of days after the actual
  822. scheduled date when the delay should expire. The symbol `post-deadline'
  823. eliminates the schedule delay when the date is posterior to the deadline."
  824. :group 'org-agenda-skip
  825. :group 'org-agenda-daily/weekly
  826. :version "24.4"
  827. :package-version '(Org . "8.0")
  828. :type '(choice
  829. (const :tag "Always honor delay" nil)
  830. (const :tag "Ignore delay if posterior to the deadline" post-deadline)
  831. (const :tag "Ignore delay if entry has a deadline" t)
  832. (integer :tag "Honor delay up until N days after the scheduled date")))
  833. (defcustom org-agenda-skip-additional-timestamps-same-entry nil
  834. "When nil, multiple same-day timestamps in entry make multiple agenda lines.
  835. When non-nil, after the search for timestamps has matched once in an
  836. entry, the rest of the entry will not be searched."
  837. :group 'org-agenda-skip
  838. :type 'boolean)
  839. (defcustom org-agenda-skip-timestamp-if-done nil
  840. "Non-nil means don't select item by timestamp or -range if it is DONE."
  841. :group 'org-agenda-skip
  842. :group 'org-agenda-daily/weekly
  843. :type 'boolean)
  844. (defcustom org-agenda-dim-blocked-tasks t
  845. "Non-nil means dim blocked tasks in the agenda display.
  846. This causes some overhead during agenda construction, but if you
  847. have turned on `org-enforce-todo-dependencies',
  848. `org-enforce-todo-checkbox-dependencies', or any other blocking
  849. mechanism, this will create useful feedback in the agenda.
  850. Instead of t, this variable can also have the value `invisible'.
  851. Then blocked tasks will be invisible and only become visible when
  852. they become unblocked. An exemption to this behavior is when a task is
  853. blocked because of unchecked checkboxes below it. Since checkboxes do
  854. not show up in the agenda views, making this task invisible you remove any
  855. trace from agenda views that there is something to do. Therefore, a task
  856. that is blocked because of checkboxes will never be made invisible, it
  857. will only be dimmed."
  858. :group 'org-agenda-daily/weekly
  859. :group 'org-agenda-todo-list
  860. :version "24.3"
  861. :type '(choice
  862. (const :tag "Do not dim" nil)
  863. (const :tag "Dim to a gray face" t)
  864. (const :tag "Make invisible" invisible)))
  865. (defcustom org-timeline-show-empty-dates 3
  866. "Non-nil means `org-timeline' also shows dates without an entry.
  867. When nil, only the days which actually have entries are shown.
  868. When t, all days between the first and the last date are shown.
  869. When an integer, show also empty dates, but if there is a gap of more than
  870. N days, just insert a special line indicating the size of the gap."
  871. :group 'org-agenda-skip
  872. :type '(choice
  873. (const :tag "None" nil)
  874. (const :tag "All" t)
  875. (integer :tag "at most")))
  876. (defgroup org-agenda-startup nil
  877. "Options concerning initial settings in the Agenda in Org Mode."
  878. :tag "Org Agenda Startup"
  879. :group 'org-agenda)
  880. (defcustom org-agenda-menu-show-matcher t
  881. "Non-nil means show the match string in the agenda dispatcher menu.
  882. When nil, the matcher string is not shown, but is put into the help-echo
  883. property so than moving the mouse over the command shows it.
  884. Setting it to nil is good if matcher strings are very long and/or if
  885. you want to use two-columns display (see `org-agenda-menu-two-columns')."
  886. :group 'org-agenda
  887. :version "24.1"
  888. :type 'boolean)
  889. (define-obsolete-variable-alias 'org-agenda-menu-two-column 'org-agenda-menu-two-columns "24.3")
  890. (defcustom org-agenda-menu-two-columns nil
  891. "Non-nil means, use two columns to show custom commands in the dispatcher.
  892. If you use this, you probably want to set `org-agenda-menu-show-matcher'
  893. to nil."
  894. :group 'org-agenda
  895. :version "24.1"
  896. :type 'boolean)
  897. (define-obsolete-variable-alias 'org-finalize-agenda-hook 'org-agenda-finalize-hook "24.3")
  898. (defcustom org-agenda-finalize-hook nil
  899. "Hook run just before displaying an agenda buffer.
  900. The buffer is still writable when the hook is called.
  901. You can modify some of the buffer substrings but you should be
  902. extra careful not to modify the text properties of the agenda
  903. headlines as the agenda display heavily relies on them."
  904. :group 'org-agenda-startup
  905. :type 'hook)
  906. (defcustom org-agenda-mouse-1-follows-link nil
  907. "Non-nil means mouse-1 on a link will follow the link in the agenda.
  908. A longer mouse click will still set point. Does not work on XEmacs.
  909. Needs to be set before org.el is loaded."
  910. :group 'org-agenda-startup
  911. :type 'boolean)
  912. (defcustom org-agenda-start-with-follow-mode nil
  913. "The initial value of follow mode in a newly created agenda window."
  914. :group 'org-agenda-startup
  915. :type 'boolean)
  916. (defcustom org-agenda-follow-indirect nil
  917. "Non-nil means `org-agenda-follow-mode' displays only the
  918. current item's tree, in an indirect buffer."
  919. :group 'org-agenda
  920. :version "24.1"
  921. :type 'boolean)
  922. (defcustom org-agenda-show-outline-path t
  923. "Non-nil means show outline path in echo area after line motion."
  924. :group 'org-agenda-startup
  925. :type 'boolean)
  926. (defcustom org-agenda-start-with-entry-text-mode nil
  927. "The initial value of entry-text-mode in a newly created agenda window."
  928. :group 'org-agenda-startup
  929. :type 'boolean)
  930. (defcustom org-agenda-entry-text-maxlines 5
  931. "Number of text lines to be added when `E' is pressed in the agenda.
  932. Note that this variable only used during agenda display. Add add entry text
  933. when exporting the agenda, configure the variable
  934. `org-agenda-add-entry-ext-maxlines'."
  935. :group 'org-agenda
  936. :type 'integer)
  937. (defcustom org-agenda-entry-text-exclude-regexps nil
  938. "List of regular expressions to clean up entry text.
  939. The complete matches of all regular expressions in this list will be
  940. removed from entry text before it is shown in the agenda."
  941. :group 'org-agenda
  942. :type '(repeat (regexp)))
  943. (defcustom org-agenda-entry-text-leaders " > "
  944. "Text prepended to the entry text in agenda buffers."
  945. :version "24.4"
  946. :package-version '(Org . "8.0")
  947. :group 'org-agenda
  948. :type 'string)
  949. (defvar org-agenda-entry-text-cleanup-hook nil
  950. "Hook that is run after basic cleanup of entry text to be shown in agenda.
  951. This cleanup is done in a temporary buffer, so the function may inspect and
  952. change the entire buffer.
  953. Some default stuff like drawers and scheduling/deadline dates will already
  954. have been removed when this is called, as will any matches for regular
  955. expressions listed in `org-agenda-entry-text-exclude-regexps'.")
  956. (defvar org-agenda-include-inactive-timestamps nil
  957. "Non-nil means include inactive time stamps in agenda and timeline.
  958. Dynamically scoped.")
  959. (defgroup org-agenda-windows nil
  960. "Options concerning the windows used by the Agenda in Org Mode."
  961. :tag "Org Agenda Windows"
  962. :group 'org-agenda)
  963. (defcustom org-agenda-window-setup 'reorganize-frame
  964. "How the agenda buffer should be displayed.
  965. Possible values for this option are:
  966. current-window Show agenda in the current window, keeping all other windows.
  967. other-window Use `switch-to-buffer-other-window' to display agenda.
  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 reorganize-frame)))
  979. (defcustom org-agenda-window-frame-fractions '(0.5 . 0.75)
  980. "The min and max height of the agenda window as a fraction of frame height.
  981. The value of the variable is a cons cell with two numbers between 0 and 1.
  982. It only matters if `org-agenda-window-setup' is `reorganize-frame'."
  983. :group 'org-agenda-windows
  984. :type '(cons (number :tag "Minimum") (number :tag "Maximum")))
  985. (defcustom org-agenda-restore-windows-after-quit nil
  986. "Non-nil means restore window configuration upon exiting agenda.
  987. Before the window configuration is changed for displaying the agenda,
  988. the current status is recorded. When the agenda is exited with
  989. `q' or `x' and this option is set, the old state is restored. If
  990. `org-agenda-window-setup' is `other-frame', the value of this
  991. option will be ignored."
  992. :group 'org-agenda-windows
  993. :type 'boolean)
  994. (defcustom org-agenda-ndays nil
  995. "Number of days to include in overview display.
  996. Should be 1 or 7.
  997. Obsolete, see `org-agenda-span'."
  998. :group 'org-agenda-daily/weekly
  999. :type '(choice (const nil)
  1000. (integer)))
  1001. (make-obsolete-variable 'org-agenda-ndays 'org-agenda-span "24.1")
  1002. (defcustom org-agenda-span 'week
  1003. "Number of days to include in overview display.
  1004. Can be day, week, month, year, or any number of days.
  1005. Custom commands can set this variable in the options section."
  1006. :group 'org-agenda-daily/weekly
  1007. :type '(choice (const :tag "Day" day)
  1008. (const :tag "Week" week)
  1009. (const :tag "Fortnight" fortnight)
  1010. (const :tag "Month" month)
  1011. (const :tag "Year" year)
  1012. (integer :tag "Custom")))
  1013. (defcustom org-agenda-start-on-weekday 1
  1014. "Non-nil means start the overview always on the specified weekday.
  1015. 0 denotes Sunday, 1 denotes Monday, etc.
  1016. When nil, always start on the current day.
  1017. Custom commands can set this variable in the options section."
  1018. :group 'org-agenda-daily/weekly
  1019. :type '(choice (const :tag "Today" nil)
  1020. (integer :tag "Weekday No.")))
  1021. (defcustom org-agenda-show-all-dates t
  1022. "Non-nil means `org-agenda' shows every day in the selected range.
  1023. When nil, only the days which actually have entries are shown."
  1024. :group 'org-agenda-daily/weekly
  1025. :type 'boolean)
  1026. (defcustom org-agenda-format-date 'org-agenda-format-date-aligned
  1027. "Format string for displaying dates in the agenda.
  1028. Used by the daily/weekly agenda and by the timeline. This should be
  1029. a format string understood by `format-time-string', or a function returning
  1030. the formatted date as a string. The function must take a single argument,
  1031. a calendar-style date list like (month day year)."
  1032. :group 'org-agenda-daily/weekly
  1033. :type '(choice
  1034. (string :tag "Format string")
  1035. (function :tag "Function")))
  1036. (defun org-agenda-format-date-aligned (date)
  1037. "Format a DATE string for display in the daily/weekly agenda, or timeline.
  1038. This function makes sure that dates are aligned for easy reading."
  1039. (require 'cal-iso)
  1040. (let* ((dayname (calendar-day-name date))
  1041. (day (cadr date))
  1042. (day-of-week (calendar-day-of-week date))
  1043. (month (car date))
  1044. (monthname (calendar-month-name month))
  1045. (year (nth 2 date))
  1046. (iso-week (org-days-to-iso-week
  1047. (calendar-absolute-from-gregorian date)))
  1048. (weekyear (cond ((and (= month 1) (>= iso-week 52))
  1049. (1- year))
  1050. ((and (= month 12) (<= iso-week 1))
  1051. (1+ year))
  1052. (t year)))
  1053. (weekstring (if (= day-of-week 1)
  1054. (format " W%02d" iso-week)
  1055. "")))
  1056. (format "%-10s %2d %s %4d%s"
  1057. dayname day monthname year weekstring)))
  1058. (defcustom org-agenda-time-leading-zero nil
  1059. "Non-nil means use leading zero for military times in agenda.
  1060. For example, 9:30am would become 09:30 rather than 9:30."
  1061. :group 'org-agenda-daily/weekly
  1062. :version "24.1"
  1063. :type 'boolean)
  1064. (defcustom org-agenda-timegrid-use-ampm nil
  1065. "When set, show AM/PM style timestamps on the timegrid."
  1066. :group 'org-agenda
  1067. :version "24.1"
  1068. :type 'boolean)
  1069. (defun org-agenda-time-of-day-to-ampm (time)
  1070. "Convert TIME of a string like '13:45' to an AM/PM style time string."
  1071. (let* ((hour-number (string-to-number (substring time 0 -3)))
  1072. (minute (substring time -2))
  1073. (ampm "am"))
  1074. (cond
  1075. ((equal hour-number 12)
  1076. (setq ampm "pm"))
  1077. ((> hour-number 12)
  1078. (setq ampm "pm")
  1079. (setq hour-number (- hour-number 12))))
  1080. (concat
  1081. (if org-agenda-time-leading-zero
  1082. (format "%02d" hour-number)
  1083. (format "%02s" (number-to-string hour-number)))
  1084. ":" minute ampm)))
  1085. (defun org-agenda-time-of-day-to-ampm-maybe (time)
  1086. "Conditionally convert TIME to AM/PM format based on `org-agenda-timegrid-use-ampm'."
  1087. (if org-agenda-timegrid-use-ampm
  1088. (org-agenda-time-of-day-to-ampm time)
  1089. time))
  1090. (defcustom org-agenda-weekend-days '(6 0)
  1091. "Which days are weekend?
  1092. These days get the special face `org-agenda-date-weekend' in the agenda
  1093. and timeline buffers."
  1094. :group 'org-agenda-daily/weekly
  1095. :type '(set :greedy t
  1096. (const :tag "Monday" 1)
  1097. (const :tag "Tuesday" 2)
  1098. (const :tag "Wednesday" 3)
  1099. (const :tag "Thursday" 4)
  1100. (const :tag "Friday" 5)
  1101. (const :tag "Saturday" 6)
  1102. (const :tag "Sunday" 0)))
  1103. (defcustom org-agenda-move-date-from-past-immediately-to-today t
  1104. "Non-nil means jump to today when moving a past date forward in time.
  1105. When using S-right in the agenda to move a a date forward, and the date
  1106. stamp currently points to the past, the first key press will move it
  1107. to today. WHen nil, just move one day forward even if the date stays
  1108. in the past."
  1109. :group 'org-agenda-daily/weekly
  1110. :version "24.1"
  1111. :type 'boolean)
  1112. (defcustom org-agenda-include-diary nil
  1113. "If non-nil, include in the agenda entries from the Emacs Calendar's diary.
  1114. Custom commands can set this variable in the options section."
  1115. :group 'org-agenda-daily/weekly
  1116. :type 'boolean)
  1117. (defcustom org-agenda-include-deadlines t
  1118. "If non-nil, include entries within their deadline warning period.
  1119. Custom commands can set this variable in the options section."
  1120. :group 'org-agenda-daily/weekly
  1121. :version "24.1"
  1122. :type 'boolean)
  1123. (defcustom org-agenda-repeating-timestamp-show-all t
  1124. "Non-nil means show all occurrences of a repeating stamp in the agenda.
  1125. When set to a list of strings, only show occurrences of repeating
  1126. stamps for these TODO keywords. When nil, only one occurrence is
  1127. shown, either today or the nearest into the future."
  1128. :group 'org-agenda-daily/weekly
  1129. :type '(choice
  1130. (const :tag "Show repeating stamps" t)
  1131. (repeat :tag "Show repeating stamps for these TODO keywords"
  1132. (string :tag "TODO Keyword"))
  1133. (const :tag "Don't show repeating stamps" nil)))
  1134. (defcustom org-scheduled-past-days 10000
  1135. "Number of days to continue listing scheduled items not marked DONE.
  1136. When an item is scheduled on a date, it shows up in the agenda on this
  1137. day and will be listed until it is marked done for the number of days
  1138. given here."
  1139. :group 'org-agenda-daily/weekly
  1140. :type 'integer)
  1141. (defcustom org-agenda-log-mode-items '(closed clock)
  1142. "List of items that should be shown in agenda log mode.
  1143. This list may contain the following symbols:
  1144. closed Show entries that have been closed on that day.
  1145. clock Show entries that have received clocked time on that day.
  1146. state Show all logged state changes.
  1147. Note that instead of changing this variable, you can also press `C-u l' in
  1148. the agenda to display all available LOG items temporarily."
  1149. :group 'org-agenda-daily/weekly
  1150. :type '(set :greedy t (const closed) (const clock) (const state)))
  1151. (defcustom org-agenda-clock-consistency-checks
  1152. '(:max-duration "10:00" :min-duration 0 :max-gap "0:05"
  1153. :gap-ok-around ("4:00")
  1154. :default-face ((:background "DarkRed") (:foreground "white"))
  1155. :overlap-face nil :gap-face nil :no-end-time-face nil
  1156. :long-face nil :short-face nil)
  1157. "This is a property list, with the following keys:
  1158. :max-duration Mark clocking chunks that are longer than this time.
  1159. This is a time string like \"HH:MM\", or the number
  1160. of minutes as an integer.
  1161. :min-duration Mark clocking chunks that are shorter that this.
  1162. This is a time string like \"HH:MM\", or the number
  1163. of minutes as an integer.
  1164. :max-gap Mark gaps between clocking chunks that are longer than
  1165. this duration. A number of minutes, or a string
  1166. like \"HH:MM\".
  1167. :gap-ok-around List of times during the day which are usually not working
  1168. times. When a gap is detected, but the gap contains any
  1169. of these times, the gap is *not* reported. For example,
  1170. if this is (\"4:00\" \"13:00\") then gaps that contain
  1171. 4:00 in the morning (i.e. the night) and 13:00
  1172. (i.e. a typical lunch time) do not cause a warning.
  1173. You should have at least one time during the night in this
  1174. list, or otherwise the first task each morning will trigger
  1175. a warning because it follows a long gap.
  1176. Furthermore, the following properties can be used to define faces for
  1177. issue display.
  1178. :default-face the default face, if the specific face is undefined
  1179. :overlap-face face for overlapping clocks
  1180. :gap-face face for gaps between clocks
  1181. :no-end-time-face face for incomplete clocks
  1182. :long-face face for clock intervals that are too long
  1183. :short-face face for clock intervals that are too short"
  1184. :group 'org-agenda-daily/weekly
  1185. :group 'org-clock
  1186. :version "24.1"
  1187. :type 'plist)
  1188. (defcustom org-agenda-log-mode-add-notes t
  1189. "Non-nil means add first line of notes to log entries in agenda views.
  1190. If a log item like a state change or a clock entry is associated with
  1191. notes, the first line of these notes will be added to the entry in the
  1192. agenda display."
  1193. :group 'org-agenda-daily/weekly
  1194. :type 'boolean)
  1195. (defcustom org-agenda-start-with-log-mode nil
  1196. "The initial value of log-mode in a newly created agenda window.
  1197. See `org-agenda-log-mode' and `org-agenda-log-mode-items' for further
  1198. explanations on the possible values."
  1199. :group 'org-agenda-startup
  1200. :group 'org-agenda-daily/weekly
  1201. :type '(choice (const :tag "Don't show log items" nil)
  1202. (const :tag "Show only log items" only)
  1203. (const :tag "Show all possible log items" clockcheck)
  1204. (repeat :tag "Choose among possible values for `org-agenda-log-mode-items'"
  1205. (choice (const :tag "Show closed log items" closed)
  1206. (const :tag "Show clocked log items" clock)
  1207. (const :tag "Show all logged state changes" state)))))
  1208. (defcustom org-agenda-start-with-clockreport-mode nil
  1209. "The initial value of clockreport-mode in a newly created agenda window."
  1210. :group 'org-agenda-startup
  1211. :group 'org-agenda-daily/weekly
  1212. :type 'boolean)
  1213. (defcustom org-agenda-clockreport-parameter-plist '(:link t :maxlevel 2)
  1214. "Property list with parameters for the clocktable in clockreport mode.
  1215. This is the display mode that shows a clock table in the daily/weekly
  1216. agenda, the properties for this dynamic block can be set here.
  1217. The usual clocktable parameters are allowed here, but you cannot set
  1218. the properties :name, :tstart, :tend, :block, and :scope - these will
  1219. be overwritten to make sure the content accurately reflects the
  1220. current display in the agenda."
  1221. :group 'org-agenda-daily/weekly
  1222. :type 'plist)
  1223. (defcustom org-agenda-search-view-always-boolean nil
  1224. "Non-nil means the search string is interpreted as individual parts.
  1225. The search string for search view can either be interpreted as a phrase,
  1226. or as a list of snippets that define a boolean search for a number of
  1227. strings.
  1228. When this is non-nil, the string will be split on whitespace, and each
  1229. snippet will be searched individually, and all must match in order to
  1230. select an entry. A snippet is then a single string of non-white
  1231. characters, or a string in double quotes, or a regexp in {} braces.
  1232. If a snippet is preceded by \"-\", the snippet must *not* match.
  1233. \"+\" is syntactic sugar for positive selection. Each snippet may
  1234. be found as a full word or a partial word, but see the variable
  1235. `org-agenda-search-view-force-full-words'.
  1236. When this is nil, search will look for the entire search phrase as one,
  1237. with each space character matching any amount of whitespace, including
  1238. line breaks.
  1239. Even when this is nil, you can still switch to Boolean search dynamically
  1240. by preceding the first snippet with \"+\" or \"-\". If the first snippet
  1241. is a regexp marked with braces like \"{abc}\", this will also switch to
  1242. boolean search."
  1243. :group 'org-agenda-search-view
  1244. :version "24.1"
  1245. :type 'boolean)
  1246. (org-defvaralias 'org-agenda-search-view-search-words-only
  1247. 'org-agenda-search-view-always-boolean)
  1248. (defcustom org-agenda-search-view-force-full-words nil
  1249. "Non-nil means, search words must be matches as complete words.
  1250. When nil, they may also match part of a word."
  1251. :group 'org-agenda-search-view
  1252. :version "24.1"
  1253. :type 'boolean)
  1254. (defcustom org-agenda-search-view-max-outline-level 0
  1255. "Maximum outline level to display in search view.
  1256. E.g. when this is set to 1, the search view will only
  1257. show headlines of level 1. When set to 0, the default
  1258. value, don't limit agenda view by outline level."
  1259. :group 'org-agenda-search-view
  1260. :version "24.4"
  1261. :package-version '(Org . "8.3")
  1262. :type 'integer)
  1263. (defgroup org-agenda-time-grid nil
  1264. "Options concerning the time grid in the Org-mode Agenda."
  1265. :tag "Org Agenda Time Grid"
  1266. :group 'org-agenda)
  1267. (defcustom org-agenda-search-headline-for-time t
  1268. "Non-nil means search headline for a time-of-day.
  1269. If the headline contains a time-of-day in one format or another, it will
  1270. be used to sort the entry into the time sequence of items for a day.
  1271. Some people have time stamps in the headline that refer to the creation
  1272. time or so, and then this produces an unwanted side effect. If this is
  1273. the case for your, use this variable to turn off searching the headline
  1274. for a time."
  1275. :group 'org-agenda-time-grid
  1276. :type 'boolean)
  1277. (defcustom org-agenda-use-time-grid t
  1278. "Non-nil means show a time grid in the agenda schedule.
  1279. A time grid is a set of lines for specific times (like every two hours between
  1280. 8:00 and 20:00). The items scheduled for a day at specific times are
  1281. sorted in between these lines.
  1282. For details about when the grid will be shown, and what it will look like, see
  1283. the variable `org-agenda-time-grid'."
  1284. :group 'org-agenda-time-grid
  1285. :type 'boolean)
  1286. (defcustom org-agenda-time-grid
  1287. '((daily today require-timed)
  1288. "----------------"
  1289. (800 1000 1200 1400 1600 1800 2000))
  1290. "The settings for time grid for agenda display.
  1291. This is a list of three items. The first item is again a list. It contains
  1292. symbols specifying conditions when the grid should be displayed:
  1293. daily if the agenda shows a single day
  1294. weekly if the agenda shows an entire week
  1295. today show grid on current date, independent of daily/weekly display
  1296. require-timed show grid only if at least one item has a time specification
  1297. The second item is a string which will be placed behind the grid time.
  1298. The third item is a list of integers, indicating the times that should have
  1299. a grid line."
  1300. :group 'org-agenda-time-grid
  1301. :type
  1302. '(list
  1303. (set :greedy t :tag "Grid Display Options"
  1304. (const :tag "Show grid in single day agenda display" daily)
  1305. (const :tag "Show grid in weekly agenda display" weekly)
  1306. (const :tag "Always show grid for today" today)
  1307. (const :tag "Show grid only if any timed entries are present"
  1308. require-timed)
  1309. (const :tag "Skip grid times already present in an entry"
  1310. remove-match))
  1311. (string :tag "Grid String")
  1312. (repeat :tag "Grid Times" (integer :tag "Time"))))
  1313. (defcustom org-agenda-show-current-time-in-grid t
  1314. "Non-nil means show the current time in the time grid."
  1315. :group 'org-agenda-time-grid
  1316. :version "24.1"
  1317. :type 'boolean)
  1318. (defcustom org-agenda-current-time-string
  1319. "now - - - - - - - - - - - - - - - - - - - - - - - - -"
  1320. "The string for the current time marker in the agenda."
  1321. :group 'org-agenda-time-grid
  1322. :version "24.1"
  1323. :type 'string)
  1324. (defgroup org-agenda-sorting nil
  1325. "Options concerning sorting in the Org-mode Agenda."
  1326. :tag "Org Agenda Sorting"
  1327. :group 'org-agenda)
  1328. (defcustom org-agenda-sorting-strategy
  1329. '((agenda habit-down time-up priority-down category-keep)
  1330. (todo priority-down category-keep)
  1331. (tags priority-down category-keep)
  1332. (search category-keep))
  1333. "Sorting structure for the agenda items of a single day.
  1334. This is a list of symbols which will be used in sequence to determine
  1335. if an entry should be listed before another entry. The following
  1336. symbols are recognized:
  1337. time-up Put entries with time-of-day indications first, early first
  1338. time-down Put entries with time-of-day indications first, late first
  1339. timestamp-up Sort by any timestamp, early first
  1340. timestamp-down Sort by any timestamp, late first
  1341. scheduled-up Sort by scheduled timestamp, early first
  1342. scheduled-down Sort by scheduled timestamp, late first
  1343. deadline-up Sort by deadline timestamp, early first
  1344. deadline-down Sort by deadline timestamp, late first
  1345. ts-up Sort by active timestamp, early first
  1346. ts-down Sort by active timestamp, late first
  1347. tsia-up Sort by inactive timestamp, early first
  1348. tsia-down Sort by inactive timestamp, late first
  1349. category-keep Keep the default order of categories, corresponding to the
  1350. sequence in `org-agenda-files'.
  1351. category-up Sort alphabetically by category, A-Z.
  1352. category-down Sort alphabetically by category, Z-A.
  1353. tag-up Sort alphabetically by last tag, A-Z.
  1354. tag-down Sort alphabetically by last tag, Z-A.
  1355. priority-up Sort numerically by priority, high priority last.
  1356. priority-down Sort numerically by priority, high priority first.
  1357. todo-state-up Sort by todo state, tasks that are done last.
  1358. todo-state-down Sort by todo state, tasks that are done first.
  1359. effort-up Sort numerically by estimated effort, high effort last.
  1360. effort-down Sort numerically by estimated effort, high effort first.
  1361. user-defined-up Sort according to `org-agenda-cmp-user-defined', high last.
  1362. user-defined-down Sort according to `org-agenda-cmp-user-defined', high first.
  1363. habit-up Put entries that are habits first
  1364. habit-down Put entries that are habits last
  1365. alpha-up Sort headlines alphabetically
  1366. alpha-down Sort headlines alphabetically, reversed
  1367. The different possibilities will be tried in sequence, and testing stops
  1368. if one comparison returns a \"not-equal\". For example, the default
  1369. '(time-up category-keep priority-down)
  1370. means: Pull out all entries having a specified time of day and sort them,
  1371. in order to make a time schedule for the current day the first thing in the
  1372. agenda listing for the day. Of the entries without a time indication, keep
  1373. the grouped in categories, don't sort the categories, but keep them in
  1374. the sequence given in `org-agenda-files'. Within each category sort by
  1375. priority.
  1376. Leaving out `category-keep' would mean that items will be sorted across
  1377. categories by priority.
  1378. Instead of a single list, this can also be a set of list for specific
  1379. contents, with a context symbol in the car of the list, any of
  1380. `agenda', `todo', `tags', `search' for the corresponding agenda views.
  1381. Custom commands can bind this variable in the options section."
  1382. :group 'org-agenda-sorting
  1383. :type `(choice
  1384. (repeat :tag "General" ,org-sorting-choice)
  1385. (list :tag "Individually"
  1386. (cons (const :tag "Strategy for Weekly/Daily agenda" agenda)
  1387. (repeat ,org-sorting-choice))
  1388. (cons (const :tag "Strategy for TODO lists" todo)
  1389. (repeat ,org-sorting-choice))
  1390. (cons (const :tag "Strategy for Tags matches" tags)
  1391. (repeat ,org-sorting-choice))
  1392. (cons (const :tag "Strategy for search matches" search)
  1393. (repeat ,org-sorting-choice)))))
  1394. (defcustom org-agenda-cmp-user-defined nil
  1395. "A function to define the comparison `user-defined'.
  1396. This function must receive two arguments, agenda entry a and b.
  1397. If a>b, return +1. If a<b, return -1. If they are equal as seen by
  1398. the user comparison, return nil.
  1399. When this is defined, you can make `user-defined-up' and `user-defined-down'
  1400. part of an agenda sorting strategy."
  1401. :group 'org-agenda-sorting
  1402. :type 'symbol)
  1403. (defcustom org-sort-agenda-notime-is-late t
  1404. "Non-nil means items without time are considered late.
  1405. This is only relevant for sorting. When t, items which have no explicit
  1406. time like 15:30 will be considered as 99:01, i.e. later than any items which
  1407. do have a time. When nil, the default time is before 0:00. You can use this
  1408. option to decide if the schedule for today should come before or after timeless
  1409. agenda entries."
  1410. :group 'org-agenda-sorting
  1411. :type 'boolean)
  1412. (defcustom org-sort-agenda-noeffort-is-high t
  1413. "Non-nil means items without effort estimate are sorted as high effort.
  1414. This also applies when filtering an agenda view with respect to the
  1415. < or > effort operator. Then, tasks with no effort defined will be treated
  1416. as tasks with high effort.
  1417. When nil, such items are sorted as 0 minutes effort."
  1418. :group 'org-agenda-sorting
  1419. :type 'boolean)
  1420. (defgroup org-agenda-line-format nil
  1421. "Options concerning the entry prefix in the Org-mode agenda display."
  1422. :tag "Org Agenda Line Format"
  1423. :group 'org-agenda)
  1424. (defcustom org-agenda-prefix-format
  1425. '((agenda . " %i %-12:c%?-12t% s")
  1426. (timeline . " % s")
  1427. (todo . " %i %-12:c")
  1428. (tags . " %i %-12:c")
  1429. (search . " %i %-12:c"))
  1430. "Format specifications for the prefix of items in the agenda views.
  1431. An alist with five entries, each for the different agenda types. The
  1432. keys of the sublists are `agenda', `timeline', `todo', `search' and `tags'.
  1433. The values are format strings.
  1434. This format works similar to a printf format, with the following meaning:
  1435. %c the category of the item, \"Diary\" for entries from the diary,
  1436. or as given by the CATEGORY keyword or derived from the file name
  1437. %e the effort required by the item
  1438. %l the level of the item (insert X space(s) if item is of level X)
  1439. %i the icon category of the item, see `org-agenda-category-icon-alist'
  1440. %T the last tag of the item (ignore inherited tags, which come first)
  1441. %t the HH:MM time-of-day specification if one applies to the entry
  1442. %s Scheduling/Deadline information, a short string
  1443. %b show breadcrumbs, i.e., the names of the higher levels
  1444. %(expression) Eval EXPRESSION and replace the control string
  1445. by the result
  1446. All specifiers work basically like the standard `%s' of printf, but may
  1447. contain two additional characters: a question mark just after the `%'
  1448. and a whitespace/punctuation character just before the final letter.
  1449. If the first character after `%' is a question mark, the entire field
  1450. will only be included if the corresponding value applies to the current
  1451. entry. This is useful for fields which should have fixed width when
  1452. present, but zero width when absent. For example, \"%?-12t\" will
  1453. result in a 12 character time field if a time of the day is specified,
  1454. but will completely disappear in entries which do not contain a time.
  1455. If there is punctuation or whitespace character just before the
  1456. final format letter, this character will be appended to the field
  1457. value if the value is not empty. For example, the format
  1458. \"%-12:c\" leads to \"Diary: \" if the category is \"Diary\". If
  1459. the category is empty, no additional colon is inserted.
  1460. The default value for the agenda sublist is \" %-12:c%?-12t% s\",
  1461. which means:
  1462. - Indent the line with two space characters
  1463. - Give the category a 12 chars wide field, padded with whitespace on
  1464. the right (because of `-'). Append a colon if there is a category
  1465. (because of `:').
  1466. - If there is a time-of-day, put it into a 12 chars wide field. If no
  1467. time, don't put in an empty field, just skip it (because of '?').
  1468. - Finally, put the scheduling information.
  1469. See also the variables `org-agenda-remove-times-when-in-prefix' and
  1470. `org-agenda-remove-tags'.
  1471. Custom commands can set this variable in the options section."
  1472. :type '(choice
  1473. (string :tag "General format")
  1474. (list :greedy t :tag "View dependent"
  1475. (cons (const agenda) (string :tag "Format"))
  1476. (cons (const timeline) (string :tag "Format"))
  1477. (cons (const todo) (string :tag "Format"))
  1478. (cons (const tags) (string :tag "Format"))
  1479. (cons (const search) (string :tag "Format"))))
  1480. :group 'org-agenda-line-format)
  1481. (defvar org-prefix-format-compiled nil
  1482. "The compiled prefix format and associated variables.
  1483. This is a list where first element is a list of variable bindings, and second
  1484. element is the compiled format expression. See the variable
  1485. `org-agenda-prefix-format'.")
  1486. (defcustom org-agenda-todo-keyword-format "%-1s"
  1487. "Format for the TODO keyword in agenda lines.
  1488. Set this to something like \"%-12s\" if you want all TODO keywords
  1489. to occupy a fixed space in the agenda display."
  1490. :group 'org-agenda-line-format
  1491. :type 'string)
  1492. (defcustom org-agenda-diary-sexp-prefix nil
  1493. "A regexp that matches part of a diary sexp entry
  1494. which should be treated as scheduling/deadline information in
  1495. `org-agenda'.
  1496. For example, you can use this to extract the `diary-remind-message' from
  1497. `diary-remind' entries."
  1498. :group 'org-agenda-line-format
  1499. :type '(choice (const :tag "None" nil) (regexp :tag "Regexp")))
  1500. (defcustom org-agenda-timerange-leaders '("" "(%d/%d): ")
  1501. "Text preceding timerange entries in the agenda view.
  1502. This is a list with two strings. The first applies when the range
  1503. is entirely on one day. The second applies if the range spans several days.
  1504. The strings may have two \"%d\" format specifiers which will be filled
  1505. with the sequence number of the days, and the total number of days in the
  1506. range, respectively."
  1507. :group 'org-agenda-line-format
  1508. :type '(list
  1509. (string :tag "Deadline today ")
  1510. (choice :tag "Deadline relative"
  1511. (string :tag "Format string")
  1512. (function))))
  1513. (defcustom org-agenda-scheduled-leaders '("Scheduled: " "Sched.%2dx: ")
  1514. "Text preceding scheduled items in the agenda view.
  1515. This is a list with two strings. The first applies when the item is
  1516. scheduled on the current day. The second applies when it has been scheduled
  1517. previously, it may contain a %d indicating that this is the nth time that
  1518. this item is scheduled, due to automatic rescheduling of unfinished items
  1519. for the following day. So this number is one larger than the number of days
  1520. that passed since this item was scheduled first."
  1521. :group 'org-agenda-line-format
  1522. :version "24.4"
  1523. :package-version '(Org . "8.0")
  1524. :type '(list
  1525. (string :tag "Scheduled today ")
  1526. (string :tag "Scheduled previously")))
  1527. (defcustom org-agenda-inactive-leader "["
  1528. "Text preceding item pulled into the agenda by inactive time stamps.
  1529. These entries are added to the agenda when pressing \"[\"."
  1530. :group 'org-agenda-line-format
  1531. :version "24.1"
  1532. :type 'string)
  1533. (defcustom org-agenda-deadline-leaders '("Deadline: " "In %3d d.: " "%2d d. ago: ")
  1534. "Text preceding deadline items in the agenda view.
  1535. This is a list with three strings. The first applies when the item has its
  1536. deadline on the current day. The second applies when the deadline is in the
  1537. future, the third one when it is in the past. The strings may contain %d
  1538. to capture the number of days."
  1539. :group 'org-agenda-line-format
  1540. :version "24.4"
  1541. :package-version '(Org . "8.0")
  1542. :type '(list
  1543. (string :tag "Deadline today ")
  1544. (string :tag "Deadline in the future ")
  1545. (string :tag "Deadline in the past ")))
  1546. (defcustom org-agenda-remove-times-when-in-prefix t
  1547. "Non-nil means remove duplicate time specifications in agenda items.
  1548. When the format `org-agenda-prefix-format' contains a `%t' specifier, a
  1549. time-of-day specification in a headline or diary entry is extracted and
  1550. placed into the prefix. If this option is non-nil, the original specification
  1551. \(a timestamp or -range, or just a plain time(range) specification like
  1552. 11:30-4pm) will be removed for agenda display. This makes the agenda less
  1553. cluttered.
  1554. The option can be t or nil. It may also be the symbol `beg', indicating
  1555. that the time should only be removed when it is located at the beginning of
  1556. the headline/diary entry."
  1557. :group 'org-agenda-line-format
  1558. :type '(choice
  1559. (const :tag "Always" t)
  1560. (const :tag "Never" nil)
  1561. (const :tag "When at beginning of entry" beg)))
  1562. (defcustom org-agenda-remove-timeranges-from-blocks nil
  1563. "Non-nil means remove time ranges specifications in agenda
  1564. items that span on several days."
  1565. :group 'org-agenda-line-format
  1566. :version "24.1"
  1567. :type 'boolean)
  1568. (defcustom org-agenda-default-appointment-duration nil
  1569. "Default duration for appointments that only have a starting time.
  1570. When nil, no duration is specified in such cases.
  1571. When non-nil, this must be the number of minutes, e.g. 60 for one hour."
  1572. :group 'org-agenda-line-format
  1573. :type '(choice
  1574. (integer :tag "Minutes")
  1575. (const :tag "No default duration")))
  1576. (defcustom org-agenda-show-inherited-tags t
  1577. "Non-nil means show inherited tags in each agenda line.
  1578. When this option is set to 'always, it take precedences over
  1579. `org-agenda-use-tag-inheritance' and inherited tags are shown
  1580. in every agenda.
  1581. When this option is set to t (the default), inherited tags are
  1582. shown when they are available, i.e. when the value of
  1583. `org-agenda-use-tag-inheritance' has been taken into account.
  1584. This can be set to a list of agenda types in which the agenda
  1585. must display the inherited tags. Available types are 'todo,
  1586. 'agenda, 'search and 'timeline.
  1587. When set to nil, never show inherited tags in agenda lines."
  1588. :group 'org-agenda-line-format
  1589. :group 'org-agenda
  1590. :version "24.3"
  1591. :type '(choice
  1592. (const :tag "Show inherited tags when available" t)
  1593. (const :tag "Always show inherited tags" always)
  1594. (repeat :tag "Show inherited tags only in selected agenda types"
  1595. (symbol :tag "Agenda type"))))
  1596. (defcustom org-agenda-use-tag-inheritance '(todo search timeline agenda)
  1597. "List of agenda view types where to use tag inheritance.
  1598. In tags/tags-todo/tags-tree agenda views, tag inheritance is
  1599. controlled by `org-use-tag-inheritance'. In other agenda types,
  1600. `org-use-tag-inheritance' is not used for the selection of the
  1601. agenda entries. Still, you may want the agenda to be aware of
  1602. the inherited tags anyway, e.g. for later tag filtering.
  1603. Allowed value are 'todo, 'search, 'timeline and 'agenda.
  1604. This variable has no effect if `org-agenda-show-inherited-tags'
  1605. is set to 'always. In that case, the agenda is aware of those
  1606. tags.
  1607. The default value sets tags in every agenda type. Setting this
  1608. option to nil will speed up non-tags agenda view a lot."
  1609. :group 'org-agenda
  1610. :version "24.3"
  1611. :type '(choice
  1612. (const :tag "Use tag inheritance in all agenda types" t)
  1613. (repeat :tag "Use tag inheritance in selected agenda types"
  1614. (symbol :tag "Agenda type"))))
  1615. (defcustom org-agenda-hide-tags-regexp nil
  1616. "Regular expression used to filter away specific tags in agenda views.
  1617. This means that these tags will be present, but not be shown in the agenda
  1618. line. Secondary filtering will still work on the hidden tags.
  1619. Nil means don't hide any tags."
  1620. :group 'org-agenda-line-format
  1621. :type '(choice
  1622. (const :tag "Hide none" nil)
  1623. (string :tag "Regexp ")))
  1624. (defcustom org-agenda-remove-tags nil
  1625. "Non-nil means remove the tags from the headline copy in the agenda.
  1626. When this is the symbol `prefix', only remove tags when
  1627. `org-agenda-prefix-format' contains a `%T' specifier."
  1628. :group 'org-agenda-line-format
  1629. :type '(choice
  1630. (const :tag "Always" t)
  1631. (const :tag "Never" nil)
  1632. (const :tag "When prefix format contains %T" prefix)))
  1633. (org-defvaralias 'org-agenda-remove-tags-when-in-prefix
  1634. 'org-agenda-remove-tags)
  1635. (defcustom org-agenda-tags-column (if (featurep 'xemacs) -79 -80)
  1636. "Shift tags in agenda items to this column.
  1637. If this number is positive, it specifies the column. If it is negative,
  1638. it means that the tags should be flushright to that column. For example,
  1639. -80 works well for a normal 80 character screen."
  1640. :group 'org-agenda-line-format
  1641. :type 'integer)
  1642. (org-defvaralias 'org-agenda-align-tags-to-column 'org-agenda-tags-column)
  1643. (defcustom org-agenda-fontify-priorities 'cookies
  1644. "Non-nil means highlight low and high priorities in agenda.
  1645. When t, the highest priority entries are bold, lowest priority italic.
  1646. However, settings in `org-priority-faces' will overrule these faces.
  1647. When this variable is the symbol `cookies', only fontify the
  1648. cookies, not the entire task.
  1649. This may also be an association list of priority faces, whose
  1650. keys are the character values of `org-highest-priority',
  1651. `org-default-priority', and `org-lowest-priority' (the default values
  1652. are ?A, ?B, and ?C, respectively). The face may be a named face, a
  1653. color as a string, or a list like `(:background \"Red\")'.
  1654. If it is a color, the variable `org-faces-easy-properties'
  1655. determines if it is a foreground or a background color."
  1656. :group 'org-agenda-line-format
  1657. :type '(choice
  1658. (const :tag "Never" nil)
  1659. (const :tag "Defaults" t)
  1660. (const :tag "Cookies only" cookies)
  1661. (repeat :tag "Specify"
  1662. (list (character :tag "Priority" :value ?A)
  1663. (choice :tag "Face "
  1664. (string :tag "Color")
  1665. (sexp :tag "Face"))))))
  1666. (defcustom org-agenda-day-face-function nil
  1667. "Function called to determine what face should be used to display a day.
  1668. The only argument passed to that function is the day. It should
  1669. returns a face, or nil if does not want to specify a face and let
  1670. the normal rules apply."
  1671. :group 'org-agenda-line-format
  1672. :version "24.1"
  1673. :type '(choice (const nil) (function)))
  1674. (defcustom org-agenda-category-icon-alist nil
  1675. "Alist of category icon to be displayed in agenda views.
  1676. Each entry should have the following format:
  1677. (CATEGORY-REGEXP FILE-OR-DATA TYPE DATA-P PROPS)
  1678. Where CATEGORY-REGEXP is a regexp matching the categories where
  1679. the icon should be displayed.
  1680. FILE-OR-DATA either a file path or a string containing image data.
  1681. The other fields can be omitted safely if not needed:
  1682. TYPE indicates the image type.
  1683. DATA-P is a boolean indicating whether the FILE-OR-DATA string is
  1684. image data.
  1685. PROPS are additional image attributes to assign to the image,
  1686. like, e.g. `:ascent center'.
  1687. (\"Org\" \"/path/to/icon.png\" nil nil :ascent center)
  1688. If you want to set the display properties yourself, just put a
  1689. list as second element:
  1690. (CATEGORY-REGEXP (MY PROPERTY LIST))
  1691. For example, to display a 16px horizontal space for Emacs
  1692. category, you can use:
  1693. (\"Emacs\" '(space . (:width (16))))"
  1694. :group 'org-agenda-line-format
  1695. :version "24.1"
  1696. :type '(alist :key-type (string :tag "Regexp matching category")
  1697. :value-type (choice (list :tag "Icon"
  1698. (string :tag "File or data")
  1699. (symbol :tag "Type")
  1700. (boolean :tag "Data?")
  1701. (repeat :tag "Extra image properties" :inline t symbol))
  1702. (list :tag "Display properties" sexp))))
  1703. (defgroup org-agenda-column-view nil
  1704. "Options concerning column view in the agenda."
  1705. :tag "Org Agenda Column View"
  1706. :group 'org-agenda)
  1707. (defcustom org-agenda-columns-show-summaries t
  1708. "Non-nil means show summaries for columns displayed in the agenda view."
  1709. :group 'org-agenda-column-view
  1710. :type 'boolean)
  1711. (defcustom org-agenda-columns-compute-summary-properties t
  1712. "Non-nil means recompute all summary properties before column view.
  1713. When column view in the agenda is listing properties that have a summary
  1714. operator, it can go to all relevant buffers and recompute the summaries
  1715. there. This can mean overhead for the agenda column view, but is necessary
  1716. to have thing up to date.
  1717. As a special case, a CLOCKSUM property also makes sure that the clock
  1718. computations are current."
  1719. :group 'org-agenda-column-view
  1720. :type 'boolean)
  1721. (defcustom org-agenda-columns-add-appointments-to-effort-sum nil
  1722. "Non-nil means the duration of an appointment will add to day effort.
  1723. The property to which appointment durations will be added is the one given
  1724. in the option `org-effort-property'. If an appointment does not have
  1725. an end time, `org-agenda-default-appointment-duration' will be used. If that
  1726. is not set, an appointment without end time will not contribute to the time
  1727. estimate."
  1728. :group 'org-agenda-column-view
  1729. :type 'boolean)
  1730. (defcustom org-agenda-auto-exclude-function nil
  1731. "A function called with a tag to decide if it is filtered on '/ RET'.
  1732. The sole argument to the function, which is called once for each
  1733. possible tag, is a string giving the name of the tag. The
  1734. function should return either nil if the tag should be included
  1735. as normal, or \"-<TAG>\" to exclude the tag.
  1736. Note that for the purpose of tag filtering, only the lower-case version of
  1737. all tags will be considered, so that this function will only ever see
  1738. the lower-case version of all tags."
  1739. :group 'org-agenda
  1740. :type '(choice (const nil) (function)))
  1741. (defcustom org-agenda-bulk-custom-functions nil
  1742. "Alist of characters and custom functions for bulk actions.
  1743. For example, this value makes those two functions available:
  1744. '((?R set-category)
  1745. (?C bulk-cut))
  1746. With selected entries in an agenda buffer, `B R' will call
  1747. the custom function `set-category' on the selected entries.
  1748. Note that functions in this alist don't need to be quoted."
  1749. :type 'alist
  1750. :version "24.1"
  1751. :group 'org-agenda)
  1752. (defmacro org-agenda-with-point-at-orig-entry (string &rest body)
  1753. "Execute BODY with point at location given by `org-hd-marker' property.
  1754. If STRING is non-nil, the text property will be fetched from position 0
  1755. in that string. If STRING is nil, it will be fetched from the beginning
  1756. of the current line."
  1757. (org-with-gensyms (marker)
  1758. `(let ((,marker (get-text-property (if string 0 (point-at-bol))
  1759. 'org-hd-marker ,string)))
  1760. (with-current-buffer (marker-buffer ,marker)
  1761. (save-excursion
  1762. (goto-char ,marker)
  1763. ,@body)))))
  1764. (def-edebug-spec org-agenda-with-point-at-orig-entry (form body))
  1765. (defun org-add-agenda-custom-command (entry)
  1766. "Replace or add a command in `org-agenda-custom-commands'.
  1767. This is mostly for hacking and trying a new command - once the command
  1768. works you probably want to add it to `org-agenda-custom-commands' for good."
  1769. (let ((ass (assoc (car entry) org-agenda-custom-commands)))
  1770. (if ass
  1771. (setcdr ass (cdr entry))
  1772. (push entry org-agenda-custom-commands))))
  1773. ;;; Define the org-agenda-mode
  1774. (defvar org-agenda-mode-map (make-sparse-keymap)
  1775. "Keymap for `org-agenda-mode'.")
  1776. (org-defvaralias 'org-agenda-keymap 'org-agenda-mode-map)
  1777. (defvar org-agenda-menu) ; defined later in this file.
  1778. (defvar org-agenda-restrict nil) ; defined later in this file.
  1779. (defvar org-agenda-follow-mode nil)
  1780. (defvar org-agenda-entry-text-mode nil)
  1781. (defvar org-agenda-clockreport-mode nil)
  1782. (defvar org-agenda-show-log nil)
  1783. (defvar org-agenda-redo-command nil)
  1784. (defvar org-agenda-query-string nil)
  1785. (defvar org-agenda-mode-hook nil
  1786. "Hook run after `org-agenda-mode' is turned on.
  1787. The buffer is still writable when this hook is called.")
  1788. (defvar org-agenda-type nil)
  1789. (defvar org-agenda-force-single-file nil)
  1790. (defvar org-agenda-bulk-marked-entries nil
  1791. "List of markers that refer to marked entries in the agenda.")
  1792. ;;; Multiple agenda buffers support
  1793. (defcustom org-agenda-sticky nil
  1794. "Non-nil means agenda q key will bury agenda buffers.
  1795. Agenda commands will then show existing buffer instead of generating new ones.
  1796. When nil, `q' will kill the single agenda buffer."
  1797. :group 'org-agenda
  1798. :version "24.3"
  1799. :type 'boolean)
  1800. ;;;###autoload
  1801. (defun org-toggle-sticky-agenda (&optional arg)
  1802. "Toggle `org-agenda-sticky'."
  1803. (interactive "P")
  1804. (let ((new-value (if arg
  1805. (> (prefix-numeric-value arg) 0)
  1806. (not org-agenda-sticky))))
  1807. (if (equal new-value org-agenda-sticky)
  1808. (and (org-called-interactively-p 'interactive)
  1809. (message "Sticky agenda was already %s"
  1810. (if org-agenda-sticky "enabled" "disabled")))
  1811. (setq org-agenda-sticky new-value)
  1812. (org-agenda-kill-all-agenda-buffers)
  1813. (and (org-called-interactively-p 'interactive)
  1814. (message "Sticky agenda was %s"
  1815. (if org-agenda-sticky "enabled" "disabled"))))))
  1816. (defvar org-agenda-buffer nil
  1817. "Agenda buffer currently being generated.")
  1818. (defvar org-agenda-last-prefix-arg nil)
  1819. (defvar org-agenda-this-buffer-name nil)
  1820. (defvar org-agenda-doing-sticky-redo nil)
  1821. (defvar org-agenda-this-buffer-is-sticky nil)
  1822. (defconst org-agenda-local-vars
  1823. '(org-agenda-this-buffer-name
  1824. org-agenda-undo-list
  1825. org-agenda-pending-undo-list
  1826. org-agenda-follow-mode
  1827. org-agenda-entry-text-mode
  1828. org-agenda-clockreport-mode
  1829. org-agenda-show-log
  1830. org-agenda-redo-command
  1831. org-agenda-query-string
  1832. org-agenda-type
  1833. org-agenda-bulk-marked-entries
  1834. org-agenda-undo-has-started-in
  1835. org-agenda-info
  1836. org-agenda-pre-window-conf
  1837. org-agenda-columns-active
  1838. org-agenda-tag-filter
  1839. org-agenda-category-filter
  1840. org-agenda-top-headline-filter
  1841. org-agenda-regexp-filter
  1842. org-agenda-markers
  1843. org-agenda-last-search-view-search-was-boolean
  1844. org-agenda-filtered-by-category
  1845. org-agenda-filter-form
  1846. org-agenda-cycle-counter
  1847. org-agenda-last-prefix-arg)
  1848. "Variables that must be local in agenda buffers to allow multiple buffers.")
  1849. (defun org-agenda-mode ()
  1850. "Mode for time-sorted view on action items in Org-mode files.
  1851. The following commands are available:
  1852. \\{org-agenda-mode-map}"
  1853. (interactive)
  1854. (cond (org-agenda-doing-sticky-redo
  1855. ;; Refreshing sticky agenda-buffer
  1856. ;;
  1857. ;; Preserve the value of `org-agenda-local-vars' variables,
  1858. ;; while letting `kill-all-local-variables' kill the rest
  1859. (let ((save (buffer-local-variables)))
  1860. (kill-all-local-variables)
  1861. (mapc 'make-local-variable org-agenda-local-vars)
  1862. (dolist (elem save)
  1863. (let ((var (car elem))
  1864. (val (cdr elem)))
  1865. (when (and val
  1866. (member var org-agenda-local-vars))
  1867. (set var val)))))
  1868. (set (make-local-variable 'org-agenda-this-buffer-is-sticky) t))
  1869. (org-agenda-sticky
  1870. ;; Creating a sticky Agenda buffer for the first time
  1871. (kill-all-local-variables)
  1872. (mapc 'make-local-variable org-agenda-local-vars)
  1873. (set (make-local-variable 'org-agenda-this-buffer-is-sticky) t))
  1874. (t
  1875. ;; Creating a non-sticky agenda buffer
  1876. (kill-all-local-variables)
  1877. (set (make-local-variable 'org-agenda-this-buffer-is-sticky) nil)))
  1878. (setq org-agenda-undo-list nil
  1879. org-agenda-pending-undo-list nil
  1880. org-agenda-bulk-marked-entries nil)
  1881. (setq major-mode 'org-agenda-mode)
  1882. ;; Keep global-font-lock-mode from turning on font-lock-mode
  1883. (org-set-local 'font-lock-global-modes (list 'not major-mode))
  1884. (setq mode-name "Org-Agenda")
  1885. (setq indent-tabs-mode nil)
  1886. (use-local-map org-agenda-mode-map)
  1887. (easy-menu-add org-agenda-menu)
  1888. (if org-startup-truncated (setq truncate-lines t))
  1889. (org-set-local 'line-move-visual nil)
  1890. (org-add-hook 'post-command-hook 'org-agenda-update-agenda-type nil 'local)
  1891. (org-add-hook 'pre-command-hook 'org-unhighlight nil 'local)
  1892. ;; Make sure properties are removed when copying text
  1893. (org-add-hook 'filter-buffer-substring-functions
  1894. (lambda (fun start end delete)
  1895. (substring-no-properties (funcall fun start end delete)))
  1896. nil t)
  1897. (unless org-agenda-keep-modes
  1898. (setq org-agenda-follow-mode org-agenda-start-with-follow-mode
  1899. org-agenda-entry-text-mode org-agenda-start-with-entry-text-mode
  1900. org-agenda-clockreport-mode org-agenda-start-with-clockreport-mode
  1901. org-agenda-show-log org-agenda-start-with-log-mode))
  1902. (add-to-invisibility-spec '(org-filtered))
  1903. (add-to-invisibility-spec '(org-link))
  1904. (easy-menu-change
  1905. '("Agenda") "Agenda Files"
  1906. (append
  1907. (list
  1908. (vector
  1909. (if (get 'org-agenda-files 'org-restrict)
  1910. "Restricted to single file"
  1911. "Edit File List")
  1912. '(org-edit-agenda-file-list)
  1913. (not (get 'org-agenda-files 'org-restrict)))
  1914. "--")
  1915. (mapcar 'org-file-menu-entry (org-agenda-files))))
  1916. (org-agenda-set-mode-name)
  1917. (apply
  1918. (if (fboundp 'run-mode-hooks) 'run-mode-hooks 'run-hooks)
  1919. (list 'org-agenda-mode-hook)))
  1920. (substitute-key-definition 'undo 'org-agenda-undo
  1921. org-agenda-mode-map global-map)
  1922. (org-defkey org-agenda-mode-map "\C-i" 'org-agenda-goto)
  1923. (org-defkey org-agenda-mode-map [(tab)] 'org-agenda-goto)
  1924. (org-defkey org-agenda-mode-map "\C-m" 'org-agenda-switch-to)
  1925. (org-defkey org-agenda-mode-map "\C-k" 'org-agenda-kill)
  1926. (org-defkey org-agenda-mode-map "\C-c\C-w" 'org-agenda-refile)
  1927. (org-defkey org-agenda-mode-map [(meta down)] 'org-agenda-drag-line-forward)
  1928. (org-defkey org-agenda-mode-map [(meta up)] 'org-agenda-drag-line-backward)
  1929. (org-defkey org-agenda-mode-map "m" 'org-agenda-bulk-mark)
  1930. (org-defkey org-agenda-mode-map "\M-m" 'org-agenda-bulk-toggle)
  1931. (org-defkey org-agenda-mode-map "*" 'org-agenda-bulk-mark-all)
  1932. (org-defkey org-agenda-mode-map "\M-*" 'org-agenda-bulk-toggle-all)
  1933. (org-defkey org-agenda-mode-map "#" 'org-agenda-dim-blocked-tasks)
  1934. (org-defkey org-agenda-mode-map "%" 'org-agenda-bulk-mark-regexp)
  1935. (org-defkey org-agenda-mode-map "u" 'org-agenda-bulk-unmark)
  1936. (org-defkey org-agenda-mode-map "U" 'org-agenda-bulk-unmark-all)
  1937. (org-defkey org-agenda-mode-map "B" 'org-agenda-bulk-action)
  1938. (org-defkey org-agenda-mode-map "k" 'org-agenda-capture)
  1939. (org-defkey org-agenda-mode-map "A" 'org-agenda-append-agenda)
  1940. (org-defkey org-agenda-mode-map "\C-c\C-x!" 'org-reload)
  1941. (org-defkey org-agenda-mode-map "\C-c\C-x\C-a" 'org-agenda-archive-default)
  1942. (org-defkey org-agenda-mode-map "\C-c\C-xa" 'org-agenda-toggle-archive-tag)
  1943. (org-defkey org-agenda-mode-map "\C-c\C-xA" 'org-agenda-archive-to-archive-sibling)
  1944. (org-defkey org-agenda-mode-map "\C-c\C-x\C-s" 'org-agenda-archive)
  1945. (org-defkey org-agenda-mode-map "\C-c$" 'org-agenda-archive)
  1946. (org-defkey org-agenda-mode-map "$" 'org-agenda-archive)
  1947. (org-defkey org-agenda-mode-map "\C-c\C-o" 'org-agenda-open-link)
  1948. (org-defkey org-agenda-mode-map " " 'org-agenda-show-and-scroll-up)
  1949. (org-defkey org-agenda-mode-map [backspace] 'org-agenda-show-scroll-down)
  1950. (org-defkey org-agenda-mode-map "\d" 'org-agenda-show-scroll-down)
  1951. (org-defkey org-agenda-mode-map [(control shift right)] 'org-agenda-todo-nextset)
  1952. (org-defkey org-agenda-mode-map [(control shift left)] 'org-agenda-todo-previousset)
  1953. (org-defkey org-agenda-mode-map "\C-c\C-xb" 'org-agenda-tree-to-indirect-buffer)
  1954. (org-defkey org-agenda-mode-map "o" 'delete-other-windows)
  1955. (org-defkey org-agenda-mode-map "L" 'org-agenda-recenter)
  1956. (org-defkey org-agenda-mode-map "\C-c\C-t" 'org-agenda-todo)
  1957. (org-defkey org-agenda-mode-map "t" 'org-agenda-todo)
  1958. (org-defkey org-agenda-mode-map "a" 'org-agenda-archive-default-with-confirmation)
  1959. (org-defkey org-agenda-mode-map ":" 'org-agenda-set-tags)
  1960. (org-defkey org-agenda-mode-map "\C-c\C-q" 'org-agenda-set-tags)
  1961. (org-defkey org-agenda-mode-map "." 'org-agenda-goto-today)
  1962. (org-defkey org-agenda-mode-map "j" 'org-agenda-goto-date)
  1963. (org-defkey org-agenda-mode-map "d" 'org-agenda-day-view)
  1964. (org-defkey org-agenda-mode-map "w" 'org-agenda-week-view)
  1965. (org-defkey org-agenda-mode-map "y" 'org-agenda-year-view)
  1966. (org-defkey org-agenda-mode-map "\C-c\C-z" 'org-agenda-add-note)
  1967. (org-defkey org-agenda-mode-map "z" 'org-agenda-add-note)
  1968. (org-defkey org-agenda-mode-map [(shift right)] 'org-agenda-do-date-later)
  1969. (org-defkey org-agenda-mode-map [(shift left)] 'org-agenda-do-date-earlier)
  1970. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (right)] 'org-agenda-do-date-later)
  1971. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (left)] 'org-agenda-do-date-earlier)
  1972. (org-defkey org-agenda-mode-map ">" 'org-agenda-date-prompt)
  1973. (org-defkey org-agenda-mode-map "\C-c\C-s" 'org-agenda-schedule)
  1974. (org-defkey org-agenda-mode-map "\C-c\C-d" 'org-agenda-deadline)
  1975. (let ((l '(1 2 3 4 5 6 7 8 9 0)))
  1976. (while l (org-defkey org-agenda-mode-map
  1977. (int-to-string (pop l)) 'digit-argument)))
  1978. (org-defkey org-agenda-mode-map "F" 'org-agenda-follow-mode)
  1979. (org-defkey org-agenda-mode-map "R" 'org-agenda-clockreport-mode)
  1980. (org-defkey org-agenda-mode-map "E" 'org-agenda-entry-text-mode)
  1981. (org-defkey org-agenda-mode-map "l" 'org-agenda-log-mode)
  1982. (org-defkey org-agenda-mode-map "v" 'org-agenda-view-mode-dispatch)
  1983. (org-defkey org-agenda-mode-map "D" 'org-agenda-toggle-diary)
  1984. (org-defkey org-agenda-mode-map "!" 'org-agenda-toggle-deadlines)
  1985. (org-defkey org-agenda-mode-map "G" 'org-agenda-toggle-time-grid)
  1986. (org-defkey org-agenda-mode-map "r" 'org-agenda-redo)
  1987. (org-defkey org-agenda-mode-map "g" (lambda () (interactive) (org-agenda-redo t)))
  1988. (org-defkey org-agenda-mode-map "e" 'org-agenda-set-effort)
  1989. (org-defkey org-agenda-mode-map "\C-c\C-xe" 'org-agenda-set-effort)
  1990. (org-defkey org-agenda-mode-map "\C-c\C-x\C-e"
  1991. 'org-clock-modify-effort-estimate)
  1992. (org-defkey org-agenda-mode-map "\C-c\C-xp" 'org-agenda-set-property)
  1993. (org-defkey org-agenda-mode-map "q" 'org-agenda-quit)
  1994. (org-defkey org-agenda-mode-map "Q" 'org-agenda-Quit)
  1995. (org-defkey org-agenda-mode-map "x" 'org-agenda-exit)
  1996. (org-defkey org-agenda-mode-map "\C-x\C-w" 'org-agenda-write)
  1997. (org-defkey org-agenda-mode-map "\C-x\C-s" 'org-save-all-org-buffers)
  1998. (org-defkey org-agenda-mode-map "s" 'org-save-all-org-buffers)
  1999. (org-defkey org-agenda-mode-map "T" 'org-agenda-show-tags)
  2000. (org-defkey org-agenda-mode-map "n" 'org-agenda-next-line)
  2001. (org-defkey org-agenda-mode-map "p" 'org-agenda-previous-line)
  2002. (org-defkey org-agenda-mode-map "N" 'org-agenda-next-item)
  2003. (org-defkey org-agenda-mode-map "P" 'org-agenda-previous-item)
  2004. (substitute-key-definition 'next-line 'org-agenda-next-line
  2005. org-agenda-mode-map global-map)
  2006. (substitute-key-definition 'previous-line 'org-agenda-previous-line
  2007. org-agenda-mode-map global-map)
  2008. (org-defkey org-agenda-mode-map "\C-c\C-a" 'org-attach)
  2009. (org-defkey org-agenda-mode-map "\C-c\C-n" 'org-agenda-next-date-line)
  2010. (org-defkey org-agenda-mode-map "\C-c\C-p" 'org-agenda-previous-date-line)
  2011. (org-defkey org-agenda-mode-map "\C-c," 'org-agenda-priority)
  2012. (org-defkey org-agenda-mode-map "," 'org-agenda-priority)
  2013. (org-defkey org-agenda-mode-map "i" 'org-agenda-diary-entry)
  2014. (org-defkey org-agenda-mode-map "c" 'org-agenda-goto-calendar)
  2015. (org-defkey org-agenda-mode-map "C" 'org-agenda-convert-date)
  2016. (org-defkey org-agenda-mode-map "M" 'org-agenda-phases-of-moon)
  2017. (org-defkey org-agenda-mode-map "S" 'org-agenda-sunrise-sunset)
  2018. (org-defkey org-agenda-mode-map "h" 'org-agenda-holidays)
  2019. (org-defkey org-agenda-mode-map "H" 'org-agenda-holidays)
  2020. (org-defkey org-agenda-mode-map "\C-c\C-x\C-i" 'org-agenda-clock-in)
  2021. (org-defkey org-agenda-mode-map "I" 'org-agenda-clock-in)
  2022. (org-defkey org-agenda-mode-map "\C-c\C-x\C-o" 'org-agenda-clock-out)
  2023. (org-defkey org-agenda-mode-map "O" 'org-agenda-clock-out)
  2024. (org-defkey org-agenda-mode-map "\C-c\C-x\C-x" 'org-agenda-clock-cancel)
  2025. (org-defkey org-agenda-mode-map "X" 'org-agenda-clock-cancel)
  2026. (org-defkey org-agenda-mode-map "\C-c\C-x\C-j" 'org-clock-goto)
  2027. (org-defkey org-agenda-mode-map "J" 'org-agenda-clock-goto)
  2028. (org-defkey org-agenda-mode-map "+" 'org-agenda-priority-up)
  2029. (org-defkey org-agenda-mode-map "-" 'org-agenda-priority-down)
  2030. (org-defkey org-agenda-mode-map [(shift up)] 'org-agenda-priority-up)
  2031. (org-defkey org-agenda-mode-map [(shift down)] 'org-agenda-priority-down)
  2032. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (up)] 'org-agenda-priority-up)
  2033. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (down)] 'org-agenda-priority-down)
  2034. (org-defkey org-agenda-mode-map "f" 'org-agenda-later)
  2035. (org-defkey org-agenda-mode-map "b" 'org-agenda-earlier)
  2036. (org-defkey org-agenda-mode-map "\C-c\C-x\C-c" 'org-agenda-columns)
  2037. (org-defkey org-agenda-mode-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
  2038. (org-defkey org-agenda-mode-map "[" 'org-agenda-manipulate-query-add)
  2039. (org-defkey org-agenda-mode-map "]" 'org-agenda-manipulate-query-subtract)
  2040. (org-defkey org-agenda-mode-map "{" 'org-agenda-manipulate-query-add-re)
  2041. (org-defkey org-agenda-mode-map "}" 'org-agenda-manipulate-query-subtract-re)
  2042. (org-defkey org-agenda-mode-map "/" 'org-agenda-filter-by-tag)
  2043. (org-defkey org-agenda-mode-map "=" 'org-agenda-filter-by-regexp)
  2044. (org-defkey org-agenda-mode-map "|" 'org-agenda-filter-remove-all)
  2045. (org-defkey org-agenda-mode-map "\\" 'org-agenda-filter-by-tag-refine)
  2046. (org-defkey org-agenda-mode-map "~" 'org-agenda-limit-interactively)
  2047. (org-defkey org-agenda-mode-map "<" 'org-agenda-filter-by-category)
  2048. (org-defkey org-agenda-mode-map "^" 'org-agenda-filter-by-top-headline)
  2049. (org-defkey org-agenda-mode-map ";" 'org-timer-set-timer)
  2050. (define-key org-agenda-mode-map "?" 'org-agenda-show-the-flagging-note)
  2051. (org-defkey org-agenda-mode-map "\C-c\C-x\C-mg" 'org-mobile-pull)
  2052. (org-defkey org-agenda-mode-map "\C-c\C-x\C-mp" 'org-mobile-push)
  2053. (org-defkey org-agenda-mode-map [mouse-2] 'org-agenda-goto-mouse)
  2054. (org-defkey org-agenda-mode-map [mouse-3] 'org-agenda-show-mouse)
  2055. (when org-agenda-mouse-1-follows-link
  2056. (org-defkey org-agenda-mode-map [follow-link] 'mouse-face))
  2057. (easy-menu-define org-agenda-menu org-agenda-mode-map "Agenda menu"
  2058. '("Agenda"
  2059. ("Agenda Files")
  2060. "--"
  2061. ("Agenda Dates"
  2062. ["Goto Today" org-agenda-goto-today (org-agenda-check-type nil 'agenda 'timeline)]
  2063. ["Next Dates" org-agenda-later (org-agenda-check-type nil 'agenda)]
  2064. ["Previous Dates" org-agenda-earlier (org-agenda-check-type nil 'agenda)]
  2065. ["Jump to date" org-agenda-goto-date (org-agenda-check-type nil 'agenda)])
  2066. "--"
  2067. ("View"
  2068. ["Day View" org-agenda-day-view
  2069. :active (org-agenda-check-type nil 'agenda)
  2070. :style radio :selected (eq org-agenda-current-span 'day)
  2071. :keys "v d (or just d)"]
  2072. ["Week View" org-agenda-week-view
  2073. :active (org-agenda-check-type nil 'agenda)
  2074. :style radio :selected (eq org-agenda-current-span 'week)
  2075. :keys "v w"]
  2076. ["Fortnight View" org-agenda-fortnight-view
  2077. :active (org-agenda-check-type nil 'agenda)
  2078. :style radio :selected (eq org-agenda-current-span 'fortnight)
  2079. :keys "v f"]
  2080. ["Month View" org-agenda-month-view
  2081. :active (org-agenda-check-type nil 'agenda)
  2082. :style radio :selected (eq org-agenda-current-span 'month)
  2083. :keys "v m"]
  2084. ["Year View" org-agenda-year-view
  2085. :active (org-agenda-check-type nil 'agenda)
  2086. :style radio :selected (eq org-agenda-current-span 'year)
  2087. :keys "v y"]
  2088. "--"
  2089. ["Include Diary" org-agenda-toggle-diary
  2090. :style toggle :selected org-agenda-include-diary
  2091. :active (org-agenda-check-type nil 'agenda)]
  2092. ["Include Deadlines" org-agenda-toggle-deadlines
  2093. :style toggle :selected org-agenda-include-deadlines
  2094. :active (org-agenda-check-type nil 'agenda)]
  2095. ["Use Time Grid" org-agenda-toggle-time-grid
  2096. :style toggle :selected org-agenda-use-time-grid
  2097. :active (org-agenda-check-type nil 'agenda)]
  2098. "--"
  2099. ["Show clock report" org-agenda-clockreport-mode
  2100. :style toggle :selected org-agenda-clockreport-mode
  2101. :active (org-agenda-check-type nil 'agenda)]
  2102. ["Show some entry text" org-agenda-entry-text-mode
  2103. :style toggle :selected org-agenda-entry-text-mode
  2104. :active t]
  2105. "--"
  2106. ["Show Logbook entries" org-agenda-log-mode
  2107. :style toggle :selected org-agenda-show-log
  2108. :active (org-agenda-check-type nil 'agenda 'timeline)
  2109. :keys "v l (or just l)"]
  2110. ["Include archived trees" org-agenda-archives-mode
  2111. :style toggle :selected org-agenda-archives-mode :active t
  2112. :keys "v a"]
  2113. ["Include archive files" (org-agenda-archives-mode t)
  2114. :style toggle :selected (eq org-agenda-archives-mode t) :active t
  2115. :keys "v A"]
  2116. "--"
  2117. ["Remove Restriction" org-agenda-remove-restriction-lock org-agenda-restrict])
  2118. ["Write view to file" org-agenda-write t]
  2119. ["Rebuild buffer" org-agenda-redo t]
  2120. ["Save all Org-mode Buffers" org-save-all-org-buffers t]
  2121. "--"
  2122. ["Show original entry" org-agenda-show t]
  2123. ["Go To (other window)" org-agenda-goto t]
  2124. ["Go To (this window)" org-agenda-switch-to t]
  2125. ["Capture with cursor date" org-agenda-capture t]
  2126. ["Follow Mode" org-agenda-follow-mode
  2127. :style toggle :selected org-agenda-follow-mode :active t]
  2128. ;; ["Tree to indirect frame" org-agenda-tree-to-indirect-buffer t]
  2129. "--"
  2130. ("TODO"
  2131. ["Cycle TODO" org-agenda-todo t]
  2132. ["Next TODO set" org-agenda-todo-nextset t]
  2133. ["Previous TODO set" org-agenda-todo-previousset t]
  2134. ["Add note" org-agenda-add-note t])
  2135. ("Archive/Refile/Delete"
  2136. ["Archive default" org-agenda-archive-default t]
  2137. ["Archive default" org-agenda-archive-default-with-confirmation t]
  2138. ["Toggle ARCHIVE tag" org-agenda-toggle-archive-tag t]
  2139. ["Move to archive sibling" org-agenda-archive-to-archive-sibling t]
  2140. ["Archive subtree" org-agenda-archive t]
  2141. "--"
  2142. ["Refile" org-agenda-refile t]
  2143. "--"
  2144. ["Delete subtree" org-agenda-kill t])
  2145. ("Bulk action"
  2146. ["Mark entry" org-agenda-bulk-mark t]
  2147. ["Mark all" org-agenda-bulk-mark-all t]
  2148. ["Unmark entry" org-agenda-bulk-unmark t]
  2149. ["Unmark all" org-agenda-bulk-unmark-all :active t :keys "U"]
  2150. ["Toggle mark" org-agenda-bulk-toggle t]
  2151. ["Toggle all" org-agenda-bulk-toggle-all t]
  2152. ["Mark regexp" org-agenda-bulk-mark-regexp t])
  2153. ["Act on all marked" org-agenda-bulk-action t]
  2154. "--"
  2155. ("Tags and Properties"
  2156. ["Show all Tags" org-agenda-show-tags t]
  2157. ["Set Tags current line" org-agenda-set-tags (not (org-region-active-p))]
  2158. ["Change tag in region" org-agenda-set-tags (org-region-active-p)]
  2159. "--"
  2160. ["Column View" org-columns t])
  2161. ("Deadline/Schedule"
  2162. ["Schedule" org-agenda-schedule t]
  2163. ["Set Deadline" org-agenda-deadline t]
  2164. "--"
  2165. ["Change Date +1 day" org-agenda-date-later (org-agenda-check-type nil 'agenda 'timeline)]
  2166. ["Change Date -1 day" org-agenda-date-earlier (org-agenda-check-type nil 'agenda 'timeline)]
  2167. ["Change Time +1 hour" org-agenda-do-date-later :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u S-right"]
  2168. ["Change Time -1 hour" org-agenda-do-date-earlier :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u S-left"]
  2169. ["Change Time + min" org-agenda-date-later :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u C-u S-right"]
  2170. ["Change Time - min" org-agenda-date-earlier :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u C-u S-left"]
  2171. ["Change Date to ..." org-agenda-date-prompt (org-agenda-check-type nil 'agenda 'timeline)])
  2172. ("Clock and Effort"
  2173. ["Clock in" org-agenda-clock-in t]
  2174. ["Clock out" org-agenda-clock-out t]
  2175. ["Clock cancel" org-agenda-clock-cancel t]
  2176. ["Goto running clock" org-clock-goto t]
  2177. "--"
  2178. ["Set Effort" org-agenda-set-effort t]
  2179. ["Change clocked effort" org-clock-modify-effort-estimate
  2180. (org-clock-is-active)])
  2181. ("Priority"
  2182. ["Set Priority" org-agenda-priority t]
  2183. ["Increase Priority" org-agenda-priority-up t]
  2184. ["Decrease Priority" org-agenda-priority-down t]
  2185. ["Show Priority" org-show-priority t])
  2186. ("Calendar/Diary"
  2187. ["New Diary Entry" org-agenda-diary-entry (org-agenda-check-type nil 'agenda 'timeline)]
  2188. ["Goto Calendar" org-agenda-goto-calendar (org-agenda-check-type nil 'agenda 'timeline)]
  2189. ["Phases of the Moon" org-agenda-phases-of-moon (org-agenda-check-type nil 'agenda 'timeline)]
  2190. ["Sunrise/Sunset" org-agenda-sunrise-sunset (org-agenda-check-type nil 'agenda 'timeline)]
  2191. ["Holidays" org-agenda-holidays (org-agenda-check-type nil 'agenda 'timeline)]
  2192. ["Convert" org-agenda-convert-date (org-agenda-check-type nil 'agenda 'timeline)]
  2193. "--"
  2194. ["Create iCalendar File" org-icalendar-combine-agenda-files t])
  2195. "--"
  2196. ["Undo Remote Editing" org-agenda-undo org-agenda-undo-list]
  2197. "--"
  2198. ("MobileOrg"
  2199. ["Push Files and Views" org-mobile-push t]
  2200. ["Get Captured and Flagged" org-mobile-pull t]
  2201. ["Find FLAGGED Tasks" (org-agenda nil "?") :active t :keys "C-c a ?"]
  2202. ["Show note / unflag" org-agenda-show-the-flagging-note t]
  2203. "--"
  2204. ["Setup" (progn (require 'org-mobile) (customize-group 'org-mobile)) t])
  2205. "--"
  2206. ["Quit" org-agenda-quit t]
  2207. ["Exit and Release Buffers" org-agenda-exit t]
  2208. ))
  2209. ;;; Agenda undo
  2210. (defvar org-agenda-allow-remote-undo t
  2211. "Non-nil means allow remote undo from the agenda buffer.")
  2212. (defvar org-agenda-undo-has-started-in nil
  2213. "Buffers that have already seen `undo-start' in the current undo sequence.")
  2214. (defun org-agenda-undo ()
  2215. "Undo a remote editing step in the agenda.
  2216. This undoes changes both in the agenda buffer and in the remote buffer
  2217. that have been changed along."
  2218. (interactive)
  2219. (or org-agenda-allow-remote-undo
  2220. (user-error "Check the variable `org-agenda-allow-remote-undo' to activate remote undo"))
  2221. (if (not (eq this-command last-command))
  2222. (setq org-agenda-undo-has-started-in nil
  2223. org-agenda-pending-undo-list org-agenda-undo-list))
  2224. (if (not org-agenda-pending-undo-list)
  2225. (user-error "No further undo information"))
  2226. (let* ((entry (pop org-agenda-pending-undo-list))
  2227. buf line cmd rembuf)
  2228. (setq cmd (pop entry) line (pop entry))
  2229. (setq rembuf (nth 2 entry))
  2230. (org-with-remote-undo rembuf
  2231. (while (bufferp (setq buf (pop entry)))
  2232. (if (pop entry)
  2233. (with-current-buffer buf
  2234. (let ((last-undo-buffer buf)
  2235. (inhibit-read-only t))
  2236. (unless (memq buf org-agenda-undo-has-started-in)
  2237. (push buf org-agenda-undo-has-started-in)
  2238. (make-local-variable 'pending-undo-list)
  2239. (undo-start))
  2240. (while (and pending-undo-list
  2241. (listp pending-undo-list)
  2242. (not (car pending-undo-list)))
  2243. (pop pending-undo-list))
  2244. (undo-more 1))))))
  2245. (org-goto-line line)
  2246. (message "`%s' undone (buffer %s)" cmd (buffer-name rembuf))))
  2247. (defun org-verify-change-for-undo (l1 l2)
  2248. "Verify that a real change occurred between the undo lists L1 and L2."
  2249. (while (and l1 (listp l1) (null (car l1))) (pop l1))
  2250. (while (and l2 (listp l2) (null (car l2))) (pop l2))
  2251. (not (eq l1 l2)))
  2252. ;;; Agenda dispatch
  2253. (defvar org-agenda-restrict-begin (make-marker))
  2254. (defvar org-agenda-restrict-end (make-marker))
  2255. (defvar org-agenda-last-dispatch-buffer nil)
  2256. (defvar org-agenda-overriding-restriction nil)
  2257. (defcustom org-agenda-custom-commands-contexts nil
  2258. "Alist of custom agenda keys and contextual rules.
  2259. For example, if you have a custom agenda command \"p\" and you
  2260. want this command to be accessible only from plain text files,
  2261. use this:
  2262. '((\"p\" ((in-file . \"\\.txt\"))))
  2263. Here are the available contexts definitions:
  2264. in-file: command displayed only in matching files
  2265. in-mode: command displayed only in matching modes
  2266. not-in-file: command not displayed in matching files
  2267. not-in-mode: command not displayed in matching modes
  2268. in-buffer: command displayed only in matching buffers
  2269. not-in-buffer: command not displayed in matching buffers
  2270. [function]: a custom function taking no argument
  2271. If you define several checks, the agenda command will be
  2272. accessible if there is at least one valid check.
  2273. You can also bind a key to another agenda custom command
  2274. depending on contextual rules.
  2275. '((\"p\" \"q\" ((in-file . \"\\.txt\"))))
  2276. Here it means: in .txt files, use \"p\" as the key for the
  2277. agenda command otherwise associated with \"q\". (The command
  2278. originally associated with \"q\" is not displayed to avoid
  2279. duplicates.)"
  2280. :version "24.3"
  2281. :group 'org-agenda-custom-commands
  2282. :type '(repeat (list :tag "Rule"
  2283. (string :tag " Agenda key")
  2284. (string :tag "Replace by command")
  2285. (repeat :tag "Available when"
  2286. (choice
  2287. (cons :tag "Condition"
  2288. (choice
  2289. (const :tag "In file" in-file)
  2290. (const :tag "Not in file" not-in-file)
  2291. (const :tag "In buffer" in-buffer)
  2292. (const :tag "Not in buffer" not-in-buffer)
  2293. (const :tag "In mode" in-mode)
  2294. (const :tag "Not in mode" not-in-mode))
  2295. (regexp))
  2296. (function :tag "Custom function"))))))
  2297. (defcustom org-agenda-max-entries nil
  2298. "Maximum number of entries to display in an agenda.
  2299. This can be nil (no limit) or an integer or an alist of agenda
  2300. types with an associated number of entries to display in this
  2301. type."
  2302. :version "24.4"
  2303. :package-version '(Org . "8.0")
  2304. :group 'org-agenda-custom-commands
  2305. :type '(choice (symbol :tag "No limit" nil)
  2306. (integer :tag "Max number of entries")
  2307. (repeat
  2308. (cons (choice :tag "Agenda type"
  2309. (const agenda)
  2310. (const todo)
  2311. (const tags)
  2312. (const search)
  2313. (const timeline))
  2314. (integer :tag "Max number of entries")))))
  2315. (defcustom org-agenda-max-todos nil
  2316. "Maximum number of TODOs to display in an agenda.
  2317. This can be nil (no limit) or an integer or an alist of agenda
  2318. types with an associated number of entries to display in this
  2319. type."
  2320. :version "24.4"
  2321. :package-version '(Org . "8.0")
  2322. :group 'org-agenda-custom-commands
  2323. :type '(choice (symbol :tag "No limit" nil)
  2324. (integer :tag "Max number of TODOs")
  2325. (repeat
  2326. (cons (choice :tag "Agenda type"
  2327. (const agenda)
  2328. (const todo)
  2329. (const tags)
  2330. (const search)
  2331. (const timeline))
  2332. (integer :tag "Max number of TODOs")))))
  2333. (defcustom org-agenda-max-tags nil
  2334. "Maximum number of tagged entries to display in an agenda.
  2335. This can be nil (no limit) or an integer or an alist of agenda
  2336. types with an associated number of entries to display in this
  2337. type."
  2338. :version "24.4"
  2339. :package-version '(Org . "8.0")
  2340. :group 'org-agenda-custom-commands
  2341. :type '(choice (symbol :tag "No limit" nil)
  2342. (integer :tag "Max number of tagged entries")
  2343. (repeat
  2344. (cons (choice :tag "Agenda type"
  2345. (const agenda)
  2346. (const todo)
  2347. (const tags)
  2348. (const search)
  2349. (const timeline))
  2350. (integer :tag "Max number of tagged entries")))))
  2351. (defcustom org-agenda-max-effort nil
  2352. "Maximum cumulated effort duration for the agenda.
  2353. This can be nil (no limit) or a number of minutes (as an integer)
  2354. or an alist of agenda types with an associated number of minutes
  2355. to limit entries to in this type."
  2356. :version "24.4"
  2357. :package-version '(Org . "8.0")
  2358. :group 'org-agenda-custom-commands
  2359. :type '(choice (symbol :tag "No limit" nil)
  2360. (integer :tag "Max number of minutes")
  2361. (repeat
  2362. (cons (choice :tag "Agenda type"
  2363. (const agenda)
  2364. (const todo)
  2365. (const tags)
  2366. (const search)
  2367. (const timeline))
  2368. (integer :tag "Max number of minutes")))))
  2369. (defvar org-keys nil)
  2370. (defvar org-match nil)
  2371. ;;;###autoload
  2372. (defun org-agenda (&optional arg org-keys restriction)
  2373. "Dispatch agenda commands to collect entries to the agenda buffer.
  2374. Prompts for a command to execute. Any prefix arg will be passed
  2375. on to the selected command. The default selections are:
  2376. a Call `org-agenda-list' to display the agenda for current day or week.
  2377. t Call `org-todo-list' to display the global todo list.
  2378. T Call `org-todo-list' to display the global todo list, select only
  2379. entries with a specific TODO keyword (the user gets a prompt).
  2380. m Call `org-tags-view' to display headlines with tags matching
  2381. a condition (the user is prompted for the condition).
  2382. M Like `m', but select only TODO entries, no ordinary headlines.
  2383. L Create a timeline for the current buffer.
  2384. e Export views to associated files.
  2385. s Search entries for keywords.
  2386. S Search entries for keywords, only with TODO keywords.
  2387. / Multi occur across all agenda files and also files listed
  2388. in `org-agenda-text-search-extra-files'.
  2389. < Restrict agenda commands to buffer, subtree, or region.
  2390. Press several times to get the desired effect.
  2391. > Remove a previous restriction.
  2392. # List \"stuck\" projects.
  2393. ! Configure what \"stuck\" means.
  2394. C Configure custom agenda commands.
  2395. More commands can be added by configuring the variable
  2396. `org-agenda-custom-commands'. In particular, specific tags and TODO keyword
  2397. searches can be pre-defined in this way.
  2398. If the current buffer is in Org-mode and visiting a file, you can also
  2399. first press `<' once to indicate that the agenda should be temporarily
  2400. \(until the next use of \\[org-agenda]) restricted to the current file.
  2401. Pressing `<' twice means to restrict to the current subtree or region
  2402. \(if active)."
  2403. (interactive "P")
  2404. (catch 'exit
  2405. (let* ((prefix-descriptions nil)
  2406. (org-agenda-buffer-name org-agenda-buffer-name)
  2407. (org-agenda-window-setup (if (equal (buffer-name)
  2408. org-agenda-buffer-name)
  2409. 'current-window
  2410. org-agenda-window-setup))
  2411. (org-agenda-custom-commands-orig org-agenda-custom-commands)
  2412. (org-agenda-custom-commands
  2413. ;; normalize different versions
  2414. (delq nil
  2415. (mapcar
  2416. (lambda (x)
  2417. (cond ((stringp (cdr x))
  2418. (push x prefix-descriptions)
  2419. nil)
  2420. ((stringp (nth 1 x)) x)
  2421. ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
  2422. (t (cons (car x) (cons "" (cdr x))))))
  2423. org-agenda-custom-commands)))
  2424. (org-agenda-custom-commands
  2425. (org-contextualize-keys
  2426. org-agenda-custom-commands org-agenda-custom-commands-contexts))
  2427. (buf (current-buffer))
  2428. (bfn (buffer-file-name (buffer-base-buffer)))
  2429. entry key type org-match lprops ans)
  2430. ;; Turn off restriction unless there is an overriding one,
  2431. (unless org-agenda-overriding-restriction
  2432. (unless (org-bound-and-true-p org-agenda-keep-restricted-file-list)
  2433. ;; There is a request to keep the file list in place
  2434. (put 'org-agenda-files 'org-restrict nil))
  2435. (setq org-agenda-restrict nil)
  2436. (move-marker org-agenda-restrict-begin nil)
  2437. (move-marker org-agenda-restrict-end nil))
  2438. ;; Delete old local properties
  2439. (put 'org-agenda-redo-command 'org-lprops nil)
  2440. ;; Delete previously set last-arguments
  2441. (put 'org-agenda-redo-command 'last-args nil)
  2442. ;; Remember where this call originated
  2443. (setq org-agenda-last-dispatch-buffer (current-buffer))
  2444. (unless org-keys
  2445. (setq ans (org-agenda-get-restriction-and-command prefix-descriptions)
  2446. org-keys (car ans)
  2447. restriction (cdr ans)))
  2448. ;; If we have sticky agenda buffers, set a name for the buffer,
  2449. ;; depending on the invoking keys. The user may still set this
  2450. ;; as a command option, which will overwrite what we do here.
  2451. (if org-agenda-sticky
  2452. (setq org-agenda-buffer-name
  2453. (format "*Org Agenda(%s)*" org-keys)))
  2454. ;; Establish the restriction, if any
  2455. (when (and (not org-agenda-overriding-restriction) restriction)
  2456. (put 'org-agenda-files 'org-restrict (list bfn))
  2457. (cond
  2458. ((eq restriction 'region)
  2459. (setq org-agenda-restrict (current-buffer))
  2460. (move-marker org-agenda-restrict-begin (region-beginning))
  2461. (move-marker org-agenda-restrict-end (region-end)))
  2462. ((eq restriction 'subtree)
  2463. (save-excursion
  2464. (setq org-agenda-restrict (current-buffer))
  2465. (org-back-to-heading t)
  2466. (move-marker org-agenda-restrict-begin (point))
  2467. (move-marker org-agenda-restrict-end
  2468. (progn (org-end-of-subtree t)))))))
  2469. ;; For example the todo list should not need it (but does...)
  2470. (cond
  2471. ((setq entry (assoc org-keys org-agenda-custom-commands))
  2472. (if (or (symbolp (nth 2 entry)) (functionp (nth 2 entry)))
  2473. (progn
  2474. (setq type (nth 2 entry) org-match (eval (nth 3 entry))
  2475. lprops (nth 4 entry))
  2476. (if org-agenda-sticky
  2477. (setq org-agenda-buffer-name
  2478. (or (and (stringp org-match) (format "*Org Agenda(%s:%s)*" org-keys org-match))
  2479. (format "*Org Agenda(%s)*" org-keys))))
  2480. (put 'org-agenda-redo-command 'org-lprops lprops)
  2481. (cond
  2482. ((eq type 'agenda)
  2483. (org-let lprops '(org-agenda-list current-prefix-arg)))
  2484. ((eq type 'agenda*)
  2485. (org-let lprops '(org-agenda-list current-prefix-arg nil nil t)))
  2486. ((eq type 'alltodo)
  2487. (org-let lprops '(org-todo-list current-prefix-arg)))
  2488. ((eq type 'search)
  2489. (org-let lprops '(org-search-view current-prefix-arg org-match nil)))
  2490. ((eq type 'stuck)
  2491. (org-let lprops '(org-agenda-list-stuck-projects
  2492. current-prefix-arg)))
  2493. ((eq type 'tags)
  2494. (org-let lprops '(org-tags-view current-prefix-arg org-match)))
  2495. ((eq type 'tags-todo)
  2496. (org-let lprops '(org-tags-view '(4) org-match)))
  2497. ((eq type 'todo)
  2498. (org-let lprops '(org-todo-list org-match)))
  2499. ((eq type 'tags-tree)
  2500. (org-check-for-org-mode)
  2501. (org-let lprops '(org-match-sparse-tree current-prefix-arg org-match)))
  2502. ((eq type 'todo-tree)
  2503. (org-check-for-org-mode)
  2504. (org-let lprops
  2505. '(org-occur (concat "^" org-outline-regexp "[ \t]*"
  2506. (regexp-quote org-match) "\\>"))))
  2507. ((eq type 'occur-tree)
  2508. (org-check-for-org-mode)
  2509. (org-let lprops '(org-occur org-match)))
  2510. ((functionp type)
  2511. (org-let lprops '(funcall type org-match)))
  2512. ((fboundp type)
  2513. (org-let lprops '(funcall type org-match)))
  2514. (t (user-error "Invalid custom agenda command type %s" type))))
  2515. (org-agenda-run-series (nth 1 entry) (cddr entry))))
  2516. ((equal org-keys "C")
  2517. (setq org-agenda-custom-commands org-agenda-custom-commands-orig)
  2518. (customize-variable 'org-agenda-custom-commands))
  2519. ((equal org-keys "a") (call-interactively 'org-agenda-list))
  2520. ((equal org-keys "s") (call-interactively 'org-search-view))
  2521. ((equal org-keys "S") (org-call-with-arg 'org-search-view (or arg '(4))))
  2522. ((equal org-keys "t") (call-interactively 'org-todo-list))
  2523. ((equal org-keys "T") (org-call-with-arg 'org-todo-list (or arg '(4))))
  2524. ((equal org-keys "m") (call-interactively 'org-tags-view))
  2525. ((equal org-keys "M") (org-call-with-arg 'org-tags-view (or arg '(4))))
  2526. ((equal org-keys "e") (call-interactively 'org-store-agenda-views))
  2527. ((equal org-keys "?") (org-tags-view nil "+FLAGGED")
  2528. (org-add-hook
  2529. 'post-command-hook
  2530. (lambda ()
  2531. (unless (current-message)
  2532. (let* ((m (org-agenda-get-any-marker))
  2533. (note (and m (org-entry-get m "THEFLAGGINGNOTE"))))
  2534. (when note
  2535. (message (concat
  2536. "FLAGGING-NOTE ([?] for more info): "
  2537. (org-add-props
  2538. (replace-regexp-in-string
  2539. "\\\\n" "//"
  2540. (copy-sequence note))
  2541. nil 'face 'org-warning)))))))
  2542. t t))
  2543. ((equal org-keys "L")
  2544. (unless (derived-mode-p 'org-mode)
  2545. (user-error "This is not an Org-mode file"))
  2546. (unless restriction
  2547. (put 'org-agenda-files 'org-restrict (list bfn))
  2548. (org-call-with-arg 'org-timeline arg)))
  2549. ((equal org-keys "#") (call-interactively 'org-agenda-list-stuck-projects))
  2550. ((equal org-keys "/") (call-interactively 'org-occur-in-agenda-files))
  2551. ((equal org-keys "!") (customize-variable 'org-stuck-projects))
  2552. (t (user-error "Invalid agenda key"))))))
  2553. (defvar org-agenda-multi)
  2554. (defun org-agenda-append-agenda ()
  2555. "Append another agenda view to the current one.
  2556. This function allows interactive building of block agendas.
  2557. Agenda views are separated by `org-agenda-block-separator'."
  2558. (interactive)
  2559. (unless (derived-mode-p 'org-agenda-mode)
  2560. (user-error "Can only append from within agenda buffer"))
  2561. (let ((org-agenda-multi t))
  2562. (org-agenda)
  2563. (widen)
  2564. (org-agenda-finalize)
  2565. (setq buffer-read-only t)
  2566. (org-agenda-fit-window-to-buffer)))
  2567. (defun org-agenda-normalize-custom-commands (cmds)
  2568. "Normalize custom commands CMDS."
  2569. (delq nil
  2570. (mapcar
  2571. (lambda (x)
  2572. (cond ((stringp (cdr x)) nil)
  2573. ((stringp (nth 1 x)) x)
  2574. ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
  2575. (t (cons (car x) (cons "" (cdr x))))))
  2576. cmds)))
  2577. (defun org-agenda-get-restriction-and-command (prefix-descriptions)
  2578. "The user interface for selecting an agenda command."
  2579. (catch 'exit
  2580. (let* ((bfn (buffer-file-name (buffer-base-buffer)))
  2581. (restrict-ok (and bfn (derived-mode-p 'org-mode)))
  2582. (region-p (org-region-active-p))
  2583. (custom org-agenda-custom-commands)
  2584. (selstring "")
  2585. restriction second-time
  2586. c entry key type match prefixes rmheader header-end custom1 desc
  2587. line lines left right n n1)
  2588. (save-window-excursion
  2589. (delete-other-windows)
  2590. (org-switch-to-buffer-other-window " *Agenda Commands*")
  2591. (erase-buffer)
  2592. (insert (eval-when-compile
  2593. (let ((header
  2594. "Press key for an agenda command: < Buffer, subtree/region restriction
  2595. -------------------------------- > Remove restriction
  2596. a Agenda for current week or day e Export agenda views
  2597. t List of all TODO entries T Entries with special TODO kwd
  2598. m Match a TAGS/PROP/TODO query M Like m, but only TODO entries
  2599. s Search for keywords S Like s, but only TODO entries
  2600. L Timeline for current buffer # List stuck projects (!=configure)
  2601. / Multi-occur C Configure custom agenda commands
  2602. ? Find :FLAGGED: entries * Toggle sticky agenda views
  2603. ")
  2604. (start 0))
  2605. (while (string-match
  2606. "\\(^\\| \\|(\\)\\(\\S-\\)\\( \\|=\\)"
  2607. header start)
  2608. (setq start (match-end 0))
  2609. (add-text-properties (match-beginning 2) (match-end 2)
  2610. '(face bold) header))
  2611. header)))
  2612. (setq header-end (point-marker))
  2613. (while t
  2614. (setq custom1 custom)
  2615. (when (eq rmheader t)
  2616. (org-goto-line 1)
  2617. (re-search-forward ":" nil t)
  2618. (delete-region (match-end 0) (point-at-eol))
  2619. (forward-char 1)
  2620. (looking-at "-+")
  2621. (delete-region (match-end 0) (point-at-eol))
  2622. (move-marker header-end (match-end 0)))
  2623. (goto-char header-end)
  2624. (delete-region (point) (point-max))
  2625. ;; Produce all the lines that describe custom commands and prefixes
  2626. (setq lines nil)
  2627. (while (setq entry (pop custom1))
  2628. (setq key (car entry) desc (nth 1 entry)
  2629. type (nth 2 entry)
  2630. match (nth 3 entry))
  2631. (if (> (length key) 1)
  2632. (add-to-list 'prefixes (string-to-char key))
  2633. (setq line
  2634. (format
  2635. "%-4s%-14s"
  2636. (org-add-props (copy-sequence key)
  2637. '(face bold))
  2638. (cond
  2639. ((string-match "\\S-" desc) desc)
  2640. ((eq type 'agenda) "Agenda for current week or day")
  2641. ((eq type 'agenda*) "Appointments for current week or day")
  2642. ((eq type 'alltodo) "List of all TODO entries")
  2643. ((eq type 'search) "Word search")
  2644. ((eq type 'stuck) "List of stuck projects")
  2645. ((eq type 'todo) "TODO keyword")
  2646. ((eq type 'tags) "Tags query")
  2647. ((eq type 'tags-todo) "Tags (TODO)")
  2648. ((eq type 'tags-tree) "Tags tree")
  2649. ((eq type 'todo-tree) "TODO kwd tree")
  2650. ((eq type 'occur-tree) "Occur tree")
  2651. ((functionp type) (if (symbolp type)
  2652. (symbol-name type)
  2653. "Lambda expression"))
  2654. (t "???"))))
  2655. (if org-agenda-menu-show-matcher
  2656. (setq line
  2657. (concat line ": "
  2658. (cond
  2659. ((stringp match)
  2660. (setq match (copy-sequence match))
  2661. (org-add-props match nil 'face 'org-warning))
  2662. ((listp type)
  2663. (format "set of %d commands" (length type))))))
  2664. (if (org-string-nw-p match)
  2665. (add-text-properties
  2666. 0 (length line) (list 'help-echo
  2667. (concat "Matcher: " match)) line)))
  2668. (push line lines)))
  2669. (setq lines (nreverse lines))
  2670. (when prefixes
  2671. (mapc (lambda (x)
  2672. (push
  2673. (format "%s %s"
  2674. (org-add-props (char-to-string x)
  2675. nil 'face 'bold)
  2676. (or (cdr (assoc (concat selstring
  2677. (char-to-string x))
  2678. prefix-descriptions))
  2679. "Prefix key"))
  2680. lines))
  2681. prefixes))
  2682. ;; Check if we should display in two columns
  2683. (if org-agenda-menu-two-columns
  2684. (progn
  2685. (setq n (length lines)
  2686. n1 (+ (/ n 2) (mod n 2))
  2687. right (nthcdr n1 lines)
  2688. left (copy-sequence lines))
  2689. (setcdr (nthcdr (1- n1) left) nil))
  2690. (setq left lines right nil))
  2691. (while left
  2692. (insert "\n" (pop left))
  2693. (when right
  2694. (if (< (current-column) 40)
  2695. (move-to-column 40 t)
  2696. (insert " "))
  2697. (insert (pop right))))
  2698. ;; Make the window the right size
  2699. (goto-char (point-min))
  2700. (if second-time
  2701. (if (not (pos-visible-in-window-p (point-max)))
  2702. (org-fit-window-to-buffer))
  2703. (setq second-time t)
  2704. (org-fit-window-to-buffer))
  2705. ;; Ask for selection
  2706. (message "Press key for agenda command%s:"
  2707. (if (or restrict-ok org-agenda-overriding-restriction)
  2708. (if org-agenda-overriding-restriction
  2709. " (restriction lock active)"
  2710. (if restriction
  2711. (format " (restricted to %s)" restriction)
  2712. " (unrestricted)"))
  2713. ""))
  2714. (setq c (read-char-exclusive))
  2715. (message "")
  2716. (cond
  2717. ((assoc (char-to-string c) custom)
  2718. (setq selstring (concat selstring (char-to-string c)))
  2719. (throw 'exit (cons selstring restriction)))
  2720. ((memq c prefixes)
  2721. (setq selstring (concat selstring (char-to-string c))
  2722. prefixes nil
  2723. rmheader (or rmheader t)
  2724. custom (delq nil (mapcar
  2725. (lambda (x)
  2726. (if (or (= (length (car x)) 1)
  2727. (/= (string-to-char (car x)) c))
  2728. nil
  2729. (cons (substring (car x) 1) (cdr x))))
  2730. custom))))
  2731. ((eq c ?*)
  2732. (call-interactively 'org-toggle-sticky-agenda)
  2733. (sit-for 2))
  2734. ((and (not restrict-ok) (memq c '(?1 ?0 ?<)))
  2735. (message "Restriction is only possible in Org-mode buffers")
  2736. (ding) (sit-for 1))
  2737. ((eq c ?1)
  2738. (org-agenda-remove-restriction-lock 'noupdate)
  2739. (setq restriction 'buffer))
  2740. ((eq c ?0)
  2741. (org-agenda-remove-restriction-lock 'noupdate)
  2742. (setq restriction (if region-p 'region 'subtree)))
  2743. ((eq c ?<)
  2744. (org-agenda-remove-restriction-lock 'noupdate)
  2745. (setq restriction
  2746. (cond
  2747. ((eq restriction 'buffer)
  2748. (if region-p 'region 'subtree))
  2749. ((memq restriction '(subtree region))
  2750. nil)
  2751. (t 'buffer))))
  2752. ((eq c ?>)
  2753. (org-agenda-remove-restriction-lock 'noupdate)
  2754. (setq restriction nil))
  2755. ((and (equal selstring "") (memq c '(?s ?S ?a ?t ?m ?L ?C ?e ?T ?M ?# ?! ?/ ??)))
  2756. (throw 'exit (cons (setq selstring (char-to-string c)) restriction)))
  2757. ((and (> (length selstring) 0) (eq c ?\d))
  2758. (delete-window)
  2759. (org-agenda-get-restriction-and-command prefix-descriptions))
  2760. ((equal c ?q) (error "Abort"))
  2761. (t (user-error "Invalid key %c" c))))))))
  2762. (defun org-agenda-fit-window-to-buffer ()
  2763. "Fit the window to the buffer size."
  2764. (and (memq org-agenda-window-setup '(reorganize-frame))
  2765. (fboundp 'fit-window-to-buffer)
  2766. (org-fit-window-to-buffer
  2767. nil
  2768. (floor (* (frame-height) (cdr org-agenda-window-frame-fractions)))
  2769. (floor (* (frame-height) (car org-agenda-window-frame-fractions))))))
  2770. (defvar org-cmd nil)
  2771. (defvar org-agenda-overriding-cmd nil)
  2772. (defvar org-agenda-overriding-arguments nil)
  2773. (defvar org-agenda-overriding-cmd-arguments nil)
  2774. (defun org-agenda-run-series (name series)
  2775. "Run agenda NAME as a SERIES of agenda commands."
  2776. (org-let (nth 1 series) '(org-agenda-prepare name))
  2777. ;; We need to reset agenda markers here, because when constructing a
  2778. ;; block agenda, the individual blocks do not do that.
  2779. (org-agenda-reset-markers)
  2780. (let* ((org-agenda-multi t)
  2781. (redo (list 'org-agenda-run-series name (list 'quote series)))
  2782. (cmds (car series))
  2783. (gprops (nth 1 series))
  2784. match ;; The byte compiler incorrectly complains about this. Keep it!
  2785. org-cmd type lprops)
  2786. (while (setq org-cmd (pop cmds))
  2787. (setq type (car org-cmd)
  2788. match (eval (nth 1 org-cmd))
  2789. lprops (nth 2 org-cmd))
  2790. (let ((org-agenda-overriding-arguments
  2791. (if (eq org-agenda-overriding-cmd org-cmd)
  2792. (or org-agenda-overriding-arguments
  2793. org-agenda-overriding-cmd-arguments))))
  2794. (cond
  2795. ((eq type 'agenda)
  2796. (org-let2 gprops lprops
  2797. '(call-interactively 'org-agenda-list)))
  2798. ((eq type 'agenda*)
  2799. (org-let2 gprops lprops
  2800. '(funcall 'org-agenda-list nil nil t)))
  2801. ((eq type 'alltodo)
  2802. (org-let2 gprops lprops
  2803. '(call-interactively 'org-todo-list)))
  2804. ((eq type 'search)
  2805. (org-let2 gprops lprops
  2806. '(org-search-view current-prefix-arg match nil)))
  2807. ((eq type 'stuck)
  2808. (org-let2 gprops lprops
  2809. '(call-interactively 'org-agenda-list-stuck-projects)))
  2810. ((eq type 'tags)
  2811. (org-let2 gprops lprops
  2812. '(org-tags-view current-prefix-arg match)))
  2813. ((eq type 'tags-todo)
  2814. (org-let2 gprops lprops
  2815. '(org-tags-view '(4) match)))
  2816. ((eq type 'todo)
  2817. (org-let2 gprops lprops
  2818. '(org-todo-list match)))
  2819. ((fboundp type)
  2820. (org-let2 gprops lprops
  2821. '(funcall type match)))
  2822. (t (error "Invalid type in command series")))))
  2823. (widen)
  2824. (let ((inhibit-read-only t))
  2825. (add-text-properties (point-min) (point-max)
  2826. `(org-series t org-series-redo-cmd ,redo)))
  2827. (setq org-agenda-redo-command redo)
  2828. (goto-char (point-min)))
  2829. (org-agenda-fit-window-to-buffer)
  2830. (org-let (nth 1 series) '(org-agenda-finalize)))
  2831. ;;;###autoload
  2832. (defmacro org-batch-agenda (cmd-key &rest parameters)
  2833. "Run an agenda command in batch mode and send the result to STDOUT.
  2834. If CMD-KEY is a string of length 1, it is used as a key in
  2835. `org-agenda-custom-commands' and triggers this command. If it is a
  2836. longer string it is used as a tags/todo match string.
  2837. Parameters are alternating variable names and values that will be bound
  2838. before running the agenda command."
  2839. (org-eval-in-environment (org-make-parameter-alist parameters)
  2840. (let (org-agenda-sticky)
  2841. (if (> (length cmd-key) 2)
  2842. (org-tags-view nil cmd-key)
  2843. (org-agenda nil cmd-key))))
  2844. (set-buffer org-agenda-buffer-name)
  2845. (princ (buffer-string)))
  2846. (defvar org-agenda-info nil)
  2847. ;;;###autoload
  2848. (defmacro org-batch-agenda-csv (cmd-key &rest parameters)
  2849. "Run an agenda command in batch mode and send the result to STDOUT.
  2850. If CMD-KEY is a string of length 1, it is used as a key in
  2851. `org-agenda-custom-commands' and triggers this command. If it is a
  2852. longer string it is used as a tags/todo match string.
  2853. Parameters are alternating variable names and values that will be bound
  2854. before running the agenda command.
  2855. The output gives a line for each selected agenda item. Each
  2856. item is a list of comma-separated values, like this:
  2857. category,head,type,todo,tags,date,time,extra,priority-l,priority-n
  2858. category The category of the item
  2859. head The headline, without TODO kwd, TAGS and PRIORITY
  2860. type The type of the agenda entry, can be
  2861. todo selected in TODO match
  2862. tagsmatch selected in tags match
  2863. diary imported from diary
  2864. deadline a deadline on given date
  2865. scheduled scheduled on given date
  2866. timestamp entry has timestamp on given date
  2867. closed entry was closed on given date
  2868. upcoming-deadline warning about deadline
  2869. past-scheduled forwarded scheduled item
  2870. block entry has date block including g. date
  2871. todo The todo keyword, if any
  2872. tags All tags including inherited ones, separated by colons
  2873. date The relevant date, like 2007-2-14
  2874. time The time, like 15:00-16:50
  2875. extra Sting with extra planning info
  2876. priority-l The priority letter if any was given
  2877. priority-n The computed numerical priority
  2878. agenda-day The day in the agenda where this is listed"
  2879. (org-eval-in-environment (append '((org-agenda-remove-tags t))
  2880. (org-make-parameter-alist parameters))
  2881. (if (> (length cmd-key) 2)
  2882. (org-tags-view nil cmd-key)
  2883. (org-agenda nil cmd-key)))
  2884. (set-buffer org-agenda-buffer-name)
  2885. (let* ((lines (org-split-string (buffer-string) "\n"))
  2886. line)
  2887. (while (setq line (pop lines))
  2888. (catch 'next
  2889. (if (not (get-text-property 0 'org-category line)) (throw 'next nil))
  2890. (setq org-agenda-info
  2891. (org-fix-agenda-info (text-properties-at 0 line)))
  2892. (princ
  2893. (mapconcat 'org-agenda-export-csv-mapper
  2894. '(org-category txt type todo tags date time extra
  2895. priority-letter priority agenda-day)
  2896. ","))
  2897. (princ "\n")))))
  2898. (defun org-fix-agenda-info (props)
  2899. "Make sure all properties on an agenda item have a canonical form.
  2900. This ensures the export commands can easily use it."
  2901. (let (tmp re)
  2902. (when (setq tmp (plist-get props 'tags))
  2903. (setq props (plist-put props 'tags (mapconcat 'identity tmp ":"))))
  2904. (when (setq tmp (plist-get props 'date))
  2905. (if (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
  2906. (let ((calendar-date-display-form '(year "-" month "-" day)))
  2907. '((format "%4d, %9s %2s, %4s" dayname monthname day year))
  2908. (setq tmp (calendar-date-string tmp)))
  2909. (setq props (plist-put props 'date tmp)))
  2910. (when (setq tmp (plist-get props 'day))
  2911. (if (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
  2912. (let ((calendar-date-display-form '(year "-" month "-" day)))
  2913. (setq tmp (calendar-date-string tmp)))
  2914. (setq props (plist-put props 'day tmp))
  2915. (setq props (plist-put props 'agenda-day tmp)))
  2916. (when (setq tmp (plist-get props 'txt))
  2917. (when (string-match "\\[#\\([A-Z0-9]\\)\\] ?" tmp)
  2918. (plist-put props 'priority-letter (match-string 1 tmp))
  2919. (setq tmp (replace-match "" t t tmp)))
  2920. (when (and (setq re (plist-get props 'org-todo-regexp))
  2921. (setq re (concat "\\`\\.*" re " ?"))
  2922. (string-match re tmp))
  2923. (plist-put props 'todo (match-string 1 tmp))
  2924. (setq tmp (replace-match "" t t tmp)))
  2925. (plist-put props 'txt tmp)))
  2926. props)
  2927. (defun org-agenda-export-csv-mapper (prop)
  2928. (let ((res (plist-get org-agenda-info prop)))
  2929. (setq res
  2930. (cond
  2931. ((not res) "")
  2932. ((stringp res) res)
  2933. (t (prin1-to-string res))))
  2934. (while (string-match "," res)
  2935. (setq res (replace-match ";" t t res)))
  2936. (org-trim res)))
  2937. ;;;###autoload
  2938. (defun org-store-agenda-views (&rest parameters)
  2939. "Store agenda views."
  2940. (interactive)
  2941. (eval (list 'org-batch-store-agenda-views)))
  2942. ;;;###autoload
  2943. (defmacro org-batch-store-agenda-views (&rest parameters)
  2944. "Run all custom agenda commands that have a file argument."
  2945. (let ((cmds (org-agenda-normalize-custom-commands org-agenda-custom-commands))
  2946. (pop-up-frames nil)
  2947. (dir default-directory)
  2948. (pars (org-make-parameter-alist parameters))
  2949. cmd thiscmdkey thiscmdcmd match files opts cmd-or-set bufname)
  2950. (save-window-excursion
  2951. (while cmds
  2952. (setq cmd (pop cmds)
  2953. thiscmdkey (car cmd)
  2954. thiscmdcmd (cdr cmd)
  2955. match (nth 2 thiscmdcmd)
  2956. bufname (if org-agenda-sticky
  2957. (or (and (stringp match)
  2958. (format "*Org Agenda(%s:%s)*" thiscmdkey match))
  2959. (format "*Org Agenda(%s)*" thiscmdkey))
  2960. org-agenda-buffer-name)
  2961. cmd-or-set (nth 2 cmd)
  2962. opts (nth (if (listp cmd-or-set) 3 4) cmd)
  2963. files (nth (if (listp cmd-or-set) 4 5) cmd))
  2964. (if (stringp files) (setq files (list files)))
  2965. (when files
  2966. (org-eval-in-environment (append org-agenda-exporter-settings
  2967. opts pars)
  2968. (org-agenda nil thiscmdkey))
  2969. (set-buffer bufname)
  2970. (while files
  2971. (org-eval-in-environment (append org-agenda-exporter-settings
  2972. opts pars)
  2973. (org-agenda-write (expand-file-name (pop files) dir) nil t bufname)))
  2974. (and (get-buffer bufname)
  2975. (kill-buffer bufname)))))))
  2976. (defvar org-agenda-current-span nil
  2977. "The current span used in the agenda view.") ; local variable in the agenda buffer
  2978. (defun org-agenda-mark-header-line (pos)
  2979. "Mark the line at POS as an agenda structure header."
  2980. (save-excursion
  2981. (goto-char pos)
  2982. (put-text-property (point-at-bol) (point-at-eol)
  2983. 'org-agenda-structural-header t)
  2984. (when org-agenda-title-append
  2985. (put-text-property (point-at-bol) (point-at-eol)
  2986. 'org-agenda-title-append org-agenda-title-append))))
  2987. (defvar org-mobile-creating-agendas) ; defined in org-mobile.el
  2988. (defvar org-agenda-write-buffer-name "Agenda View")
  2989. (defun org-agenda-write (file &optional open nosettings agenda-bufname)
  2990. "Write the current buffer (an agenda view) as a file.
  2991. Depending on the extension of the file name, plain text (.txt),
  2992. HTML (.html or .htm), PDF (.pdf) or Postscript (.ps) is produced.
  2993. If the extension is .ics, run icalendar export over all files used
  2994. to construct the agenda and limit the export to entries listed in the
  2995. agenda now.
  2996. If the extension is .org, collect all subtrees corresponding to the
  2997. agenda entries and add them in an .org file.
  2998. With prefix argument OPEN, open the new file immediately.
  2999. If NOSETTINGS is given, do not scope the settings of
  3000. `org-agenda-exporter-settings' into the export commands. This is used when
  3001. the settings have already been scoped and we do not wish to overrule other,
  3002. higher priority settings.
  3003. If AGENDA-BUFFER-NAME, use this as the buffer name for the agenda to write."
  3004. (interactive "FWrite agenda to file: \nP")
  3005. (if (or (not (file-writable-p file))
  3006. (and (file-exists-p file)
  3007. (if (org-called-interactively-p 'any)
  3008. (not (y-or-n-p (format "Overwrite existing file %s? " file))))))
  3009. (user-error "Cannot write agenda to file %s" file))
  3010. (org-let (if nosettings nil org-agenda-exporter-settings)
  3011. '(save-excursion
  3012. (save-window-excursion
  3013. (let ((bs (copy-sequence (buffer-string))) beg content)
  3014. (with-temp-buffer
  3015. (rename-buffer org-agenda-write-buffer-name t)
  3016. (set-buffer-modified-p nil)
  3017. (insert bs)
  3018. (org-agenda-remove-marked-text 'org-filtered)
  3019. (run-hooks 'org-agenda-before-write-hook)
  3020. (cond
  3021. ((org-bound-and-true-p org-mobile-creating-agendas)
  3022. (org-mobile-write-agenda-for-mobile file))
  3023. ((string-match "\\.org\\'" file)
  3024. (let (content p m message-log-max)
  3025. (goto-char (point-min))
  3026. (while (setq p (next-single-property-change (point) 'org-hd-marker nil))
  3027. (goto-char p)
  3028. (setq m (get-text-property (point) 'org-hd-marker))
  3029. (when m
  3030. (push (save-excursion
  3031. (set-buffer (marker-buffer m))
  3032. (goto-char m)
  3033. (org-copy-subtree 1 nil t t)
  3034. org-subtree-clip)
  3035. content)))
  3036. (find-file file)
  3037. (erase-buffer)
  3038. (mapcar (lambda (s) (org-paste-subtree 1 s)) (reverse content))
  3039. (write-file file)
  3040. (kill-buffer (current-buffer))
  3041. (message "Org file written to %s" file)))
  3042. ((string-match "\\.html?\\'" file)
  3043. (require 'htmlize)
  3044. (set-buffer (htmlize-buffer (current-buffer)))
  3045. (when org-agenda-export-html-style
  3046. ;; replace <style> section with org-agenda-export-html-style
  3047. (goto-char (point-min))
  3048. (kill-region (- (search-forward "<style") 6)
  3049. (search-forward "</style>"))
  3050. (insert org-agenda-export-html-style))
  3051. (write-file file)
  3052. (kill-buffer (current-buffer))
  3053. (message "HTML written to %s" file))
  3054. ((string-match "\\.ps\\'" file)
  3055. (require 'ps-print)
  3056. (ps-print-buffer-with-faces file)
  3057. (message "Postscript written to %s" file))
  3058. ((string-match "\\.pdf\\'" file)
  3059. (require 'ps-print)
  3060. (ps-print-buffer-with-faces
  3061. (concat (file-name-sans-extension file) ".ps"))
  3062. (call-process "ps2pdf" nil nil nil
  3063. (expand-file-name
  3064. (concat (file-name-sans-extension file) ".ps"))
  3065. (expand-file-name file))
  3066. (delete-file (concat (file-name-sans-extension file) ".ps"))
  3067. (message "PDF written to %s" file))
  3068. ((string-match "\\.ics\\'" file)
  3069. (require 'ox-icalendar)
  3070. (org-icalendar-export-current-agenda (expand-file-name file)))
  3071. (t
  3072. (let ((bs (buffer-string)))
  3073. (find-file file)
  3074. (erase-buffer)
  3075. (insert bs)
  3076. (save-buffer 0)
  3077. (kill-buffer (current-buffer))
  3078. (message "Plain text written to %s" file))))))))
  3079. (set-buffer (or agenda-bufname
  3080. (and (org-called-interactively-p 'any) (buffer-name))
  3081. org-agenda-buffer-name)))
  3082. (when open (org-open-file file)))
  3083. (defun org-agenda-remove-marked-text (property &optional value)
  3084. "Delete all text marked with VALUE of PROPERTY.
  3085. VALUE defaults to t."
  3086. (let (beg)
  3087. (setq value (or value t))
  3088. (while (setq beg (text-property-any (point-min) (point-max)
  3089. property value))
  3090. (delete-region
  3091. beg (or (next-single-property-change beg property)
  3092. (point-max))))))
  3093. (defun org-agenda-add-entry-text ()
  3094. "Add entry text to agenda lines.
  3095. This will add a maximum of `org-agenda-add-entry-text-maxlines' lines of the
  3096. entry text following headings shown in the agenda.
  3097. Drawers will be excluded, also the line with scheduling/deadline info."
  3098. (when (and (> org-agenda-add-entry-text-maxlines 0)
  3099. (not (org-bound-and-true-p org-mobile-creating-agendas)))
  3100. (let (m txt)
  3101. (goto-char (point-min))
  3102. (while (not (eobp))
  3103. (if (not (setq m (org-get-at-bol 'org-hd-marker)))
  3104. (beginning-of-line 2)
  3105. (setq txt (org-agenda-get-some-entry-text
  3106. m org-agenda-add-entry-text-maxlines " > "))
  3107. (end-of-line 1)
  3108. (if (string-match "\\S-" txt)
  3109. (insert "\n" txt)
  3110. (or (eobp) (forward-char 1))))))))
  3111. (defun org-agenda-get-some-entry-text (marker n-lines &optional indent
  3112. &rest keep)
  3113. "Extract entry text from MARKER, at most N-LINES lines.
  3114. This will ignore drawers etc, just get the text.
  3115. If INDENT is given, prefix every line with this string. If KEEP is
  3116. given, it is a list of symbols, defining stuff that should not be
  3117. removed from the entry content. Currently only `planning' is allowed here."
  3118. (let (txt drawer-re kwd-time-re ind)
  3119. (save-excursion
  3120. (with-current-buffer (marker-buffer marker)
  3121. (if (not (derived-mode-p 'org-mode))
  3122. (setq txt "")
  3123. (save-excursion
  3124. (save-restriction
  3125. (widen)
  3126. (goto-char marker)
  3127. (end-of-line 1)
  3128. (setq txt (buffer-substring
  3129. (min (1+ (point)) (point-max))
  3130. (progn (outline-next-heading) (point)))
  3131. drawer-re org-drawer-regexp
  3132. kwd-time-re (concat "^[ \t]*" org-keyword-time-regexp
  3133. ".*\n?"))
  3134. (with-temp-buffer
  3135. (insert txt)
  3136. (when org-agenda-add-entry-text-descriptive-links
  3137. (goto-char (point-min))
  3138. (while (org-activate-bracket-links (point-max))
  3139. (add-text-properties (match-beginning 0) (match-end 0)
  3140. '(face org-link))))
  3141. (goto-char (point-min))
  3142. (while (re-search-forward org-bracket-link-regexp (point-max) t)
  3143. (set-text-properties (match-beginning 0) (match-end 0)
  3144. nil))
  3145. (goto-char (point-min))
  3146. (while (re-search-forward drawer-re nil t)
  3147. (delete-region
  3148. (match-beginning 0)
  3149. (progn (re-search-forward
  3150. "^[ \t]*:END:.*\n?" nil 'move)
  3151. (point))))
  3152. (unless (member 'planning keep)
  3153. (goto-char (point-min))
  3154. (while (re-search-forward kwd-time-re nil t)
  3155. (replace-match "")))
  3156. (goto-char (point-min))
  3157. (when org-agenda-entry-text-exclude-regexps
  3158. (let ((re-list org-agenda-entry-text-exclude-regexps) re)
  3159. (while (setq re (pop re-list))
  3160. (goto-char (point-min))
  3161. (while (re-search-forward re nil t)
  3162. (replace-match "")))))
  3163. (goto-char (point-max))
  3164. (skip-chars-backward " \t\n")
  3165. (if (looking-at "[ \t\n]+\\'") (replace-match ""))
  3166. ;; find and remove min common indentation
  3167. (goto-char (point-min))
  3168. (untabify (point-min) (point-max))
  3169. (setq ind (org-get-indentation))
  3170. (while (not (eobp))
  3171. (unless (looking-at "[ \t]*$")
  3172. (setq ind (min ind (org-get-indentation))))
  3173. (beginning-of-line 2))
  3174. (goto-char (point-min))
  3175. (while (not (eobp))
  3176. (unless (looking-at "[ \t]*$")
  3177. (move-to-column ind)
  3178. (delete-region (point-at-bol) (point)))
  3179. (beginning-of-line 2))
  3180. (run-hooks 'org-agenda-entry-text-cleanup-hook)
  3181. (goto-char (point-min))
  3182. (when indent
  3183. (while (and (not (eobp)) (re-search-forward "^" nil t))
  3184. (replace-match indent t t)))
  3185. (goto-char (point-min))
  3186. (while (looking-at "[ \t]*\n") (replace-match ""))
  3187. (goto-char (point-max))
  3188. (when (> (org-current-line)
  3189. n-lines)
  3190. (org-goto-line (1+ n-lines))
  3191. (backward-char 1))
  3192. (setq txt (buffer-substring (point-min) (point)))))))))
  3193. txt))
  3194. (defun org-check-for-org-mode ()
  3195. "Make sure current buffer is in org-mode. Error if not."
  3196. (or (derived-mode-p 'org-mode)
  3197. (error "Cannot execute org-mode agenda command on buffer in %s"
  3198. major-mode)))
  3199. ;;; Agenda prepare and finalize
  3200. (defvar org-agenda-multi nil) ; dynamically scoped
  3201. (defvar org-agenda-pre-window-conf nil)
  3202. (defvar org-agenda-columns-active nil)
  3203. (defvar org-agenda-name nil)
  3204. (defvar org-agenda-tag-filter nil)
  3205. (defvar org-agenda-category-filter nil)
  3206. (defvar org-agenda-regexp-filter nil)
  3207. (defvar org-agenda-top-headline-filter nil)
  3208. (defvar org-agenda-tag-filter-while-redo nil)
  3209. (defvar org-agenda-tag-filter-preset nil
  3210. "A preset of the tags filter used for secondary agenda filtering.
  3211. This must be a list of strings, each string must be a single tag preceded
  3212. by \"+\" or \"-\".
  3213. This variable should not be set directly, but agenda custom commands can
  3214. bind it in the options section. The preset filter is a global property of
  3215. the entire agenda view. In a block agenda, it will not work reliably to
  3216. define a filter for one of the individual blocks. You need to set it in
  3217. the global options and expect it to be applied to the entire view.")
  3218. (defvar org-agenda-category-filter-preset nil
  3219. "A preset of the category filter used for secondary agenda filtering.
  3220. This must be a list of strings, each string must be a single category
  3221. preceded by \"+\" or \"-\".
  3222. This variable should not be set directly, but agenda custom commands can
  3223. bind it in the options section. The preset filter is a global property of
  3224. the entire agenda view. In a block agenda, it will not work reliably to
  3225. define a filter for one of the individual blocks. You need to set it in
  3226. the global options and expect it to be applied to the entire view.")
  3227. (defvar org-agenda-regexp-filter-preset nil
  3228. "A preset of the regexp filter used for secondary agenda filtering.
  3229. This must be a list of strings, each string must be a single regexp
  3230. preceded by \"+\" or \"-\".
  3231. This variable should not be set directly, but agenda custom commands can
  3232. bind it in the options section. The preset filter is a global property of
  3233. the entire agenda view. In a block agenda, it will not work reliably to
  3234. define a filter for one of the individual blocks. You need to set it in
  3235. the global options and expect it to be applied to the entire view.")
  3236. (defun org-agenda-use-sticky-p ()
  3237. "Return non-nil if an agenda buffer named
  3238. `org-agenda-buffer-name' exists and should be shown instead of
  3239. generating a new one."
  3240. (and
  3241. ;; turned off by user
  3242. org-agenda-sticky
  3243. ;; For multi-agenda buffer already exists
  3244. (not org-agenda-multi)
  3245. ;; buffer found
  3246. (get-buffer org-agenda-buffer-name)
  3247. ;; C-u parameter is same as last call
  3248. (with-current-buffer (get-buffer org-agenda-buffer-name)
  3249. (and
  3250. (equal current-prefix-arg
  3251. org-agenda-last-prefix-arg)
  3252. ;; In case user turned stickiness on, while having existing
  3253. ;; Agenda buffer active, don't reuse that buffer, because it
  3254. ;; does not have org variables local
  3255. org-agenda-this-buffer-is-sticky))))
  3256. (defun org-agenda-prepare-window (abuf filter-alist)
  3257. "Setup agenda buffer in the window.
  3258. ABUF is the buffer for the agenda window.
  3259. FILTER-ALIST is an alist of filters we need to apply when
  3260. `org-agenda-persistent-filter' is non-nil."
  3261. (let* ((awin (get-buffer-window abuf)) wconf)
  3262. (cond
  3263. ((equal (current-buffer) abuf) nil)
  3264. (awin (select-window awin))
  3265. ((not (setq wconf (current-window-configuration))))
  3266. ((equal org-agenda-window-setup 'current-window)
  3267. (org-pop-to-buffer-same-window abuf))
  3268. ((equal org-agenda-window-setup 'other-window)
  3269. (org-switch-to-buffer-other-window abuf))
  3270. ((equal org-agenda-window-setup 'other-frame)
  3271. (switch-to-buffer-other-frame abuf))
  3272. ((equal org-agenda-window-setup 'reorganize-frame)
  3273. (delete-other-windows)
  3274. (org-switch-to-buffer-other-window abuf)))
  3275. (setq org-agenda-tag-filter (cdr (assoc 'tag filter-alist)))
  3276. (setq org-agenda-category-filter (cdr (assoc 'cat filter-alist)))
  3277. (setq org-agenda-regexp-filter (cdr (assoc 're filter-alist)))
  3278. ;; Additional test in case agenda is invoked from within agenda
  3279. ;; buffer via elisp link.
  3280. (unless (equal (current-buffer) abuf)
  3281. (org-pop-to-buffer-same-window abuf))
  3282. (setq org-agenda-pre-window-conf
  3283. (or org-agenda-pre-window-conf wconf))))
  3284. (defun org-agenda-prepare (&optional name)
  3285. (let ((filter-alist (if org-agenda-persistent-filter
  3286. (list `(tag . ,org-agenda-tag-filter)
  3287. `(re . ,org-agenda-regexp-filter)
  3288. `(car . ,org-agenda-category-filter)))))
  3289. (if (org-agenda-use-sticky-p)
  3290. (progn
  3291. ;; Popup existing buffer
  3292. (org-agenda-prepare-window (get-buffer org-agenda-buffer-name)
  3293. filter-alist)
  3294. (message "Sticky Agenda buffer, use `r' to refresh")
  3295. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  3296. (throw 'exit "Sticky Agenda buffer, use `r' to refresh"))
  3297. (setq org-todo-keywords-for-agenda nil)
  3298. (setq org-drawers-for-agenda nil)
  3299. (put 'org-agenda-tag-filter :preset-filter
  3300. org-agenda-tag-filter-preset)
  3301. (put 'org-agenda-category-filter :preset-filter
  3302. org-agenda-category-filter-preset)
  3303. (put 'org-agenda-regexp-filter :preset-filter
  3304. org-agenda-regexp-filter-preset)
  3305. (if org-agenda-multi
  3306. (progn
  3307. (setq buffer-read-only nil)
  3308. (goto-char (point-max))
  3309. (unless (or (bobp) org-agenda-compact-blocks
  3310. (not org-agenda-block-separator))
  3311. (insert "\n"
  3312. (if (stringp org-agenda-block-separator)
  3313. org-agenda-block-separator
  3314. (make-string (window-width) org-agenda-block-separator))
  3315. "\n"))
  3316. (narrow-to-region (point) (point-max)))
  3317. (setq org-done-keywords-for-agenda nil)
  3318. ;; Setting any org variables that are in org-agenda-local-vars
  3319. ;; list need to be done after the prepare call
  3320. (org-agenda-prepare-window
  3321. (get-buffer-create org-agenda-buffer-name) filter-alist)
  3322. (setq buffer-read-only nil)
  3323. (org-agenda-reset-markers)
  3324. (let ((inhibit-read-only t)) (erase-buffer))
  3325. (org-agenda-mode)
  3326. (setq org-agenda-buffer (current-buffer))
  3327. (setq org-agenda-contributing-files nil)
  3328. (setq org-agenda-columns-active nil)
  3329. (org-agenda-prepare-buffers (org-agenda-files nil 'ifmode))
  3330. (setq org-todo-keywords-for-agenda
  3331. (org-uniquify org-todo-keywords-for-agenda))
  3332. (setq org-done-keywords-for-agenda
  3333. (org-uniquify org-done-keywords-for-agenda))
  3334. (setq org-drawers-for-agenda (org-uniquify org-drawers-for-agenda))
  3335. (setq org-agenda-last-prefix-arg current-prefix-arg)
  3336. (setq org-agenda-this-buffer-name org-agenda-buffer-name)
  3337. (and name (not org-agenda-name)
  3338. (org-set-local 'org-agenda-name name)))
  3339. (setq buffer-read-only nil))))
  3340. (defvar org-agenda-overriding-columns-format) ; From org-colview.el
  3341. (defun org-agenda-finalize ()
  3342. "Finishing touch for the agenda buffer, called just before displaying it."
  3343. (unless org-agenda-multi
  3344. (save-excursion
  3345. (let ((inhibit-read-only t))
  3346. (goto-char (point-min))
  3347. (save-excursion
  3348. (while (org-activate-bracket-links (point-max))
  3349. (add-text-properties (match-beginning 0) (match-end 0)
  3350. '(face org-link))))
  3351. (save-excursion
  3352. (while (org-activate-plain-links (point-max))
  3353. (add-text-properties (match-beginning 0) (match-end 0)
  3354. '(face org-link))))
  3355. (unless (eq org-agenda-remove-tags t)
  3356. (org-agenda-align-tags))
  3357. (unless org-agenda-with-colors
  3358. (remove-text-properties (point-min) (point-max) '(face nil)))
  3359. (if (and (boundp 'org-agenda-overriding-columns-format)
  3360. org-agenda-overriding-columns-format)
  3361. (org-set-local 'org-agenda-overriding-columns-format
  3362. org-agenda-overriding-columns-format))
  3363. (if (and (boundp 'org-agenda-view-columns-initially)
  3364. org-agenda-view-columns-initially)
  3365. (org-agenda-columns))
  3366. (when org-agenda-fontify-priorities
  3367. (org-agenda-fontify-priorities))
  3368. (when (and org-agenda-dim-blocked-tasks org-blocker-hook)
  3369. (org-agenda-dim-blocked-tasks))
  3370. (org-agenda-mark-clocking-task)
  3371. (when org-agenda-entry-text-mode
  3372. (org-agenda-entry-text-hide)
  3373. (org-agenda-entry-text-show))
  3374. (if (and (functionp 'org-habit-insert-consistency-graphs)
  3375. (save-excursion (next-single-property-change (point-min) 'org-habit-p)))
  3376. (org-habit-insert-consistency-graphs))
  3377. (setq org-agenda-type (org-get-at-bol 'org-agenda-type))
  3378. (unless (or (eq org-agenda-show-inherited-tags 'always)
  3379. (and (listp org-agenda-show-inherited-tags)
  3380. (memq org-agenda-type org-agenda-show-inherited-tags))
  3381. (and (eq org-agenda-show-inherited-tags t)
  3382. (or (eq org-agenda-use-tag-inheritance t)
  3383. (and (listp org-agenda-use-tag-inheritance)
  3384. (not (memq org-agenda-type
  3385. org-agenda-use-tag-inheritance))))))
  3386. (let (mrk)
  3387. (save-excursion
  3388. (goto-char (point-min))
  3389. (while (equal (forward-line) 0)
  3390. (when (setq mrk (get-text-property (point) 'org-hd-marker))
  3391. (put-text-property (point-at-bol) (point-at-eol)
  3392. 'tags (org-with-point-at mrk
  3393. (delete-dups
  3394. (mapcar 'downcase (org-get-tags-at))))))))))
  3395. (run-hooks 'org-agenda-finalize-hook)
  3396. (when org-agenda-top-headline-filter
  3397. (org-agenda-filter-top-headline-apply
  3398. org-agenda-top-headline-filter))
  3399. (when org-agenda-tag-filter
  3400. (org-agenda-filter-apply org-agenda-tag-filter 'tag))
  3401. (when (get 'org-agenda-tag-filter :preset-filter)
  3402. (org-agenda-filter-apply
  3403. (get 'org-agenda-tag-filter :preset-filter) 'tag))
  3404. (when org-agenda-category-filter
  3405. (org-agenda-filter-apply org-agenda-category-filter 'category))
  3406. (when (get 'org-agenda-category-filter :preset-filter)
  3407. (org-agenda-filter-apply
  3408. (get 'org-agenda-category-filter :preset-filter) 'category))
  3409. (when org-agenda-regexp-filter
  3410. (org-agenda-filter-apply org-agenda-regexp-filter 'regexp))
  3411. (when (get 'org-agenda-regexp-filter :preset-filter)
  3412. (org-agenda-filter-apply
  3413. (get 'org-agenda-regexp-filter :preset-filter) 'regexp))
  3414. (org-add-hook 'kill-buffer-hook 'org-agenda-reset-markers 'append 'local)))))
  3415. (defun org-agenda-mark-clocking-task ()
  3416. "Mark the current clock entry in the agenda if it is present."
  3417. ;; We need to widen when `org-agenda-finalize' is called from
  3418. ;; `org-agenda-change-all-lines' (e.g. in `org-agenda-clock-in')
  3419. (when org-clock-current-task
  3420. (save-restriction
  3421. (widen)
  3422. (org-agenda-unmark-clocking-task)
  3423. (when (marker-buffer org-clock-hd-marker)
  3424. (save-excursion
  3425. (goto-char (point-min))
  3426. (let (s ov)
  3427. (while (setq s (next-single-property-change (point) 'org-hd-marker))
  3428. (goto-char s)
  3429. (when (equal (org-get-at-bol 'org-hd-marker)
  3430. org-clock-hd-marker)
  3431. (setq ov (make-overlay (point-at-bol) (1+ (point-at-eol))))
  3432. (overlay-put ov 'type 'org-agenda-clocking)
  3433. (overlay-put ov 'face 'org-agenda-clocking)
  3434. (overlay-put ov 'help-echo
  3435. "The clock is running in this item")))))))))
  3436. (defun org-agenda-unmark-clocking-task ()
  3437. "Unmark the current clocking task."
  3438. (mapc (lambda (o)
  3439. (if (eq (overlay-get o 'type) 'org-agenda-clocking)
  3440. (delete-overlay o)))
  3441. (overlays-in (point-min) (point-max))))
  3442. (defun org-agenda-fontify-priorities ()
  3443. "Make highest priority lines bold, and lowest italic."
  3444. (interactive)
  3445. (mapc (lambda (o) (if (eq (overlay-get o 'org-type) 'org-priority)
  3446. (delete-overlay o)))
  3447. (overlays-in (point-min) (point-max)))
  3448. (save-excursion
  3449. (let (b e p ov h l)
  3450. (goto-char (point-min))
  3451. (while (re-search-forward "\\[#\\(.\\)\\]" nil t)
  3452. (setq h (or (get-char-property (point) 'org-highest-priority)
  3453. org-highest-priority)
  3454. l (or (get-char-property (point) 'org-lowest-priority)
  3455. org-lowest-priority)
  3456. p (string-to-char (match-string 1))
  3457. b (match-beginning 0)
  3458. e (if (eq org-agenda-fontify-priorities 'cookies)
  3459. (match-end 0)
  3460. (point-at-eol))
  3461. ov (make-overlay b e))
  3462. (overlay-put
  3463. ov 'face
  3464. (cons (cond ((org-face-from-face-or-color
  3465. 'priority nil
  3466. (cdr (assoc p org-priority-faces))))
  3467. ((and (listp org-agenda-fontify-priorities)
  3468. (org-face-from-face-or-color
  3469. 'priority nil
  3470. (cdr (assoc p org-agenda-fontify-priorities)))))
  3471. ((equal p l) 'italic)
  3472. ((equal p h) 'bold))
  3473. 'org-priority))
  3474. (overlay-put ov 'org-type 'org-priority)))))
  3475. (defvar org-depend-tag-blocked)
  3476. (defun org-agenda-dim-blocked-tasks (&optional invisible)
  3477. "Dim currently blocked TODO's in the agenda display.
  3478. When INVISIBLE is non-nil, hide currently blocked TODO instead of
  3479. dimming them."
  3480. (interactive "P")
  3481. (when (org-called-interactively-p 'interactive)
  3482. (message "Dim or hide blocked tasks..."))
  3483. (mapc (lambda (o) (if (eq (overlay-get o 'org-type) 'org-blocked-todo)
  3484. (delete-overlay o)))
  3485. (overlays-in (point-min) (point-max)))
  3486. (save-excursion
  3487. (let ((inhibit-read-only t)
  3488. (org-depend-tag-blocked nil)
  3489. (invis (or (not (null invisible))
  3490. (eq org-agenda-dim-blocked-tasks 'invisible)))
  3491. org-blocked-by-checkboxes
  3492. invis1 b e p ov h l)
  3493. (goto-char (point-min))
  3494. (while (let ((pos (next-single-property-change (point) 'todo-state)))
  3495. (and pos (goto-char (1+ pos))))
  3496. (setq org-blocked-by-checkboxes nil invis1 invis)
  3497. (let ((marker (org-get-at-bol 'org-hd-marker)))
  3498. (when (and marker
  3499. (with-current-buffer (marker-buffer marker)
  3500. (save-excursion (goto-char marker)
  3501. (org-entry-blocked-p))))
  3502. (if org-blocked-by-checkboxes (setq invis1 nil))
  3503. (setq b (if invis1
  3504. (max (point-min) (1- (point-at-bol)))
  3505. (point-at-bol))
  3506. e (point-at-eol)
  3507. ov (make-overlay b e))
  3508. (if invis1
  3509. (progn (overlay-put ov 'invisible t)
  3510. (overlay-put ov 'intangible t))
  3511. (overlay-put ov 'face 'org-agenda-dimmed-todo-face))
  3512. (overlay-put ov 'org-type 'org-blocked-todo))))))
  3513. (when (org-called-interactively-p 'interactive)
  3514. (message "Dim or hide blocked tasks...done")))
  3515. (defvar org-agenda-skip-function nil
  3516. "Function to be called at each match during agenda construction.
  3517. If this function returns nil, the current match should not be skipped.
  3518. Otherwise, the function must return a position from where the search
  3519. should be continued.
  3520. This may also be a Lisp form, it will be evaluated.
  3521. Never set this variable using `setq' or so, because then it will apply
  3522. to all future agenda commands. If you do want a global skipping condition,
  3523. use the option `org-agenda-skip-function-global' instead.
  3524. The correct usage for `org-agenda-skip-function' is to bind it with
  3525. `let' to scope it dynamically into the agenda-constructing command.
  3526. A good way to set it is through options in `org-agenda-custom-commands'.")
  3527. (defun org-agenda-skip ()
  3528. "Throw to `:skip' in places that should be skipped.
  3529. Also moves point to the end of the skipped region, so that search can
  3530. continue from there."
  3531. (let ((p (point-at-bol)) to)
  3532. (when (or
  3533. (save-excursion (goto-char p) (looking-at comment-start-skip))
  3534. (and org-agenda-skip-archived-trees (not org-agenda-archives-mode)
  3535. (get-text-property p :org-archived)
  3536. (org-end-of-subtree t))
  3537. (and org-agenda-skip-comment-trees
  3538. (get-text-property p :org-comment)
  3539. (org-end-of-subtree t))
  3540. (and (setq to (or (org-agenda-skip-eval org-agenda-skip-function-global)
  3541. (org-agenda-skip-eval org-agenda-skip-function)))
  3542. (goto-char to))
  3543. (org-in-src-block-p t))
  3544. (throw :skip t))))
  3545. (defun org-agenda-skip-eval (form)
  3546. "If FORM is a function or a list, call (or eval) it and return the result.
  3547. `save-excursion' and `save-match-data' are wrapped around the call, so point
  3548. and match data are returned to the previous state no matter what these
  3549. functions do."
  3550. (let (fp)
  3551. (and form
  3552. (or (setq fp (functionp form))
  3553. (consp form))
  3554. (save-excursion
  3555. (save-match-data
  3556. (if fp
  3557. (funcall form)
  3558. (eval form)))))))
  3559. (defvar org-agenda-markers nil
  3560. "List of all currently active markers created by `org-agenda'.")
  3561. (defvar org-agenda-last-marker-time (org-float-time)
  3562. "Creation time of the last agenda marker.")
  3563. (defun org-agenda-new-marker (&optional pos)
  3564. "Return a new agenda marker.
  3565. Org-mode keeps a list of these markers and resets them when they are
  3566. no longer in use."
  3567. (let ((m (copy-marker (or pos (point)))))
  3568. (setq org-agenda-last-marker-time (org-float-time))
  3569. (if org-agenda-buffer
  3570. (with-current-buffer org-agenda-buffer
  3571. (push m org-agenda-markers))
  3572. (push m org-agenda-markers))
  3573. m))
  3574. (defun org-agenda-reset-markers ()
  3575. "Reset markers created by `org-agenda'."
  3576. (while org-agenda-markers
  3577. (move-marker (pop org-agenda-markers) nil)))
  3578. (defun org-agenda-save-markers-for-cut-and-paste (beg end)
  3579. "Save relative positions of markers in region.
  3580. This check for agenda markers in all agenda buffers currently active."
  3581. (dolist (buf (buffer-list))
  3582. (with-current-buffer buf
  3583. (when (eq major-mode 'org-agenda-mode)
  3584. (mapc (lambda (m) (org-check-and-save-marker m beg end))
  3585. org-agenda-markers)))))
  3586. ;;; Entry text mode
  3587. (defun org-agenda-entry-text-show-here ()
  3588. "Add some text from the entry as context to the current line."
  3589. (let (m txt o)
  3590. (setq m (org-get-at-bol 'org-hd-marker))
  3591. (unless (marker-buffer m)
  3592. (error "No marker points to an entry here"))
  3593. (setq txt (concat "\n" (org-no-properties
  3594. (org-agenda-get-some-entry-text
  3595. m org-agenda-entry-text-maxlines
  3596. org-agenda-entry-text-leaders))))
  3597. (when (string-match "\\S-" txt)
  3598. (setq o (make-overlay (point-at-bol) (point-at-eol)))
  3599. (overlay-put o 'evaporate t)
  3600. (overlay-put o 'org-overlay-type 'agenda-entry-content)
  3601. (overlay-put o 'after-string txt))))
  3602. (defun org-agenda-entry-text-show ()
  3603. "Add entry context for all agenda lines."
  3604. (interactive)
  3605. (save-excursion
  3606. (goto-char (point-max))
  3607. (beginning-of-line 1)
  3608. (while (not (bobp))
  3609. (when (org-get-at-bol 'org-hd-marker)
  3610. (org-agenda-entry-text-show-here))
  3611. (beginning-of-line 0))))
  3612. (defun org-agenda-entry-text-hide ()
  3613. "Remove any shown entry context."
  3614. (delq nil
  3615. (mapcar (lambda (o)
  3616. (if (eq (overlay-get o 'org-overlay-type)
  3617. 'agenda-entry-content)
  3618. (progn (delete-overlay o) t)))
  3619. (overlays-in (point-min) (point-max)))))
  3620. (defun org-agenda-get-day-face (date)
  3621. "Return the face DATE should be displayed with."
  3622. (or (and (functionp org-agenda-day-face-function)
  3623. (funcall org-agenda-day-face-function date))
  3624. (cond ((org-agenda-todayp date)
  3625. 'org-agenda-date-today)
  3626. ((member (calendar-day-of-week date) org-agenda-weekend-days)
  3627. 'org-agenda-date-weekend)
  3628. (t 'org-agenda-date))))
  3629. ;;; Agenda timeline
  3630. (defvar org-agenda-only-exact-dates nil) ; dynamically scoped
  3631. (defvar org-agenda-show-log-scoped) ;; dynamically scope in `org-timeline' or `org-agenda-list'
  3632. (defun org-timeline (&optional dotodo)
  3633. "Show a time-sorted view of the entries in the current org file.
  3634. Only entries with a time stamp of today or later will be listed. With
  3635. \\[universal-argument] prefix, all unfinished TODO items will also be shown,
  3636. under the current date.
  3637. If the buffer contains an active region, only check the region for
  3638. dates."
  3639. (interactive "P")
  3640. (let* ((dopast t)
  3641. (org-agenda-show-log-scoped org-agenda-show-log)
  3642. (org-agenda-show-log org-agenda-show-log-scoped)
  3643. (entry (buffer-file-name (or (buffer-base-buffer (current-buffer))
  3644. (current-buffer))))
  3645. (date (calendar-current-date))
  3646. (beg (if (org-region-active-p) (region-beginning) (point-min)))
  3647. (end (if (org-region-active-p) (region-end) (point-max)))
  3648. (day-numbers (org-get-all-dates
  3649. beg end 'no-ranges
  3650. t org-agenda-show-log-scoped ; always include today
  3651. org-timeline-show-empty-dates))
  3652. (org-deadline-warning-days 0)
  3653. (org-agenda-only-exact-dates t)
  3654. (today (org-today))
  3655. (past t)
  3656. args
  3657. s e rtn d emptyp)
  3658. (setq org-agenda-redo-command
  3659. (list 'let
  3660. (list (list 'org-agenda-show-log 'org-agenda-show-log))
  3661. (list 'org-switch-to-buffer-other-window (current-buffer))
  3662. (list 'org-timeline (list 'quote dotodo))))
  3663. (put 'org-agenda-redo-command 'org-lprops nil)
  3664. (if (not dopast)
  3665. ;; Remove past dates from the list of dates.
  3666. (setq day-numbers (delq nil (mapcar (lambda(x)
  3667. (if (>= x today) x nil))
  3668. day-numbers))))
  3669. (org-agenda-prepare (concat "Timeline " (file-name-nondirectory entry)))
  3670. (org-compile-prefix-format 'timeline)
  3671. (org-set-sorting-strategy 'timeline)
  3672. (if org-agenda-show-log-scoped (push :closed args))
  3673. (push :timestamp args)
  3674. (push :deadline args)
  3675. (push :scheduled args)
  3676. (push :sexp args)
  3677. (if dotodo (push :todo args))
  3678. (insert "Timeline of file " entry "\n")
  3679. (add-text-properties (point-min) (point)
  3680. (list 'face 'org-agenda-structure))
  3681. (org-agenda-mark-header-line (point-min))
  3682. (while (setq d (pop day-numbers))
  3683. (if (and (listp d) (eq (car d) :omitted))
  3684. (progn
  3685. (setq s (point))
  3686. (insert (format "\n[... %d empty days omitted]\n\n" (cdr d)))
  3687. (put-text-property s (1- (point)) 'face 'org-agenda-structure))
  3688. (if (listp d) (setq d (car d) emptyp t) (setq emptyp nil))
  3689. (if (and (>= d today)
  3690. dopast
  3691. past)
  3692. (progn
  3693. (setq past nil)
  3694. (insert (make-string 79 ?-) "\n")))
  3695. (setq date (calendar-gregorian-from-absolute d))
  3696. (setq s (point))
  3697. (setq rtn (and (not emptyp)
  3698. (apply 'org-agenda-get-day-entries entry
  3699. date args)))
  3700. (if (or rtn (equal d today) org-timeline-show-empty-dates)
  3701. (progn
  3702. (insert
  3703. (if (stringp org-agenda-format-date)
  3704. (format-time-string org-agenda-format-date
  3705. (org-time-from-absolute date))
  3706. (funcall org-agenda-format-date date))
  3707. "\n")
  3708. (put-text-property s (1- (point)) 'face
  3709. (org-agenda-get-day-face date))
  3710. (put-text-property s (1- (point)) 'org-date-line t)
  3711. (put-text-property s (1- (point)) 'org-agenda-date-header t)
  3712. (if (equal d today)
  3713. (put-text-property s (1- (point)) 'org-today t))
  3714. (and rtn (insert (org-agenda-finalize-entries rtn 'timeline) "\n"))
  3715. (put-text-property s (1- (point)) 'day d)))))
  3716. (goto-char (or (text-property-any (point-min) (point-max) 'org-today t)
  3717. (point-min)))
  3718. (add-text-properties
  3719. (point-min) (point-max)
  3720. `(org-agenda-type timeline org-redo-cmd ,org-agenda-redo-command))
  3721. (org-agenda-finalize)
  3722. (setq buffer-read-only t)))
  3723. (defun org-get-all-dates (beg end &optional no-ranges force-today inactive empty pre-re)
  3724. "Return a list of all relevant day numbers from BEG to END buffer positions.
  3725. If NO-RANGES is non-nil, include only the start and end dates of a range,
  3726. not every single day in the range. If FORCE-TODAY is non-nil, make
  3727. sure that TODAY is included in the list. If INACTIVE is non-nil, also
  3728. inactive time stamps (those in square brackets) are included.
  3729. When EMPTY is non-nil, also include days without any entries."
  3730. (let ((re (concat
  3731. (if pre-re pre-re "")
  3732. (if inactive org-ts-regexp-both org-ts-regexp)))
  3733. dates dates1 date day day1 day2 ts1 ts2 pos)
  3734. (if force-today
  3735. (setq dates (list (org-today))))
  3736. (save-excursion
  3737. (goto-char beg)
  3738. (while (re-search-forward re end t)
  3739. (setq day (time-to-days (org-time-string-to-time
  3740. (substring (match-string 1) 0 10)
  3741. (current-buffer) (match-beginning 0))))
  3742. (or (memq day dates) (push day dates)))
  3743. (unless no-ranges
  3744. (goto-char beg)
  3745. (while (re-search-forward org-tr-regexp end t)
  3746. (setq pos (match-beginning 0))
  3747. (setq ts1 (substring (match-string 1) 0 10)
  3748. ts2 (substring (match-string 2) 0 10)
  3749. day1 (time-to-days (org-time-string-to-time
  3750. ts1 (current-buffer) pos))
  3751. day2 (time-to-days (org-time-string-to-time
  3752. ts2 (current-buffer) pos)))
  3753. (while (< (setq day1 (1+ day1)) day2)
  3754. (or (memq day1 dates) (push day1 dates)))))
  3755. (setq dates (sort dates '<))
  3756. (when empty
  3757. (while (setq day (pop dates))
  3758. (setq day2 (car dates))
  3759. (push day dates1)
  3760. (when (and day2 empty)
  3761. (if (or (eq empty t)
  3762. (and (numberp empty) (<= (- day2 day) empty)))
  3763. (while (< (setq day (1+ day)) day2)
  3764. (push (list day) dates1))
  3765. (push (cons :omitted (- day2 day)) dates1))))
  3766. (setq dates (nreverse dates1)))
  3767. dates)))
  3768. ;;; Agenda Daily/Weekly
  3769. (defvar org-agenda-start-day nil ; dynamically scoped parameter
  3770. "Start day for the agenda view.
  3771. Custom commands can set this variable in the options section.
  3772. This is usually a string like \"2007-11-01\", \"+2d\" or any other
  3773. input allowed when reading a date through the Org calendar.
  3774. See the docstring of `org-read-date' for details.")
  3775. (defvar org-starting-day nil) ; local variable in the agenda buffer
  3776. (defvar org-arg-loc nil) ; local variable
  3777. (defvar org-agenda-buffer-tmp-name nil)
  3778. ;;;###autoload
  3779. (defun org-agenda-list (&optional arg start-day span with-hour)
  3780. "Produce a daily/weekly view from all files in variable `org-agenda-files'.
  3781. The view will be for the current day or week, but from the overview buffer
  3782. you will be able to go to other days/weeks.
  3783. With a numeric prefix argument in an interactive call, the agenda will
  3784. span ARG days. Lisp programs should instead specify SPAN to change
  3785. the number of days. SPAN defaults to `org-agenda-span'.
  3786. START-DAY defaults to TODAY, or to the most recent match for the weekday
  3787. given in `org-agenda-start-on-weekday'.
  3788. When WITH-HOUR is non-nil, only include scheduled and deadline
  3789. items if they have an hour specification like [h]h:mm."
  3790. (interactive "P")
  3791. (if org-agenda-overriding-arguments
  3792. (setq arg (car org-agenda-overriding-arguments)
  3793. start-day (nth 1 org-agenda-overriding-arguments)
  3794. span (nth 2 org-agenda-overriding-arguments)))
  3795. (if (and (integerp arg) (> arg 0))
  3796. (setq span arg arg nil))
  3797. (catch 'exit
  3798. (setq org-agenda-buffer-name
  3799. (or org-agenda-buffer-tmp-name
  3800. (if org-agenda-sticky
  3801. (cond ((and org-keys (stringp org-match))
  3802. (format "*Org Agenda(%s:%s)*" org-keys org-match))
  3803. (org-keys
  3804. (format "*Org Agenda(%s)*" org-keys))
  3805. (t "*Org Agenda(a)*")))
  3806. org-agenda-buffer-name))
  3807. (org-agenda-prepare "Day/Week")
  3808. (setq start-day (or start-day org-agenda-start-day))
  3809. (if (stringp start-day)
  3810. ;; Convert to an absolute day number
  3811. (setq start-day (time-to-days (org-read-date nil t start-day))))
  3812. (org-compile-prefix-format 'agenda)
  3813. (org-set-sorting-strategy 'agenda)
  3814. (let* ((span (org-agenda-ndays-to-span
  3815. (or span org-agenda-ndays org-agenda-span)))
  3816. (today (org-today))
  3817. (sd (or start-day today))
  3818. (ndays (org-agenda-span-to-ndays span sd))
  3819. (org-agenda-start-on-weekday
  3820. (if (or (eq ndays 7) (eq ndays 14))
  3821. org-agenda-start-on-weekday))
  3822. (thefiles (org-agenda-files nil 'ifmode))
  3823. (files thefiles)
  3824. (start (if (or (null org-agenda-start-on-weekday)
  3825. (< ndays 7))
  3826. sd
  3827. (let* ((nt (calendar-day-of-week
  3828. (calendar-gregorian-from-absolute sd)))
  3829. (n1 org-agenda-start-on-weekday)
  3830. (d (- nt n1)))
  3831. (- sd (+ (if (< d 0) 7 0) d)))))
  3832. (day-numbers (list start))
  3833. (day-cnt 0)
  3834. (inhibit-redisplay (not debug-on-error))
  3835. (org-agenda-show-log-scoped org-agenda-show-log)
  3836. s e rtn rtnall file date d start-pos end-pos todayp
  3837. clocktable-start clocktable-end filter)
  3838. (setq org-agenda-redo-command
  3839. (list 'org-agenda-list (list 'quote arg) start-day (list 'quote span) with-hour))
  3840. (dotimes (n (1- ndays))
  3841. (push (1+ (car day-numbers)) day-numbers))
  3842. (setq day-numbers (nreverse day-numbers))
  3843. (setq clocktable-start (car day-numbers)
  3844. clocktable-end (1+ (or (org-last day-numbers) 0)))
  3845. (org-set-local 'org-starting-day (car day-numbers))
  3846. (org-set-local 'org-arg-loc arg)
  3847. (org-set-local 'org-agenda-current-span (org-agenda-ndays-to-span span))
  3848. (unless org-agenda-compact-blocks
  3849. (let* ((d1 (car day-numbers))
  3850. (d2 (org-last day-numbers))
  3851. (w1 (org-days-to-iso-week d1))
  3852. (w2 (org-days-to-iso-week d2)))
  3853. (setq s (point))
  3854. (if org-agenda-overriding-header
  3855. (insert (org-add-props (copy-sequence org-agenda-overriding-header)
  3856. nil 'face 'org-agenda-structure) "\n")
  3857. (insert (org-agenda-span-name span)
  3858. "-agenda"
  3859. (if (< (- d2 d1) 350)
  3860. (if (= w1 w2)
  3861. (format " (W%02d)" w1)
  3862. (format " (W%02d-W%02d)" w1 w2))
  3863. "")
  3864. ":\n")))
  3865. (add-text-properties s (1- (point)) (list 'face 'org-agenda-structure
  3866. 'org-date-line t))
  3867. (org-agenda-mark-header-line s))
  3868. (while (setq d (pop day-numbers))
  3869. (setq date (calendar-gregorian-from-absolute d)
  3870. s (point))
  3871. (if (or (setq todayp (= d today))
  3872. (and (not start-pos) (= d sd)))
  3873. (setq start-pos (point))
  3874. (if (and start-pos (not end-pos))
  3875. (setq end-pos (point))))
  3876. (setq files thefiles
  3877. rtnall nil)
  3878. (while (setq file (pop files))
  3879. (catch 'nextfile
  3880. (org-check-agenda-file file)
  3881. (let ((org-agenda-entry-types org-agenda-entry-types))
  3882. ;; Starred types override non-starred equivalents
  3883. (when (member :deadline* org-agenda-entry-types)
  3884. (setq org-agenda-entry-types
  3885. (delq :deadline org-agenda-entry-types)))
  3886. (when (member :scheduled* org-agenda-entry-types)
  3887. (setq org-agenda-entry-types
  3888. (delq :scheduled org-agenda-entry-types)))
  3889. ;; Honor with-hour
  3890. (when with-hour
  3891. (when (member :deadline org-agenda-entry-types)
  3892. (setq org-agenda-entry-types
  3893. (delq :deadline org-agenda-entry-types))
  3894. (push :deadline* org-agenda-entry-types))
  3895. (when (member :scheduled org-agenda-entry-types)
  3896. (setq org-agenda-entry-types
  3897. (delq :scheduled org-agenda-entry-types))
  3898. (push :scheduled* org-agenda-entry-types)))
  3899. (unless org-agenda-include-deadlines
  3900. (setq org-agenda-entry-types
  3901. (delq :deadline* (delq :deadline org-agenda-entry-types))))
  3902. (cond
  3903. ((memq org-agenda-show-log-scoped '(only clockcheck))
  3904. (setq rtn (org-agenda-get-day-entries
  3905. file date :closed)))
  3906. (org-agenda-show-log-scoped
  3907. (setq rtn (apply 'org-agenda-get-day-entries
  3908. file date
  3909. (append '(:closed) org-agenda-entry-types))))
  3910. (t
  3911. (setq rtn (apply 'org-agenda-get-day-entries
  3912. file date
  3913. org-agenda-entry-types)))))
  3914. (setq rtnall (append rtnall rtn)))) ;; all entries
  3915. (if org-agenda-include-diary
  3916. (let ((org-agenda-search-headline-for-time t))
  3917. (require 'diary-lib)
  3918. (setq rtn (org-get-entries-from-diary date))
  3919. (setq rtnall (append rtnall rtn))))
  3920. (if (or rtnall org-agenda-show-all-dates)
  3921. (progn
  3922. (setq day-cnt (1+ day-cnt))
  3923. (insert
  3924. (if (stringp org-agenda-format-date)
  3925. (format-time-string org-agenda-format-date
  3926. (org-time-from-absolute date))
  3927. (funcall org-agenda-format-date date))
  3928. "\n")
  3929. (put-text-property s (1- (point)) 'face
  3930. (org-agenda-get-day-face date))
  3931. (put-text-property s (1- (point)) 'org-date-line t)
  3932. (put-text-property s (1- (point)) 'org-agenda-date-header t)
  3933. (put-text-property s (1- (point)) 'org-day-cnt day-cnt)
  3934. (when todayp
  3935. (put-text-property s (1- (point)) 'org-today t))
  3936. (setq rtnall
  3937. (org-agenda-add-time-grid-maybe rtnall ndays todayp))
  3938. (if rtnall (insert ;; all entries
  3939. (org-agenda-finalize-entries rtnall 'agenda)
  3940. "\n"))
  3941. (put-text-property s (1- (point)) 'day d)
  3942. (put-text-property s (1- (point)) 'org-day-cnt day-cnt))))
  3943. (when (and org-agenda-clockreport-mode clocktable-start)
  3944. (let ((org-agenda-files (org-agenda-files nil 'ifmode))
  3945. ;; the above line is to ensure the restricted range!
  3946. (p (copy-sequence org-agenda-clockreport-parameter-plist))
  3947. tbl)
  3948. (setq p (org-plist-delete p :block))
  3949. (setq p (plist-put p :tstart clocktable-start))
  3950. (setq p (plist-put p :tend clocktable-end))
  3951. (setq p (plist-put p :scope 'agenda))
  3952. (when (and (eq org-agenda-clockreport-mode 'with-filter)
  3953. (setq filter (or org-agenda-tag-filter-while-redo
  3954. (get 'org-agenda-tag-filter :preset-filter))))
  3955. (setq p (plist-put p :tags (mapconcat (lambda (x)
  3956. (if (string-match "[<>=]" x)
  3957. ""
  3958. x))
  3959. filter ""))))
  3960. (setq tbl (apply 'org-clock-get-clocktable p))
  3961. (insert tbl)))
  3962. (goto-char (point-min))
  3963. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  3964. (unless (and (pos-visible-in-window-p (point-min))
  3965. (pos-visible-in-window-p (point-max)))
  3966. (goto-char (1- (point-max)))
  3967. (recenter -1)
  3968. (if (not (pos-visible-in-window-p (or start-pos 1)))
  3969. (progn
  3970. (goto-char (or start-pos 1))
  3971. (recenter 1))))
  3972. (goto-char (or start-pos 1))
  3973. (add-text-properties (point-min) (point-max)
  3974. `(org-agenda-type agenda
  3975. org-last-args (,arg ,start-day ,span)
  3976. org-redo-cmd ,org-agenda-redo-command
  3977. org-series-cmd ,org-cmd))
  3978. (if (eq org-agenda-show-log-scoped 'clockcheck)
  3979. (org-agenda-show-clocking-issues))
  3980. (org-agenda-finalize)
  3981. (setq buffer-read-only t)
  3982. (message ""))))
  3983. (defun org-agenda-ndays-to-span (n)
  3984. "Return a span symbol for a span of N days, or N if none matches."
  3985. (cond ((symbolp n) n)
  3986. ((= n 1) 'day)
  3987. ((= n 7) 'week)
  3988. ((= n 14) 'fortnight)
  3989. (t n)))
  3990. (defun org-agenda-span-to-ndays (span &optional start-day)
  3991. "Return ndays from SPAN, possibly starting at START-DAY.
  3992. START-DAY is an absolute time value."
  3993. (cond ((numberp span) span)
  3994. ((eq span 'day) 1)
  3995. ((eq span 'week) 7)
  3996. ((eq span 'fortnight) 14)
  3997. ((eq span 'month)
  3998. (let ((date (calendar-gregorian-from-absolute start-day)))
  3999. (calendar-last-day-of-month (car date) (caddr date))))
  4000. ((eq span 'year)
  4001. (let ((date (calendar-gregorian-from-absolute start-day)))
  4002. (if (calendar-leap-year-p (caddr date)) 366 365)))))
  4003. (defun org-agenda-span-name (span)
  4004. "Return a SPAN name."
  4005. (if (null span)
  4006. ""
  4007. (if (symbolp span)
  4008. (capitalize (symbol-name span))
  4009. (format "%d days" span))))
  4010. ;;; Agenda word search
  4011. (defvar org-agenda-search-history nil)
  4012. (defvar org-search-syntax-table nil
  4013. "Special syntax table for org-mode search.
  4014. In this table, we have single quotes not as word constituents, to
  4015. that when \"+Ameli\" is searched as a work, it will also match \"Ameli's\"")
  4016. (defvar org-mode-syntax-table) ; From org.el
  4017. (defun org-search-syntax-table ()
  4018. (unless org-search-syntax-table
  4019. (setq org-search-syntax-table (copy-syntax-table org-mode-syntax-table))
  4020. (modify-syntax-entry ?' "." org-search-syntax-table)
  4021. (modify-syntax-entry ?` "." org-search-syntax-table))
  4022. org-search-syntax-table)
  4023. (defvar org-agenda-last-search-view-search-was-boolean nil)
  4024. ;;;###autoload
  4025. (defun org-search-view (&optional todo-only string edit-at)
  4026. "Show all entries that contain a phrase or words or regular expressions.
  4027. With optional prefix argument TODO-ONLY, only consider entries that are
  4028. TODO entries. The argument STRING can be used to pass a default search
  4029. string into this function. If EDIT-AT is non-nil, it means that the
  4030. user should get a chance to edit this string, with cursor at position
  4031. EDIT-AT.
  4032. The search string can be viewed either as a phrase that should be found as
  4033. is, or it can be broken into a number of snippets, each of which must match
  4034. in a Boolean way to select an entry. The default depends on the variable
  4035. `org-agenda-search-view-always-boolean'.
  4036. Even if this is turned off (the default) you can always switch to
  4037. Boolean search dynamically by preceding the first word with \"+\" or \"-\".
  4038. The default is a direct search of the whole phrase, where each space in
  4039. the search string can expand to an arbitrary amount of whitespace,
  4040. including newlines.
  4041. If using a Boolean search, the search string is split on whitespace and
  4042. each snippet is searched separately, with logical AND to select an entry.
  4043. Words prefixed with a minus must *not* occur in the entry. Words without
  4044. a prefix or prefixed with a plus must occur in the entry. Matching is
  4045. case-insensitive. Words are enclosed by word delimiters (i.e. they must
  4046. match whole words, not parts of a word) if
  4047. `org-agenda-search-view-force-full-words' is set (default is nil).
  4048. Boolean search snippets enclosed by curly braces are interpreted as
  4049. regular expressions that must or (when preceded with \"-\") must not
  4050. match in the entry. Snippets enclosed into double quotes will be taken
  4051. as a whole, to include whitespace.
  4052. - If the search string starts with an asterisk, search only in headlines.
  4053. - If (possibly after the leading star) the search string starts with an
  4054. exclamation mark, this also means to look at TODO entries only, an effect
  4055. that can also be achieved with a prefix argument.
  4056. - If (possibly after star and exclamation mark) the search string starts
  4057. with a colon, this will mean that the (non-regexp) snippets of the
  4058. Boolean search must match as full words.
  4059. This command searches the agenda files, and in addition the files listed
  4060. in `org-agenda-text-search-extra-files'."
  4061. (interactive "P")
  4062. (if org-agenda-overriding-arguments
  4063. (setq todo-only (car org-agenda-overriding-arguments)
  4064. string (nth 1 org-agenda-overriding-arguments)
  4065. edit-at (nth 2 org-agenda-overriding-arguments)))
  4066. (let* ((props (list 'face nil
  4067. 'done-face 'org-agenda-done
  4068. 'org-not-done-regexp org-not-done-regexp
  4069. 'org-todo-regexp org-todo-regexp
  4070. 'org-complex-heading-regexp org-complex-heading-regexp
  4071. 'mouse-face 'highlight
  4072. 'help-echo (format "mouse-2 or RET jump to location")))
  4073. (full-words org-agenda-search-view-force-full-words)
  4074. (org-agenda-text-search-extra-files org-agenda-text-search-extra-files)
  4075. regexp rtn rtnall files file pos inherited-tags
  4076. marker category category-pos level tags c neg re boolean
  4077. ee txt beg end words regexps+ regexps- hdl-only buffer beg1 str)
  4078. (unless (and (not edit-at)
  4079. (stringp string)
  4080. (string-match "\\S-" string))
  4081. (setq string (read-string
  4082. (if org-agenda-search-view-always-boolean
  4083. "[+-]Word/{Regexp} ...: "
  4084. "Phrase or [+-]Word/{Regexp} ...: ")
  4085. (cond
  4086. ((integerp edit-at) (cons string edit-at))
  4087. (edit-at string))
  4088. 'org-agenda-search-history)))
  4089. (catch 'exit
  4090. (if org-agenda-sticky
  4091. (setq org-agenda-buffer-name
  4092. (if (stringp string)
  4093. (format "*Org Agenda(%s:%s)*"
  4094. (or org-keys (or (and todo-only "S") "s")) string)
  4095. (format "*Org Agenda(%s)*" (or (and todo-only "S") "s")))))
  4096. (org-agenda-prepare "SEARCH")
  4097. (org-compile-prefix-format 'search)
  4098. (org-set-sorting-strategy 'search)
  4099. (setq org-agenda-redo-command
  4100. (list 'org-search-view (if todo-only t nil)
  4101. (list 'if 'current-prefix-arg nil string)))
  4102. (setq org-agenda-query-string string)
  4103. (if (equal (string-to-char string) ?*)
  4104. (setq hdl-only t
  4105. words (substring string 1))
  4106. (setq words string))
  4107. (when (equal (string-to-char words) ?!)
  4108. (setq todo-only t
  4109. words (substring words 1)))
  4110. (when (equal (string-to-char words) ?:)
  4111. (setq full-words t
  4112. words (substring words 1)))
  4113. (if (or org-agenda-search-view-always-boolean
  4114. (member (string-to-char words) '(?- ?+ ?\{)))
  4115. (setq boolean t))
  4116. (setq words (org-split-string words))
  4117. (let (www w)
  4118. (while (setq w (pop words))
  4119. (while (and (string-match "\\\\\\'" w) words)
  4120. (setq w (concat (substring w 0 -1) " " (pop words))))
  4121. (push w www))
  4122. (setq words (nreverse www) www nil)
  4123. (while (setq w (pop words))
  4124. (when (and (string-match "\\`[-+]?{" w)
  4125. (not (string-match "}\\'" w)))
  4126. (while (and words (not (string-match "}\\'" (car words))))
  4127. (setq w (concat w " " (pop words))))
  4128. (setq w (concat w " " (pop words))))
  4129. (push w www))
  4130. (setq words (nreverse www)))
  4131. (setq org-agenda-last-search-view-search-was-boolean boolean)
  4132. (when boolean
  4133. (let (wds w)
  4134. (while (setq w (pop words))
  4135. (if (or (equal (substring w 0 1) "\"")
  4136. (and (> (length w) 1)
  4137. (member (substring w 0 1) '("+" "-"))
  4138. (equal (substring w 1 2) "\"")))
  4139. (while (and words (not (equal (substring w -1) "\"")))
  4140. (setq w (concat w " " (pop words)))))
  4141. (and (string-match "\\`\\([-+]?\\)\"" w)
  4142. (setq w (replace-match "\\1" nil nil w)))
  4143. (and (equal (substring w -1) "\"") (setq w (substring w 0 -1)))
  4144. (push w wds))
  4145. (setq words (nreverse wds))))
  4146. (if boolean
  4147. (mapc (lambda (w)
  4148. (setq c (string-to-char w))
  4149. (if (equal c ?-)
  4150. (setq neg t w (substring w 1))
  4151. (if (equal c ?+)
  4152. (setq neg nil w (substring w 1))
  4153. (setq neg nil)))
  4154. (if (string-match "\\`{.*}\\'" w)
  4155. (setq re (substring w 1 -1))
  4156. (if full-words
  4157. (setq re (concat "\\<" (regexp-quote (downcase w)) "\\>"))
  4158. (setq re (regexp-quote (downcase w)))))
  4159. (if neg (push re regexps-) (push re regexps+)))
  4160. words)
  4161. (push (mapconcat (lambda (w) (regexp-quote w)) words "\\s-+")
  4162. regexps+))
  4163. (setq regexps+ (sort regexps+ (lambda (a b) (> (length a) (length b)))))
  4164. (if (not regexps+)
  4165. (setq regexp org-outline-regexp-bol)
  4166. (setq regexp (pop regexps+))
  4167. (if hdl-only (setq regexp (concat org-outline-regexp-bol ".*?"
  4168. regexp))))
  4169. (setq files (org-agenda-files nil 'ifmode))
  4170. (when (eq (car org-agenda-text-search-extra-files) 'agenda-archives)
  4171. (pop org-agenda-text-search-extra-files)
  4172. (setq files (org-add-archive-files files)))
  4173. (setq files (append files org-agenda-text-search-extra-files)
  4174. rtnall nil)
  4175. (while (setq file (pop files))
  4176. (setq ee nil)
  4177. (catch 'nextfile
  4178. (org-check-agenda-file file)
  4179. (setq buffer (if (file-exists-p file)
  4180. (org-get-agenda-file-buffer file)
  4181. (error "No such file %s" file)))
  4182. (if (not buffer)
  4183. ;; If file does not exist, make sure an error message is sent
  4184. (setq rtn (list (format "ORG-AGENDA-ERROR: No such org-file %s"
  4185. file))))
  4186. (with-current-buffer buffer
  4187. (with-syntax-table (org-search-syntax-table)
  4188. (unless (derived-mode-p 'org-mode)
  4189. (error "Agenda file %s is not in `org-mode'" file))
  4190. (let ((case-fold-search t))
  4191. (save-excursion
  4192. (save-restriction
  4193. (if (eq buffer org-agenda-restrict)
  4194. (narrow-to-region org-agenda-restrict-begin
  4195. org-agenda-restrict-end)
  4196. (widen))
  4197. (goto-char (point-min))
  4198. (unless (or (org-at-heading-p)
  4199. (outline-next-heading))
  4200. (throw 'nextfile t))
  4201. (goto-char (max (point-min) (1- (point))))
  4202. (while (re-search-forward regexp nil t)
  4203. (org-back-to-heading t)
  4204. (while (and (not (zerop org-agenda-search-view-max-outline-level))
  4205. (> (org-reduced-level (org-outline-level))
  4206. org-agenda-search-view-max-outline-level)
  4207. (forward-line -1)
  4208. (outline-back-to-heading t)))
  4209. (skip-chars-forward "* ")
  4210. (setq beg (point-at-bol)
  4211. beg1 (point)
  4212. end (progn
  4213. (outline-next-heading)
  4214. (while (and (not (zerop org-agenda-search-view-max-outline-level))
  4215. (> (org-reduced-level (org-outline-level))
  4216. org-agenda-search-view-max-outline-level)
  4217. (forward-line 1)
  4218. (outline-next-heading)))
  4219. (point)))
  4220. (catch :skip
  4221. (goto-char beg)
  4222. (org-agenda-skip)
  4223. (setq str (buffer-substring-no-properties
  4224. (point-at-bol)
  4225. (if hdl-only (point-at-eol) end)))
  4226. (mapc (lambda (wr) (when (string-match wr str)
  4227. (goto-char (1- end))
  4228. (throw :skip t)))
  4229. regexps-)
  4230. (mapc (lambda (wr) (unless (string-match wr str)
  4231. (goto-char (1- end))
  4232. (throw :skip t)))
  4233. (if todo-only
  4234. (cons (concat "^\*+[ \t]+" org-not-done-regexp)
  4235. regexps+)
  4236. regexps+))
  4237. (goto-char beg)
  4238. (setq marker (org-agenda-new-marker (point))
  4239. category (org-get-category)
  4240. level (make-string (org-reduced-level (org-outline-level)) ? )
  4241. category-pos (get-text-property (point) 'org-category-position)
  4242. inherited-tags
  4243. (or (eq org-agenda-show-inherited-tags 'always)
  4244. (and (listp org-agenda-show-inherited-tags)
  4245. (memq 'todo org-agenda-show-inherited-tags))
  4246. (and (eq org-agenda-show-inherited-tags t)
  4247. (or (eq org-agenda-use-tag-inheritance t)
  4248. (memq 'todo org-agenda-use-tag-inheritance))))
  4249. tags (org-get-tags-at nil (not inherited-tags))
  4250. txt (org-agenda-format-item
  4251. ""
  4252. (buffer-substring-no-properties
  4253. beg1 (point-at-eol))
  4254. level category tags t))
  4255. (org-add-props txt props
  4256. 'org-marker marker 'org-hd-marker marker
  4257. 'org-todo-regexp org-todo-regexp
  4258. 'level level
  4259. 'org-complex-heading-regexp org-complex-heading-regexp
  4260. 'priority 1000 'org-category category
  4261. 'org-category-position category-pos
  4262. 'type "search")
  4263. (push txt ee)
  4264. (goto-char (1- end))))))))))
  4265. (setq rtn (nreverse ee))
  4266. (setq rtnall (append rtnall rtn)))
  4267. (if org-agenda-overriding-header
  4268. (insert (org-add-props (copy-sequence org-agenda-overriding-header)
  4269. nil 'face 'org-agenda-structure) "\n")
  4270. (insert "Search words: ")
  4271. (add-text-properties (point-min) (1- (point))
  4272. (list 'face 'org-agenda-structure))
  4273. (setq pos (point))
  4274. (insert string "\n")
  4275. (add-text-properties pos (1- (point)) (list 'face 'org-warning))
  4276. (setq pos (point))
  4277. (unless org-agenda-multi
  4278. (insert "Press `[', `]' to add/sub word, `{', `}' to add/sub regexp, `C-u r' to edit\n")
  4279. (add-text-properties pos (1- (point))
  4280. (list 'face 'org-agenda-structure))))
  4281. (org-agenda-mark-header-line (point-min))
  4282. (when rtnall
  4283. (insert (org-agenda-finalize-entries rtnall 'search) "\n"))
  4284. (goto-char (point-min))
  4285. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4286. (add-text-properties (point-min) (point-max)
  4287. `(org-agenda-type search
  4288. org-last-args (,todo-only ,string ,edit-at)
  4289. org-redo-cmd ,org-agenda-redo-command
  4290. org-series-cmd ,org-cmd))
  4291. (org-agenda-finalize)
  4292. (setq buffer-read-only t))))
  4293. ;;; Agenda TODO list
  4294. (defun org-agenda-propertize-selected-todo-keywords (keywords)
  4295. "Use `org-todo-keyword-faces' for the selected todo KEYWORDS."
  4296. (concat
  4297. (if (or (equal keywords "ALL") (not keywords))
  4298. (propertize "ALL" 'face 'warning)
  4299. (mapconcat
  4300. (lambda (kw)
  4301. (propertize kw 'face (org-get-todo-face kw)))
  4302. (org-split-string keywords "|")
  4303. "|"))
  4304. "\n"))
  4305. (defvar org-select-this-todo-keyword nil)
  4306. (defvar org-last-arg nil)
  4307. ;;;###autoload
  4308. (defun org-todo-list (&optional arg)
  4309. "Show all (not done) TODO entries from all agenda file in a single list.
  4310. The prefix arg can be used to select a specific TODO keyword and limit
  4311. the list to these. When using \\[universal-argument], you will be prompted
  4312. for a keyword. A numeric prefix directly selects the Nth keyword in
  4313. `org-todo-keywords-1'."
  4314. (interactive "P")
  4315. (if org-agenda-overriding-arguments
  4316. (setq arg org-agenda-overriding-arguments))
  4317. (if (and (stringp arg) (not (string-match "\\S-" arg))) (setq arg nil))
  4318. (let* ((today (org-today))
  4319. (date (calendar-gregorian-from-absolute today))
  4320. (kwds org-todo-keywords-for-agenda)
  4321. (completion-ignore-case t)
  4322. (org-select-this-todo-keyword
  4323. (if (stringp arg) arg
  4324. (and arg (integerp arg) (> arg 0)
  4325. (nth (1- arg) kwds))))
  4326. rtn rtnall files file pos)
  4327. (when (equal arg '(4))
  4328. (setq org-select-this-todo-keyword
  4329. (org-icompleting-read "Keyword (or KWD1|K2D2|...): "
  4330. (mapcar 'list kwds) nil nil)))
  4331. (and (equal 0 arg) (setq org-select-this-todo-keyword nil))
  4332. (catch 'exit
  4333. (if org-agenda-sticky
  4334. (setq org-agenda-buffer-name
  4335. (if (stringp org-select-this-todo-keyword)
  4336. (format "*Org Agenda(%s:%s)*" (or org-keys "t")
  4337. org-select-this-todo-keyword)
  4338. (format "*Org Agenda(%s)*" (or org-keys "t")))))
  4339. (org-agenda-prepare "TODO")
  4340. (org-compile-prefix-format 'todo)
  4341. (org-set-sorting-strategy 'todo)
  4342. (setq org-agenda-redo-command
  4343. `(org-todo-list (or (and (numberp current-prefix-arg)
  4344. current-prefix-arg)
  4345. ,org-select-this-todo-keyword
  4346. current-prefix-arg ,arg)))
  4347. (setq files (org-agenda-files nil 'ifmode)
  4348. rtnall nil)
  4349. (while (setq file (pop files))
  4350. (catch 'nextfile
  4351. (org-check-agenda-file file)
  4352. (setq rtn (org-agenda-get-day-entries file date :todo))
  4353. (setq rtnall (append rtnall rtn))))
  4354. (if org-agenda-overriding-header
  4355. (insert (org-add-props (copy-sequence org-agenda-overriding-header)
  4356. nil 'face 'org-agenda-structure) "\n")
  4357. (insert "Global list of TODO items of type: ")
  4358. (add-text-properties (point-min) (1- (point))
  4359. (list 'face 'org-agenda-structure
  4360. 'short-heading
  4361. (concat "ToDo: "
  4362. (or org-select-this-todo-keyword "ALL"))))
  4363. (org-agenda-mark-header-line (point-min))
  4364. (insert (org-agenda-propertize-selected-todo-keywords
  4365. org-select-this-todo-keyword))
  4366. (setq pos (point))
  4367. (unless org-agenda-multi
  4368. (insert "Available with `N r': (0)[ALL]")
  4369. (let ((n 0) s)
  4370. (mapc (lambda (x)
  4371. (setq s (format "(%d)%s" (setq n (1+ n)) x))
  4372. (if (> (+ (current-column) (string-width s) 1) (frame-width))
  4373. (insert "\n "))
  4374. (insert " " s))
  4375. kwds))
  4376. (insert "\n"))
  4377. (add-text-properties pos (1- (point)) (list 'face 'org-agenda-structure)))
  4378. (org-agenda-mark-header-line (point-min))
  4379. (when rtnall
  4380. (insert (org-agenda-finalize-entries rtnall 'todo) "\n"))
  4381. (goto-char (point-min))
  4382. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4383. (add-text-properties (point-min) (point-max)
  4384. `(org-agenda-type todo
  4385. org-last-args ,arg
  4386. org-redo-cmd ,org-agenda-redo-command
  4387. org-series-cmd ,org-cmd))
  4388. (org-agenda-finalize)
  4389. (setq buffer-read-only t))))
  4390. ;;; Agenda tags match
  4391. ;;;###autoload
  4392. (defun org-tags-view (&optional todo-only match)
  4393. "Show all headlines for all `org-agenda-files' matching a TAGS criterion.
  4394. The prefix arg TODO-ONLY limits the search to TODO entries."
  4395. (interactive "P")
  4396. (if org-agenda-overriding-arguments
  4397. (setq todo-only (car org-agenda-overriding-arguments)
  4398. match (nth 1 org-agenda-overriding-arguments)))
  4399. (let* ((org-tags-match-list-sublevels
  4400. org-tags-match-list-sublevels)
  4401. (completion-ignore-case t)
  4402. rtn rtnall files file pos matcher
  4403. buffer)
  4404. (when (and (stringp match) (not (string-match "\\S-" match)))
  4405. (setq match nil))
  4406. (catch 'exit
  4407. (if org-agenda-sticky
  4408. (setq org-agenda-buffer-name
  4409. (if (stringp match)
  4410. (format "*Org Agenda(%s:%s)*"
  4411. (or org-keys (or (and todo-only "M") "m")) match)
  4412. (format "*Org Agenda(%s)*" (or (and todo-only "M") "m")))))
  4413. ;; Prepare agendas (and `org-tag-alist-for-agenda') before
  4414. ;; expanding tags within `org-make-tags-matcher'
  4415. (org-agenda-prepare (concat "TAGS " match))
  4416. (setq matcher (org-make-tags-matcher match)
  4417. match (car matcher) matcher (cdr matcher))
  4418. (org-compile-prefix-format 'tags)
  4419. (org-set-sorting-strategy 'tags)
  4420. (setq org-agenda-query-string match)
  4421. (setq org-agenda-redo-command
  4422. (list 'org-tags-view `(quote ,todo-only)
  4423. (list 'if 'current-prefix-arg nil `(quote ,org-agenda-query-string))))
  4424. (setq files (org-agenda-files nil 'ifmode)
  4425. rtnall nil)
  4426. (while (setq file (pop files))
  4427. (catch 'nextfile
  4428. (org-check-agenda-file file)
  4429. (setq buffer (if (file-exists-p file)
  4430. (org-get-agenda-file-buffer file)
  4431. (error "No such file %s" file)))
  4432. (if (not buffer)
  4433. ;; If file does not exist, error message to agenda
  4434. (setq rtn (list
  4435. (format "ORG-AGENDA-ERROR: No such org-file %s" file))
  4436. rtnall (append rtnall rtn))
  4437. (with-current-buffer buffer
  4438. (unless (derived-mode-p 'org-mode)
  4439. (error "Agenda file %s is not in `org-mode'" file))
  4440. (save-excursion
  4441. (save-restriction
  4442. (if (eq buffer org-agenda-restrict)
  4443. (narrow-to-region org-agenda-restrict-begin
  4444. org-agenda-restrict-end)
  4445. (widen))
  4446. (setq rtn (org-scan-tags 'agenda matcher todo-only))
  4447. (setq rtnall (append rtnall rtn))))))))
  4448. (if org-agenda-overriding-header
  4449. (insert (org-add-props (copy-sequence org-agenda-overriding-header)
  4450. nil 'face 'org-agenda-structure) "\n")
  4451. (insert "Headlines with TAGS match: ")
  4452. (add-text-properties (point-min) (1- (point))
  4453. (list 'face 'org-agenda-structure
  4454. 'short-heading
  4455. (concat "Match: " match)))
  4456. (setq pos (point))
  4457. (insert match "\n")
  4458. (add-text-properties pos (1- (point)) (list 'face 'org-warning))
  4459. (setq pos (point))
  4460. (unless org-agenda-multi
  4461. (insert "Press `C-u r' to search again with new search string\n"))
  4462. (add-text-properties pos (1- (point)) (list 'face 'org-agenda-structure)))
  4463. (org-agenda-mark-header-line (point-min))
  4464. (when rtnall
  4465. (insert (org-agenda-finalize-entries rtnall 'tags) "\n"))
  4466. (goto-char (point-min))
  4467. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4468. (add-text-properties (point-min) (point-max)
  4469. `(org-agenda-type tags
  4470. org-last-args (,todo-only ,match)
  4471. org-redo-cmd ,org-agenda-redo-command
  4472. org-series-cmd ,org-cmd))
  4473. (org-agenda-finalize)
  4474. (setq buffer-read-only t))))
  4475. ;;; Agenda Finding stuck projects
  4476. (defvar org-agenda-skip-regexp nil
  4477. "Regular expression used in skipping subtrees for the agenda.
  4478. This is basically a temporary global variable that can be set and then
  4479. used by user-defined selections using `org-agenda-skip-function'.")
  4480. (defvar org-agenda-overriding-header nil
  4481. "When set during agenda, todo and tags searches it replaces the header.
  4482. This variable should not be set directly, but custom commands can bind it
  4483. in the options section.")
  4484. (defun org-agenda-skip-entry-when-regexp-matches ()
  4485. "Check if the current entry contains match for `org-agenda-skip-regexp'.
  4486. If yes, it returns the end position of this entry, causing agenda commands
  4487. to skip the entry but continuing the search in the subtree. This is a
  4488. function that can be put into `org-agenda-skip-function' for the duration
  4489. of a command."
  4490. (let ((end (save-excursion (org-end-of-subtree t)))
  4491. skip)
  4492. (save-excursion
  4493. (setq skip (re-search-forward org-agenda-skip-regexp end t)))
  4494. (and skip end)))
  4495. (defun org-agenda-skip-subtree-when-regexp-matches ()
  4496. "Check if the current subtree contains match for `org-agenda-skip-regexp'.
  4497. If yes, it returns the end position of this tree, causing agenda commands
  4498. to skip this subtree. This is a function that can be put into
  4499. `org-agenda-skip-function' for the duration of a command."
  4500. (let ((end (save-excursion (org-end-of-subtree t)))
  4501. skip)
  4502. (save-excursion
  4503. (setq skip (re-search-forward org-agenda-skip-regexp end t)))
  4504. (and skip end)))
  4505. (defun org-agenda-skip-entry-when-regexp-matches-in-subtree ()
  4506. "Check if the current subtree contains match for `org-agenda-skip-regexp'.
  4507. If yes, it returns the end position of the current entry (NOT the tree),
  4508. causing agenda commands to skip the entry but continuing the search in
  4509. the subtree. This is a function that can be put into
  4510. `org-agenda-skip-function' for the duration of a command. An important
  4511. use of this function is for the stuck project list."
  4512. (let ((end (save-excursion (org-end-of-subtree t)))
  4513. (entry-end (save-excursion (outline-next-heading) (1- (point))))
  4514. skip)
  4515. (save-excursion
  4516. (setq skip (re-search-forward org-agenda-skip-regexp end t)))
  4517. (and skip entry-end)))
  4518. (defun org-agenda-skip-entry-if (&rest conditions)
  4519. "Skip entry if any of CONDITIONS is true.
  4520. See `org-agenda-skip-if' for details."
  4521. (org-agenda-skip-if nil conditions))
  4522. (defun org-agenda-skip-subtree-if (&rest conditions)
  4523. "Skip subtree if any of CONDITIONS is true.
  4524. See `org-agenda-skip-if' for details."
  4525. (org-agenda-skip-if t conditions))
  4526. (defun org-agenda-skip-if (subtree conditions)
  4527. "Checks current entity for CONDITIONS.
  4528. If SUBTREE is non-nil, the entire subtree is checked. Otherwise, only
  4529. the entry (i.e. the text before the next heading) is checked.
  4530. CONDITIONS is a list of symbols, boolean OR is used to combine the results
  4531. from different tests. Valid conditions are:
  4532. scheduled Check if there is a scheduled cookie
  4533. notscheduled Check if there is no scheduled cookie
  4534. deadline Check if there is a deadline
  4535. notdeadline Check if there is no deadline
  4536. timestamp Check if there is a timestamp (also deadline or scheduled)
  4537. nottimestamp Check if there is no timestamp (also deadline or scheduled)
  4538. regexp Check if regexp matches
  4539. notregexp Check if regexp does not match.
  4540. todo Check if TODO keyword matches
  4541. nottodo Check if TODO keyword does not match
  4542. The regexp is taken from the conditions list, it must come right after
  4543. the `regexp' or `notregexp' element.
  4544. `todo' and `nottodo' accept as an argument a list of todo
  4545. keywords, which may include \"*\" to match any todo keyword.
  4546. (org-agenda-skip-entry-if 'todo '(\"TODO\" \"WAITING\"))
  4547. would skip all entries with \"TODO\" or \"WAITING\" keywords.
  4548. Instead of a list, a keyword class may be given. For example:
  4549. (org-agenda-skip-entry-if 'nottodo 'done)
  4550. would skip entries that haven't been marked with any of \"DONE\"
  4551. keywords. Possible classes are: `todo', `done', `any'.
  4552. If any of these conditions is met, this function returns the end point of
  4553. the entity, causing the search to continue from there. This is a function
  4554. that can be put into `org-agenda-skip-function' for the duration of a command."
  4555. (let (beg end m)
  4556. (org-back-to-heading t)
  4557. (setq beg (point)
  4558. end (if subtree
  4559. (progn (org-end-of-subtree t) (point))
  4560. (progn (outline-next-heading) (1- (point)))))
  4561. (goto-char beg)
  4562. (and
  4563. (or
  4564. (and (memq 'scheduled conditions)
  4565. (re-search-forward org-scheduled-time-regexp end t))
  4566. (and (memq 'notscheduled conditions)
  4567. (not (re-search-forward org-scheduled-time-regexp end t)))
  4568. (and (memq 'deadline conditions)
  4569. (re-search-forward org-deadline-time-regexp end t))
  4570. (and (memq 'notdeadline conditions)
  4571. (not (re-search-forward org-deadline-time-regexp end t)))
  4572. (and (memq 'timestamp conditions)
  4573. (re-search-forward org-ts-regexp end t))
  4574. (and (memq 'nottimestamp conditions)
  4575. (not (re-search-forward org-ts-regexp end t)))
  4576. (and (setq m (memq 'regexp conditions))
  4577. (stringp (nth 1 m))
  4578. (re-search-forward (nth 1 m) end t))
  4579. (and (setq m (memq 'notregexp conditions))
  4580. (stringp (nth 1 m))
  4581. (not (re-search-forward (nth 1 m) end t)))
  4582. (and (or
  4583. (setq m (memq 'nottodo conditions))
  4584. (setq m (memq 'todo-unblocked conditions))
  4585. (setq m (memq 'nottodo-unblocked conditions))
  4586. (setq m (memq 'todo conditions)))
  4587. (org-agenda-skip-if-todo m end)))
  4588. end)))
  4589. (defun org-agenda-skip-if-todo (args end)
  4590. "Helper function for `org-agenda-skip-if', do not use it directly.
  4591. ARGS is a list with first element either `todo', `nottodo',
  4592. `todo-unblocked' or `nottodo-unblocked'. The remainder is either
  4593. a list of TODO keywords, or a state symbol `todo' or `done' or
  4594. `any'."
  4595. (let ((kw (car args))
  4596. (arg (cadr args))
  4597. todo-wds todo-re)
  4598. (setq todo-wds
  4599. (org-uniquify
  4600. (cond
  4601. ((listp arg) ;; list of keywords
  4602. (if (member "*" arg)
  4603. (mapcar 'substring-no-properties org-todo-keywords-1)
  4604. arg))
  4605. ((symbolp arg) ;; keyword class name
  4606. (cond
  4607. ((eq arg 'todo)
  4608. (org-delete-all org-done-keywords
  4609. (mapcar 'substring-no-properties
  4610. org-todo-keywords-1)))
  4611. ((eq arg 'done) org-done-keywords)
  4612. ((eq arg 'any)
  4613. (mapcar 'substring-no-properties org-todo-keywords-1)))))))
  4614. (setq todo-re
  4615. (concat "^\\*+[ \t]+\\<\\("
  4616. (mapconcat 'identity todo-wds "\\|")
  4617. "\\)\\>"))
  4618. (cond
  4619. ((eq kw 'todo) (re-search-forward todo-re end t))
  4620. ((eq kw 'nottodo) (not (re-search-forward todo-re end t)))
  4621. ((eq kw 'todo-unblocked)
  4622. (catch 'unblocked
  4623. (while (re-search-forward todo-re end t)
  4624. (or (org-entry-blocked-p) (throw 'unblocked t)))
  4625. nil))
  4626. ((eq kw 'nottodo-unblocked)
  4627. (catch 'unblocked
  4628. (while (re-search-forward todo-re end t)
  4629. (or (org-entry-blocked-p) (throw 'unblocked nil)))
  4630. t))
  4631. )))
  4632. ;;;###autoload
  4633. (defun org-agenda-list-stuck-projects (&rest ignore)
  4634. "Create agenda view for projects that are stuck.
  4635. Stuck projects are project that have no next actions. For the definitions
  4636. of what a project is and how to check if it stuck, customize the variable
  4637. `org-stuck-projects'."
  4638. (interactive)
  4639. (let* ((org-agenda-skip-function
  4640. 'org-agenda-skip-entry-when-regexp-matches-in-subtree)
  4641. ;; We could have used org-agenda-skip-if here.
  4642. (org-agenda-overriding-header
  4643. (or org-agenda-overriding-header "List of stuck projects: "))
  4644. (matcher (nth 0 org-stuck-projects))
  4645. (todo (nth 1 org-stuck-projects))
  4646. (todo-wds (if (member "*" todo)
  4647. (progn
  4648. (org-agenda-prepare-buffers (org-agenda-files
  4649. nil 'ifmode))
  4650. (org-delete-all
  4651. org-done-keywords-for-agenda
  4652. (copy-sequence org-todo-keywords-for-agenda)))
  4653. todo))
  4654. (todo-re (concat "^\\*+[ \t]+\\("
  4655. (mapconcat 'identity todo-wds "\\|")
  4656. "\\)\\>"))
  4657. (tags (nth 2 org-stuck-projects))
  4658. (tags-re (if (member "*" tags)
  4659. (concat org-outline-regexp-bol
  4660. (org-re ".*:[[:alnum:]_@#%]+:[ \t]*$"))
  4661. (if tags
  4662. (concat org-outline-regexp-bol
  4663. ".*:\\("
  4664. (mapconcat 'identity tags "\\|")
  4665. (org-re "\\):[[:alnum:]_@#%:]*[ \t]*$")))))
  4666. (gen-re (nth 3 org-stuck-projects))
  4667. (re-list
  4668. (delq nil
  4669. (list
  4670. (if todo todo-re)
  4671. (if tags tags-re)
  4672. (and gen-re (stringp gen-re) (string-match "\\S-" gen-re)
  4673. gen-re)))))
  4674. (setq org-agenda-skip-regexp
  4675. (if re-list
  4676. (mapconcat 'identity re-list "\\|")
  4677. (error "No information how to identify unstuck projects")))
  4678. (org-tags-view nil matcher)
  4679. (setq org-agenda-buffer-name (buffer-name))
  4680. (with-current-buffer org-agenda-buffer-name
  4681. (setq org-agenda-redo-command
  4682. `(org-agenda-list-stuck-projects ,current-prefix-arg)))))
  4683. ;;; Diary integration
  4684. (defvar org-disable-agenda-to-diary nil) ;Dynamically-scoped param.
  4685. (defvar diary-list-entries-hook)
  4686. (defvar diary-time-regexp)
  4687. (defun org-get-entries-from-diary (date)
  4688. "Get the (Emacs Calendar) diary entries for DATE."
  4689. (require 'diary-lib)
  4690. (let* ((diary-fancy-buffer "*temporary-fancy-diary-buffer*")
  4691. (diary-display-hook '(fancy-diary-display))
  4692. (diary-display-function 'fancy-diary-display)
  4693. (pop-up-frames nil)
  4694. (diary-list-entries-hook
  4695. (cons 'org-diary-default-entry diary-list-entries-hook))
  4696. (diary-file-name-prefix nil) ; turn this feature off
  4697. (diary-modify-entry-list-string-function 'org-modify-diary-entry-string)
  4698. entries
  4699. (org-disable-agenda-to-diary t))
  4700. (save-excursion
  4701. (save-window-excursion
  4702. (funcall (if (fboundp 'diary-list-entries)
  4703. 'diary-list-entries 'list-diary-entries)
  4704. date 1)))
  4705. (if (not (get-buffer diary-fancy-buffer))
  4706. (setq entries nil)
  4707. (with-current-buffer diary-fancy-buffer
  4708. (setq buffer-read-only nil)
  4709. (if (zerop (buffer-size))
  4710. ;; No entries
  4711. (setq entries nil)
  4712. ;; Omit the date and other unnecessary stuff
  4713. (org-agenda-cleanup-fancy-diary)
  4714. ;; Add prefix to each line and extend the text properties
  4715. (if (zerop (buffer-size))
  4716. (setq entries nil)
  4717. (setq entries (buffer-substring (point-min) (- (point-max) 1)))
  4718. (setq entries
  4719. (with-temp-buffer
  4720. (insert entries) (goto-char (point-min))
  4721. (while (re-search-forward "\n[ \t]+\\(.+\\)$" nil t)
  4722. (unless (save-match-data (string-match diary-time-regexp (match-string 1)))
  4723. (replace-match (concat "; " (match-string 1)))))
  4724. (buffer-string)))))
  4725. (set-buffer-modified-p nil)
  4726. (kill-buffer diary-fancy-buffer)))
  4727. (when entries
  4728. (setq entries (org-split-string entries "\n"))
  4729. (setq entries
  4730. (mapcar
  4731. (lambda (x)
  4732. (setq x (org-agenda-format-item "" x nil "Diary" nil 'time))
  4733. ;; Extend the text properties to the beginning of the line
  4734. (org-add-props x (text-properties-at (1- (length x)) x)
  4735. 'type "diary" 'date date 'face 'org-agenda-diary))
  4736. entries)))))
  4737. (defvar org-agenda-cleanup-fancy-diary-hook nil
  4738. "Hook run when the fancy diary buffer is cleaned up.")
  4739. (defun org-agenda-cleanup-fancy-diary ()
  4740. "Remove unwanted stuff in buffer created by `fancy-diary-display'.
  4741. This gets rid of the date, the underline under the date, and
  4742. the dummy entry installed by `org-mode' to ensure non-empty diary for each
  4743. date. It also removes lines that contain only whitespace."
  4744. (goto-char (point-min))
  4745. (if (looking-at ".*?:[ \t]*")
  4746. (progn
  4747. (replace-match "")
  4748. (re-search-forward "\n=+$" nil t)
  4749. (replace-match "")
  4750. (while (re-search-backward "^ +\n?" nil t) (replace-match "")))
  4751. (re-search-forward "\n=+$" nil t)
  4752. (delete-region (point-min) (min (point-max) (1+ (match-end 0)))))
  4753. (goto-char (point-min))
  4754. (while (re-search-forward "^ +\n" nil t)
  4755. (replace-match ""))
  4756. (goto-char (point-min))
  4757. (if (re-search-forward "^Org-mode dummy\n?" nil t)
  4758. (replace-match ""))
  4759. (run-hooks 'org-agenda-cleanup-fancy-diary-hook))
  4760. ;; Make sure entries from the diary have the right text properties.
  4761. (eval-after-load "diary-lib"
  4762. '(if (boundp 'diary-modify-entry-list-string-function)
  4763. ;; We can rely on the hook, nothing to do
  4764. nil
  4765. ;; Hook not available, must use advice to make this work
  4766. (defadvice add-to-diary-list (before org-mark-diary-entry activate)
  4767. "Make the position visible."
  4768. (if (and org-disable-agenda-to-diary ;; called from org-agenda
  4769. (stringp string)
  4770. buffer-file-name)
  4771. (setq string (org-modify-diary-entry-string string))))))
  4772. (defun org-modify-diary-entry-string (string)
  4773. "Add text properties to string, allowing org-mode to act on it."
  4774. (org-add-props string nil
  4775. 'mouse-face 'highlight
  4776. 'help-echo (if buffer-file-name
  4777. (format "mouse-2 or RET jump to diary file %s"
  4778. (abbreviate-file-name buffer-file-name))
  4779. "")
  4780. 'org-agenda-diary-link t
  4781. 'org-marker (org-agenda-new-marker (point-at-bol))))
  4782. (defun org-diary-default-entry ()
  4783. "Add a dummy entry to the diary.
  4784. Needed to avoid empty dates which mess up holiday display."
  4785. ;; Catch the error if dealing with the new add-to-diary-alist
  4786. (when org-disable-agenda-to-diary
  4787. (condition-case nil
  4788. (org-add-to-diary-list original-date "Org-mode dummy" "")
  4789. (error
  4790. (org-add-to-diary-list original-date "Org-mode dummy" "" nil)))))
  4791. (defun org-add-to-diary-list (&rest args)
  4792. (if (fboundp 'diary-add-to-list)
  4793. (apply 'diary-add-to-list args)
  4794. (apply 'add-to-diary-list args)))
  4795. (defvar org-diary-last-run-time nil)
  4796. ;;;###autoload
  4797. (defun org-diary (&rest args)
  4798. "Return diary information from org files.
  4799. This function can be used in a \"sexp\" diary entry in the Emacs calendar.
  4800. It accesses org files and extracts information from those files to be
  4801. listed in the diary. The function accepts arguments specifying what
  4802. items should be listed. For a list of arguments allowed here, see the
  4803. variable `org-agenda-entry-types'.
  4804. The call in the diary file should look like this:
  4805. &%%(org-diary) ~/path/to/some/orgfile.org
  4806. Use a separate line for each org file to check. Or, if you omit the file name,
  4807. all files listed in `org-agenda-files' will be checked automatically:
  4808. &%%(org-diary)
  4809. If you don't give any arguments (as in the example above), the default value
  4810. of `org-agenda-entry-types' is used: (:deadline :scheduled :timestamp :sexp).
  4811. So the example above may also be written as
  4812. &%%(org-diary :deadline :timestamp :sexp :scheduled)
  4813. The function expects the lisp variables `entry' and `date' to be provided
  4814. by the caller, because this is how the calendar works. Don't use this
  4815. function from a program - use `org-agenda-get-day-entries' instead."
  4816. (when (> (- (org-float-time)
  4817. org-agenda-last-marker-time)
  4818. 5)
  4819. ;; I am not sure if this works with sticky agendas, because the marker
  4820. ;; list is then no longer a global variable.
  4821. (org-agenda-reset-markers))
  4822. (org-compile-prefix-format 'agenda)
  4823. (org-set-sorting-strategy 'agenda)
  4824. (setq args (or args org-agenda-entry-types))
  4825. (let* ((files (if (and entry (stringp entry) (string-match "\\S-" entry))
  4826. (list entry)
  4827. (org-agenda-files t)))
  4828. (time (org-float-time))
  4829. file rtn results)
  4830. (when (or (not org-diary-last-run-time)
  4831. (> (- time
  4832. org-diary-last-run-time)
  4833. 3))
  4834. (org-agenda-prepare-buffers files))
  4835. (setq org-diary-last-run-time time)
  4836. ;; If this is called during org-agenda, don't return any entries to
  4837. ;; the calendar. Org Agenda will list these entries itself.
  4838. (if org-disable-agenda-to-diary (setq files nil))
  4839. (while (setq file (pop files))
  4840. (setq rtn (apply 'org-agenda-get-day-entries file date args))
  4841. (setq results (append results rtn)))
  4842. (when results
  4843. (setq results
  4844. (mapcar (lambda (i) (replace-regexp-in-string
  4845. org-bracket-link-regexp "\\3" i)) results))
  4846. (concat (org-agenda-finalize-entries results) "\n"))))
  4847. ;;; Agenda entry finders
  4848. (defun org-agenda-get-day-entries (file date &rest args)
  4849. "Does the work for `org-diary' and `org-agenda'.
  4850. FILE is the path to a file to be checked for entries. DATE is date like
  4851. the one returned by `calendar-current-date'. ARGS are symbols indicating
  4852. which kind of entries should be extracted. For details about these, see
  4853. the documentation of `org-diary'."
  4854. (setq args (or args org-agenda-entry-types))
  4855. (let* ((org-startup-folded nil)
  4856. (org-startup-align-all-tables nil)
  4857. (buffer (if (file-exists-p file)
  4858. (org-get-agenda-file-buffer file)
  4859. (error "No such file %s" file)))
  4860. arg results rtn deadline-results)
  4861. (if (not buffer)
  4862. ;; If file does not exist, make sure an error message ends up in diary
  4863. (list (format "ORG-AGENDA-ERROR: No such org-file %s" file))
  4864. (with-current-buffer buffer
  4865. (unless (derived-mode-p 'org-mode)
  4866. (error "Agenda file %s is not in `org-mode'" file))
  4867. (setq org-agenda-buffer (or org-agenda-buffer buffer))
  4868. (let ((case-fold-search nil))
  4869. (save-excursion
  4870. (save-restriction
  4871. (if (eq buffer org-agenda-restrict)
  4872. (narrow-to-region org-agenda-restrict-begin
  4873. org-agenda-restrict-end)
  4874. (widen))
  4875. ;; The way we repeatedly append to `results' makes it O(n^2) :-(
  4876. (while (setq arg (pop args))
  4877. (cond
  4878. ((and (eq arg :todo)
  4879. (equal date (calendar-gregorian-from-absolute
  4880. (org-today))))
  4881. (setq rtn (org-agenda-get-todos))
  4882. (setq results (append results rtn)))
  4883. ((eq arg :timestamp)
  4884. (setq rtn (org-agenda-get-blocks))
  4885. (setq results (append results rtn))
  4886. (setq rtn (org-agenda-get-timestamps deadline-results))
  4887. (setq results (append results rtn)))
  4888. ((eq arg :sexp)
  4889. (setq rtn (org-agenda-get-sexps))
  4890. (setq results (append results rtn)))
  4891. ((eq arg :scheduled)
  4892. (setq rtn (org-agenda-get-scheduled deadline-results))
  4893. (setq results (append results rtn)))
  4894. ((eq arg :scheduled*)
  4895. (setq rtn (org-agenda-get-scheduled deadline-results t))
  4896. (setq results (append results rtn)))
  4897. ((eq arg :closed)
  4898. (setq rtn (org-agenda-get-progress))
  4899. (setq results (append results rtn)))
  4900. ((eq arg :deadline)
  4901. (setq rtn (org-agenda-get-deadlines))
  4902. (setq deadline-results (copy-sequence rtn))
  4903. (setq results (append results rtn)))
  4904. ((eq arg :deadline*)
  4905. (setq rtn (org-agenda-get-deadlines t))
  4906. (setq deadline-results (copy-sequence rtn))
  4907. (setq results (append results rtn))))))))
  4908. results))))
  4909. (defsubst org-em (x y list)
  4910. "Is X or Y a member of LIST?"
  4911. (or (memq x list) (memq y list)))
  4912. (defvar org-heading-keyword-regexp-format) ; defined in org.el
  4913. (defvar org-agenda-sorting-strategy-selected nil)
  4914. (defun org-agenda-get-todos ()
  4915. "Return the TODO information for agenda display."
  4916. (let* ((props (list 'face nil
  4917. 'done-face 'org-agenda-done
  4918. 'org-not-done-regexp org-not-done-regexp
  4919. 'org-todo-regexp org-todo-regexp
  4920. 'org-complex-heading-regexp org-complex-heading-regexp
  4921. 'mouse-face 'highlight
  4922. 'help-echo
  4923. (format "mouse-2 or RET jump to org file %s"
  4924. (abbreviate-file-name buffer-file-name))))
  4925. (regexp (format org-heading-keyword-regexp-format
  4926. (cond
  4927. ((and org-select-this-todo-keyword
  4928. (equal org-select-this-todo-keyword "*"))
  4929. org-todo-regexp)
  4930. (org-select-this-todo-keyword
  4931. (concat "\\("
  4932. (mapconcat 'identity
  4933. (org-split-string
  4934. org-select-this-todo-keyword
  4935. "|")
  4936. "\\|") "\\)"))
  4937. (t org-not-done-regexp))))
  4938. marker priority category category-pos level tags todo-state ts-date ts-date-type
  4939. ee txt beg end inherited-tags todo-state-end-pos)
  4940. (goto-char (point-min))
  4941. (while (re-search-forward regexp nil t)
  4942. (catch :skip
  4943. (save-match-data
  4944. (beginning-of-line)
  4945. (org-agenda-skip)
  4946. (setq beg (point) end (save-excursion (outline-next-heading) (point)))
  4947. (unless (and (setq todo-state (org-get-todo-state))
  4948. (setq todo-state-end-pos (match-end 2)))
  4949. (goto-char end)
  4950. (throw :skip nil))
  4951. (when (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item end)
  4952. (goto-char (1+ beg))
  4953. (or org-agenda-todo-list-sublevels (org-end-of-subtree 'invisible))
  4954. (throw :skip nil)))
  4955. (goto-char (match-beginning 2))
  4956. (setq marker (org-agenda-new-marker (match-beginning 0))
  4957. category (org-get-category)
  4958. ts-date (let (ts)
  4959. (save-match-data
  4960. (cond ((org-em 'scheduled-up 'scheduled-down
  4961. org-agenda-sorting-strategy-selected)
  4962. (setq ts (org-entry-get (point) "SCHEDULED")
  4963. ts-date-type " scheduled"))
  4964. ((org-em 'deadline-up 'deadline-down
  4965. org-agenda-sorting-strategy-selected)
  4966. (setq ts (org-entry-get (point) "DEADLINE")
  4967. ts-date-type " deadline"))
  4968. ((org-em 'ts-up 'ts-down
  4969. org-agenda-sorting-strategy-selected)
  4970. (setq ts (org-entry-get (point) "TIMESTAMP")
  4971. ts-date-type " timestamp"))
  4972. ((org-em 'tsia-up 'tsia-down
  4973. org-agenda-sorting-strategy-selected)
  4974. (setq ts (org-entry-get (point) "TIMESTAMP_IA")
  4975. ts-date-type " timestamp_ia"))
  4976. ((org-em 'timestamp-up 'timestamp-down
  4977. org-agenda-sorting-strategy-selected)
  4978. (setq ts (or (org-entry-get (point) "SCHEDULED")
  4979. (org-entry-get (point) "DEADLINE")
  4980. (org-entry-get (point) "TIMESTAMP")
  4981. (org-entry-get (point) "TIMESTAMP_IA"))
  4982. ts-date-type ""))
  4983. (t (setq ts-date-type "")))
  4984. (when ts (ignore-errors (org-time-string-to-absolute ts)))))
  4985. category-pos (get-text-property (point) 'org-category-position)
  4986. txt (org-trim
  4987. (buffer-substring (match-beginning 2) (match-end 0)))
  4988. inherited-tags
  4989. (or (eq org-agenda-show-inherited-tags 'always)
  4990. (and (listp org-agenda-show-inherited-tags)
  4991. (memq 'todo org-agenda-show-inherited-tags))
  4992. (and (eq org-agenda-show-inherited-tags t)
  4993. (or (eq org-agenda-use-tag-inheritance t)
  4994. (memq 'todo org-agenda-use-tag-inheritance))))
  4995. tags (org-get-tags-at nil (not inherited-tags))
  4996. level (make-string (org-reduced-level (org-outline-level)) ? )
  4997. txt (org-agenda-format-item "" txt level category tags t)
  4998. priority (1+ (org-get-priority txt)))
  4999. (org-add-props txt props
  5000. 'org-marker marker 'org-hd-marker marker
  5001. 'priority priority 'org-category category
  5002. 'level level
  5003. 'ts-date ts-date
  5004. 'org-category-position category-pos
  5005. 'type (concat "todo" ts-date-type) 'todo-state todo-state)
  5006. (push txt ee)
  5007. (if org-agenda-todo-list-sublevels
  5008. (goto-char todo-state-end-pos)
  5009. (org-end-of-subtree 'invisible))))
  5010. (nreverse ee)))
  5011. (defun org-agenda-todo-custom-ignore-p (time n)
  5012. "Check whether timestamp is farther away than n number of days.
  5013. This function is invoked if `org-agenda-todo-ignore-deadlines',
  5014. `org-agenda-todo-ignore-scheduled' or
  5015. `org-agenda-todo-ignore-timestamp' is set to an integer."
  5016. (let ((days (org-time-stamp-to-now
  5017. time org-agenda-todo-ignore-time-comparison-use-seconds)))
  5018. (if (>= n 0)
  5019. (>= days n)
  5020. (<= days n))))
  5021. ;;;###autoload
  5022. (defun org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item
  5023. (&optional end)
  5024. "Do we have a reason to ignore this TODO entry because it has a time stamp?"
  5025. (when (or org-agenda-todo-ignore-with-date
  5026. org-agenda-todo-ignore-scheduled
  5027. org-agenda-todo-ignore-deadlines
  5028. org-agenda-todo-ignore-timestamp)
  5029. (setq end (or end (save-excursion (outline-next-heading) (point))))
  5030. (save-excursion
  5031. (or (and org-agenda-todo-ignore-with-date
  5032. (re-search-forward org-ts-regexp end t))
  5033. (and org-agenda-todo-ignore-scheduled
  5034. (re-search-forward org-scheduled-time-regexp end t)
  5035. (cond
  5036. ((eq org-agenda-todo-ignore-scheduled 'future)
  5037. (> (org-time-stamp-to-now
  5038. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5039. ((eq org-agenda-todo-ignore-scheduled 'past)
  5040. (<= (org-time-stamp-to-now
  5041. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5042. ((numberp org-agenda-todo-ignore-scheduled)
  5043. (org-agenda-todo-custom-ignore-p
  5044. (match-string 1) org-agenda-todo-ignore-scheduled))
  5045. (t)))
  5046. (and org-agenda-todo-ignore-deadlines
  5047. (re-search-forward org-deadline-time-regexp end t)
  5048. (cond
  5049. ((memq org-agenda-todo-ignore-deadlines '(t all)) t)
  5050. ((eq org-agenda-todo-ignore-deadlines 'far)
  5051. (not (org-deadline-close (match-string 1))))
  5052. ((eq org-agenda-todo-ignore-deadlines 'future)
  5053. (> (org-time-stamp-to-now
  5054. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5055. ((eq org-agenda-todo-ignore-deadlines 'past)
  5056. (<= (org-time-stamp-to-now
  5057. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5058. ((numberp org-agenda-todo-ignore-deadlines)
  5059. (org-agenda-todo-custom-ignore-p
  5060. (match-string 1) org-agenda-todo-ignore-deadlines))
  5061. (t (org-deadline-close (match-string 1)))))
  5062. (and org-agenda-todo-ignore-timestamp
  5063. (let ((buffer (current-buffer))
  5064. (regexp
  5065. (concat
  5066. org-scheduled-time-regexp "\\|" org-deadline-time-regexp))
  5067. (start (point)))
  5068. ;; Copy current buffer into a temporary one
  5069. (with-temp-buffer
  5070. (insert-buffer-substring buffer start end)
  5071. (goto-char (point-min))
  5072. ;; Delete SCHEDULED and DEADLINE items
  5073. (while (re-search-forward regexp end t)
  5074. (delete-region (match-beginning 0) (match-end 0)))
  5075. (goto-char (point-min))
  5076. ;; No search for timestamp left
  5077. (when (re-search-forward org-ts-regexp nil t)
  5078. (cond
  5079. ((eq org-agenda-todo-ignore-timestamp 'future)
  5080. (> (org-time-stamp-to-now
  5081. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5082. ((eq org-agenda-todo-ignore-timestamp 'past)
  5083. (<= (org-time-stamp-to-now
  5084. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5085. ((numberp org-agenda-todo-ignore-timestamp)
  5086. (org-agenda-todo-custom-ignore-p
  5087. (match-string 1) org-agenda-todo-ignore-timestamp))
  5088. (t))))))))))
  5089. (defun org-agenda-get-timestamps (&optional deadline-results)
  5090. "Return the date stamp information for agenda display."
  5091. (let* ((props (list 'face 'org-agenda-calendar-event
  5092. 'org-not-done-regexp org-not-done-regexp
  5093. 'org-todo-regexp org-todo-regexp
  5094. 'org-complex-heading-regexp org-complex-heading-regexp
  5095. 'mouse-face 'highlight
  5096. 'help-echo
  5097. (format "mouse-2 or RET jump to org file %s"
  5098. (abbreviate-file-name buffer-file-name))))
  5099. (d1 (calendar-absolute-from-gregorian date))
  5100. mm
  5101. (deadline-position-alist
  5102. (mapcar (lambda (a) (and (setq mm (get-text-property
  5103. 0 'org-hd-marker a))
  5104. (cons (marker-position mm) a)))
  5105. deadline-results))
  5106. (remove-re org-ts-regexp)
  5107. (regexp
  5108. (concat
  5109. (if org-agenda-include-inactive-timestamps "[[<]" "<")
  5110. (regexp-quote
  5111. (substring
  5112. (format-time-string
  5113. (car org-time-stamp-formats)
  5114. (apply 'encode-time ; DATE bound by calendar
  5115. (list 0 0 0 (nth 1 date) (car date) (nth 2 date))))
  5116. 1 11))
  5117. "\\|\\(<[0-9]+-[0-9]+-[0-9]+[^>\n]+?\\+[0-9]+[hdwmy]>\\)"
  5118. "\\|\\(<%%\\(([^>\n]+)\\)>\\)"))
  5119. marker hdmarker deadlinep scheduledp clockp closedp inactivep
  5120. donep tmp priority category category-pos level ee txt timestr tags
  5121. b0 b3 e3 head todo-state end-of-match show-all warntime habitp
  5122. inherited-tags ts-date)
  5123. (goto-char (point-min))
  5124. (while (setq end-of-match (re-search-forward regexp nil t))
  5125. (setq b0 (match-beginning 0)
  5126. b3 (match-beginning 3) e3 (match-end 3)
  5127. todo-state (save-match-data (ignore-errors (org-get-todo-state)))
  5128. habitp (and (functionp 'org-is-habit-p) (save-match-data (org-is-habit-p)))
  5129. show-all (or (eq org-agenda-repeating-timestamp-show-all t)
  5130. (member todo-state
  5131. org-agenda-repeating-timestamp-show-all)))
  5132. (catch :skip
  5133. (and (org-at-date-range-p) (throw :skip nil))
  5134. (org-agenda-skip)
  5135. (if (and (match-end 1)
  5136. (not (= d1 (org-time-string-to-absolute
  5137. (match-string 1) d1 nil show-all
  5138. (current-buffer) b0))))
  5139. (throw :skip nil))
  5140. (if (and e3
  5141. (not (org-diary-sexp-entry (buffer-substring b3 e3) "" date)))
  5142. (throw :skip nil))
  5143. (setq tmp (buffer-substring (max (point-min)
  5144. (- b0 org-ds-keyword-length))
  5145. b0)
  5146. timestr (if b3 "" (buffer-substring b0 (point-at-eol)))
  5147. inactivep (= (char-after b0) ?\[)
  5148. deadlinep (string-match org-deadline-regexp tmp)
  5149. scheduledp (string-match org-scheduled-regexp tmp)
  5150. closedp (and org-agenda-include-inactive-timestamps
  5151. (string-match org-closed-string tmp))
  5152. clockp (and org-agenda-include-inactive-timestamps
  5153. (or (string-match org-clock-string tmp)
  5154. (string-match "]-+\\'" tmp)))
  5155. warntime (get-text-property (point) 'org-appt-warntime)
  5156. donep (member todo-state org-done-keywords))
  5157. (if (or scheduledp deadlinep closedp clockp
  5158. (and donep org-agenda-skip-timestamp-if-done))
  5159. (throw :skip t))
  5160. (if (string-match ">" timestr)
  5161. ;; substring should only run to end of time stamp
  5162. (setq timestr (substring timestr 0 (match-end 0))))
  5163. (setq marker (org-agenda-new-marker b0)
  5164. category (org-get-category b0)
  5165. category-pos (get-text-property b0 'org-category-position))
  5166. (save-excursion
  5167. (if (not (re-search-backward org-outline-regexp-bol nil t))
  5168. (throw :skip nil)
  5169. (goto-char (match-beginning 0))
  5170. (if (and (eq t org-agenda-skip-timestamp-if-deadline-is-shown)
  5171. (assoc (point) deadline-position-alist))
  5172. (throw :skip nil))
  5173. (setq hdmarker (org-agenda-new-marker)
  5174. inherited-tags
  5175. (or (eq org-agenda-show-inherited-tags 'always)
  5176. (and (listp org-agenda-show-inherited-tags)
  5177. (memq 'agenda org-agenda-show-inherited-tags))
  5178. (and (eq org-agenda-show-inherited-tags t)
  5179. (or (eq org-agenda-use-tag-inheritance t)
  5180. (memq 'agenda org-agenda-use-tag-inheritance))))
  5181. tags (org-get-tags-at nil (not inherited-tags))
  5182. level (make-string (org-reduced-level (org-outline-level)) ? ))
  5183. (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
  5184. (setq head (or (match-string 1) ""))
  5185. (setq txt (org-agenda-format-item
  5186. (if inactivep org-agenda-inactive-leader nil)
  5187. head level category tags timestr
  5188. remove-re habitp)))
  5189. (setq priority (org-get-priority txt))
  5190. (org-add-props txt props 'priority priority
  5191. 'org-marker marker 'org-hd-marker hdmarker
  5192. 'org-category category 'date date
  5193. 'level level
  5194. 'ts-date
  5195. (ignore-errors (org-time-string-to-absolute timestr))
  5196. 'org-category-position category-pos
  5197. 'todo-state todo-state
  5198. 'warntime warntime
  5199. 'type "timestamp")
  5200. (push txt ee))
  5201. (if org-agenda-skip-additional-timestamps-same-entry
  5202. (outline-next-heading)
  5203. (goto-char end-of-match))))
  5204. (nreverse ee)))
  5205. (defun org-agenda-get-sexps ()
  5206. "Return the sexp information for agenda display."
  5207. (require 'diary-lib)
  5208. (let* ((props (list 'face 'org-agenda-calendar-sexp
  5209. 'mouse-face 'highlight
  5210. 'help-echo
  5211. (format "mouse-2 or RET jump to org file %s"
  5212. (abbreviate-file-name buffer-file-name))))
  5213. (regexp "^&?%%(")
  5214. marker category extra category-pos level ee txt tags entry
  5215. result beg b sexp sexp-entry todo-state warntime inherited-tags)
  5216. (goto-char (point-min))
  5217. (while (re-search-forward regexp nil t)
  5218. (catch :skip
  5219. (org-agenda-skip)
  5220. (setq beg (match-beginning 0))
  5221. (goto-char (1- (match-end 0)))
  5222. (setq b (point))
  5223. (forward-sexp 1)
  5224. (setq sexp (buffer-substring b (point)))
  5225. (setq sexp-entry (if (looking-at "[ \t]*\\(\\S-.*\\)")
  5226. (org-trim (match-string 1))
  5227. ""))
  5228. (setq result (org-diary-sexp-entry sexp sexp-entry date))
  5229. (when result
  5230. (setq marker (org-agenda-new-marker beg)
  5231. level (make-string (org-reduced-level (org-outline-level)) ? )
  5232. category (org-get-category beg)
  5233. category-pos (get-text-property beg 'org-category-position)
  5234. inherited-tags
  5235. (or (eq org-agenda-show-inherited-tags 'always)
  5236. (and (listp org-agenda-show-inherited-tags)
  5237. (memq 'agenda org-agenda-show-inherited-tags))
  5238. (and (eq org-agenda-show-inherited-tags t)
  5239. (or (eq org-agenda-use-tag-inheritance t)
  5240. (memq 'agenda org-agenda-use-tag-inheritance))))
  5241. tags (org-get-tags-at nil (not inherited-tags))
  5242. todo-state (org-get-todo-state)
  5243. warntime (get-text-property (point) 'org-appt-warntime)
  5244. extra nil)
  5245. (dolist (r (if (stringp result)
  5246. (list result)
  5247. result)) ;; we expect a list here
  5248. (when (and org-agenda-diary-sexp-prefix
  5249. (string-match org-agenda-diary-sexp-prefix r))
  5250. (setq extra (match-string 0 r)
  5251. r (replace-match "" nil nil r)))
  5252. (if (string-match "\\S-" r)
  5253. (setq txt r)
  5254. (setq txt "SEXP entry returned empty string"))
  5255. (setq txt (org-agenda-format-item extra txt level category tags 'time))
  5256. (org-add-props txt props 'org-marker marker
  5257. 'org-category category 'date date 'todo-state todo-state
  5258. 'org-category-position category-pos 'tags tags
  5259. 'level level
  5260. 'type "sexp" 'warntime warntime)
  5261. (push txt ee)))))
  5262. (nreverse ee)))
  5263. ;; Calendar sanity: define some functions that are independent of
  5264. ;; `calendar-date-style'.
  5265. ;; Normally I would like to use ISO format when calling the diary functions,
  5266. ;; but to make sure we still have Emacs 22 compatibility we bind
  5267. ;; also `european-calendar-style' and use european format
  5268. (defun org-anniversary (year month day &optional mark)
  5269. "Like `diary-anniversary', but with fixed (ISO) order of arguments."
  5270. (org-no-warnings
  5271. (let ((calendar-date-style 'european) (european-calendar-style t))
  5272. (diary-anniversary day month year mark))))
  5273. (defun org-cyclic (N year month day &optional mark)
  5274. "Like `diary-cyclic', but with fixed (ISO) order of arguments."
  5275. (org-no-warnings
  5276. (let ((calendar-date-style 'european) (european-calendar-style t))
  5277. (diary-cyclic N day month year mark))))
  5278. (defun org-block (Y1 M1 D1 Y2 M2 D2 &optional mark)
  5279. "Like `diary-block', but with fixed (ISO) order of arguments."
  5280. (org-no-warnings
  5281. (let ((calendar-date-style 'european) (european-calendar-style t))
  5282. (diary-block D1 M1 Y1 D2 M2 Y2 mark))))
  5283. (defun org-date (year month day &optional mark)
  5284. "Like `diary-date', but with fixed (ISO) order of arguments."
  5285. (org-no-warnings
  5286. (let ((calendar-date-style 'european) (european-calendar-style t))
  5287. (diary-date day month year mark))))
  5288. ;; Define the` org-class' function
  5289. (defun org-class (y1 m1 d1 y2 m2 d2 dayname &rest skip-weeks)
  5290. "Entry applies if date is between dates on DAYNAME, but skips SKIP-WEEKS.
  5291. DAYNAME is a number between 0 (Sunday) and 6 (Saturday).
  5292. SKIP-WEEKS is any number of ISO weeks in the block period for which the
  5293. item should be skipped. If any of the SKIP-WEEKS arguments is the symbol
  5294. `holidays', then any date that is known by the Emacs calendar to be a
  5295. holiday will also be skipped. If SKIP-WEEKS arguments are holiday strings,
  5296. then those holidays will be skipped."
  5297. (let* ((date1 (calendar-absolute-from-gregorian (list m1 d1 y1)))
  5298. (date2 (calendar-absolute-from-gregorian (list m2 d2 y2)))
  5299. (d (calendar-absolute-from-gregorian date))
  5300. (h (when skip-weeks (calendar-check-holidays date))))
  5301. (and
  5302. (<= date1 d)
  5303. (<= d date2)
  5304. (= (calendar-day-of-week date) dayname)
  5305. (or (not skip-weeks)
  5306. (progn
  5307. (require 'cal-iso)
  5308. (not (member (car (calendar-iso-from-absolute d)) skip-weeks))))
  5309. (not (or (and h (memq 'holidays skip-weeks))
  5310. (delq nil (mapcar (lambda(g) (member g skip-weeks)) h))))
  5311. entry)))
  5312. (defun org-diary-class (m1 d1 y1 m2 d2 y2 dayname &rest skip-weeks)
  5313. "Like `org-class', but honor `calendar-date-style'.
  5314. The order of the first 2 times 3 arguments depends on the variable
  5315. `calendar-date-style' or, if that is not defined, on `european-calendar-style'.
  5316. So for American calendars, give this as MONTH DAY YEAR, for European as
  5317. DAY MONTH YEAR, and for ISO as YEAR MONTH DAY.
  5318. DAYNAME is a number between 0 (Sunday) and 6 (Saturday). SKIP-WEEKS
  5319. is any number of ISO weeks in the block period for which the item should
  5320. be skipped.
  5321. This function is here only for backward compatibility and it is deprecated,
  5322. please use `org-class' instead."
  5323. (let* ((date1 (org-order-calendar-date-args m1 d1 y1))
  5324. (date2 (org-order-calendar-date-args m2 d2 y2)))
  5325. (org-class
  5326. (nth 2 date1) (car date1) (nth 1 date1)
  5327. (nth 2 date2) (car date2) (nth 1 date2)
  5328. dayname skip-weeks)))
  5329. (make-obsolete 'org-diary-class 'org-class "")
  5330. (defalias 'org-get-closed 'org-agenda-get-progress)
  5331. (defun org-agenda-get-progress ()
  5332. "Return the logged TODO entries for agenda display."
  5333. (let* ((props (list 'mouse-face 'highlight
  5334. 'org-not-done-regexp org-not-done-regexp
  5335. 'org-todo-regexp org-todo-regexp
  5336. 'org-complex-heading-regexp org-complex-heading-regexp
  5337. 'help-echo
  5338. (format "mouse-2 or RET jump to org file %s"
  5339. (abbreviate-file-name buffer-file-name))))
  5340. (items (if (consp org-agenda-show-log-scoped)
  5341. org-agenda-show-log-scoped
  5342. (if (eq org-agenda-show-log-scoped 'clockcheck)
  5343. '(clock)
  5344. org-agenda-log-mode-items)))
  5345. (parts
  5346. (delq nil
  5347. (list
  5348. (if (memq 'closed items) (concat "\\<" org-closed-string))
  5349. (if (memq 'clock items) (concat "\\<" org-clock-string))
  5350. (if (memq 'state items) "- State \"\\([a-zA-Z0-9]+\\)\".*?"))))
  5351. (parts-re (if parts (mapconcat 'identity parts "\\|")
  5352. (error "`org-agenda-log-mode-items' is empty")))
  5353. (regexp (concat
  5354. "\\(" parts-re "\\)"
  5355. " *\\["
  5356. (regexp-quote
  5357. (substring
  5358. (format-time-string
  5359. (car org-time-stamp-formats)
  5360. (apply 'encode-time ; DATE bound by calendar
  5361. (list 0 0 0 (nth 1 date) (car date) (nth 2 date))))
  5362. 1 11))))
  5363. (org-agenda-search-headline-for-time nil)
  5364. marker hdmarker priority category category-pos level tags closedp
  5365. statep clockp state ee txt extra timestr rest clocked inherited-tags)
  5366. (goto-char (point-min))
  5367. (while (re-search-forward regexp nil t)
  5368. (catch :skip
  5369. (org-agenda-skip)
  5370. (setq marker (org-agenda-new-marker (match-beginning 0))
  5371. closedp (equal (match-string 1) org-closed-string)
  5372. statep (equal (string-to-char (match-string 1)) ?-)
  5373. clockp (not (or closedp statep))
  5374. state (and statep (match-string 2))
  5375. category (org-get-category (match-beginning 0))
  5376. category-pos (get-text-property (match-beginning 0) 'org-category-position)
  5377. timestr (buffer-substring (match-beginning 0) (point-at-eol)))
  5378. (when (string-match "\\]" timestr)
  5379. ;; substring should only run to end of time stamp
  5380. (setq rest (substring timestr (match-end 0))
  5381. timestr (substring timestr 0 (match-end 0)))
  5382. (if (and (not closedp) (not statep)
  5383. (string-match "\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)\\].*?\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)"
  5384. rest))
  5385. (progn (setq timestr (concat (substring timestr 0 -1)
  5386. "-" (match-string 1 rest) "]"))
  5387. (setq clocked (match-string 2 rest)))
  5388. (setq clocked "-")))
  5389. (save-excursion
  5390. (setq extra
  5391. (cond
  5392. ((not org-agenda-log-mode-add-notes) nil)
  5393. (statep
  5394. (and (looking-at ".*\\\\\n[ \t]*\\([^-\n \t].*?\\)[ \t]*$")
  5395. (match-string 1)))
  5396. (clockp
  5397. (and (looking-at ".*\n[ \t]*-[ \t]+\\([^-\n \t].*?\\)[ \t]*$")
  5398. (match-string 1)))))
  5399. (if (not (re-search-backward org-outline-regexp-bol nil t))
  5400. (throw :skip nil)
  5401. (goto-char (match-beginning 0))
  5402. (setq hdmarker (org-agenda-new-marker)
  5403. inherited-tags
  5404. (or (eq org-agenda-show-inherited-tags 'always)
  5405. (and (listp org-agenda-show-inherited-tags)
  5406. (memq 'todo org-agenda-show-inherited-tags))
  5407. (and (eq org-agenda-show-inherited-tags t)
  5408. (or (eq org-agenda-use-tag-inheritance t)
  5409. (memq 'todo org-agenda-use-tag-inheritance))))
  5410. tags (org-get-tags-at nil (not inherited-tags))
  5411. level (make-string (org-reduced-level (org-outline-level)) ? ))
  5412. (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
  5413. (setq txt (match-string 1))
  5414. (when extra
  5415. (if (string-match "\\([ \t]+\\)\\(:[^ \n\t]*?:\\)[ \t]*$" txt)
  5416. (setq txt (concat (substring txt 0 (match-beginning 1))
  5417. " - " extra " " (match-string 2 txt)))
  5418. (setq txt (concat txt " - " extra))))
  5419. (setq txt (org-agenda-format-item
  5420. (cond
  5421. (closedp "Closed: ")
  5422. (statep (concat "State: (" state ")"))
  5423. (t (concat "Clocked: (" clocked ")")))
  5424. txt level category tags timestr)))
  5425. (setq priority 100000)
  5426. (org-add-props txt props
  5427. 'org-marker marker 'org-hd-marker hdmarker 'face 'org-agenda-done
  5428. 'priority priority 'org-category category
  5429. 'org-category-position category-pos
  5430. 'level level
  5431. 'type "closed" 'date date
  5432. 'undone-face 'org-warning 'done-face 'org-agenda-done)
  5433. (push txt ee))
  5434. (goto-char (point-at-eol))))
  5435. (nreverse ee)))
  5436. (defun org-agenda-show-clocking-issues ()
  5437. "Add overlays, showing issues with clocking.
  5438. See also the user option `org-agenda-clock-consistency-checks'."
  5439. (interactive)
  5440. (let* ((org-time-clocksum-use-effort-durations nil)
  5441. (pl org-agenda-clock-consistency-checks)
  5442. (re (concat "^[ \t]*"
  5443. org-clock-string
  5444. "[ \t]+"
  5445. "\\(\\[.*?\\]\\)" ; group 1 is first stamp
  5446. "\\(-\\{1,3\\}\\(\\[.*?\\]\\)\\)?")) ; group 3 is second
  5447. (tlstart 0.)
  5448. (tlend 0.)
  5449. (maxtime (org-hh:mm-string-to-minutes
  5450. (or (plist-get pl :max-duration) "24:00")))
  5451. (mintime (org-hh:mm-string-to-minutes
  5452. (or (plist-get pl :min-duration) 0)))
  5453. (maxgap (org-hh:mm-string-to-minutes
  5454. ;; default 30:00 means never complain
  5455. (or (plist-get pl :max-gap) "30:00")))
  5456. (gapok (mapcar 'org-hh:mm-string-to-minutes
  5457. (plist-get pl :gap-ok-around)))
  5458. (def-face (or (plist-get pl :default-face)
  5459. '((:background "DarkRed") (:foreground "white"))))
  5460. issue face m te ts dt ov)
  5461. (goto-char (point-min))
  5462. (while (re-search-forward " Clocked: +(-\\|\\([0-9]+:[0-9]+\\))" nil t)
  5463. (setq issue nil face def-face)
  5464. (catch 'next
  5465. (setq m (org-get-at-bol 'org-marker)
  5466. te nil ts nil)
  5467. (unless (and m (markerp m))
  5468. (setq issue "No valid clock line") (throw 'next t))
  5469. (org-with-point-at m
  5470. (save-excursion
  5471. (goto-char (point-at-bol))
  5472. (unless (looking-at re)
  5473. (error "No valid Clock line")
  5474. (throw 'next t))
  5475. (unless (match-end 3)
  5476. (setq issue "No end time"
  5477. face (or (plist-get pl :no-end-time-face) face))
  5478. (throw 'next t))
  5479. (setq ts (match-string 1)
  5480. te (match-string 3)
  5481. ts (org-float-time
  5482. (apply 'encode-time (org-parse-time-string ts)))
  5483. te (org-float-time
  5484. (apply 'encode-time (org-parse-time-string te)))
  5485. dt (- te ts))))
  5486. (cond
  5487. ((> dt (* 60 maxtime))
  5488. ;; a very long clocking chunk
  5489. (setq issue (format "Clocking interval is very long: %s"
  5490. (org-minutes-to-clocksum-string
  5491. (floor (/ (float dt) 60.))))
  5492. face (or (plist-get pl :long-face) face)))
  5493. ((< dt (* 60 mintime))
  5494. ;; a very short clocking chunk
  5495. (setq issue (format "Clocking interval is very short: %s"
  5496. (org-minutes-to-clocksum-string
  5497. (floor (/ (float dt) 60.))))
  5498. face (or (plist-get pl :short-face) face)))
  5499. ((and (> tlend 0) (< ts tlend))
  5500. ;; Two clock entries are overlapping
  5501. (setq issue (format "Clocking overlap: %d minutes"
  5502. (/ (- tlend ts) 60))
  5503. face (or (plist-get pl :overlap-face) face)))
  5504. ((and (> tlend 0) (> ts (+ tlend (* 60 maxgap))))
  5505. ;; There is a gap, lets see if we need to report it
  5506. (unless (org-agenda-check-clock-gap tlend ts gapok)
  5507. (setq issue (format "Clocking gap: %d minutes"
  5508. (/ (- ts tlend) 60))
  5509. face (or (plist-get pl :gap-face) face))))
  5510. (t nil)))
  5511. (setq tlend (or te tlend) tlstart (or ts tlstart))
  5512. (when issue
  5513. ;; OK, there was some issue, add an overlay to show the issue
  5514. (setq ov (make-overlay (point-at-bol) (point-at-eol)))
  5515. (overlay-put ov 'before-string
  5516. (concat
  5517. (org-add-props
  5518. (format "%-43s" (concat " " issue))
  5519. nil
  5520. 'face face)
  5521. "\n"))
  5522. (overlay-put ov 'evaporate t)))))
  5523. (defun org-agenda-check-clock-gap (t1 t2 ok-list)
  5524. "Check if gap T1 -> T2 contains one of the OK-LIST time-of-day values."
  5525. (catch 'exit
  5526. (unless ok-list
  5527. ;; there are no OK times for gaps...
  5528. (throw 'exit nil))
  5529. (if (> (- (/ t2 36000) (/ t1 36000)) 24)
  5530. ;; This is more than 24 hours, so it is OK.
  5531. ;; because we have at least one OK time, that must be in the
  5532. ;; 24 hour interval.
  5533. (throw 'exit t))
  5534. ;; We have a shorter gap.
  5535. ;; Now we have to get the minute of the day when these times are
  5536. (let* ((t1dec (decode-time (seconds-to-time t1)))
  5537. (t2dec (decode-time (seconds-to-time t2)))
  5538. ;; compute the minute on the day
  5539. (min1 (+ (nth 1 t1dec) (* 60 (nth 2 t1dec))))
  5540. (min2 (+ (nth 1 t2dec) (* 60 (nth 2 t2dec)))))
  5541. (when (< min2 min1)
  5542. ;; if min2 is smaller than min1, this means it is on the next day.
  5543. ;; Wrap it to after midnight.
  5544. (setq min2 (+ min2 1440)))
  5545. ;; Now check if any of the OK times is in the gap
  5546. (mapc (lambda (x)
  5547. ;; Wrap the time to after midnight if necessary
  5548. (if (< x min1) (setq x (+ x 1440)))
  5549. ;; Check if in interval
  5550. (and (<= min1 x) (>= min2 x) (throw 'exit t)))
  5551. ok-list)
  5552. ;; Nope, this gap is not OK
  5553. nil)))
  5554. (defun org-agenda-get-deadlines (&optional with-hour)
  5555. "Return the deadline information for agenda display.
  5556. When WITH-HOUR is non-nil, only return deadlines with an hour
  5557. specification like [h]h:mm."
  5558. (let* ((props (list 'mouse-face 'highlight
  5559. 'org-not-done-regexp org-not-done-regexp
  5560. 'org-todo-regexp org-todo-regexp
  5561. 'org-complex-heading-regexp org-complex-heading-regexp
  5562. 'help-echo
  5563. (format "mouse-2 or RET jump to org file %s"
  5564. (abbreviate-file-name buffer-file-name))))
  5565. (regexp (if with-hour
  5566. org-deadline-time-hour-regexp
  5567. org-deadline-time-regexp))
  5568. (todayp (org-agenda-todayp date)) ; DATE bound by calendar
  5569. (d1 (calendar-absolute-from-gregorian date)) ; DATE bound by calendar
  5570. (dl0 (car org-agenda-deadline-leaders))
  5571. (dl1 (nth 1 org-agenda-deadline-leaders))
  5572. (dl2 (or (nth 2 org-agenda-deadline-leaders) dl1))
  5573. d2 diff dfrac wdays pos pos1 category category-pos level
  5574. tags suppress-prewarning ee txt head face s todo-state
  5575. show-all upcomingp donep timestr warntime inherited-tags ts-date)
  5576. (goto-char (point-min))
  5577. (while (re-search-forward regexp nil t)
  5578. (catch :skip
  5579. (org-agenda-skip)
  5580. (setq s (match-string 1)
  5581. txt nil
  5582. pos (1- (match-beginning 1))
  5583. todo-state (save-match-data (org-get-todo-state))
  5584. show-all (or (eq org-agenda-repeating-timestamp-show-all t)
  5585. (member todo-state
  5586. org-agenda-repeating-timestamp-show-all))
  5587. d2 (org-time-string-to-absolute
  5588. s d1 'past show-all (current-buffer) pos)
  5589. diff (- d2 d1))
  5590. (setq suppress-prewarning
  5591. (let ((ds (and org-agenda-skip-deadline-prewarning-if-scheduled
  5592. (let ((item (buffer-substring (point-at-bol)
  5593. (point-at-eol))))
  5594. (save-match-data
  5595. (and (string-match
  5596. org-scheduled-time-regexp item)
  5597. (match-string 1 item)))))))
  5598. (cond
  5599. ((not ds) nil)
  5600. ;; The current item has a scheduled date (in ds), so
  5601. ;; evaluate its prewarning lead time.
  5602. ((integerp org-agenda-skip-deadline-prewarning-if-scheduled)
  5603. ;; Use global prewarning-restart lead time.
  5604. org-agenda-skip-deadline-prewarning-if-scheduled)
  5605. ((eq org-agenda-skip-deadline-prewarning-if-scheduled
  5606. 'pre-scheduled)
  5607. ;; Set prewarning to no earlier than scheduled.
  5608. (min (- d2 (org-time-string-to-absolute
  5609. ds d1 'past show-all (current-buffer) pos))
  5610. org-deadline-warning-days))
  5611. ;; Set prewarning to deadline.
  5612. (t 0))))
  5613. (setq wdays (if suppress-prewarning
  5614. (let ((org-deadline-warning-days suppress-prewarning))
  5615. (org-get-wdays s))
  5616. (org-get-wdays s))
  5617. dfrac (- 1 (/ (* 1.0 diff) (max wdays 1)))
  5618. upcomingp (and todayp (> diff 0)))
  5619. ;; When to show a deadline in the calendar:
  5620. ;; If the expiration is within wdays warning time.
  5621. ;; Past-due deadlines are only shown on the current date
  5622. (if (and (or (and (<= diff wdays)
  5623. (and todayp (not org-agenda-only-exact-dates)))
  5624. (= diff 0)))
  5625. (save-excursion
  5626. ;; (setq todo-state (org-get-todo-state))
  5627. (setq donep (member todo-state org-done-keywords))
  5628. (if (and donep
  5629. (or org-agenda-skip-deadline-if-done
  5630. (not (= diff 0))))
  5631. (setq txt nil)
  5632. (setq category (org-get-category)
  5633. warntime (get-text-property (point) 'org-appt-warntime)
  5634. category-pos (get-text-property (point) 'org-category-position))
  5635. (if (not (re-search-backward "^\\*+[ \t]+" nil t))
  5636. (throw :skip nil)
  5637. (goto-char (match-end 0))
  5638. (setq pos1 (match-beginning 0))
  5639. (setq level (make-string (org-reduced-level (org-outline-level)) ? ))
  5640. (setq inherited-tags
  5641. (or (eq org-agenda-show-inherited-tags 'always)
  5642. (and (listp org-agenda-show-inherited-tags)
  5643. (memq 'agenda org-agenda-show-inherited-tags))
  5644. (and (eq org-agenda-show-inherited-tags t)
  5645. (or (eq org-agenda-use-tag-inheritance t)
  5646. (memq 'agenda org-agenda-use-tag-inheritance))))
  5647. tags (org-get-tags-at pos1 (not inherited-tags)))
  5648. (setq head (buffer-substring
  5649. (point)
  5650. (progn (skip-chars-forward "^\r\n")
  5651. (point))))
  5652. (if (string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
  5653. (setq timestr
  5654. (concat (substring s (match-beginning 1)) " "))
  5655. (setq timestr 'time))
  5656. (setq txt (org-agenda-format-item
  5657. (cond ((= diff 0) dl0)
  5658. ((> diff 0)
  5659. (if (functionp dl1)
  5660. (funcall dl1 diff date)
  5661. (format dl1 diff)))
  5662. (t
  5663. (if (functionp dl2)
  5664. (funcall dl2 diff date)
  5665. (format dl2 (if (string= dl2 dl1)
  5666. diff (abs diff))))))
  5667. head level category tags
  5668. (if (not (= diff 0)) nil timestr)))))
  5669. (when txt
  5670. (setq face (org-agenda-deadline-face dfrac))
  5671. (org-add-props txt props
  5672. 'org-marker (org-agenda-new-marker pos)
  5673. 'warntime warntime
  5674. 'level level
  5675. 'ts-date d2
  5676. 'org-hd-marker (org-agenda-new-marker pos1)
  5677. 'priority (+ (- diff)
  5678. (org-get-priority txt))
  5679. 'org-category category
  5680. 'org-category-position category-pos
  5681. 'todo-state todo-state
  5682. 'type (if upcomingp "upcoming-deadline" "deadline")
  5683. 'date (if upcomingp date d2)
  5684. 'face (if donep 'org-agenda-done face)
  5685. 'undone-face face 'done-face 'org-agenda-done)
  5686. (push txt ee))))))
  5687. (nreverse ee)))
  5688. (defun org-agenda-deadline-face (fraction)
  5689. "Return the face to displaying a deadline item.
  5690. FRACTION is what fraction of the head-warning time has passed."
  5691. (let ((faces org-agenda-deadline-faces) f)
  5692. (catch 'exit
  5693. (while (setq f (pop faces))
  5694. (if (>= fraction (car f)) (throw 'exit (cdr f)))))))
  5695. (defun org-agenda-get-scheduled (&optional deadline-results with-hour)
  5696. "Return the scheduled information for agenda display.
  5697. When WITH-HOUR is non-nil, only return scheduled items with
  5698. an hour specification like [h]h:mm."
  5699. (let* ((props (list 'org-not-done-regexp org-not-done-regexp
  5700. 'org-todo-regexp org-todo-regexp
  5701. 'org-complex-heading-regexp org-complex-heading-regexp
  5702. 'done-face 'org-agenda-done
  5703. 'mouse-face 'highlight
  5704. 'help-echo
  5705. (format "mouse-2 or RET jump to org file %s"
  5706. (abbreviate-file-name buffer-file-name))))
  5707. (regexp (if with-hour
  5708. org-scheduled-time-hour-regexp
  5709. org-scheduled-time-regexp))
  5710. (todayp (org-agenda-todayp date)) ; DATE bound by calendar
  5711. (d1 (calendar-absolute-from-gregorian date)) ; DATE bound by calendar
  5712. mm
  5713. (deadline-position-alist
  5714. (mapcar (lambda (a) (and (setq mm (get-text-property
  5715. 0 'org-hd-marker a))
  5716. (cons (marker-position mm) a)))
  5717. deadline-results))
  5718. d2 diff pos pos1 category category-pos level tags donep
  5719. ee txt head pastschedp todo-state face timestr s habitp show-all
  5720. did-habit-check-p warntime inherited-tags ts-date suppress-delay
  5721. ddays)
  5722. (goto-char (point-min))
  5723. (while (re-search-forward regexp nil t)
  5724. (catch :skip
  5725. (org-agenda-skip)
  5726. (setq s (match-string 1)
  5727. txt nil
  5728. pos (1- (match-beginning 1))
  5729. todo-state (save-match-data (org-get-todo-state))
  5730. show-all (or (eq org-agenda-repeating-timestamp-show-all t)
  5731. (member todo-state
  5732. org-agenda-repeating-timestamp-show-all))
  5733. d2 (org-time-string-to-absolute
  5734. s d1 'past show-all (current-buffer) pos)
  5735. diff (- d2 d1)
  5736. warntime (get-text-property (point) 'org-appt-warntime))
  5737. (setq pastschedp (and todayp (< diff 0)))
  5738. (setq did-habit-check-p nil)
  5739. (setq suppress-delay
  5740. (let ((ds (and org-agenda-skip-scheduled-delay-if-deadline
  5741. (let ((item (buffer-substring (point-at-bol) (point-at-eol))))
  5742. (save-match-data
  5743. (and (string-match
  5744. org-deadline-time-regexp item)
  5745. (match-string 1 item)))))))
  5746. (cond
  5747. ((not ds) nil)
  5748. ;; The current item has a deadline date (in ds), so
  5749. ;; evaluate its delay time.
  5750. ((integerp org-agenda-skip-scheduled-delay-if-deadline)
  5751. ;; Use global delay time.
  5752. (- org-agenda-skip-scheduled-delay-if-deadline))
  5753. ((eq org-agenda-skip-scheduled-delay-if-deadline
  5754. 'post-deadline)
  5755. ;; Set delay to no later than deadline.
  5756. (min (- d2 (org-time-string-to-absolute
  5757. ds d1 'past show-all (current-buffer) pos))
  5758. org-scheduled-delay-days))
  5759. (t 0))))
  5760. (setq ddays (if suppress-delay
  5761. (let ((org-scheduled-delay-days suppress-delay))
  5762. (org-get-wdays s t t))
  5763. (org-get-wdays s t)))
  5764. ;; Use a delay of 0 when there is a repeater and the delay is
  5765. ;; of the form --3d
  5766. (when (and (save-match-data (string-match "--[0-9]+[hdwmy]" s))
  5767. (< (org-time-string-to-absolute s)
  5768. (org-time-string-to-absolute
  5769. s d2 'past nil (current-buffer) pos)))
  5770. (setq ddays 0))
  5771. ;; When to show a scheduled item in the calendar:
  5772. ;; If it is on or past the date.
  5773. (when (or (and (> ddays 0) (= diff (- ddays)))
  5774. (and (zerop ddays) (= diff 0))
  5775. (and (< (+ diff ddays) 0)
  5776. (< (abs diff) org-scheduled-past-days)
  5777. (and todayp (not org-agenda-only-exact-dates)))
  5778. ;; org-is-habit-p uses org-entry-get, which is expansive
  5779. ;; so we go extra mile to only call it once
  5780. (and todayp
  5781. (boundp 'org-habit-show-all-today)
  5782. org-habit-show-all-today
  5783. (setq did-habit-check-p t)
  5784. (setq habitp (and (functionp 'org-is-habit-p)
  5785. (org-is-habit-p)))))
  5786. (save-excursion
  5787. (setq donep (member todo-state org-done-keywords))
  5788. (if (and donep
  5789. (or org-agenda-skip-scheduled-if-done
  5790. (not (= diff 0))
  5791. (and (functionp 'org-is-habit-p)
  5792. (org-is-habit-p))))
  5793. (setq txt nil)
  5794. (setq habitp (if did-habit-check-p habitp
  5795. (and (functionp 'org-is-habit-p)
  5796. (org-is-habit-p))))
  5797. (setq category (org-get-category)
  5798. category-pos (get-text-property (point) 'org-category-position))
  5799. (if (and (eq org-agenda-skip-scheduled-if-deadline-is-shown
  5800. 'repeated-after-deadline)
  5801. (org-get-deadline-time (point))
  5802. (<= 0 (- d2 (time-to-days (org-get-deadline-time (point))))))
  5803. (throw :skip nil))
  5804. (if (not (re-search-backward "^\\*+[ \t]+" nil t))
  5805. (throw :skip nil)
  5806. (goto-char (match-end 0))
  5807. (setq pos1 (match-beginning 0))
  5808. (if habitp
  5809. (if (or (not org-habit-show-habits)
  5810. (and (not todayp)
  5811. (boundp 'org-habit-show-habits-only-for-today)
  5812. org-habit-show-habits-only-for-today))
  5813. (throw :skip nil))
  5814. (if (and
  5815. (or (eq t org-agenda-skip-scheduled-if-deadline-is-shown)
  5816. (and (eq org-agenda-skip-scheduled-if-deadline-is-shown 'not-today)
  5817. pastschedp))
  5818. (setq mm (assoc pos1 deadline-position-alist)))
  5819. (throw :skip nil)))
  5820. (setq inherited-tags
  5821. (or (eq org-agenda-show-inherited-tags 'always)
  5822. (and (listp org-agenda-show-inherited-tags)
  5823. (memq 'agenda org-agenda-show-inherited-tags))
  5824. (and (eq org-agenda-show-inherited-tags t)
  5825. (or (eq org-agenda-use-tag-inheritance t)
  5826. (memq 'agenda org-agenda-use-tag-inheritance))))
  5827. tags (org-get-tags-at nil (not inherited-tags)))
  5828. (setq level (make-string (org-reduced-level (org-outline-level)) ? ))
  5829. (setq head (buffer-substring
  5830. (point)
  5831. (progn (skip-chars-forward "^\r\n") (point))))
  5832. (if (string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
  5833. (setq timestr
  5834. (concat (substring s (match-beginning 1)) " "))
  5835. (setq timestr 'time))
  5836. (setq txt (org-agenda-format-item
  5837. (if (= diff 0)
  5838. (car org-agenda-scheduled-leaders)
  5839. (format (nth 1 org-agenda-scheduled-leaders)
  5840. (- 1 diff)))
  5841. head level category tags
  5842. (if (not (= diff 0)) nil timestr)
  5843. nil habitp))))
  5844. (when txt
  5845. (setq face
  5846. (cond
  5847. ((and (not habitp) pastschedp)
  5848. 'org-scheduled-previously)
  5849. (todayp 'org-scheduled-today)
  5850. (t 'org-scheduled))
  5851. habitp (and habitp (org-habit-parse-todo)))
  5852. (org-add-props txt props
  5853. 'undone-face face
  5854. 'face (if donep 'org-agenda-done face)
  5855. 'org-marker (org-agenda-new-marker pos)
  5856. 'org-hd-marker (org-agenda-new-marker pos1)
  5857. 'type (if pastschedp "past-scheduled" "scheduled")
  5858. 'date (if pastschedp d2 date)
  5859. 'ts-date d2
  5860. 'warntime warntime
  5861. 'level level
  5862. 'priority (if habitp
  5863. (org-habit-get-priority habitp)
  5864. (+ 94 (- 5 diff) (org-get-priority txt)))
  5865. 'org-category category
  5866. 'category-position category-pos
  5867. 'org-habit-p habitp
  5868. 'todo-state todo-state)
  5869. (push txt ee))))))
  5870. (nreverse ee)))
  5871. (defun org-agenda-get-blocks ()
  5872. "Return the date-range information for agenda display."
  5873. (let* ((props (list 'face nil
  5874. 'org-not-done-regexp org-not-done-regexp
  5875. 'org-todo-regexp org-todo-regexp
  5876. 'org-complex-heading-regexp org-complex-heading-regexp
  5877. 'mouse-face 'highlight
  5878. 'help-echo
  5879. (format "mouse-2 or RET jump to org file %s"
  5880. (abbreviate-file-name buffer-file-name))))
  5881. (regexp org-tr-regexp)
  5882. (d0 (calendar-absolute-from-gregorian date))
  5883. marker hdmarker ee txt d1 d2 s1 s2 category category-pos
  5884. level todo-state tags pos head donep inherited-tags)
  5885. (goto-char (point-min))
  5886. (while (re-search-forward regexp nil t)
  5887. (catch :skip
  5888. (org-agenda-skip)
  5889. (setq pos (point))
  5890. (let ((start-time (match-string 1))
  5891. (end-time (match-string 2)))
  5892. (setq s1 (match-string 1)
  5893. s2 (match-string 2)
  5894. d1 (time-to-days (org-time-string-to-time s1 (current-buffer) pos))
  5895. d2 (time-to-days (org-time-string-to-time s2 (current-buffer) pos)))
  5896. (if (and (> (- d0 d1) -1) (> (- d2 d0) -1))
  5897. ;; Only allow days between the limits, because the normal
  5898. ;; date stamps will catch the limits.
  5899. (save-excursion
  5900. (setq todo-state (org-get-todo-state))
  5901. (setq donep (member todo-state org-done-keywords))
  5902. (if (and donep org-agenda-skip-timestamp-if-done)
  5903. (throw :skip t))
  5904. (setq marker (org-agenda-new-marker (point)))
  5905. (setq category (org-get-category)
  5906. category-pos (get-text-property (point) 'org-category-position))
  5907. (if (not (re-search-backward org-outline-regexp-bol nil t))
  5908. (throw :skip nil)
  5909. (goto-char (match-beginning 0))
  5910. (setq hdmarker (org-agenda-new-marker (point))
  5911. inherited-tags
  5912. (or (eq org-agenda-show-inherited-tags 'always)
  5913. (and (listp org-agenda-show-inherited-tags)
  5914. (memq 'agenda org-agenda-show-inherited-tags))
  5915. (and (eq org-agenda-show-inherited-tags t)
  5916. (or (eq org-agenda-use-tag-inheritance t)
  5917. (memq 'agenda org-agenda-use-tag-inheritance))))
  5918. tags (org-get-tags-at nil (not inherited-tags)))
  5919. (setq level (make-string (org-reduced-level (org-outline-level)) ? ))
  5920. (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
  5921. (setq head (match-string 1))
  5922. (let ((remove-re
  5923. (if org-agenda-remove-timeranges-from-blocks
  5924. (concat
  5925. "<" (regexp-quote s1) ".*?>"
  5926. "--"
  5927. "<" (regexp-quote s2) ".*?>")
  5928. nil)))
  5929. (setq txt (org-agenda-format-item
  5930. (format
  5931. (nth (if (= d1 d2) 0 1)
  5932. org-agenda-timerange-leaders)
  5933. (1+ (- d0 d1)) (1+ (- d2 d1)))
  5934. head level category tags
  5935. (cond ((and (= d1 d0) (= d2 d0))
  5936. (concat "<" start-time ">--<" end-time ">"))
  5937. ((= d1 d0)
  5938. (concat "<" start-time ">"))
  5939. ((= d2 d0)
  5940. (concat "<" end-time ">")))
  5941. remove-re))))
  5942. (org-add-props txt props
  5943. 'org-marker marker 'org-hd-marker hdmarker
  5944. 'type "block" 'date date
  5945. 'level level
  5946. 'todo-state todo-state
  5947. 'priority (org-get-priority txt) 'org-category category
  5948. 'org-category-position category-pos)
  5949. (push txt ee))))
  5950. (goto-char pos)))
  5951. ;; Sort the entries by expiration date.
  5952. (nreverse ee)))
  5953. ;;; Agenda presentation and sorting
  5954. (defvar org-prefix-has-time nil
  5955. "A flag, set by `org-compile-prefix-format'.
  5956. The flag is set if the currently compiled format contains a `%t'.")
  5957. (defvar org-prefix-has-tag nil
  5958. "A flag, set by `org-compile-prefix-format'.
  5959. The flag is set if the currently compiled format contains a `%T'.")
  5960. (defvar org-prefix-has-effort nil
  5961. "A flag, set by `org-compile-prefix-format'.
  5962. The flag is set if the currently compiled format contains a `%e'.")
  5963. (defvar org-prefix-has-breadcrumbs nil
  5964. "A flag, set by `org-compile-prefix-format'.
  5965. The flag is set if the currently compiled format contains a `%b'.")
  5966. (defvar org-prefix-category-length nil
  5967. "Used by `org-compile-prefix-format' to remember the category field width.")
  5968. (defvar org-prefix-category-max-length nil
  5969. "Used by `org-compile-prefix-format' to remember the category field width.")
  5970. (defun org-agenda-get-category-icon (category)
  5971. "Return an image for CATEGORY according to `org-agenda-category-icon-alist'."
  5972. (dolist (entry org-agenda-category-icon-alist)
  5973. (when (org-string-match-p (car entry) category)
  5974. (if (listp (cadr entry))
  5975. (return (cadr entry))
  5976. (return (apply 'create-image (cdr entry)))))))
  5977. (defun org-agenda-format-item (extra txt &optional level category tags dotime
  5978. remove-re habitp)
  5979. "Format TXT to be inserted into the agenda buffer.
  5980. In particular, add the prefix and corresponding text properties.
  5981. EXTRA must be a string to replace the `%s' specifier in the prefix format.
  5982. LEVEL may be a string to replace the `%l' specifier.
  5983. CATEGORY (a string, a symbol or nil) may be used to overrule the default
  5984. category taken from local variable or file name. It will replace the `%c'
  5985. specifier in the format.
  5986. DOTIME, when non-nil, indicates that a time-of-day should be extracted from
  5987. TXT for sorting of this entry, and for the `%t' specifier in the format.
  5988. When DOTIME is a string, this string is searched for a time before TXT is.
  5989. TAGS can be the tags of the headline.
  5990. Any match of REMOVE-RE will be removed from TXT."
  5991. ;; We keep the org-prefix-* variable values along with a compiled
  5992. ;; formatter, so that multiple agendas existing at the same time do
  5993. ;; not step on each other toes.
  5994. ;;
  5995. ;; It was inconvenient to make these variables buffer local in
  5996. ;; Agenda buffers, because this function expects to be called with
  5997. ;; the buffer where item comes from being current, and not agenda
  5998. ;; buffer
  5999. (let* ((bindings (car org-prefix-format-compiled))
  6000. (formatter (cadr org-prefix-format-compiled)))
  6001. (loop for (var value) in bindings
  6002. do (set var value))
  6003. (save-match-data
  6004. ;; Diary entries sometimes have extra whitespace at the beginning
  6005. (setq txt (org-trim txt))
  6006. ;; Fix the tags part in txt
  6007. (setq txt (org-agenda-fix-displayed-tags
  6008. txt tags
  6009. org-agenda-show-inherited-tags
  6010. org-agenda-hide-tags-regexp))
  6011. (let* ((category (or category
  6012. (if (stringp org-category)
  6013. org-category
  6014. (and org-category (symbol-name org-category)))
  6015. (if buffer-file-name
  6016. (file-name-sans-extension
  6017. (file-name-nondirectory buffer-file-name))
  6018. "")))
  6019. (category-icon (org-agenda-get-category-icon category))
  6020. (category-icon (if category-icon
  6021. (propertize " " 'display category-icon)
  6022. ""))
  6023. ;; time, tag, effort are needed for the eval of the prefix format
  6024. (tag (if tags (nth (1- (length tags)) tags) ""))
  6025. time effort neffort
  6026. (ts (if dotime (concat
  6027. (if (stringp dotime) dotime "")
  6028. (and org-agenda-search-headline-for-time txt))))
  6029. (time-of-day (and dotime (org-get-time-of-day ts)))
  6030. stamp plain s0 s1 s2 rtn srp l
  6031. duration thecategory breadcrumbs)
  6032. (and (derived-mode-p 'org-mode) buffer-file-name
  6033. (add-to-list 'org-agenda-contributing-files buffer-file-name))
  6034. (when (and dotime time-of-day)
  6035. ;; Extract starting and ending time and move them to prefix
  6036. (when (or (setq stamp (string-match org-stamp-time-of-day-regexp ts))
  6037. (setq plain (string-match org-plain-time-of-day-regexp ts)))
  6038. (setq s0 (match-string 0 ts)
  6039. srp (and stamp (match-end 3))
  6040. s1 (match-string (if plain 1 2) ts)
  6041. s2 (match-string (if plain 8 (if srp 4 6)) ts))
  6042. ;; If the times are in TXT (not in DOTIMES), and the prefix will list
  6043. ;; them, we might want to remove them there to avoid duplication.
  6044. ;; The user can turn this off with a variable.
  6045. (if (and org-prefix-has-time
  6046. org-agenda-remove-times-when-in-prefix (or stamp plain)
  6047. (string-match (concat (regexp-quote s0) " *") txt)
  6048. (not (equal ?\] (string-to-char (substring txt (match-end 0)))))
  6049. (if (eq org-agenda-remove-times-when-in-prefix 'beg)
  6050. (= (match-beginning 0) 0)
  6051. t))
  6052. (setq txt (replace-match "" nil nil txt))))
  6053. ;; Normalize the time(s) to 24 hour
  6054. (if s1 (setq s1 (org-get-time-of-day s1 'string t)))
  6055. (if s2 (setq s2 (org-get-time-of-day s2 'string t)))
  6056. ;; Try to set s2 if s1 and `org-agenda-default-appointment-duration' are set
  6057. (let (org-time-clocksum-use-effort-durations)
  6058. (when (and s1 (not s2) org-agenda-default-appointment-duration)
  6059. (setq s2
  6060. (org-minutes-to-clocksum-string
  6061. (+ (org-hh:mm-string-to-minutes s1)
  6062. org-agenda-default-appointment-duration)))))
  6063. ;; Compute the duration
  6064. (when s2
  6065. (setq duration (- (org-hh:mm-string-to-minutes s2)
  6066. (org-hh:mm-string-to-minutes s1)))))
  6067. (when (string-match (org-re "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$")
  6068. txt)
  6069. ;; Tags are in the string
  6070. (if (or (eq org-agenda-remove-tags t)
  6071. (and org-agenda-remove-tags
  6072. org-prefix-has-tag))
  6073. (setq txt (replace-match "" t t txt))
  6074. (setq txt (replace-match
  6075. (concat (make-string (max (- 50 (length txt)) 1) ?\ )
  6076. (match-string 2 txt))
  6077. t t txt))))
  6078. (when (derived-mode-p 'org-mode)
  6079. (setq effort (ignore-errors (get-text-property 0 'org-effort txt))))
  6080. ;; org-agenda-add-time-grid-maybe calls us with *Agenda* as
  6081. ;; current buffer, so move this check outside of above
  6082. (if effort
  6083. (setq neffort (org-duration-string-to-minutes effort)
  6084. effort (setq effort (concat "[" effort "]")))
  6085. ;; prevent erroring out with %e format when there is no effort
  6086. (setq effort ""))
  6087. (when remove-re
  6088. (while (string-match remove-re txt)
  6089. (setq txt (replace-match "" t t txt))))
  6090. ;; Set org-heading property on `txt' to mark the start of the
  6091. ;; heading.
  6092. (add-text-properties 0 (length txt) '(org-heading t) txt)
  6093. ;; Prepare the variables needed in the eval of the compiled format
  6094. (if org-prefix-has-breadcrumbs
  6095. (setq breadcrumbs (org-with-point-at (org-get-at-bol 'org-marker)
  6096. (let ((s (org-display-outline-path nil nil "->" t)))
  6097. (if (eq "" s) "" (concat s "->"))))))
  6098. (setq time (cond (s2 (concat
  6099. (org-agenda-time-of-day-to-ampm-maybe s1)
  6100. "-" (org-agenda-time-of-day-to-ampm-maybe s2)
  6101. (if org-agenda-timegrid-use-ampm " ")))
  6102. (s1 (concat
  6103. (org-agenda-time-of-day-to-ampm-maybe s1)
  6104. (if org-agenda-timegrid-use-ampm
  6105. "........ "
  6106. "......")))
  6107. (t ""))
  6108. extra (or (and (not habitp) extra) "")
  6109. category (if (symbolp category) (symbol-name category) category)
  6110. thecategory (copy-sequence category)
  6111. level (or level ""))
  6112. (if (string-match org-bracket-link-regexp category)
  6113. (progn
  6114. (setq l (if (match-end 3)
  6115. (- (match-end 3) (match-beginning 3))
  6116. (- (match-end 1) (match-beginning 1))))
  6117. (when (< l (or org-prefix-category-length 0))
  6118. (setq category (copy-sequence category))
  6119. (org-add-props category nil
  6120. 'extra-space (make-string
  6121. (- org-prefix-category-length l 1) ?\ ))))
  6122. (if (and org-prefix-category-max-length
  6123. (>= (length category) org-prefix-category-max-length))
  6124. (setq category (substring category 0 (1- org-prefix-category-max-length)))))
  6125. ;; Evaluate the compiled format
  6126. (setq rtn (concat (eval formatter) txt))
  6127. ;; And finally add the text properties
  6128. (remove-text-properties 0 (length rtn) '(line-prefix t wrap-prefix t) rtn)
  6129. (org-add-props rtn nil
  6130. 'org-category (if thecategory (downcase thecategory) category)
  6131. 'tags (mapcar 'org-downcase-keep-props tags)
  6132. 'org-highest-priority org-highest-priority
  6133. 'org-lowest-priority org-lowest-priority
  6134. 'time-of-day time-of-day
  6135. 'duration duration
  6136. 'effort effort
  6137. 'effort-minutes neffort
  6138. 'breadcrumbs breadcrumbs
  6139. 'txt txt
  6140. 'level level
  6141. 'time time
  6142. 'extra extra
  6143. 'format org-prefix-format-compiled
  6144. 'dotime dotime)))))
  6145. (defun org-agenda-fix-displayed-tags (txt tags add-inherited hide-re)
  6146. "Remove tags string from TXT, and add a modified list of tags.
  6147. The modified list may contain inherited tags, and tags matched by
  6148. `org-agenda-hide-tags-regexp' will be removed."
  6149. (when (or add-inherited hide-re)
  6150. (if (string-match (org-re "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$") txt)
  6151. (setq txt (substring txt 0 (match-beginning 0))))
  6152. (setq tags
  6153. (delq nil
  6154. (mapcar (lambda (tg)
  6155. (if (or (and hide-re (string-match hide-re tg))
  6156. (and (not add-inherited)
  6157. (get-text-property 0 'inherited tg)))
  6158. nil
  6159. tg))
  6160. tags)))
  6161. (when tags
  6162. (let ((have-i (get-text-property 0 'inherited (car tags)))
  6163. i)
  6164. (setq txt (concat txt " :"
  6165. (mapconcat
  6166. (lambda (x)
  6167. (setq i (get-text-property 0 'inherited x))
  6168. (if (and have-i (not i))
  6169. (progn
  6170. (setq have-i nil)
  6171. (concat ":" x))
  6172. x))
  6173. tags ":")
  6174. (if have-i "::" ":"))))))
  6175. txt)
  6176. (defun org-downcase-keep-props (s)
  6177. (let ((props (text-properties-at 0 s)))
  6178. (setq s (downcase s))
  6179. (add-text-properties 0 (length s) props s)
  6180. s))
  6181. (defvar org-agenda-sorting-strategy) ;; because the def is in a let form
  6182. (defun org-agenda-add-time-grid-maybe (list ndays todayp)
  6183. "Add a time-grid for agenda items which need it.
  6184. LIST is the list of agenda items formatted by `org-agenda-list'.
  6185. NDAYS is the span of the current agenda view.
  6186. TODAYP is `t' when the current agenda view is on today."
  6187. (catch 'exit
  6188. (cond ((not org-agenda-use-time-grid) (throw 'exit list))
  6189. ((and todayp (member 'today (car org-agenda-time-grid))))
  6190. ((and (= ndays 1) (member 'daily (car org-agenda-time-grid))))
  6191. ((member 'weekly (car org-agenda-time-grid)))
  6192. (t (throw 'exit list)))
  6193. (let* ((have (delq nil (mapcar
  6194. (lambda (x) (get-text-property 1 'time-of-day x))
  6195. list)))
  6196. (string (nth 1 org-agenda-time-grid))
  6197. (gridtimes (nth 2 org-agenda-time-grid))
  6198. (req (car org-agenda-time-grid))
  6199. (remove (member 'remove-match req))
  6200. new time)
  6201. (if (and (member 'require-timed req) (not have))
  6202. ;; don't show empty grid
  6203. (throw 'exit list))
  6204. (while (setq time (pop gridtimes))
  6205. (unless (and remove (member time have))
  6206. (setq time (replace-regexp-in-string " " "0" (format "%04s" time)))
  6207. (push (org-agenda-format-item
  6208. nil string nil "" nil
  6209. (concat (substring time 0 -2) ":" (substring time -2)))
  6210. new)
  6211. (put-text-property
  6212. 2 (length (car new)) 'face 'org-time-grid (car new))))
  6213. (when (and todayp org-agenda-show-current-time-in-grid)
  6214. (push (org-agenda-format-item
  6215. nil org-agenda-current-time-string nil "" nil
  6216. (format-time-string "%H:%M "))
  6217. new)
  6218. (put-text-property
  6219. 2 (length (car new)) 'face 'org-agenda-current-time (car new)))
  6220. (if (member 'time-up org-agenda-sorting-strategy-selected)
  6221. (append new list)
  6222. (append list new)))))
  6223. (defun org-compile-prefix-format (key)
  6224. "Compile the prefix format into a Lisp form that can be evaluated.
  6225. The resulting form and associated variable bindings is returned
  6226. and stored in the variable `org-prefix-format-compiled'."
  6227. (setq org-prefix-has-time nil
  6228. org-prefix-has-tag nil
  6229. org-prefix-category-length nil
  6230. org-prefix-has-effort nil
  6231. org-prefix-has-breadcrumbs nil)
  6232. (let ((s (cond
  6233. ((stringp org-agenda-prefix-format)
  6234. org-agenda-prefix-format)
  6235. ((assq key org-agenda-prefix-format)
  6236. (cdr (assq key org-agenda-prefix-format)))
  6237. (t " %-12:c%?-12t% s")))
  6238. (start 0)
  6239. varform vars var e c f opt)
  6240. (while (string-match "%\\(\\?\\)?\\([-+]?[0-9.]*\\)\\([ .;,:!?=|/<>]?\\)\\([cltseib]\\|(.+)\\)"
  6241. s start)
  6242. (setq var (or (cdr (assoc (match-string 4 s)
  6243. '(("c" . category) ("t" . time) ("l" . level) ("s" . extra)
  6244. ("i" . category-icon) ("T" . tag) ("e" . effort) ("b" . breadcrumbs))))
  6245. 'eval)
  6246. c (or (match-string 3 s) "")
  6247. opt (match-beginning 1)
  6248. start (1+ (match-beginning 0)))
  6249. (if (equal var 'time) (setq org-prefix-has-time t))
  6250. (if (equal var 'tag) (setq org-prefix-has-tag t))
  6251. (if (equal var 'effort) (setq org-prefix-has-effort t))
  6252. (if (equal var 'breadcrumbs) (setq org-prefix-has-breadcrumbs t))
  6253. (setq f (concat "%" (match-string 2 s) "s"))
  6254. (when (equal var 'category)
  6255. (setq org-prefix-category-length
  6256. (floor (abs (string-to-number (match-string 2 s)))))
  6257. (setq org-prefix-category-max-length
  6258. (let ((x (match-string 2 s)))
  6259. (save-match-data
  6260. (if (string-match "\\.[0-9]+" x)
  6261. (string-to-number (substring (match-string 0 x) 1)))))))
  6262. (if (eq var 'eval)
  6263. (setq varform `(format ,f (org-eval ,(read (match-string 4 s)))))
  6264. (if opt
  6265. (setq varform
  6266. `(if (equal "" ,var)
  6267. ""
  6268. (format ,f (if (equal "" ,var) "" (concat ,var ,c)))))
  6269. (setq varform `(format ,f (if (equal ,var "") "" (concat ,var ,c (get-text-property 0 'extra-space ,var)))))))
  6270. (setq s (replace-match "%s" t nil s))
  6271. (push varform vars))
  6272. (setq vars (nreverse vars))
  6273. (with-current-buffer (or org-agenda-buffer (current-buffer))
  6274. (setq org-prefix-format-compiled
  6275. (list
  6276. `((org-prefix-has-time ,org-prefix-has-time)
  6277. (org-prefix-has-tag ,org-prefix-has-tag)
  6278. (org-prefix-category-length ,org-prefix-category-length)
  6279. (org-prefix-has-effort ,org-prefix-has-effort)
  6280. (org-prefix-has-breadcrumbs ,org-prefix-has-breadcrumbs))
  6281. `(format ,s ,@vars))))))
  6282. (defun org-set-sorting-strategy (key)
  6283. (if (symbolp (car org-agenda-sorting-strategy))
  6284. ;; the old format
  6285. (setq org-agenda-sorting-strategy-selected org-agenda-sorting-strategy)
  6286. (setq org-agenda-sorting-strategy-selected
  6287. (or (cdr (assq key org-agenda-sorting-strategy))
  6288. (cdr (assq 'agenda org-agenda-sorting-strategy))
  6289. '(time-up category-keep priority-down)))))
  6290. (defun org-get-time-of-day (s &optional string mod24)
  6291. "Check string S for a time of day.
  6292. If found, return it as a military time number between 0 and 2400.
  6293. If not found, return nil.
  6294. The optional STRING argument forces conversion into a 5 character wide string
  6295. HH:MM."
  6296. (save-match-data
  6297. (when
  6298. (and
  6299. (or (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)\\([AaPp][Mm]\\)?\\> *" s)
  6300. (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?\\([AaPp][Mm]\\)\\> *" s))
  6301. (not (eq (get-text-property 1 'face s) 'org-link)))
  6302. (let* ((h (string-to-number (match-string 1 s)))
  6303. (m (if (match-end 3) (string-to-number (match-string 3 s)) 0))
  6304. (ampm (if (match-end 4) (downcase (match-string 4 s))))
  6305. (am-p (equal ampm "am"))
  6306. (h1 (cond ((not ampm) h)
  6307. ((= h 12) (if am-p 0 12))
  6308. (t (+ h (if am-p 0 12)))))
  6309. (h2 (if (and string mod24 (not (and (= m 0) (= h1 24))))
  6310. (mod h1 24) h1))
  6311. (t0 (+ (* 100 h2) m))
  6312. (t1 (concat (if (>= h1 24) "+" " ")
  6313. (if (and org-agenda-time-leading-zero
  6314. (< t0 1000)) "0" "")
  6315. (if (< t0 100) "0" "")
  6316. (if (< t0 10) "0" "")
  6317. (int-to-string t0))))
  6318. (if string (concat (substring t1 -4 -2) ":" (substring t1 -2)) t0)))))
  6319. (defvar org-agenda-before-sorting-filter-function nil
  6320. "Function to be applied to agenda items prior to sorting.
  6321. Prior to sorting also means just before they are inserted into the agenda.
  6322. To aid sorting, you may revisit the original entries and add more text
  6323. properties which will later be used by the sorting functions.
  6324. The function should take a string argument, an agenda line.
  6325. It has access to the text properties in that line, which contain among
  6326. other things, the property `org-hd-marker' that points to the entry
  6327. where the line comes from. Note that not all lines going into the agenda
  6328. have this property, only most.
  6329. The function should return the modified string. It is probably best
  6330. to ONLY change text properties.
  6331. You can also use this function as a filter, by returning nil for lines
  6332. you don't want to have in the agenda at all. For this application, you
  6333. could bind the variable in the options section of a custom command.")
  6334. (defun org-agenda-finalize-entries (list &optional type)
  6335. "Sort, limit and concatenate the LIST of agenda items.
  6336. The optional argument TYPE tells the agenda type."
  6337. (let ((max-effort (cond ((listp org-agenda-max-effort)
  6338. (cdr (assoc type org-agenda-max-effort)))
  6339. (t org-agenda-max-effort)))
  6340. (max-todo (cond ((listp org-agenda-max-todos)
  6341. (cdr (assoc type org-agenda-max-todos)))
  6342. (t org-agenda-max-todos)))
  6343. (max-tags (cond ((listp org-agenda-max-tags)
  6344. (cdr (assoc type org-agenda-max-tags)))
  6345. (t org-agenda-max-tags)))
  6346. (max-entries (cond ((listp org-agenda-max-entries)
  6347. (cdr (assoc type org-agenda-max-entries)))
  6348. (t org-agenda-max-entries))) l)
  6349. (when org-agenda-before-sorting-filter-function
  6350. (setq list
  6351. (delq nil
  6352. (mapcar
  6353. org-agenda-before-sorting-filter-function list))))
  6354. (setq list (mapcar 'org-agenda-highlight-todo list)
  6355. list (mapcar 'identity (sort list 'org-entries-lessp)))
  6356. (when max-effort
  6357. (setq list (org-agenda-limit-entries
  6358. list 'effort-minutes max-effort 'identity)))
  6359. (when max-todo
  6360. (setq list (org-agenda-limit-entries list 'todo-state max-todo)))
  6361. (when max-tags
  6362. (setq list (org-agenda-limit-entries list 'tags max-tags)))
  6363. (when max-entries
  6364. (setq list (org-agenda-limit-entries list 'org-hd-marker max-entries)))
  6365. (mapconcat 'identity list "\n")))
  6366. (defun org-agenda-limit-entries (list prop limit &optional fn)
  6367. "Limit the number of agenda entries."
  6368. (let ((include (and limit (< limit 0))))
  6369. (if limit
  6370. (let ((fun (or fn (lambda (p) (if p 1))))
  6371. (lim 0))
  6372. (delq nil
  6373. (mapcar
  6374. (lambda (e)
  6375. (let ((pval (funcall fun (get-text-property 1 prop e))))
  6376. (if pval (setq lim (+ lim pval)))
  6377. (cond ((and pval (<= lim (abs limit))) e)
  6378. ((and include (not pval)) e))))
  6379. list)))
  6380. list)))
  6381. (defun org-agenda-limit-interactively ()
  6382. "In agenda, interactively limit entries to various maximums."
  6383. (interactive)
  6384. (let* ((max (read-char "Number of [e]ntries [t]odos [T]ags [E]ffort? "))
  6385. (num (string-to-number (read-from-minibuffer "How many? "))))
  6386. (cond ((equal max ?e)
  6387. (let ((org-agenda-max-entries num)) (org-agenda-redo)))
  6388. ((equal max ?t)
  6389. (let ((org-agenda-max-todos num)) (org-agenda-redo)))
  6390. ((equal max ?T)
  6391. (let ((org-agenda-max-tags num)) (org-agenda-redo)))
  6392. ((equal max ?E)
  6393. (let ((org-agenda-max-effort num)) (org-agenda-redo)))))
  6394. (org-agenda-fit-window-to-buffer))
  6395. (defun org-agenda-highlight-todo (x)
  6396. (let ((org-done-keywords org-done-keywords-for-agenda)
  6397. (case-fold-search nil)
  6398. re)
  6399. (if (eq x 'line)
  6400. (save-excursion
  6401. (beginning-of-line 1)
  6402. (setq re (org-get-at-bol 'org-todo-regexp))
  6403. (goto-char (or (text-property-any (point-at-bol) (point-at-eol) 'org-heading t) (point)))
  6404. (when (looking-at (concat "[ \t]*\\.*\\(" re "\\) +"))
  6405. (add-text-properties (match-beginning 0) (match-end 1)
  6406. (list 'face (org-get-todo-face 1)))
  6407. (let ((s (buffer-substring (match-beginning 1) (match-end 1))))
  6408. (delete-region (match-beginning 1) (1- (match-end 0)))
  6409. (goto-char (match-beginning 1))
  6410. (insert (format org-agenda-todo-keyword-format s)))))
  6411. (let ((pl (text-property-any 0 (length x) 'org-heading t x)))
  6412. (setq re (get-text-property 0 'org-todo-regexp x))
  6413. (when (and re
  6414. ;; Test `pl' because if there's no heading content,
  6415. ;; there's no point matching to highlight. Note
  6416. ;; that if we didn't test `pl' first, and there
  6417. ;; happened to be no keyword from `org-todo-regexp'
  6418. ;; on this heading line, then the `equal' comparison
  6419. ;; afterwards would spuriously succeed in the case
  6420. ;; where `pl' is nil -- causing an args-out-of-range
  6421. ;; error when we try to add text properties to text
  6422. ;; that isn't there.
  6423. pl
  6424. (equal (string-match (concat "\\(\\.*\\)" re "\\( +\\)")
  6425. x pl) pl))
  6426. (add-text-properties
  6427. (or (match-end 1) (match-end 0)) (match-end 0)
  6428. (list 'face (org-get-todo-face (match-string 2 x)))
  6429. x)
  6430. (when (match-end 1)
  6431. (setq x (concat (substring x 0 (match-end 1))
  6432. (format org-agenda-todo-keyword-format
  6433. (match-string 2 x))
  6434. (org-add-props " " (text-properties-at 0 x))
  6435. (substring x (match-end 3)))))))
  6436. x)))
  6437. (defsubst org-cmp-priority (a b)
  6438. "Compare the priorities of string A and B."
  6439. (let ((pa (or (get-text-property 1 'priority a) 0))
  6440. (pb (or (get-text-property 1 'priority b) 0)))
  6441. (cond ((> pa pb) +1)
  6442. ((< pa pb) -1))))
  6443. (defsubst org-cmp-effort (a b)
  6444. "Compare the effort values of string A and B."
  6445. (let* ((def (if org-sort-agenda-noeffort-is-high 32767 -1))
  6446. (ea (or (get-text-property 1 'effort-minutes a) def))
  6447. (eb (or (get-text-property 1 'effort-minutes b) def)))
  6448. (cond ((> ea eb) +1)
  6449. ((< ea eb) -1))))
  6450. (defsubst org-cmp-category (a b)
  6451. "Compare the string values of categories of strings A and B."
  6452. (let ((ca (or (get-text-property 1 'org-category a) ""))
  6453. (cb (or (get-text-property 1 'org-category b) "")))
  6454. (cond ((string-lessp ca cb) -1)
  6455. ((string-lessp cb ca) +1))))
  6456. (defsubst org-cmp-todo-state (a b)
  6457. "Compare the todo states of strings A and B."
  6458. (let* ((ma (or (get-text-property 1 'org-marker a)
  6459. (get-text-property 1 'org-hd-marker a)))
  6460. (mb (or (get-text-property 1 'org-marker b)
  6461. (get-text-property 1 'org-hd-marker b)))
  6462. (fa (and ma (marker-buffer ma)))
  6463. (fb (and mb (marker-buffer mb)))
  6464. (todo-kwds
  6465. (or (and fa (with-current-buffer fa org-todo-keywords-1))
  6466. (and fb (with-current-buffer fb org-todo-keywords-1))))
  6467. (ta (or (get-text-property 1 'todo-state a) ""))
  6468. (tb (or (get-text-property 1 'todo-state b) ""))
  6469. (la (- (length (member ta todo-kwds))))
  6470. (lb (- (length (member tb todo-kwds))))
  6471. (donepa (member ta org-done-keywords-for-agenda))
  6472. (donepb (member tb org-done-keywords-for-agenda)))
  6473. (cond ((and donepa (not donepb)) -1)
  6474. ((and (not donepa) donepb) +1)
  6475. ((< la lb) -1)
  6476. ((< lb la) +1))))
  6477. (defsubst org-cmp-alpha (a b)
  6478. "Compare the headlines, alphabetically."
  6479. (let* ((pla (text-property-any 0 (length a) 'org-heading t a))
  6480. (plb (text-property-any 0 (length b) 'org-heading t b))
  6481. (ta (and pla (substring a pla)))
  6482. (tb (and plb (substring b plb))))
  6483. (when pla
  6484. (if (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp a) "")
  6485. "\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *") ta)
  6486. (setq ta (substring ta (match-end 0))))
  6487. (setq ta (downcase ta)))
  6488. (when plb
  6489. (if (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp b) "")
  6490. "\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *") tb)
  6491. (setq tb (substring tb (match-end 0))))
  6492. (setq tb (downcase tb)))
  6493. (cond ((not ta) +1)
  6494. ((not tb) -1)
  6495. ((string-lessp ta tb) -1)
  6496. ((string-lessp tb ta) +1))))
  6497. (defsubst org-cmp-tag (a b)
  6498. "Compare the string values of the first tags of A and B."
  6499. (let ((ta (car (last (get-text-property 1 'tags a))))
  6500. (tb (car (last (get-text-property 1 'tags b)))))
  6501. (cond ((not ta) +1)
  6502. ((not tb) -1)
  6503. ((string-lessp ta tb) -1)
  6504. ((string-lessp tb ta) +1))))
  6505. (defsubst org-cmp-time (a b)
  6506. "Compare the time-of-day values of strings A and B."
  6507. (let* ((def (if org-sort-agenda-notime-is-late 9901 -1))
  6508. (ta (or (get-text-property 1 'time-of-day a) def))
  6509. (tb (or (get-text-property 1 'time-of-day b) def)))
  6510. (cond ((< ta tb) -1)
  6511. ((< tb ta) +1))))
  6512. (defsubst org-cmp-ts (a b type)
  6513. "Compare the timestamps values of entries A and B.
  6514. When TYPE is \"scheduled\", \"deadline\", \"timestamp\" or
  6515. \"timestamp_ia\", compare within each of these type. When TYPE
  6516. is the empty string, compare all timestamps without respect of
  6517. their type."
  6518. (let* ((def (if org-sort-agenda-notime-is-late most-positive-fixnum -1))
  6519. (ta (or (and (string-match type (or (get-text-property 1 type a) ""))
  6520. (get-text-property 1 'ts-date a)) def))
  6521. (tb (or (and (string-match type (or (get-text-property 1 type b) ""))
  6522. (get-text-property 1 'ts-date b)) def)))
  6523. (cond ((< ta tb) -1)
  6524. ((< tb ta) +1))))
  6525. (defsubst org-cmp-habit-p (a b)
  6526. "Compare the todo states of strings A and B."
  6527. (let ((ha (get-text-property 1 'org-habit-p a))
  6528. (hb (get-text-property 1 'org-habit-p b)))
  6529. (cond ((and ha (not hb)) -1)
  6530. ((and (not ha) hb) +1))))
  6531. (defun org-entries-lessp (a b)
  6532. "Predicate for sorting agenda entries."
  6533. ;; The following variables will be used when the form is evaluated.
  6534. ;; So even though the compiler complains, keep them.
  6535. (let* ((ss org-agenda-sorting-strategy-selected)
  6536. (timestamp-up (and (org-em 'timestamp-up 'timestamp-down ss)
  6537. (org-cmp-ts a b "")))
  6538. (timestamp-down (if timestamp-up (- timestamp-up) nil))
  6539. (scheduled-up (and (org-em 'scheduled-up 'scheduled-down ss)
  6540. (org-cmp-ts a b "scheduled")))
  6541. (scheduled-down (if scheduled-up (- scheduled-up) nil))
  6542. (deadline-up (and (org-em 'deadline-up 'deadline-down ss)
  6543. (org-cmp-ts a b "deadline")))
  6544. (deadline-down (if deadline-up (- deadline-up) nil))
  6545. (tsia-up (and (org-em 'tsia-up 'tsia-down ss)
  6546. (org-cmp-ts a b "iatimestamp_ia")))
  6547. (tsia-down (if tsia-up (- tsia-up) nil))
  6548. (ts-up (and (org-em 'ts-up 'ts-down ss)
  6549. (org-cmp-ts a b "timestamp")))
  6550. (ts-down (if ts-up (- ts-up) nil))
  6551. (time-up (and (org-em 'time-up 'time-down ss)
  6552. (org-cmp-time a b)))
  6553. (time-down (if time-up (- time-up) nil))
  6554. (priority-up (and (org-em 'priority-up 'priority-down ss)
  6555. (org-cmp-priority a b)))
  6556. (priority-down (if priority-up (- priority-up) nil))
  6557. (effort-up (and (org-em 'effort-up 'effort-down ss)
  6558. (org-cmp-effort a b)))
  6559. (effort-down (if effort-up (- effort-up) nil))
  6560. (category-up (and (or (org-em 'category-up 'category-down ss)
  6561. (memq 'category-keep ss))
  6562. (org-cmp-category a b)))
  6563. (category-down (if category-up (- category-up) nil))
  6564. (category-keep (if category-up +1 nil))
  6565. (tag-up (and (org-em 'tag-up 'tag-down ss)
  6566. (org-cmp-tag a b)))
  6567. (tag-down (if tag-up (- tag-up) nil))
  6568. (todo-state-up (and (org-em 'todo-state-up 'todo-state-down ss)
  6569. (org-cmp-todo-state a b)))
  6570. (todo-state-down (if todo-state-up (- todo-state-up) nil))
  6571. (habit-up (and (org-em 'habit-up 'habit-down ss)
  6572. (org-cmp-habit-p a b)))
  6573. (habit-down (if habit-up (- habit-up) nil))
  6574. (alpha-up (and (org-em 'alpha-up 'alpha-down ss)
  6575. (org-cmp-alpha a b)))
  6576. (alpha-down (if alpha-up (- alpha-up) nil))
  6577. (need-user-cmp (org-em 'user-defined-up 'user-defined-down ss))
  6578. user-defined-up user-defined-down)
  6579. (if (and need-user-cmp org-agenda-cmp-user-defined
  6580. (functionp org-agenda-cmp-user-defined))
  6581. (setq user-defined-up
  6582. (funcall org-agenda-cmp-user-defined a b)
  6583. user-defined-down (if user-defined-up (- user-defined-up) nil)))
  6584. (cdr (assoc
  6585. (eval (cons 'or org-agenda-sorting-strategy-selected))
  6586. '((-1 . t) (1 . nil) (nil . nil))))))
  6587. ;;; Agenda restriction lock
  6588. (defvar org-agenda-restriction-lock-overlay (make-overlay 1 1)
  6589. "Overlay to mark the headline to which agenda commands are restricted.")
  6590. (overlay-put org-agenda-restriction-lock-overlay
  6591. 'face 'org-agenda-restriction-lock)
  6592. (overlay-put org-agenda-restriction-lock-overlay
  6593. 'help-echo "Agendas are currently limited to this subtree.")
  6594. (org-detach-overlay org-agenda-restriction-lock-overlay)
  6595. ;;;###autoload
  6596. (defun org-agenda-set-restriction-lock (&optional type)
  6597. "Set restriction lock for agenda, to current subtree or file.
  6598. Restriction will be the file if TYPE is `file', or if type is the
  6599. universal prefix '(4), or if the cursor is before the first headline
  6600. in the file. Otherwise, restriction will be to the current subtree."
  6601. (interactive "P")
  6602. (and (equal type '(4)) (setq type 'file))
  6603. (setq type (cond
  6604. (type type)
  6605. ((org-at-heading-p) 'subtree)
  6606. ((condition-case nil (org-back-to-heading t) (error nil))
  6607. 'subtree)
  6608. (t 'file)))
  6609. (if (eq type 'subtree)
  6610. (progn
  6611. (setq org-agenda-restrict (current-buffer))
  6612. (setq org-agenda-overriding-restriction 'subtree)
  6613. (put 'org-agenda-files 'org-restrict
  6614. (list (buffer-file-name (buffer-base-buffer))))
  6615. (org-back-to-heading t)
  6616. (move-overlay org-agenda-restriction-lock-overlay
  6617. (point)
  6618. (if org-agenda-restriction-lock-highlight-subtree
  6619. (save-excursion (org-end-of-subtree t t) (point))
  6620. (point-at-eol)))
  6621. (move-marker org-agenda-restrict-begin (point))
  6622. (move-marker org-agenda-restrict-end
  6623. (save-excursion (org-end-of-subtree t t)))
  6624. (message "Locking agenda restriction to subtree"))
  6625. (put 'org-agenda-files 'org-restrict
  6626. (list (buffer-file-name (buffer-base-buffer))))
  6627. (setq org-agenda-restrict nil)
  6628. (setq org-agenda-overriding-restriction 'file)
  6629. (move-marker org-agenda-restrict-begin nil)
  6630. (move-marker org-agenda-restrict-end nil)
  6631. (message "Locking agenda restriction to file"))
  6632. (setq current-prefix-arg nil)
  6633. (org-agenda-maybe-redo))
  6634. (defun org-agenda-remove-restriction-lock (&optional noupdate)
  6635. "Remove the agenda restriction lock."
  6636. (interactive "P")
  6637. (org-detach-overlay org-agenda-restriction-lock-overlay)
  6638. (org-detach-overlay org-speedbar-restriction-lock-overlay)
  6639. (setq org-agenda-overriding-restriction nil)
  6640. (setq org-agenda-restrict nil)
  6641. (put 'org-agenda-files 'org-restrict nil)
  6642. (move-marker org-agenda-restrict-begin nil)
  6643. (move-marker org-agenda-restrict-end nil)
  6644. (setq current-prefix-arg nil)
  6645. (message "Agenda restriction lock removed")
  6646. (or noupdate (org-agenda-maybe-redo)))
  6647. (defun org-agenda-maybe-redo ()
  6648. "If there is any window showing the agenda view, update it."
  6649. (let ((w (get-buffer-window org-agenda-buffer-name t))
  6650. (w0 (selected-window)))
  6651. (when w
  6652. (select-window w)
  6653. (org-agenda-redo)
  6654. (select-window w0)
  6655. (if org-agenda-overriding-restriction
  6656. (message "Agenda view shifted to new %s restriction"
  6657. org-agenda-overriding-restriction)
  6658. (message "Agenda restriction lock removed")))))
  6659. ;;; Agenda commands
  6660. (defun org-agenda-check-type (error &rest types)
  6661. "Check if agenda buffer is of allowed type.
  6662. If ERROR is non-nil, throw an error, otherwise just return nil.
  6663. Allowed types are 'agenda 'timeline 'todo 'tags 'search."
  6664. (if (not org-agenda-type)
  6665. (error "No Org agenda currently displayed")
  6666. (if (memq org-agenda-type types)
  6667. t
  6668. (if error
  6669. (error "Not allowed in %s-type agenda buffers" org-agenda-type)
  6670. nil))))
  6671. (defun org-agenda-Quit ()
  6672. "Exit the agenda and kill buffers loaded by `org-agenda'.
  6673. Also restore the window configuration."
  6674. (interactive)
  6675. (if org-agenda-columns-active
  6676. (org-columns-quit)
  6677. (let ((buf (current-buffer)))
  6678. (if (eq org-agenda-window-setup 'other-frame)
  6679. (progn
  6680. (org-agenda-reset-markers)
  6681. (kill-buffer buf)
  6682. (org-columns-remove-overlays)
  6683. (setq org-agenda-archives-mode nil)
  6684. (delete-frame))
  6685. (and (not (eq org-agenda-window-setup 'current-window))
  6686. (not (one-window-p))
  6687. (delete-window))
  6688. (org-agenda-reset-markers)
  6689. (kill-buffer buf)
  6690. (org-columns-remove-overlays)
  6691. (setq org-agenda-archives-mode nil)))
  6692. (setq org-agenda-buffer nil)
  6693. ;; Maybe restore the pre-agenda window configuration.
  6694. (and org-agenda-restore-windows-after-quit
  6695. (not (eq org-agenda-window-setup 'other-frame))
  6696. org-agenda-pre-window-conf
  6697. (set-window-configuration org-agenda-pre-window-conf)
  6698. (setq org-agenda-pre-window-conf nil))))
  6699. (defun org-agenda-quit ()
  6700. "Exit the agenda and restore the window configuration.
  6701. When `org-agenda-sticky' is non-nil, only bury the agenda."
  6702. (interactive)
  6703. (if (and (eq org-indirect-buffer-display 'other-window)
  6704. org-last-indirect-buffer)
  6705. (let ((org-last-indirect-window
  6706. (get-buffer-window org-last-indirect-buffer)))
  6707. (if org-last-indirect-window
  6708. (delete-window org-last-indirect-window))))
  6709. (if org-agenda-columns-active
  6710. (org-columns-quit)
  6711. (if org-agenda-sticky
  6712. (let ((buf (current-buffer)))
  6713. (if (eq org-agenda-window-setup 'other-frame)
  6714. (progn
  6715. (delete-frame))
  6716. (and (not (eq org-agenda-window-setup 'current-window))
  6717. (not (one-window-p))
  6718. (delete-window)))
  6719. (with-current-buffer buf
  6720. (bury-buffer)
  6721. ;; Maybe restore the pre-agenda window configuration.
  6722. (and org-agenda-restore-windows-after-quit
  6723. (not (eq org-agenda-window-setup 'other-frame))
  6724. org-agenda-pre-window-conf
  6725. (set-window-configuration org-agenda-pre-window-conf)
  6726. (setq org-agenda-pre-window-conf nil))))
  6727. (org-agenda-Quit))))
  6728. (defun org-agenda-exit ()
  6729. "Exit the agenda and restore the window configuration.
  6730. Also kill Org-mode buffers loaded by `org-agenda'. Org-mode
  6731. buffers visited directly by the user will not be touched."
  6732. (interactive)
  6733. (org-release-buffers org-agenda-new-buffers)
  6734. (setq org-agenda-new-buffers nil)
  6735. (org-agenda-Quit))
  6736. (defun org-agenda-kill-all-agenda-buffers ()
  6737. "Kill all buffers in `org-agenda-mode'.
  6738. This is used when toggling sticky agendas.
  6739. You can also explicitly invoke it with `C-c a C-k'."
  6740. (interactive)
  6741. (let (blist)
  6742. (dolist (buf (buffer-list))
  6743. (when (with-current-buffer buf (eq major-mode 'org-agenda-mode))
  6744. (push buf blist)))
  6745. (mapc 'kill-buffer blist)))
  6746. (defun org-agenda-execute (arg)
  6747. "Execute another agenda command, keeping same window.
  6748. So this is just a shortcut for \\<global-map>`\\[org-agenda]', available
  6749. in the agenda."
  6750. (interactive "P")
  6751. (let ((org-agenda-window-setup 'current-window))
  6752. (org-agenda arg)))
  6753. (defun org-agenda-redo (&optional all)
  6754. "Rebuild possibly ALL agenda view(s) in the current buffer."
  6755. (interactive "P")
  6756. (let* ((p (or (and (looking-at "\\'") (1- (point))) (point)))
  6757. (cpa (unless (eq all t) current-prefix-arg))
  6758. (org-agenda-doing-sticky-redo org-agenda-sticky)
  6759. (org-agenda-sticky nil)
  6760. (org-agenda-buffer-name (or org-agenda-this-buffer-name
  6761. org-agenda-buffer-name))
  6762. (org-agenda-keep-modes t)
  6763. (tag-filter org-agenda-tag-filter)
  6764. (tag-preset (get 'org-agenda-tag-filter :preset-filter))
  6765. (top-hl-filter org-agenda-top-headline-filter)
  6766. (cat-filter org-agenda-category-filter)
  6767. (cat-preset (get 'org-agenda-category-filter :preset-filter))
  6768. (re-filter org-agenda-regexp-filter)
  6769. (re-preset (get 'org-agenda-regexp-filter :preset-filter))
  6770. (org-agenda-tag-filter-while-redo (or tag-filter tag-preset))
  6771. (cols org-agenda-columns-active)
  6772. (line (org-current-line))
  6773. (window-line (- line (org-current-line (window-start))))
  6774. (lprops (get 'org-agenda-redo-command 'org-lprops))
  6775. (redo-cmd (get-text-property p 'org-redo-cmd))
  6776. (last-args (get-text-property p 'org-last-args))
  6777. (org-agenda-overriding-cmd (get-text-property p 'org-series-cmd))
  6778. (org-agenda-overriding-cmd-arguments
  6779. (unless (eq all t)
  6780. (cond ((listp last-args)
  6781. (cons (or cpa (car last-args)) (cdr last-args)))
  6782. ((stringp last-args)
  6783. last-args))))
  6784. (series-redo-cmd (get-text-property p 'org-series-redo-cmd)))
  6785. (put 'org-agenda-tag-filter :preset-filter nil)
  6786. (put 'org-agenda-category-filter :preset-filter nil)
  6787. (put 'org-agenda-regexp-filter :preset-filter nil)
  6788. (and cols (org-columns-quit))
  6789. (message "Rebuilding agenda buffer...")
  6790. (if series-redo-cmd
  6791. (eval series-redo-cmd)
  6792. (org-let lprops redo-cmd))
  6793. (setq org-agenda-undo-list nil
  6794. org-agenda-pending-undo-list nil
  6795. org-agenda-tag-filter tag-filter
  6796. org-agenda-category-filter cat-filter
  6797. org-agenda-regexp-filter re-filter
  6798. org-agenda-top-headline-filter top-hl-filter)
  6799. (message "Rebuilding agenda buffer...done")
  6800. (put 'org-agenda-tag-filter :preset-filter tag-preset)
  6801. (put 'org-agenda-category-filter :preset-filter cat-preset)
  6802. (put 'org-agenda-regexp-filter :preset-filter re-preset)
  6803. (let ((tag (or tag-filter tag-preset))
  6804. (cat (or cat-filter cat-preset))
  6805. (re (or re-filter re-preset)))
  6806. (when tag (org-agenda-filter-apply tag 'tag))
  6807. (when cat (org-agenda-filter-apply cat 'category))
  6808. (when re (org-agenda-filter-apply re 'regexp)))
  6809. (and top-hl-filter (org-agenda-filter-top-headline-apply top-hl-filter))
  6810. (and cols (org-called-interactively-p 'any) (org-agenda-columns))
  6811. (org-goto-line line)
  6812. (recenter window-line)))
  6813. (defvar org-global-tags-completion-table nil)
  6814. (defvar org-agenda-filter-form nil)
  6815. (defvar org-agenda-filtered-by-category nil)
  6816. (defun org-agenda-filter-by-category (strip)
  6817. "Keep only those lines in the agenda buffer that have a specific category.
  6818. The category is that of the current line."
  6819. (interactive "P")
  6820. (if (and org-agenda-filtered-by-category
  6821. org-agenda-category-filter)
  6822. (org-agenda-filter-show-all-cat)
  6823. (let ((cat (org-no-properties (get-text-property (point) 'org-category))))
  6824. (cond
  6825. ((and cat strip)
  6826. (org-agenda-filter-apply
  6827. (push (concat "-" cat) org-agenda-category-filter) 'category))
  6828. ((and cat)
  6829. (org-agenda-filter-apply
  6830. (setq org-agenda-category-filter
  6831. (list (concat "+" cat))) 'category))
  6832. (t (error "No category at point"))))))
  6833. (defun org-find-top-headline (&optional pos)
  6834. "Find the topmost parent headline and return it."
  6835. (save-excursion
  6836. (with-current-buffer (if pos (marker-buffer pos) (current-buffer))
  6837. (if pos (goto-char pos))
  6838. ;; Skip up to the topmost parent
  6839. (while (ignore-errors (outline-up-heading 1) t))
  6840. (ignore-errors
  6841. (nth 4 (org-heading-components))))))
  6842. (defvar org-agenda-filtered-by-top-headline nil)
  6843. (defun org-agenda-filter-by-top-headline (strip)
  6844. "Keep only those lines that are descendants from the same top headline.
  6845. The top headline is that of the current line."
  6846. (interactive "P")
  6847. (if org-agenda-filtered-by-top-headline
  6848. (progn
  6849. (setq org-agenda-filtered-by-top-headline nil
  6850. org-agenda-top-headline-filter nil)
  6851. (org-agenda-filter-show-all-top-filter))
  6852. (let ((toph (org-find-top-headline (org-get-at-bol 'org-hd-marker))))
  6853. (if toph (org-agenda-filter-top-headline-apply toph strip)
  6854. (error "No top-level headline at point")))))
  6855. (defvar org-agenda-regexp-filter nil)
  6856. (defun org-agenda-filter-by-regexp (strip)
  6857. "Filter agenda entries by a regular expression.
  6858. Regexp filters are cumulative.
  6859. With no prefix argument, keep entries matching the regexp.
  6860. With one prefix argument, filter out entries matching the regexp.
  6861. With two prefix arguments, remove the regexp filters."
  6862. (interactive "P")
  6863. (if (not (equal strip '(16)))
  6864. (let ((flt (concat (if (equal strip '(4)) "-" "+")
  6865. (read-from-minibuffer
  6866. (if (equal strip '(4))
  6867. "Filter out entries matching regexp: "
  6868. "Narrow to entries matching regexp: ")))))
  6869. (push flt org-agenda-regexp-filter)
  6870. (org-agenda-filter-apply org-agenda-regexp-filter 'regexp))
  6871. (org-agenda-filter-show-all-re)
  6872. (message "Regexp filter removed")))
  6873. (defun org-agenda-filter-remove-all ()
  6874. "Remove all filters from the current agenda buffer."
  6875. (interactive)
  6876. (when org-agenda-tag-filter
  6877. (org-agenda-filter-show-all-tag))
  6878. (when org-agenda-category-filter
  6879. (org-agenda-filter-show-all-cat))
  6880. (when org-agenda-regexp-filter
  6881. (org-agenda-filter-show-all-re))
  6882. (when org-agenda-top-headline-filter
  6883. (org-agenda-filter-show-all-top-filter))
  6884. (org-agenda-finalize))
  6885. (defun org-agenda-filter-by-tag (strip &optional char narrow)
  6886. "Keep only those lines in the agenda buffer that have a specific tag.
  6887. The tag is selected with its fast selection letter, as configured.
  6888. With prefix argument STRIP, remove all lines that do have the tag.
  6889. A lisp caller can specify CHAR. NARROW means that the new tag should be
  6890. used to narrow the search - the interactive user can also press `-' or `+'
  6891. to switch to narrowing."
  6892. (interactive "P")
  6893. (let* ((alist org-tag-alist-for-agenda)
  6894. (tag-chars (mapconcat
  6895. (lambda (x) (if (and (not (symbolp (car x)))
  6896. (cdr x))
  6897. (char-to-string (cdr x))
  6898. ""))
  6899. alist ""))
  6900. (efforts (org-split-string
  6901. (or (cdr (assoc (concat org-effort-property "_ALL")
  6902. org-global-properties))
  6903. "0 0:10 0:30 1:00 2:00 3:00 4:00 5:00 6:00 7:00 8:00"
  6904. "")))
  6905. (effort-op org-agenda-filter-effort-default-operator)
  6906. (effort-prompt "")
  6907. (inhibit-read-only t)
  6908. (current org-agenda-tag-filter)
  6909. maybe-refresh a n tag)
  6910. (unless char
  6911. (message
  6912. "%s by tag [%s ], [TAB], %s[/]:off, [+-]:narrow, [>=<?]:effort: "
  6913. (if narrow "Narrow" "Filter") tag-chars
  6914. (if org-agenda-auto-exclude-function "[RET], " ""))
  6915. (setq char (read-char-exclusive)))
  6916. (when (member char '(?+ ?-))
  6917. ;; Narrowing down
  6918. (cond ((equal char ?-) (setq strip t narrow t))
  6919. ((equal char ?+) (setq strip nil narrow t)))
  6920. (message
  6921. "Narrow by tag [%s ], [TAB], [/]:off, [>=<]:effort: " tag-chars)
  6922. (setq char (read-char-exclusive)))
  6923. (when (member char '(?< ?> ?= ??))
  6924. ;; An effort operator
  6925. (setq effort-op (char-to-string char))
  6926. (setq alist nil) ; to make sure it will be interpreted as effort.
  6927. (unless (equal char ??)
  6928. (loop for i from 0 to 9 do
  6929. (setq effort-prompt
  6930. (concat
  6931. effort-prompt " ["
  6932. (if (= i 9) "0" (int-to-string (1+ i)))
  6933. "]" (nth i efforts))))
  6934. (message "Effort%s: %s " effort-op effort-prompt)
  6935. (setq char (read-char-exclusive))
  6936. (when (or (< char ?0) (> char ?9))
  6937. (error "Need 1-9,0 to select effort"))))
  6938. (when (equal char ?\t)
  6939. (unless (local-variable-p 'org-global-tags-completion-table (current-buffer))
  6940. (org-set-local 'org-global-tags-completion-table
  6941. (org-global-tags-completion-table)))
  6942. (let ((completion-ignore-case t))
  6943. (setq tag (org-icompleting-read
  6944. "Tag: " org-global-tags-completion-table))))
  6945. (cond
  6946. ((equal char ?\r)
  6947. (org-agenda-filter-show-all-tag)
  6948. (when org-agenda-auto-exclude-function
  6949. (setq org-agenda-tag-filter nil)
  6950. (dolist (tag (org-agenda-get-represented-tags))
  6951. (let ((modifier (funcall org-agenda-auto-exclude-function tag)))
  6952. (if modifier
  6953. (push modifier org-agenda-tag-filter))))
  6954. (if (not (null org-agenda-tag-filter))
  6955. (org-agenda-filter-apply org-agenda-tag-filter 'tag)))
  6956. (setq maybe-refresh t))
  6957. ((equal char ?/)
  6958. (org-agenda-filter-show-all-tag)
  6959. (when (get 'org-agenda-tag-filter :preset-filter)
  6960. (org-agenda-filter-apply org-agenda-tag-filter 'tag))
  6961. (setq maybe-refresh t))
  6962. ((equal char ?. )
  6963. (setq org-agenda-tag-filter
  6964. (mapcar (lambda(tag) (concat "+" tag))
  6965. (org-get-at-bol 'tags)))
  6966. (org-agenda-filter-apply org-agenda-tag-filter 'tag)
  6967. (setq maybe-refresh t))
  6968. ((or (equal char ?\ )
  6969. (setq a (rassoc char alist))
  6970. (and (>= char ?0) (<= char ?9)
  6971. (setq n (if (= char ?0) 9 (- char ?0 1))
  6972. tag (concat effort-op (nth n efforts))
  6973. a (cons tag nil)))
  6974. (and (= char ??)
  6975. (setq tag "?eff")
  6976. a (cons tag nil))
  6977. (and tag (setq a (cons tag nil))))
  6978. (org-agenda-filter-show-all-tag)
  6979. (setq tag (car a))
  6980. (setq org-agenda-tag-filter
  6981. (cons (concat (if strip "-" "+") tag)
  6982. (if narrow current nil)))
  6983. (org-agenda-filter-apply org-agenda-tag-filter 'tag)
  6984. (setq maybe-refresh t))
  6985. (t (error "Invalid tag selection character %c" char)))
  6986. (when (and maybe-refresh
  6987. (eq org-agenda-clockreport-mode 'with-filter))
  6988. (org-agenda-redo))))
  6989. (defun org-agenda-get-represented-tags ()
  6990. "Get a list of all tags currently represented in the agenda."
  6991. (let (p tags)
  6992. (save-excursion
  6993. (goto-char (point-min))
  6994. (while (setq p (next-single-property-change (point) 'tags))
  6995. (goto-char p)
  6996. (mapc (lambda (x) (add-to-list 'tags x))
  6997. (get-text-property (point) 'tags))))
  6998. tags))
  6999. (defun org-agenda-filter-by-tag-refine (strip &optional char)
  7000. "Refine the current filter. See `org-agenda-filter-by-tag'."
  7001. (interactive "P")
  7002. (org-agenda-filter-by-tag strip char 'refine))
  7003. (defun org-agenda-filter-make-matcher (filter type)
  7004. "Create the form that tests a line for agenda filter."
  7005. (let (f f1)
  7006. (cond
  7007. ;; Tag filter
  7008. ((eq type 'tag)
  7009. (setq filter
  7010. (delete-dups
  7011. (append (get 'org-agenda-tag-filter :preset-filter)
  7012. filter)))
  7013. (dolist (x filter)
  7014. (let ((nfilter (org-agenda-filter-expand-tags filter)) nf nf1
  7015. (ffunc
  7016. (lambda (nf0 nf01 fltr notgroup op)
  7017. (dolist (x fltr)
  7018. (if (member x '("-" "+"))
  7019. (setq nf01 (if (equal x "-") 'tags '(not tags)))
  7020. (if (string-match "[<=>?]" x)
  7021. (setq nf01 (org-agenda-filter-effort-form x))
  7022. (setq nf01 (list 'member (downcase (substring x 1))
  7023. 'tags)))
  7024. (when (equal (string-to-char x) ?-)
  7025. (setq nf01 (list 'not nf01))
  7026. (when (not notgroup) (setq op 'and))))
  7027. (push nf01 nf0))
  7028. (if notgroup
  7029. (push (cons 'and nf0) f)
  7030. (push (cons (or op 'or) nf0) f)))))
  7031. (cond ((equal filter '("+"))
  7032. (setq f (list (list 'not 'tags))))
  7033. ((equal nfilter filter)
  7034. (funcall ffunc f1 f filter t nil))
  7035. (t (funcall ffunc nf1 nf nfilter nil nil))))))
  7036. ;; Category filter
  7037. ((eq type 'category)
  7038. (setq filter
  7039. (delete-dups
  7040. (append (get 'org-agenda-category-filter :preset-filter)
  7041. filter)))
  7042. (dolist (x filter)
  7043. (if (equal "-" (substring x 0 1))
  7044. (setq f1 (list 'not (list 'equal (substring x 1) 'cat)))
  7045. (setq f1 (list 'equal (substring x 1) 'cat)))
  7046. (push f1 f)))
  7047. ;; Regexp filter
  7048. ((eq type 'regexp)
  7049. (setq filter
  7050. (delete-dups
  7051. (append (get 'org-agenda-regexp-filter :preset-filter)
  7052. filter)))
  7053. (dolist (x filter)
  7054. (if (equal "-" (substring x 0 1))
  7055. (setq f1 (list 'not (list 'string-match (substring x 1) 'txt)))
  7056. (setq f1 (list 'string-match (substring x 1) 'txt)))
  7057. (push f1 f))))
  7058. (cons 'and (nreverse f))))
  7059. (defun org-agenda-filter-effort-form (e)
  7060. "Return the form to compare the effort of the current line with what E says.
  7061. E looks like \"+<2:25\"."
  7062. (let (op)
  7063. (setq e (substring e 1))
  7064. (setq op (string-to-char e) e (substring e 1))
  7065. (setq op (cond ((equal op ?<) '<=)
  7066. ((equal op ?>) '>=)
  7067. ((equal op ??) op)
  7068. (t '=)))
  7069. (list 'org-agenda-compare-effort (list 'quote op)
  7070. (org-duration-string-to-minutes e))))
  7071. (defun org-agenda-compare-effort (op value)
  7072. "Compare the effort of the current line with VALUE, using OP.
  7073. If the line does not have an effort defined, return nil."
  7074. (let ((eff (org-get-at-bol 'effort-minutes)))
  7075. (if (equal op ??)
  7076. (not eff)
  7077. (funcall op (or eff (if org-sort-agenda-noeffort-is-high 32767 0))
  7078. value))))
  7079. (defun org-agenda-filter-expand-tags (filter &optional no-operator)
  7080. "Expand group tags in FILTER for the agenda.
  7081. When NO-OPERATOR is non-nil, do not add the + operator to returned tags."
  7082. (if org-group-tags
  7083. (let ((case-fold-search t) rtn)
  7084. (mapc
  7085. (lambda (f)
  7086. (let (f0 dir)
  7087. (if (string-match "^\\([+-]\\)\\(.+\\)" f)
  7088. (setq dir (match-string 1 f) f0 (match-string 2 f))
  7089. (setq dir (if no-operator "" "+") f0 f))
  7090. (setq rtn (append (mapcar (lambda(f1) (concat dir f1))
  7091. (org-tags-expand f0 t t))
  7092. rtn))))
  7093. filter)
  7094. (reverse rtn))
  7095. filter))
  7096. (defun org-agenda-filter-apply (filter type)
  7097. "Set FILTER as the new agenda filter and apply it."
  7098. ;; Deactivate `org-agenda-entry-text-mode' when filtering
  7099. (if org-agenda-entry-text-mode (org-agenda-entry-text-mode))
  7100. (let (tags cat txt)
  7101. (setq org-agenda-filter-form
  7102. (org-agenda-filter-make-matcher filter type))
  7103. (if (and (eq type 'category)
  7104. (not (equal (substring (car filter) 0 1) "-")))
  7105. ;; Only set `org-agenda-filtered-by-category' to t
  7106. ;; when a unique category is used as the filter
  7107. (setq org-agenda-filtered-by-category t))
  7108. (org-agenda-set-mode-name)
  7109. (save-excursion
  7110. (goto-char (point-min))
  7111. (while (not (eobp))
  7112. (if (org-get-at-bol 'org-marker)
  7113. (progn
  7114. (setq tags ; used in eval
  7115. (apply 'append
  7116. (mapcar (lambda (f)
  7117. (org-agenda-filter-expand-tags (list f) t))
  7118. (org-get-at-bol 'tags)))
  7119. cat (get-text-property (point) 'org-category)
  7120. txt (get-text-property (point) 'txt))
  7121. (if (not (eval org-agenda-filter-form))
  7122. (org-agenda-filter-hide-line type))
  7123. (beginning-of-line 2))
  7124. (beginning-of-line 2))))
  7125. (if (get-char-property (point) 'invisible)
  7126. (ignore-errors (org-agenda-previous-line)))))
  7127. (defun org-agenda-filter-top-headline-apply (hl &optional negative)
  7128. "Filter by top headline HL."
  7129. (org-agenda-set-mode-name)
  7130. (save-excursion
  7131. (goto-char (point-min))
  7132. (while (not (eobp))
  7133. (let* ((pos (org-get-at-bol 'org-hd-marker))
  7134. (tophl (and pos (org-find-top-headline pos))))
  7135. (if (and tophl (funcall (if negative 'identity 'not)
  7136. (string= hl tophl)))
  7137. (org-agenda-filter-hide-line 'top-headline)))
  7138. (beginning-of-line 2)))
  7139. (if (get-char-property (point) 'invisible)
  7140. (org-agenda-previous-line))
  7141. (setq org-agenda-top-headline-filter hl
  7142. org-agenda-filtered-by-top-headline t))
  7143. (defun org-agenda-filter-hide-line (type)
  7144. "Hide lines with TYPE in the agenda buffer."
  7145. (let* ((b (max (point-min) (1- (point-at-bol))))
  7146. (e (point-at-eol)))
  7147. (let ((inhibit-read-only t))
  7148. (add-text-properties
  7149. b e `(invisible org-filtered org-filter-type ,type)))))
  7150. (defun org-agenda-remove-filter (type)
  7151. (interactive)
  7152. "Remove filter of type TYPE from the agenda buffer."
  7153. (save-excursion
  7154. (goto-char (point-min))
  7155. (let ((inhibit-read-only t) pos)
  7156. (while (setq pos (text-property-any (point) (point-max) 'org-filter-type type))
  7157. (goto-char pos)
  7158. (remove-text-properties
  7159. (point) (next-single-property-change (point) 'org-filter-type)
  7160. `(invisible org-filtered org-filter-type ,type))))
  7161. (set (intern (format "org-agenda-%s-filter" (intern-soft type))) nil)
  7162. (setq org-agenda-filter-form nil)
  7163. (org-agenda-set-mode-name)
  7164. (org-agenda-finalize)))
  7165. (defun org-agenda-filter-show-all-tag nil
  7166. (org-agenda-remove-filter 'tag))
  7167. (defun org-agenda-filter-show-all-re nil
  7168. (org-agenda-remove-filter 'regexp))
  7169. (defun org-agenda-filter-show-all-cat nil
  7170. (org-agenda-remove-filter 'category))
  7171. (defun org-agenda-filter-show-all-top-filter nil
  7172. (org-agenda-remove-filter 'top-headline))
  7173. (defun org-agenda-manipulate-query-add ()
  7174. "Manipulate the query by adding a search term with positive selection.
  7175. Positive selection means the term must be matched for selection of an entry."
  7176. (interactive)
  7177. (org-agenda-manipulate-query ?\[))
  7178. (defun org-agenda-manipulate-query-subtract ()
  7179. "Manipulate the query by adding a search term with negative selection.
  7180. Negative selection means term must not be matched for selection of an entry."
  7181. (interactive)
  7182. (org-agenda-manipulate-query ?\]))
  7183. (defun org-agenda-manipulate-query-add-re ()
  7184. "Manipulate the query by adding a search regexp with positive selection.
  7185. Positive selection means the regexp must match for selection of an entry."
  7186. (interactive)
  7187. (org-agenda-manipulate-query ?\{))
  7188. (defun org-agenda-manipulate-query-subtract-re ()
  7189. "Manipulate the query by adding a search regexp with negative selection.
  7190. Negative selection means regexp must not match for selection of an entry."
  7191. (interactive)
  7192. (org-agenda-manipulate-query ?\}))
  7193. (defun org-agenda-manipulate-query (char)
  7194. (cond
  7195. ((memq org-agenda-type '(timeline agenda))
  7196. (let ((org-agenda-include-inactive-timestamps t))
  7197. (org-agenda-redo))
  7198. (message "Display now includes inactive timestamps as well"))
  7199. ((eq org-agenda-type 'search)
  7200. (org-add-to-string
  7201. 'org-agenda-query-string
  7202. (if org-agenda-last-search-view-search-was-boolean
  7203. (cdr (assoc char '((?\[ . " +") (?\] . " -")
  7204. (?\{ . " +{}") (?\} . " -{}"))))
  7205. " "))
  7206. (setq org-agenda-redo-command
  7207. (list 'org-search-view
  7208. (car (get-text-property (min (1- (point-max)) (point))
  7209. 'org-last-args))
  7210. org-agenda-query-string
  7211. (+ (length org-agenda-query-string)
  7212. (if (member char '(?\{ ?\})) 0 1))))
  7213. (set-register org-agenda-query-register org-agenda-query-string)
  7214. (let ((org-agenda-overriding-arguments
  7215. (cdr org-agenda-redo-command)))
  7216. (org-agenda-redo)))
  7217. (t (error "Cannot manipulate query for %s-type agenda buffers"
  7218. org-agenda-type))))
  7219. (defun org-add-to-string (var string)
  7220. (set var (concat (symbol-value var) string)))
  7221. (defun org-agenda-goto-date (span)
  7222. "Jump to DATE in agenda."
  7223. (interactive "P")
  7224. (let* ((org-read-date-prefer-future
  7225. (eval org-agenda-jump-prefer-future))
  7226. (date (org-read-date))
  7227. (day (time-to-days (org-time-string-to-time date)))
  7228. (org-agenda-sticky-orig org-agenda-sticky)
  7229. (org-agenda-buffer-tmp-name (buffer-name))
  7230. (args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7231. (0-arg (or current-prefix-arg (car args)))
  7232. (2-arg (nth 2 args))
  7233. (with-hour-p (nth 4 org-agenda-redo-command))
  7234. (newcmd (list 'org-agenda-list 0-arg date
  7235. (org-agenda-span-to-ndays
  7236. 2-arg (org-time-string-to-absolute date))
  7237. with-hour-p))
  7238. (newargs (cdr newcmd))
  7239. (inhibit-read-only t)
  7240. org-agenda-sticky)
  7241. (if (not (org-agenda-check-type t 'agenda))
  7242. (error "Not available in non-agenda views")
  7243. (add-text-properties (point-min) (point-max)
  7244. `(org-redo-cmd ,newcmd org-last-args ,newargs))
  7245. (org-agenda-redo)
  7246. (goto-char (point-min))
  7247. (while (not (or (= (or (get-text-property (point) 'day) 0) day)
  7248. (save-excursion (move-beginning-of-line 2) (eobp))))
  7249. (move-beginning-of-line 2))
  7250. (setq org-agenda-sticky org-agenda-sticky-orig
  7251. org-agenda-this-buffer-is-sticky org-agenda-sticky))))
  7252. (defun org-agenda-goto-today ()
  7253. "Go to today."
  7254. (interactive)
  7255. (org-agenda-check-type t 'timeline 'agenda)
  7256. (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7257. (curspan (nth 2 args))
  7258. (tdpos (text-property-any (point-min) (point-max) 'org-today t)))
  7259. (cond
  7260. (tdpos (goto-char tdpos))
  7261. ((eq org-agenda-type 'agenda)
  7262. (let* ((sd (org-agenda-compute-starting-span
  7263. (org-today) (or curspan org-agenda-ndays org-agenda-span)))
  7264. (org-agenda-overriding-arguments args))
  7265. (setf (nth 1 org-agenda-overriding-arguments) sd)
  7266. (org-agenda-redo)
  7267. (org-agenda-find-same-or-today-or-agenda)))
  7268. (t (error "Cannot find today")))))
  7269. (defun org-agenda-find-same-or-today-or-agenda (&optional cnt)
  7270. (goto-char
  7271. (or (and cnt (text-property-any (point-min) (point-max) 'org-day-cnt cnt))
  7272. (text-property-any (point-min) (point-max) 'org-today t)
  7273. (text-property-any (point-min) (point-max) 'org-agenda-type 'agenda)
  7274. (and (get-text-property (min (1- (point-max)) (point)) 'org-series)
  7275. (org-agenda-goto-block-beginning))
  7276. (point-min))))
  7277. (defun org-agenda-goto-block-beginning ()
  7278. "Go the agenda block beginning."
  7279. (interactive)
  7280. (if (not (derived-mode-p 'org-agenda-mode))
  7281. (error "Cannot execute this command outside of org-agenda-mode buffers")
  7282. (let (dest)
  7283. (save-excursion
  7284. (unless (looking-at "\\'")
  7285. (forward-char))
  7286. (let* ((prop 'org-agenda-structural-header)
  7287. (p (previous-single-property-change (point) prop))
  7288. (n (next-single-property-change (or (and (looking-at "\\`") 1)
  7289. (1- (point))) prop)))
  7290. (setq dest (cond ((eq n (point-at-eol)) (1- n)) (p (1- p))))))
  7291. (if (not dest)
  7292. (error "Cannot find the beginning of the blog")
  7293. (goto-char dest)
  7294. (move-beginning-of-line 1)))))
  7295. (defun org-agenda-later (arg)
  7296. "Go forward in time by the current span.
  7297. With prefix ARG, go forward that many times the current span."
  7298. (interactive "p")
  7299. (org-agenda-check-type t 'agenda)
  7300. (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7301. (span (or (nth 2 args) org-agenda-current-span))
  7302. (sd (or (nth 1 args) (org-get-at-bol 'day) org-starting-day))
  7303. (greg (calendar-gregorian-from-absolute sd))
  7304. (cnt (org-get-at-bol 'org-day-cnt))
  7305. greg2)
  7306. (cond
  7307. ((numberp span)
  7308. (setq sd (+ (* span arg) sd)))
  7309. ((eq span 'day)
  7310. (setq sd (+ arg sd)))
  7311. ((eq span 'week)
  7312. (setq sd (+ (* 7 arg) sd)))
  7313. ((eq span 'fortnight)
  7314. (setq sd (+ (* 14 arg) sd)))
  7315. ((eq span 'month)
  7316. (setq greg2 (list (+ (car greg) arg) (nth 1 greg) (nth 2 greg))
  7317. sd (calendar-absolute-from-gregorian greg2))
  7318. (setcar greg2 (1+ (car greg2))))
  7319. ((eq span 'year)
  7320. (setq greg2 (list (car greg) (nth 1 greg) (+ arg (nth 2 greg)))
  7321. sd (calendar-absolute-from-gregorian greg2))
  7322. (setcar (nthcdr 2 greg2) (1+ (nth 2 greg2))))
  7323. (t
  7324. (setq sd (+ (* span arg) sd))))
  7325. (let ((org-agenda-overriding-cmd
  7326. ;; `cmd' may have been set by `org-agenda-run-series' which
  7327. ;; uses `org-agenda-overriding-cmd' to decide whether
  7328. ;; overriding is allowed for `cmd'
  7329. (get-text-property (min (1- (point-max)) (point)) 'org-series-cmd))
  7330. (org-agenda-overriding-arguments
  7331. (list (car args) sd span)))
  7332. (org-agenda-redo)
  7333. (org-agenda-find-same-or-today-or-agenda cnt))))
  7334. (defun org-agenda-earlier (arg)
  7335. "Go backward in time by the current span.
  7336. With prefix ARG, go backward that many times the current span."
  7337. (interactive "p")
  7338. (org-agenda-later (- arg)))
  7339. (defun org-agenda-view-mode-dispatch ()
  7340. "Call one of the view mode commands."
  7341. (interactive)
  7342. (message "View: [d]ay [w]eek for[t]night [m]onth [y]ear [SPC]reset [q]uit/abort
  7343. time[G]rid [[]inactive [f]ollow [l]og [L]og-all [c]lockcheck
  7344. [a]rch-trees [A]rch-files clock[R]eport include[D]iary [E]ntryText")
  7345. (let ((a (read-char-exclusive)))
  7346. (case a
  7347. (?\ (call-interactively 'org-agenda-reset-view))
  7348. (?d (call-interactively 'org-agenda-day-view))
  7349. (?w (call-interactively 'org-agenda-week-view))
  7350. (?t (call-interactively 'org-agenda-fortnight-view))
  7351. (?m (call-interactively 'org-agenda-month-view))
  7352. (?y (call-interactively 'org-agenda-year-view))
  7353. (?l (call-interactively 'org-agenda-log-mode))
  7354. (?L (org-agenda-log-mode '(4)))
  7355. (?c (org-agenda-log-mode 'clockcheck))
  7356. ((?F ?f) (call-interactively 'org-agenda-follow-mode))
  7357. (?a (call-interactively 'org-agenda-archives-mode))
  7358. (?A (org-agenda-archives-mode 'files))
  7359. ((?R ?r) (call-interactively 'org-agenda-clockreport-mode))
  7360. ((?E ?e) (call-interactively 'org-agenda-entry-text-mode))
  7361. (?G (call-interactively 'org-agenda-toggle-time-grid))
  7362. (?D (call-interactively 'org-agenda-toggle-diary))
  7363. (?\! (call-interactively 'org-agenda-toggle-deadlines))
  7364. (?\[ (let ((org-agenda-include-inactive-timestamps t))
  7365. (org-agenda-check-type t 'timeline 'agenda)
  7366. (org-agenda-redo))
  7367. (message "Display now includes inactive timestamps as well"))
  7368. (?q (message "Abort"))
  7369. (otherwise (error "Invalid key" )))))
  7370. (defun org-agenda-reset-view ()
  7371. "Switch to default view for agenda."
  7372. (interactive)
  7373. (org-agenda-change-time-span (or org-agenda-ndays org-agenda-span)))
  7374. (defun org-agenda-day-view (&optional day-of-month)
  7375. "Switch to daily view for agenda.
  7376. With argument DAY-OF-MONTH, switch to that day of the month."
  7377. (interactive "P")
  7378. (org-agenda-change-time-span 'day day-of-month))
  7379. (defun org-agenda-week-view (&optional iso-week)
  7380. "Switch to daily view for agenda.
  7381. With argument ISO-WEEK, switch to the corresponding ISO week.
  7382. If ISO-WEEK has more then 2 digits, only the last two encode the
  7383. week. Any digits before this encode a year. So 200712 means
  7384. week 12 of year 2007. Years in the range 1938-2037 can also be
  7385. written as 2-digit years."
  7386. (interactive "P")
  7387. (org-agenda-change-time-span 'week iso-week))
  7388. (defun org-agenda-fortnight-view (&optional iso-week)
  7389. "Switch to daily view for agenda.
  7390. With argument ISO-WEEK, switch to the corresponding ISO week.
  7391. If ISO-WEEK has more then 2 digits, only the last two encode the
  7392. week. Any digits before this encode a year. So 200712 means
  7393. week 12 of year 2007. Years in the range 1938-2037 can also be
  7394. written as 2-digit years."
  7395. (interactive "P")
  7396. (org-agenda-change-time-span 'fortnight iso-week))
  7397. (defun org-agenda-month-view (&optional month)
  7398. "Switch to monthly view for agenda.
  7399. With argument MONTH, switch to that month."
  7400. (interactive "P")
  7401. (org-agenda-change-time-span 'month month))
  7402. (defun org-agenda-year-view (&optional year)
  7403. "Switch to yearly view for agenda.
  7404. With argument YEAR, switch to that year.
  7405. If MONTH has more then 2 digits, only the last two encode the
  7406. month. Any digits before this encode a year. So 200712 means
  7407. December year 2007. Years in the range 1938-2037 can also be
  7408. written as 2-digit years."
  7409. (interactive "P")
  7410. (when year
  7411. (setq year (org-small-year-to-year year)))
  7412. (if (y-or-n-p "Are you sure you want to compute the agenda for an entire year? ")
  7413. (org-agenda-change-time-span 'year year)
  7414. (error "Abort")))
  7415. (defun org-agenda-change-time-span (span &optional n)
  7416. "Change the agenda view to SPAN.
  7417. SPAN may be `day', `week', `fortnight', `month', `year'."
  7418. (org-agenda-check-type t 'agenda)
  7419. (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7420. (curspan (nth 2 args)))
  7421. (if (and (not n) (equal curspan span))
  7422. (error "Viewing span is already \"%s\"" span))
  7423. (let* ((sd (or (org-get-at-bol 'day)
  7424. (nth 1 args)
  7425. org-starting-day))
  7426. (sd (org-agenda-compute-starting-span sd span n))
  7427. (org-agenda-overriding-cmd
  7428. (get-text-property (min (1- (point-max)) (point)) 'org-series-cmd))
  7429. (org-agenda-overriding-arguments
  7430. (list (car args) sd span)))
  7431. (org-agenda-redo)
  7432. (org-agenda-find-same-or-today-or-agenda))
  7433. (org-agenda-set-mode-name)
  7434. (message "Switched to %s view" span)))
  7435. (defun org-agenda-compute-starting-span (sd span &optional n)
  7436. "Compute starting date for agenda.
  7437. SPAN may be `day', `week', `fortnight', `month', `year'. The return value
  7438. is a cons cell with the starting date and the number of days,
  7439. so that the date SD will be in that range."
  7440. (let* ((greg (calendar-gregorian-from-absolute sd))
  7441. (dg (nth 1 greg))
  7442. (mg (car greg))
  7443. (yg (nth 2 greg)))
  7444. (cond
  7445. ((eq span 'day)
  7446. (when n
  7447. (setq sd (+ (calendar-absolute-from-gregorian
  7448. (list mg 1 yg))
  7449. n -1))))
  7450. ((or (eq span 'week) (eq span 'fortnight))
  7451. (let* ((nt (calendar-day-of-week
  7452. (calendar-gregorian-from-absolute sd)))
  7453. (d (if org-agenda-start-on-weekday
  7454. (- nt org-agenda-start-on-weekday)
  7455. 0))
  7456. y1)
  7457. (setq sd (- sd (+ (if (< d 0) 7 0) d)))
  7458. (when n
  7459. (require 'cal-iso)
  7460. (when (> n 99)
  7461. (setq y1 (org-small-year-to-year (/ n 100))
  7462. n (mod n 100)))
  7463. (setq sd
  7464. (calendar-absolute-from-iso
  7465. (list n 1
  7466. (or y1 (nth 2 (calendar-iso-from-absolute sd)))))))))
  7467. ((eq span 'month)
  7468. (let (y1)
  7469. (when (and n (> n 99))
  7470. (setq y1 (org-small-year-to-year (/ n 100))
  7471. n (mod n 100)))
  7472. (setq sd (calendar-absolute-from-gregorian
  7473. (list (or n mg) 1 (or y1 yg))))))
  7474. ((eq span 'year)
  7475. (setq sd (calendar-absolute-from-gregorian
  7476. (list 1 1 (or n yg))))))
  7477. sd))
  7478. (defun org-agenda-next-date-line (&optional arg)
  7479. "Jump to the next line indicating a date in agenda buffer."
  7480. (interactive "p")
  7481. (org-agenda-check-type t 'agenda 'timeline)
  7482. (beginning-of-line 1)
  7483. ;; This does not work if user makes date format that starts with a blank
  7484. (if (looking-at "^\\S-") (forward-char 1))
  7485. (if (not (re-search-forward "^\\S-" nil t arg))
  7486. (progn
  7487. (backward-char 1)
  7488. (error "No next date after this line in this buffer")))
  7489. (goto-char (match-beginning 0)))
  7490. (defun org-agenda-previous-date-line (&optional arg)
  7491. "Jump to the previous line indicating a date in agenda buffer."
  7492. (interactive "p")
  7493. (org-agenda-check-type t 'agenda 'timeline)
  7494. (beginning-of-line 1)
  7495. (if (not (re-search-backward "^\\S-" nil t arg))
  7496. (error "No previous date before this line in this buffer")))
  7497. ;; Initialize the highlight
  7498. (defvar org-hl (make-overlay 1 1))
  7499. (overlay-put org-hl 'face 'highlight)
  7500. (defun org-highlight (begin end &optional buffer)
  7501. "Highlight a region with overlay."
  7502. (move-overlay org-hl begin end (or buffer (current-buffer))))
  7503. (defun org-unhighlight ()
  7504. "Detach overlay INDEX."
  7505. (org-detach-overlay org-hl))
  7506. (defun org-unhighlight-once ()
  7507. "Remove the highlight from its position, and this function from the hook."
  7508. (remove-hook 'pre-command-hook 'org-unhighlight-once)
  7509. (org-unhighlight))
  7510. (defvar org-agenda-pre-follow-window-conf nil)
  7511. (defun org-agenda-follow-mode ()
  7512. "Toggle follow mode in an agenda buffer."
  7513. (interactive)
  7514. (unless org-agenda-follow-mode
  7515. (setq org-agenda-pre-follow-window-conf
  7516. (current-window-configuration)))
  7517. (setq org-agenda-follow-mode (not org-agenda-follow-mode))
  7518. (unless org-agenda-follow-mode
  7519. (set-window-configuration org-agenda-pre-follow-window-conf))
  7520. (org-agenda-set-mode-name)
  7521. (org-agenda-do-context-action)
  7522. (message "Follow mode is %s"
  7523. (if org-agenda-follow-mode "on" "off")))
  7524. (defun org-agenda-entry-text-mode (&optional arg)
  7525. "Toggle entry text mode in an agenda buffer."
  7526. (interactive "P")
  7527. (if (or org-agenda-tag-filter
  7528. org-agenda-category-filter
  7529. org-agenda-regexp-filter
  7530. org-agenda-top-headline-filter)
  7531. (user-error "Can't show entry text in filtered views")
  7532. (setq org-agenda-entry-text-mode (or (integerp arg)
  7533. (not org-agenda-entry-text-mode)))
  7534. (org-agenda-entry-text-hide)
  7535. (and org-agenda-entry-text-mode
  7536. (let ((org-agenda-entry-text-maxlines
  7537. (if (integerp arg) arg org-agenda-entry-text-maxlines)))
  7538. (org-agenda-entry-text-show)))
  7539. (org-agenda-set-mode-name)
  7540. (message "Entry text mode is %s%s"
  7541. (if org-agenda-entry-text-mode "on" "off")
  7542. (if (not org-agenda-entry-text-mode) ""
  7543. (format " (maximum number of lines is %d)"
  7544. (if (integerp arg) arg org-agenda-entry-text-maxlines))))))
  7545. (defun org-agenda-clockreport-mode (&optional with-filter)
  7546. "Toggle clocktable mode in an agenda buffer.
  7547. With prefix arg WITH-FILTER, make the clocktable respect the current
  7548. agenda filter."
  7549. (interactive "P")
  7550. (org-agenda-check-type t 'agenda)
  7551. (if with-filter
  7552. (setq org-agenda-clockreport-mode 'with-filter)
  7553. (setq org-agenda-clockreport-mode (not org-agenda-clockreport-mode)))
  7554. (org-agenda-set-mode-name)
  7555. (org-agenda-redo)
  7556. (message "Clocktable mode is %s"
  7557. (if org-agenda-clockreport-mode "on" "off")))
  7558. (defun org-agenda-log-mode (&optional special)
  7559. "Toggle log mode in an agenda buffer.
  7560. With argument SPECIAL, show all possible log items, not only the ones
  7561. configured in `org-agenda-log-mode-items'.
  7562. With a double `C-u' prefix arg, show *only* log items, nothing else."
  7563. (interactive "P")
  7564. (org-agenda-check-type t 'agenda 'timeline)
  7565. (setq org-agenda-show-log
  7566. (cond
  7567. ((equal special '(16)) 'only)
  7568. ((eq special 'clockcheck)
  7569. (if (eq org-agenda-show-log 'clockcheck)
  7570. nil 'clockcheck))
  7571. (special '(closed clock state))
  7572. (t (not org-agenda-show-log))))
  7573. (org-agenda-set-mode-name)
  7574. (org-agenda-redo)
  7575. (message "Log mode is %s"
  7576. (if org-agenda-show-log "on" "off")))
  7577. (defun org-agenda-archives-mode (&optional with-files)
  7578. "Toggle inclusion of items in trees marked with :ARCHIVE:.
  7579. When called with a prefix argument, include all archive files as well."
  7580. (interactive "P")
  7581. (setq org-agenda-archives-mode
  7582. (if with-files t (if org-agenda-archives-mode nil 'trees)))
  7583. (org-agenda-set-mode-name)
  7584. (org-agenda-redo)
  7585. (message
  7586. "%s"
  7587. (cond
  7588. ((eq org-agenda-archives-mode nil)
  7589. "No archives are included")
  7590. ((eq org-agenda-archives-mode 'trees)
  7591. (format "Trees with :%s: tag are included" org-archive-tag))
  7592. ((eq org-agenda-archives-mode t)
  7593. (format "Trees with :%s: tag and all active archive files are included"
  7594. org-archive-tag)))))
  7595. (defun org-agenda-toggle-diary ()
  7596. "Toggle diary inclusion in an agenda buffer."
  7597. (interactive)
  7598. (org-agenda-check-type t 'agenda)
  7599. (setq org-agenda-include-diary (not org-agenda-include-diary))
  7600. (org-agenda-redo)
  7601. (org-agenda-set-mode-name)
  7602. (message "Diary inclusion turned %s"
  7603. (if org-agenda-include-diary "on" "off")))
  7604. (defun org-agenda-toggle-deadlines ()
  7605. "Toggle inclusion of entries with a deadline in an agenda buffer."
  7606. (interactive)
  7607. (org-agenda-check-type t 'agenda)
  7608. (setq org-agenda-include-deadlines (not org-agenda-include-deadlines))
  7609. (org-agenda-redo)
  7610. (org-agenda-set-mode-name)
  7611. (message "Deadlines inclusion turned %s"
  7612. (if org-agenda-include-deadlines "on" "off")))
  7613. (defun org-agenda-toggle-time-grid ()
  7614. "Toggle time grid in an agenda buffer."
  7615. (interactive)
  7616. (org-agenda-check-type t 'agenda)
  7617. (setq org-agenda-use-time-grid (not org-agenda-use-time-grid))
  7618. (org-agenda-redo)
  7619. (org-agenda-set-mode-name)
  7620. (message "Time-grid turned %s"
  7621. (if org-agenda-use-time-grid "on" "off")))
  7622. (defun org-agenda-set-mode-name ()
  7623. "Set the mode name to indicate all the small mode settings."
  7624. (setq mode-name
  7625. (list "Org-Agenda"
  7626. (if (get 'org-agenda-files 'org-restrict) " []" "")
  7627. " "
  7628. '(:eval (org-agenda-span-name org-agenda-current-span))
  7629. (if org-agenda-follow-mode " Follow" "")
  7630. (if org-agenda-entry-text-mode " ETxt" "")
  7631. (if org-agenda-include-diary " Diary" "")
  7632. (if org-agenda-include-deadlines " Ddl" "")
  7633. (if org-agenda-use-time-grid " Grid" "")
  7634. (if (and (boundp 'org-habit-show-habits)
  7635. org-habit-show-habits) " Habit" "")
  7636. (cond
  7637. ((consp org-agenda-show-log) " LogAll")
  7638. ((eq org-agenda-show-log 'clockcheck) " ClkCk")
  7639. (org-agenda-show-log " Log")
  7640. (t ""))
  7641. (if (or org-agenda-category-filter
  7642. (get 'org-agenda-category-filter :preset-filter))
  7643. '(:eval (org-propertize
  7644. (concat " <"
  7645. (mapconcat
  7646. 'identity
  7647. (append
  7648. (get 'org-agenda-category-filter :preset-filter)
  7649. org-agenda-category-filter)
  7650. "")
  7651. ">")
  7652. 'face 'org-agenda-filter-category
  7653. 'help-echo "Category used in filtering")) "")
  7654. (if (or org-agenda-tag-filter
  7655. (get 'org-agenda-tag-filter :preset-filter))
  7656. '(:eval (org-propertize
  7657. (concat " {"
  7658. (mapconcat
  7659. 'identity
  7660. (append
  7661. (get 'org-agenda-tag-filter :preset-filter)
  7662. org-agenda-tag-filter)
  7663. "")
  7664. "}")
  7665. 'face 'org-agenda-filter-tags
  7666. 'help-echo "Tags used in filtering")) "")
  7667. (if (or org-agenda-regexp-filter
  7668. (get 'org-agenda-regexp-filter :preset-filter))
  7669. '(:eval (org-propertize
  7670. (concat " ["
  7671. (mapconcat
  7672. 'identity
  7673. (append
  7674. (get 'org-agenda-regexp-filter :preset-filter)
  7675. org-agenda-regexp-filter)
  7676. "")
  7677. "]")
  7678. 'face 'org-agenda-filter-regexp
  7679. 'help-echo "Regexp used in filtering")) "")
  7680. (if org-agenda-archives-mode
  7681. (if (eq org-agenda-archives-mode t)
  7682. " Archives"
  7683. (format " :%s:" org-archive-tag))
  7684. "")
  7685. (if org-agenda-clockreport-mode
  7686. (if (eq org-agenda-clockreport-mode 'with-filter)
  7687. " Clock{}" " Clock")
  7688. "")))
  7689. (force-mode-line-update))
  7690. (define-obsolete-function-alias
  7691. 'org-agenda-post-command-hook 'org-agenda-update-agenda-type "24.3")
  7692. (defun org-agenda-update-agenda-type ()
  7693. "Update the agenda type after each command."
  7694. (setq org-agenda-type
  7695. (or (get-text-property (point) 'org-agenda-type)
  7696. (get-text-property (max (point-min) (1- (point))) 'org-agenda-type))))
  7697. (defun org-agenda-next-line ()
  7698. "Move cursor to the next line, and show if follow mode is active."
  7699. (interactive)
  7700. (call-interactively 'next-line)
  7701. (org-agenda-do-context-action))
  7702. (defun org-agenda-previous-line ()
  7703. "Move cursor to the previous line, and show if follow-mode is active."
  7704. (interactive)
  7705. (call-interactively 'previous-line)
  7706. (org-agenda-do-context-action))
  7707. (defun org-agenda-next-item (n)
  7708. "Move cursor to next agenda item."
  7709. (interactive "p")
  7710. (let ((col (current-column)))
  7711. (dotimes (c n)
  7712. (when (next-single-property-change (point-at-eol) 'org-marker)
  7713. (move-end-of-line 1)
  7714. (goto-char (next-single-property-change (point) 'org-marker))))
  7715. (org-move-to-column col))
  7716. (org-agenda-do-context-action))
  7717. (defun org-agenda-previous-item (n)
  7718. "Move cursor to next agenda item."
  7719. (interactive "p")
  7720. (dotimes (c n)
  7721. (let ((col (current-column))
  7722. (goto (save-excursion
  7723. (move-end-of-line 0)
  7724. (previous-single-property-change (point) 'org-marker))))
  7725. (if goto (goto-char goto))
  7726. (org-move-to-column col)))
  7727. (org-agenda-do-context-action))
  7728. (defun org-agenda-do-context-action ()
  7729. "Show outline path and, maybe, follow mode window."
  7730. (let ((m (org-get-at-bol 'org-marker)))
  7731. (when (and (markerp m) (marker-buffer m))
  7732. (and org-agenda-follow-mode
  7733. (if org-agenda-follow-indirect
  7734. (org-agenda-tree-to-indirect-buffer nil)
  7735. (org-agenda-show)))
  7736. (and org-agenda-show-outline-path
  7737. (org-with-point-at m (org-display-outline-path t))))))
  7738. (defun org-agenda-show-tags ()
  7739. "Show the tags applicable to the current item."
  7740. (interactive)
  7741. (let* ((tags (org-get-at-bol 'tags)))
  7742. (if tags
  7743. (message "Tags are :%s:"
  7744. (org-no-properties (mapconcat 'identity tags ":")))
  7745. (message "No tags associated with this line"))))
  7746. (defun org-agenda-goto (&optional highlight)
  7747. "Go to the Org-mode file which contains the item at point."
  7748. (interactive)
  7749. (let* ((marker (or (org-get-at-bol 'org-marker)
  7750. (org-agenda-error)))
  7751. (buffer (marker-buffer marker))
  7752. (pos (marker-position marker)))
  7753. (switch-to-buffer-other-window buffer)
  7754. (widen)
  7755. (push-mark)
  7756. (goto-char pos)
  7757. (when (derived-mode-p 'org-mode)
  7758. (org-show-context 'agenda)
  7759. (save-excursion
  7760. (and (outline-next-heading)
  7761. (org-flag-heading nil)))) ; show the next heading
  7762. (when (outline-invisible-p)
  7763. (show-entry)) ; display invisible text
  7764. (recenter (/ (window-height) 2))
  7765. (run-hooks 'org-agenda-after-show-hook)
  7766. (and highlight (org-highlight (point-at-bol) (point-at-eol)))))
  7767. (defvar org-agenda-after-show-hook nil
  7768. "Normal hook run after an item has been shown from the agenda.
  7769. Point is in the buffer where the item originated.")
  7770. (defun org-agenda-kill ()
  7771. "Kill the entry or subtree belonging to the current agenda entry."
  7772. (interactive)
  7773. (or (eq major-mode 'org-agenda-mode) (error "Not in agenda"))
  7774. (let* ((bufname-orig (buffer-name))
  7775. (marker (or (org-get-at-bol 'org-marker)
  7776. (org-agenda-error)))
  7777. (buffer (marker-buffer marker))
  7778. (pos (marker-position marker))
  7779. (type (org-get-at-bol 'type))
  7780. dbeg dend (n 0) conf)
  7781. (org-with-remote-undo buffer
  7782. (with-current-buffer buffer
  7783. (save-excursion
  7784. (goto-char pos)
  7785. (if (and (derived-mode-p 'org-mode) (not (member type '("sexp"))))
  7786. (setq dbeg (progn (org-back-to-heading t) (point))
  7787. dend (org-end-of-subtree t t))
  7788. (setq dbeg (point-at-bol)
  7789. dend (min (point-max) (1+ (point-at-eol)))))
  7790. (goto-char dbeg)
  7791. (while (re-search-forward "^[ \t]*\\S-" dend t) (setq n (1+ n)))))
  7792. (setq conf (or (eq t org-agenda-confirm-kill)
  7793. (and (numberp org-agenda-confirm-kill)
  7794. (> n org-agenda-confirm-kill))))
  7795. (and conf
  7796. (not (y-or-n-p
  7797. (format "Delete entry with %d lines in buffer \"%s\"? "
  7798. n (buffer-name buffer))))
  7799. (error "Abort"))
  7800. (let ((org-agenda-buffer-name bufname-orig))
  7801. (org-remove-subtree-entries-from-agenda buffer dbeg dend))
  7802. (with-current-buffer buffer (delete-region dbeg dend))
  7803. (message "Agenda item and source killed"))))
  7804. (defvar org-archive-default-command) ; defined in org-archive.el
  7805. (defun org-agenda-archive-default ()
  7806. "Archive the entry or subtree belonging to the current agenda entry."
  7807. (interactive)
  7808. (require 'org-archive)
  7809. (org-agenda-archive-with org-archive-default-command))
  7810. (defun org-agenda-archive-default-with-confirmation ()
  7811. "Archive the entry or subtree belonging to the current agenda entry."
  7812. (interactive)
  7813. (require 'org-archive)
  7814. (org-agenda-archive-with org-archive-default-command 'confirm))
  7815. (defun org-agenda-archive ()
  7816. "Archive the entry or subtree belonging to the current agenda entry."
  7817. (interactive)
  7818. (org-agenda-archive-with 'org-archive-subtree))
  7819. (defun org-agenda-archive-to-archive-sibling ()
  7820. "Move the entry to the archive sibling."
  7821. (interactive)
  7822. (org-agenda-archive-with 'org-archive-to-archive-sibling))
  7823. (defun org-agenda-archive-with (cmd &optional confirm)
  7824. "Move the entry to the archive sibling."
  7825. (interactive)
  7826. (or (eq major-mode 'org-agenda-mode) (error "Not in agenda"))
  7827. (let* ((bufname-orig (buffer-name))
  7828. (marker (or (org-get-at-bol 'org-marker)
  7829. (org-agenda-error)))
  7830. (buffer (marker-buffer marker))
  7831. (pos (marker-position marker)))
  7832. (org-with-remote-undo buffer
  7833. (with-current-buffer buffer
  7834. (if (derived-mode-p 'org-mode)
  7835. (if (and confirm
  7836. (not (y-or-n-p "Archive this subtree or entry? ")))
  7837. (error "Abort")
  7838. (save-window-excursion
  7839. (goto-char pos)
  7840. (let ((org-agenda-buffer-name bufname-orig))
  7841. (org-remove-subtree-entries-from-agenda))
  7842. (org-back-to-heading t)
  7843. (funcall cmd)))
  7844. (error "Archiving works only in Org-mode files"))))))
  7845. (defun org-remove-subtree-entries-from-agenda (&optional buf beg end)
  7846. "Remove all lines in the agenda that correspond to a given subtree.
  7847. The subtree is the one in buffer BUF, starting at BEG and ending at END.
  7848. If this information is not given, the function uses the tree at point."
  7849. (let ((buf (or buf (current-buffer))) m p)
  7850. (save-excursion
  7851. (unless (and beg end)
  7852. (org-back-to-heading t)
  7853. (setq beg (point))
  7854. (org-end-of-subtree t)
  7855. (setq end (point)))
  7856. (set-buffer (get-buffer org-agenda-buffer-name))
  7857. (save-excursion
  7858. (goto-char (point-max))
  7859. (beginning-of-line 1)
  7860. (while (not (bobp))
  7861. (when (and (setq m (org-get-at-bol 'org-marker))
  7862. (equal buf (marker-buffer m))
  7863. (setq p (marker-position m))
  7864. (>= p beg)
  7865. (< p end))
  7866. (let ((inhibit-read-only t))
  7867. (delete-region (point-at-bol) (1+ (point-at-eol)))))
  7868. (beginning-of-line 0))))))
  7869. (defun org-agenda-refile (&optional goto rfloc no-update)
  7870. "Refile the item at point.
  7871. When GOTO is 0 or '(64), clear the refile cache.
  7872. When GOTO is '(16), go to the location of the last refiled item.
  7873. RFLOC can be a refile location obtained in a different way.
  7874. When NO-UPDATE is non-nil, don't redo the agenda buffer."
  7875. (interactive "P")
  7876. (cond
  7877. ((member goto '(0 (64)))
  7878. (org-refile-cache-clear))
  7879. ((equal goto '(16))
  7880. (org-refile-goto-last-stored))
  7881. (t
  7882. (let* ((buffer-orig (buffer-name))
  7883. (marker (or (org-get-at-bol 'org-hd-marker)
  7884. (org-agenda-error)))
  7885. (buffer (marker-buffer marker))
  7886. (pos (marker-position marker))
  7887. (rfloc (or rfloc
  7888. (org-refile-get-location
  7889. (if goto "Goto" "Refile to") buffer
  7890. org-refile-allow-creating-parent-nodes))))
  7891. (with-current-buffer buffer
  7892. (save-excursion
  7893. (save-restriction
  7894. (widen)
  7895. (goto-char marker)
  7896. (let ((org-agenda-buffer-name buffer-orig))
  7897. (org-remove-subtree-entries-from-agenda))
  7898. (org-refile goto buffer rfloc)))))
  7899. (unless no-update (org-agenda-redo)))))
  7900. (defun org-agenda-open-link (&optional arg)
  7901. "Open the link(s) in the current entry, if any.
  7902. This looks for a link in the displayed line in the agenda.
  7903. It also looks at the text of the entry itself."
  7904. (interactive "P")
  7905. (let* ((marker (or (org-get-at-bol 'org-hd-marker)
  7906. (org-get-at-bol 'org-marker)))
  7907. (buffer (and marker (marker-buffer marker)))
  7908. (prefix (buffer-substring (point-at-bol) (point-at-eol)))
  7909. (lkall (and buffer (org-offer-links-in-entry
  7910. buffer marker arg prefix)))
  7911. (lk0 (car lkall))
  7912. (lk (if (stringp lk0) (list lk0) lk0))
  7913. (lkend (cdr lkall))
  7914. trg)
  7915. (cond
  7916. ((and buffer lk)
  7917. (mapcar (lambda(l)
  7918. (with-current-buffer buffer
  7919. (setq trg (and (string-match org-bracket-link-regexp l)
  7920. (match-string 1 l)))
  7921. (if (or (not trg) (string-match org-any-link-re trg))
  7922. (save-excursion
  7923. (save-restriction
  7924. (widen)
  7925. (goto-char marker)
  7926. (when (search-forward l nil lkend)
  7927. (goto-char (match-beginning 0))
  7928. (org-open-at-point))))
  7929. ;; This is an internal link, widen the buffer
  7930. (switch-to-buffer-other-window buffer)
  7931. (widen)
  7932. (goto-char marker)
  7933. (when (search-forward l nil lkend)
  7934. (goto-char (match-beginning 0))
  7935. (org-open-at-point)))))
  7936. lk))
  7937. ((or (org-in-regexp (concat "\\(" org-bracket-link-regexp "\\)"))
  7938. (save-excursion
  7939. (beginning-of-line 1)
  7940. (looking-at (concat ".*?\\(" org-bracket-link-regexp "\\)"))))
  7941. (org-open-link-from-string (match-string 1)))
  7942. (t (message "No link to open here")))))
  7943. (defun org-agenda-copy-local-variable (var)
  7944. "Get a variable from a referenced buffer and install it here."
  7945. (let ((m (org-get-at-bol 'org-marker)))
  7946. (when (and m (buffer-live-p (marker-buffer m)))
  7947. (org-set-local var (with-current-buffer (marker-buffer m)
  7948. (symbol-value var))))))
  7949. (defun org-agenda-switch-to (&optional delete-other-windows)
  7950. "Go to the Org-mode file which contains the item at point."
  7951. (interactive)
  7952. (if (and org-return-follows-link
  7953. (not (org-get-at-bol 'org-marker))
  7954. (org-in-regexp org-bracket-link-regexp))
  7955. (org-open-link-from-string (match-string 0))
  7956. (let* ((marker (or (org-get-at-bol 'org-marker)
  7957. (org-agenda-error)))
  7958. (buffer (marker-buffer marker))
  7959. (pos (marker-position marker)))
  7960. (org-pop-to-buffer-same-window buffer)
  7961. (and delete-other-windows (delete-other-windows))
  7962. (widen)
  7963. (goto-char pos)
  7964. (when (derived-mode-p 'org-mode)
  7965. (org-show-context 'agenda)
  7966. (save-excursion
  7967. (and (outline-next-heading)
  7968. (org-flag-heading nil))) ; show the next heading
  7969. (when (outline-invisible-p)
  7970. (show-entry)) ; display invisible text
  7971. (run-hooks 'org-agenda-after-show-hook)))))
  7972. (defun org-agenda-goto-mouse (ev)
  7973. "Go to the Org-mode file which contains the item at the mouse click."
  7974. (interactive "e")
  7975. (mouse-set-point ev)
  7976. (org-agenda-goto))
  7977. (defun org-agenda-show (&optional full-entry)
  7978. "Display the Org-mode file which contains the item at point.
  7979. With prefix argument FULL-ENTRY, make the entire entry visible
  7980. if it was hidden in the outline."
  7981. (interactive "P")
  7982. (let ((win (selected-window)))
  7983. (if full-entry
  7984. (let ((org-show-entry-below t))
  7985. (org-agenda-goto t))
  7986. (org-agenda-goto t))
  7987. (select-window win)))
  7988. (defvar org-agenda-show-window nil)
  7989. (defun org-agenda-show-and-scroll-up (&optional arg)
  7990. "Display the Org-mode file which contains the item at point.
  7991. When called repeatedly, scroll the window that is displaying the buffer.
  7992. With a \\[universal-argument] prefix, use `org-show-entry' instead of
  7993. `show-subtree' to display the item, so that drawers and logbooks stay
  7994. folded."
  7995. (interactive "P")
  7996. (let ((win (selected-window)))
  7997. (if (and (window-live-p org-agenda-show-window)
  7998. (eq this-command last-command))
  7999. (progn
  8000. (select-window org-agenda-show-window)
  8001. (ignore-errors (scroll-up)))
  8002. (org-agenda-goto t)
  8003. (if arg (org-show-entry) (show-subtree))
  8004. (setq org-agenda-show-window (selected-window)))
  8005. (select-window win)))
  8006. (defun org-agenda-show-scroll-down ()
  8007. "Scroll down the window showing the agenda."
  8008. (interactive)
  8009. (let ((win (selected-window)))
  8010. (when (window-live-p org-agenda-show-window)
  8011. (select-window org-agenda-show-window)
  8012. (ignore-errors (scroll-down))
  8013. (select-window win))))
  8014. (defun org-agenda-show-1 (&optional more)
  8015. "Display the Org-mode file which contains the item at point.
  8016. The prefix arg selects the amount of information to display:
  8017. 0 hide the subtree
  8018. 1 just show the entry according to defaults.
  8019. 2 show the children view
  8020. 3 show the subtree view
  8021. 4 show the entire subtree and any LOGBOOK drawers
  8022. 5 show the entire subtree and any drawers
  8023. With prefix argument FULL-ENTRY, make the entire entry visible
  8024. if it was hidden in the outline."
  8025. (interactive "p")
  8026. (let ((win (selected-window)))
  8027. (org-agenda-goto t)
  8028. (org-recenter-heading 1)
  8029. (cond
  8030. ((= more 0)
  8031. (hide-subtree)
  8032. (save-excursion
  8033. (org-back-to-heading)
  8034. (run-hook-with-args 'org-cycle-hook 'folded))
  8035. (message "Remote: FOLDED"))
  8036. ((and (org-called-interactively-p 'any) (= more 1))
  8037. (message "Remote: show with default settings"))
  8038. ((= more 2)
  8039. (show-entry)
  8040. (show-children)
  8041. (save-excursion
  8042. (org-back-to-heading)
  8043. (run-hook-with-args 'org-cycle-hook 'children))
  8044. (message "Remote: CHILDREN"))
  8045. ((= more 3)
  8046. (show-subtree)
  8047. (save-excursion
  8048. (org-back-to-heading)
  8049. (run-hook-with-args 'org-cycle-hook 'subtree))
  8050. (message "Remote: SUBTREE"))
  8051. ((= more 4)
  8052. (let* ((org-drawers (delete "LOGBOOK" (copy-sequence org-drawers)))
  8053. (org-drawer-regexp
  8054. (concat "^[ \t]*:\\("
  8055. (mapconcat 'regexp-quote org-drawers "\\|")
  8056. "\\):[ \t]*$")))
  8057. (show-subtree)
  8058. (save-excursion
  8059. (org-back-to-heading)
  8060. (org-cycle-hide-drawers 'subtree)))
  8061. (message "Remote: SUBTREE AND LOGBOOK"))
  8062. ((> more 4)
  8063. (show-subtree)
  8064. (message "Remote: SUBTREE AND ALL DRAWERS")))
  8065. (select-window win)))
  8066. (defun org-recenter-heading (n)
  8067. (save-excursion
  8068. (org-back-to-heading)
  8069. (recenter n)))
  8070. (defvar org-agenda-cycle-counter nil)
  8071. (defun org-agenda-cycle-show (&optional n)
  8072. "Show the current entry in another window, with default settings.
  8073. Default settings are taken from `org-show-hierarchy-above' and siblings.
  8074. When use repeatedly in immediate succession, the remote entry will cycle
  8075. through visibility
  8076. children -> subtree -> folded
  8077. When called with a numeric prefix arg, that arg will be passed through to
  8078. `org-agenda-show-1'. For the interpretation of that argument, see the
  8079. docstring of `org-agenda-show-1'."
  8080. (interactive "P")
  8081. (if (integerp n)
  8082. (setq org-agenda-cycle-counter n)
  8083. (if (not (eq last-command this-command))
  8084. (setq org-agenda-cycle-counter 1)
  8085. (if (equal org-agenda-cycle-counter 0)
  8086. (setq org-agenda-cycle-counter 2)
  8087. (setq org-agenda-cycle-counter (1+ org-agenda-cycle-counter))
  8088. (if (> org-agenda-cycle-counter 3)
  8089. (setq org-agenda-cycle-counter 0)))))
  8090. (org-agenda-show-1 org-agenda-cycle-counter))
  8091. (defun org-agenda-recenter (arg)
  8092. "Display the Org-mode file which contains the item at point and recenter."
  8093. (interactive "P")
  8094. (let ((win (selected-window)))
  8095. (org-agenda-goto t)
  8096. (recenter arg)
  8097. (select-window win)))
  8098. (defun org-agenda-show-mouse (ev)
  8099. "Display the Org-mode file which contains the item at the mouse click."
  8100. (interactive "e")
  8101. (mouse-set-point ev)
  8102. (org-agenda-show))
  8103. (defun org-agenda-check-no-diary ()
  8104. "Check if the entry is a diary link and abort if yes."
  8105. (if (org-get-at-bol 'org-agenda-diary-link)
  8106. (org-agenda-error)))
  8107. (defun org-agenda-error ()
  8108. (error "Command not allowed in this line"))
  8109. (defun org-agenda-tree-to-indirect-buffer (arg)
  8110. "Show the subtree corresponding to the current entry in an indirect buffer.
  8111. This calls the command `org-tree-to-indirect-buffer' from the original buffer.
  8112. With a numerical prefix ARG, go up to this level and then take that tree.
  8113. With a negative numeric ARG, go up by this number of levels.
  8114. With a \\[universal-argument] prefix, make a separate frame for this tree (i.e. don't
  8115. use the dedicated frame)."
  8116. (interactive "P")
  8117. (if current-prefix-arg
  8118. (org-agenda-do-tree-to-indirect-buffer arg)
  8119. (let ((agenda-buffer (buffer-name))
  8120. (agenda-window (selected-window))
  8121. (indirect-window
  8122. (and org-last-indirect-buffer
  8123. (get-buffer-window org-last-indirect-buffer))))
  8124. (save-window-excursion (org-agenda-do-tree-to-indirect-buffer arg))
  8125. (unless (or (eq org-indirect-buffer-display 'new-frame)
  8126. (eq org-indirect-buffer-display 'dedicated-frame))
  8127. (unwind-protect
  8128. (unless (and indirect-window (window-live-p indirect-window))
  8129. (setq indirect-window (split-window agenda-window)))
  8130. (and indirect-window (select-window indirect-window))
  8131. (switch-to-buffer org-last-indirect-buffer :norecord)
  8132. (fit-window-to-buffer indirect-window)))
  8133. (select-window (get-buffer-window agenda-buffer)))))
  8134. (defun org-agenda-do-tree-to-indirect-buffer (arg)
  8135. "Same as `org-agenda-tree-to-indirect-buffer' without saving window."
  8136. (org-agenda-check-no-diary)
  8137. (let* ((marker (or (org-get-at-bol 'org-marker)
  8138. (org-agenda-error)))
  8139. (buffer (marker-buffer marker))
  8140. (pos (marker-position marker)))
  8141. (with-current-buffer buffer
  8142. (save-excursion
  8143. (goto-char pos)
  8144. (funcall 'org-tree-to-indirect-buffer arg)))))
  8145. (defvar org-last-heading-marker (make-marker)
  8146. "Marker pointing to the headline that last changed its TODO state
  8147. by a remote command from the agenda.")
  8148. (defun org-agenda-todo-nextset ()
  8149. "Switch TODO entry to next sequence."
  8150. (interactive)
  8151. (org-agenda-todo 'nextset))
  8152. (defun org-agenda-todo-previousset ()
  8153. "Switch TODO entry to previous sequence."
  8154. (interactive)
  8155. (org-agenda-todo 'previousset))
  8156. (defun org-agenda-todo (&optional arg)
  8157. "Cycle TODO state of line at point, also in Org-mode file.
  8158. This changes the line at point, all other lines in the agenda referring to
  8159. the same tree node, and the headline of the tree node in the Org-mode file."
  8160. (interactive "P")
  8161. (org-agenda-check-no-diary)
  8162. (let* ((col (current-column))
  8163. (marker (or (org-get-at-bol 'org-marker)
  8164. (org-agenda-error)))
  8165. (buffer (marker-buffer marker))
  8166. (pos (marker-position marker))
  8167. (hdmarker (org-get-at-bol 'org-hd-marker))
  8168. (todayp (org-agenda-todayp (org-get-at-bol 'day)))
  8169. (inhibit-read-only t)
  8170. org-agenda-headline-snapshot-before-repeat newhead just-one)
  8171. (org-with-remote-undo buffer
  8172. (with-current-buffer buffer
  8173. (widen)
  8174. (goto-char pos)
  8175. (org-show-context 'agenda)
  8176. (save-excursion
  8177. (and (outline-next-heading)
  8178. (org-flag-heading nil))) ; show the next heading
  8179. (let ((current-prefix-arg arg))
  8180. (call-interactively 'org-todo))
  8181. (and (bolp) (forward-char 1))
  8182. (setq newhead (org-get-heading))
  8183. (when (and (org-bound-and-true-p
  8184. org-agenda-headline-snapshot-before-repeat)
  8185. (not (equal org-agenda-headline-snapshot-before-repeat
  8186. newhead))
  8187. todayp)
  8188. (setq newhead org-agenda-headline-snapshot-before-repeat
  8189. just-one t))
  8190. (save-excursion
  8191. (org-back-to-heading)
  8192. (move-marker org-last-heading-marker (point))))
  8193. (beginning-of-line 1)
  8194. (save-window-excursion
  8195. (org-agenda-change-all-lines newhead hdmarker 'fixface just-one))
  8196. (when (org-bound-and-true-p org-clock-out-when-done)
  8197. (string-match (concat "^" (regexp-opt org-done-keywords-for-agenda))
  8198. newhead)
  8199. (org-agenda-unmark-clocking-task))
  8200. (org-move-to-column col))))
  8201. (defun org-agenda-add-note (&optional arg)
  8202. "Add a time-stamped note to the entry at point."
  8203. (interactive "P")
  8204. (org-agenda-check-no-diary)
  8205. (let* ((marker (or (org-get-at-bol 'org-marker)
  8206. (org-agenda-error)))
  8207. (buffer (marker-buffer marker))
  8208. (pos (marker-position marker))
  8209. (hdmarker (org-get-at-bol 'org-hd-marker))
  8210. (inhibit-read-only t))
  8211. (with-current-buffer buffer
  8212. (widen)
  8213. (goto-char pos)
  8214. (org-show-context 'agenda)
  8215. (save-excursion
  8216. (and (outline-next-heading)
  8217. (org-flag-heading nil))) ; show the next heading
  8218. (org-add-note))))
  8219. (defun org-agenda-change-all-lines (newhead hdmarker
  8220. &optional fixface just-this)
  8221. "Change all lines in the agenda buffer which match HDMARKER.
  8222. The new content of the line will be NEWHEAD (as modified by
  8223. `org-agenda-format-item'). HDMARKER is checked with
  8224. `equal' against all `org-hd-marker' text properties in the file.
  8225. If FIXFACE is non-nil, the face of each item is modified according to
  8226. the new TODO state.
  8227. If JUST-THIS is non-nil, change just the current line, not all.
  8228. If FORCE-TAGS is non nil, the car of it returns the new tags."
  8229. (let* ((inhibit-read-only t)
  8230. (line (org-current-line))
  8231. (org-agenda-buffer (current-buffer))
  8232. (thetags (with-current-buffer (marker-buffer hdmarker)
  8233. (save-excursion (save-restriction (widen)
  8234. (goto-char hdmarker)
  8235. (org-get-tags-at)))))
  8236. props m pl undone-face done-face finish new dotime level cat tags)
  8237. (save-excursion
  8238. (goto-char (point-max))
  8239. (beginning-of-line 1)
  8240. (while (not finish)
  8241. (setq finish (bobp))
  8242. (when (and (setq m (org-get-at-bol 'org-hd-marker))
  8243. (or (not just-this) (= (org-current-line) line))
  8244. (equal m hdmarker))
  8245. (setq props (text-properties-at (point))
  8246. dotime (org-get-at-bol 'dotime)
  8247. cat (org-get-at-bol 'org-category)
  8248. level (org-get-at-bol 'level)
  8249. tags thetags
  8250. new
  8251. (let ((org-prefix-format-compiled
  8252. (or (get-text-property (min (1- (point-max)) (point)) 'format)
  8253. org-prefix-format-compiled))
  8254. (extra (org-get-at-bol 'extra)))
  8255. (with-current-buffer (marker-buffer hdmarker)
  8256. (save-excursion
  8257. (save-restriction
  8258. (widen)
  8259. (org-agenda-format-item extra newhead level cat tags dotime)))))
  8260. pl (text-property-any (point-at-bol) (point-at-eol) 'org-heading t)
  8261. undone-face (org-get-at-bol 'undone-face)
  8262. done-face (org-get-at-bol 'done-face))
  8263. (beginning-of-line 1)
  8264. (cond
  8265. ((equal new "")
  8266. (and (looking-at ".*\n?") (replace-match "")))
  8267. ((looking-at ".*")
  8268. (replace-match new t t)
  8269. (beginning-of-line 1)
  8270. (add-text-properties (point-at-bol) (point-at-eol) props)
  8271. (when fixface
  8272. (add-text-properties
  8273. (point-at-bol) (point-at-eol)
  8274. (list 'face
  8275. (if org-last-todo-state-is-todo
  8276. undone-face done-face))))
  8277. (org-agenda-highlight-todo 'line)
  8278. (beginning-of-line 1))
  8279. (t (error "Line update did not work")))
  8280. (save-restriction
  8281. (narrow-to-region (point-at-bol) (point-at-eol))
  8282. (org-agenda-finalize)))
  8283. (beginning-of-line 0)))))
  8284. (defun org-agenda-align-tags (&optional line)
  8285. "Align all tags in agenda items to `org-agenda-tags-column'."
  8286. (let ((inhibit-read-only t) l c)
  8287. (save-excursion
  8288. (goto-char (if line (point-at-bol) (point-min)))
  8289. (while (re-search-forward (org-re "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$")
  8290. (if line (point-at-eol) nil) t)
  8291. (add-text-properties
  8292. (match-beginning 2) (match-end 2)
  8293. (list 'face (delq nil (let ((prop (get-text-property
  8294. (match-beginning 2) 'face)))
  8295. (or (listp prop) (setq prop (list prop)))
  8296. (if (memq 'org-tag prop)
  8297. prop
  8298. (cons 'org-tag prop))))))
  8299. (setq l (- (match-end 2) (match-beginning 2))
  8300. c (if (< org-agenda-tags-column 0)
  8301. (- (abs org-agenda-tags-column) l)
  8302. org-agenda-tags-column))
  8303. (delete-region (match-beginning 1) (match-end 1))
  8304. (goto-char (match-beginning 1))
  8305. (insert (org-add-props
  8306. (make-string (max 1 (- c (current-column))) ?\ )
  8307. (plist-put (copy-sequence (text-properties-at (point)))
  8308. 'face nil))))
  8309. (goto-char (point-min))
  8310. (org-font-lock-add-tag-faces (point-max)))))
  8311. (defun org-agenda-priority-up ()
  8312. "Increase the priority of line at point, also in Org-mode file."
  8313. (interactive)
  8314. (org-agenda-priority 'up))
  8315. (defun org-agenda-priority-down ()
  8316. "Decrease the priority of line at point, also in Org-mode file."
  8317. (interactive)
  8318. (org-agenda-priority 'down))
  8319. (defun org-agenda-priority (&optional force-direction)
  8320. "Set the priority of line at point, also in Org-mode file.
  8321. This changes the line at point, all other lines in the agenda referring to
  8322. the same tree node, and the headline of the tree node in the Org-mode file.
  8323. Called with a universal prefix arg, show the priority instead of setting it."
  8324. (interactive "P")
  8325. (if (equal force-direction '(4))
  8326. (org-show-priority)
  8327. (unless org-enable-priority-commands
  8328. (error "Priority commands are disabled"))
  8329. (org-agenda-check-no-diary)
  8330. (let* ((col (current-column))
  8331. (marker (or (org-get-at-bol 'org-marker)
  8332. (org-agenda-error)))
  8333. (hdmarker (org-get-at-bol 'org-hd-marker))
  8334. (buffer (marker-buffer hdmarker))
  8335. (pos (marker-position hdmarker))
  8336. (inhibit-read-only t)
  8337. newhead)
  8338. (org-with-remote-undo buffer
  8339. (with-current-buffer buffer
  8340. (widen)
  8341. (goto-char pos)
  8342. (org-show-context 'agenda)
  8343. (save-excursion
  8344. (and (outline-next-heading)
  8345. (org-flag-heading nil))) ; show the next heading
  8346. (funcall 'org-priority force-direction)
  8347. (end-of-line 1)
  8348. (setq newhead (org-get-heading)))
  8349. (org-agenda-change-all-lines newhead hdmarker)
  8350. (org-move-to-column col)))))
  8351. ;; FIXME: should fix the tags property of the agenda line.
  8352. (defun org-agenda-set-tags (&optional tag onoff)
  8353. "Set tags for the current headline."
  8354. (interactive)
  8355. (org-agenda-check-no-diary)
  8356. (if (and (org-region-active-p) (org-called-interactively-p 'any))
  8357. (call-interactively 'org-change-tag-in-region)
  8358. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8359. (org-agenda-error)))
  8360. (buffer (marker-buffer hdmarker))
  8361. (pos (marker-position hdmarker))
  8362. (inhibit-read-only t)
  8363. newhead)
  8364. (org-with-remote-undo buffer
  8365. (with-current-buffer buffer
  8366. (widen)
  8367. (goto-char pos)
  8368. (save-excursion
  8369. (org-show-context 'agenda))
  8370. (save-excursion
  8371. (and (outline-next-heading)
  8372. (org-flag-heading nil))) ; show the next heading
  8373. (goto-char pos)
  8374. (if tag
  8375. (org-toggle-tag tag onoff)
  8376. (call-interactively 'org-set-tags))
  8377. (end-of-line 1)
  8378. (setq newhead (org-get-heading)))
  8379. (org-agenda-change-all-lines newhead hdmarker)
  8380. (beginning-of-line 1)))))
  8381. (defun org-agenda-set-property ()
  8382. "Set a property for the current headline."
  8383. (interactive)
  8384. (org-agenda-check-no-diary)
  8385. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8386. (org-agenda-error)))
  8387. (buffer (marker-buffer hdmarker))
  8388. (pos (marker-position hdmarker))
  8389. (inhibit-read-only t)
  8390. newhead)
  8391. (org-with-remote-undo buffer
  8392. (with-current-buffer buffer
  8393. (widen)
  8394. (goto-char pos)
  8395. (save-excursion
  8396. (org-show-context 'agenda))
  8397. (save-excursion
  8398. (and (outline-next-heading)
  8399. (org-flag-heading nil))) ; show the next heading
  8400. (goto-char pos)
  8401. (call-interactively 'org-set-property)))))
  8402. (defun org-agenda-set-effort ()
  8403. "Set the effort property for the current headline."
  8404. (interactive)
  8405. (org-agenda-check-no-diary)
  8406. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8407. (org-agenda-error)))
  8408. (buffer (marker-buffer hdmarker))
  8409. (pos (marker-position hdmarker))
  8410. (inhibit-read-only t)
  8411. newhead)
  8412. (org-with-remote-undo buffer
  8413. (with-current-buffer buffer
  8414. (widen)
  8415. (goto-char pos)
  8416. (save-excursion
  8417. (org-show-context 'agenda))
  8418. (save-excursion
  8419. (and (outline-next-heading)
  8420. (org-flag-heading nil))) ; show the next heading
  8421. (goto-char pos)
  8422. (call-interactively 'org-set-effort)
  8423. (end-of-line 1)
  8424. (setq newhead (org-get-heading)))
  8425. (org-agenda-change-all-lines newhead hdmarker))))
  8426. (defun org-agenda-toggle-archive-tag ()
  8427. "Toggle the archive tag for the current entry."
  8428. (interactive)
  8429. (org-agenda-check-no-diary)
  8430. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8431. (org-agenda-error)))
  8432. (buffer (marker-buffer hdmarker))
  8433. (pos (marker-position hdmarker))
  8434. (inhibit-read-only t)
  8435. newhead)
  8436. (org-with-remote-undo buffer
  8437. (with-current-buffer buffer
  8438. (widen)
  8439. (goto-char pos)
  8440. (org-show-context 'agenda)
  8441. (save-excursion
  8442. (and (outline-next-heading)
  8443. (org-flag-heading nil))) ; show the next heading
  8444. (call-interactively 'org-toggle-archive-tag)
  8445. (end-of-line 1)
  8446. (setq newhead (org-get-heading)))
  8447. (org-agenda-change-all-lines newhead hdmarker)
  8448. (beginning-of-line 1))))
  8449. (defun org-agenda-do-date-later (arg)
  8450. (interactive "P")
  8451. (cond
  8452. ((or (equal arg '(16))
  8453. (memq last-command
  8454. '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
  8455. (setq this-command 'org-agenda-date-later-minutes)
  8456. (org-agenda-date-later-minutes 1))
  8457. ((or (equal arg '(4))
  8458. (memq last-command
  8459. '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
  8460. (setq this-command 'org-agenda-date-later-hours)
  8461. (org-agenda-date-later-hours 1))
  8462. (t
  8463. (org-agenda-date-later (prefix-numeric-value arg)))))
  8464. (defun org-agenda-do-date-earlier (arg)
  8465. (interactive "P")
  8466. (cond
  8467. ((or (equal arg '(16))
  8468. (memq last-command
  8469. '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
  8470. (setq this-command 'org-agenda-date-earlier-minutes)
  8471. (org-agenda-date-earlier-minutes 1))
  8472. ((or (equal arg '(4))
  8473. (memq last-command
  8474. '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
  8475. (setq this-command 'org-agenda-date-earlier-hours)
  8476. (org-agenda-date-earlier-hours 1))
  8477. (t
  8478. (org-agenda-date-earlier (prefix-numeric-value arg)))))
  8479. (defun org-agenda-date-later (arg &optional what)
  8480. "Change the date of this item to ARG day(s) later."
  8481. (interactive "p")
  8482. (org-agenda-check-type t 'agenda 'timeline)
  8483. (org-agenda-check-no-diary)
  8484. (let* ((marker (or (org-get-at-bol 'org-marker)
  8485. (org-agenda-error)))
  8486. (buffer (marker-buffer marker))
  8487. (pos (marker-position marker))
  8488. cdate today)
  8489. (org-with-remote-undo buffer
  8490. (with-current-buffer buffer
  8491. (widen)
  8492. (goto-char pos)
  8493. (if (not (org-at-timestamp-p))
  8494. (error "Cannot find time stamp"))
  8495. (when (and org-agenda-move-date-from-past-immediately-to-today
  8496. (equal arg 1)
  8497. (or (not what) (eq what 'day))
  8498. (not (save-match-data (org-at-date-range-p))))
  8499. (setq cdate (org-parse-time-string (match-string 0) 'nodefault)
  8500. cdate (calendar-absolute-from-gregorian
  8501. (list (nth 4 cdate) (nth 3 cdate) (nth 5 cdate)))
  8502. today (org-today))
  8503. (if (> today cdate)
  8504. ;; immediately shift to today
  8505. (setq arg (- today cdate))))
  8506. (org-timestamp-change arg (or what 'day))
  8507. (when (and (org-at-date-range-p)
  8508. (re-search-backward org-tr-regexp-both (point-at-bol)))
  8509. (let ((end org-last-changed-timestamp))
  8510. (org-timestamp-change arg (or what 'day))
  8511. (setq org-last-changed-timestamp
  8512. (concat org-last-changed-timestamp "--" end)))))
  8513. (org-agenda-show-new-time marker org-last-changed-timestamp))
  8514. (message "Time stamp changed to %s" org-last-changed-timestamp)))
  8515. (defun org-agenda-date-earlier (arg &optional what)
  8516. "Change the date of this item to ARG day(s) earlier."
  8517. (interactive "p")
  8518. (org-agenda-date-later (- arg) what))
  8519. (defun org-agenda-date-later-minutes (arg)
  8520. "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
  8521. (interactive "p")
  8522. (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
  8523. (org-agenda-date-later arg 'minute))
  8524. (defun org-agenda-date-earlier-minutes (arg)
  8525. "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
  8526. (interactive "p")
  8527. (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
  8528. (org-agenda-date-earlier arg 'minute))
  8529. (defun org-agenda-date-later-hours (arg)
  8530. "Change the time of this item, in hour steps."
  8531. (interactive "p")
  8532. (org-agenda-date-later arg 'hour))
  8533. (defun org-agenda-date-earlier-hours (arg)
  8534. "Change the time of this item, in hour steps."
  8535. (interactive "p")
  8536. (org-agenda-date-earlier arg 'hour))
  8537. (defun org-agenda-show-new-time (marker stamp &optional prefix)
  8538. "Show new date stamp via text properties."
  8539. ;; We use text properties to make this undoable
  8540. (let ((inhibit-read-only t))
  8541. (setq stamp (concat prefix " => " stamp " "))
  8542. (save-excursion
  8543. (goto-char (point-max))
  8544. (while (not (bobp))
  8545. (when (equal marker (org-get-at-bol 'org-marker))
  8546. (remove-text-properties (point-at-bol) (point-at-eol) '(display))
  8547. (org-move-to-column (- (window-width) (length stamp)) t)
  8548. (if (featurep 'xemacs)
  8549. ;; Use `duplicable' property to trigger undo recording
  8550. (let ((ex (make-extent nil nil))
  8551. (gl (make-glyph stamp)))
  8552. (set-glyph-face gl 'secondary-selection)
  8553. (set-extent-properties
  8554. ex (list 'invisible t 'end-glyph gl 'duplicable t))
  8555. (insert-extent ex (1- (point)) (point-at-eol)))
  8556. (add-text-properties
  8557. (1- (point)) (point-at-eol)
  8558. (list 'display (org-add-props stamp nil
  8559. 'face '(secondary-selection default)))))
  8560. (beginning-of-line 1))
  8561. (beginning-of-line 0)))))
  8562. (defun org-agenda-date-prompt (arg)
  8563. "Change the date of this item. Date is prompted for, with default today.
  8564. The prefix ARG is passed to the `org-time-stamp' command and can therefore
  8565. be used to request time specification in the time stamp."
  8566. (interactive "P")
  8567. (org-agenda-check-type t 'agenda 'timeline)
  8568. (org-agenda-check-no-diary)
  8569. (let* ((marker (or (org-get-at-bol 'org-marker)
  8570. (org-agenda-error)))
  8571. (buffer (marker-buffer marker))
  8572. (pos (marker-position marker)))
  8573. (org-with-remote-undo buffer
  8574. (with-current-buffer buffer
  8575. (widen)
  8576. (goto-char pos)
  8577. (if (not (org-at-timestamp-p t))
  8578. (error "Cannot find time stamp"))
  8579. (org-time-stamp arg (equal (char-after (match-beginning 0)) ?\[)))
  8580. (org-agenda-show-new-time marker org-last-changed-timestamp))
  8581. (message "Time stamp changed to %s" org-last-changed-timestamp)))
  8582. (defun org-agenda-schedule (arg &optional time)
  8583. "Schedule the item at point.
  8584. ARG is passed through to `org-schedule'."
  8585. (interactive "P")
  8586. (org-agenda-check-type t 'agenda 'timeline 'todo 'tags 'search)
  8587. (org-agenda-check-no-diary)
  8588. (let* ((marker (or (org-get-at-bol 'org-marker)
  8589. (org-agenda-error)))
  8590. (type (marker-insertion-type marker))
  8591. (buffer (marker-buffer marker))
  8592. (pos (marker-position marker))
  8593. (org-insert-labeled-timestamps-at-point nil)
  8594. ts)
  8595. (set-marker-insertion-type marker t)
  8596. (org-with-remote-undo buffer
  8597. (with-current-buffer buffer
  8598. (widen)
  8599. (goto-char pos)
  8600. (setq ts (org-schedule arg time)))
  8601. (org-agenda-show-new-time marker ts " S"))
  8602. (message "%s" ts)))
  8603. (defun org-agenda-deadline (arg &optional time)
  8604. "Schedule the item at point.
  8605. ARG is passed through to `org-deadline'."
  8606. (interactive "P")
  8607. (org-agenda-check-type t 'agenda 'timeline 'todo 'tags 'search)
  8608. (org-agenda-check-no-diary)
  8609. (let* ((marker (or (org-get-at-bol 'org-marker)
  8610. (org-agenda-error)))
  8611. (buffer (marker-buffer marker))
  8612. (pos (marker-position marker))
  8613. (org-insert-labeled-timestamps-at-point nil)
  8614. ts)
  8615. (org-with-remote-undo buffer
  8616. (with-current-buffer buffer
  8617. (widen)
  8618. (goto-char pos)
  8619. (setq ts (org-deadline arg time)))
  8620. (org-agenda-show-new-time marker ts " D"))
  8621. (message "%s" ts)))
  8622. (defun org-agenda-clock-in (&optional arg)
  8623. "Start the clock on the currently selected item."
  8624. (interactive "P")
  8625. (org-agenda-check-no-diary)
  8626. (if (equal arg '(4))
  8627. (org-clock-in arg)
  8628. (let* ((marker (or (org-get-at-bol 'org-marker)
  8629. (org-agenda-error)))
  8630. (hdmarker (or (org-get-at-bol 'org-hd-marker) marker))
  8631. (pos (marker-position marker))
  8632. (col (current-column))
  8633. newhead)
  8634. (org-with-remote-undo (marker-buffer marker)
  8635. (with-current-buffer (marker-buffer marker)
  8636. (widen)
  8637. (goto-char pos)
  8638. (org-show-context 'agenda)
  8639. (org-show-entry)
  8640. (org-cycle-hide-drawers 'children)
  8641. (org-clock-in arg)
  8642. (setq newhead (org-get-heading)))
  8643. (org-agenda-change-all-lines newhead hdmarker))
  8644. (org-move-to-column col))))
  8645. (defun org-agenda-clock-out ()
  8646. "Stop the currently running clock."
  8647. (interactive)
  8648. (unless (marker-buffer org-clock-marker)
  8649. (error "No running clock"))
  8650. (let ((marker (make-marker)) (col (current-column)) newhead)
  8651. (org-with-remote-undo (marker-buffer org-clock-marker)
  8652. (with-current-buffer (marker-buffer org-clock-marker)
  8653. (save-excursion
  8654. (save-restriction
  8655. (widen)
  8656. (goto-char org-clock-marker)
  8657. (org-back-to-heading t)
  8658. (move-marker marker (point))
  8659. (org-clock-out)
  8660. (setq newhead (org-get-heading))))))
  8661. (org-agenda-change-all-lines newhead marker)
  8662. (move-marker marker nil)
  8663. (org-move-to-column col)
  8664. (org-agenda-unmark-clocking-task)))
  8665. (defun org-agenda-clock-cancel (&optional arg)
  8666. "Cancel the currently running clock."
  8667. (interactive "P")
  8668. (unless (marker-buffer org-clock-marker)
  8669. (user-error "No running clock"))
  8670. (org-with-remote-undo (marker-buffer org-clock-marker)
  8671. (org-clock-cancel)))
  8672. (defun org-agenda-clock-goto ()
  8673. "Jump to the currently clocked in task within the agenda.
  8674. If the currently clocked in task is not listed in the agenda
  8675. buffer, display it in another window."
  8676. (interactive)
  8677. (let (pos)
  8678. (mapc (lambda (o)
  8679. (if (eq (overlay-get o 'type) 'org-agenda-clocking)
  8680. (setq pos (overlay-start o))))
  8681. (overlays-in (point-min) (point-max)))
  8682. (cond (pos (goto-char pos))
  8683. ;; If the currently clocked entry is not in the agenda
  8684. ;; buffer, we visit it in another window:
  8685. (org-clock-current-task
  8686. (org-switch-to-buffer-other-window (org-clock-goto)))
  8687. (t (message "No running clock, use `C-c C-x C-j' to jump to the most recent one")))))
  8688. (defun org-agenda-diary-entry-in-org-file ()
  8689. "Make a diary entry in the file `org-agenda-diary-file'."
  8690. (let (d1 d2 char (text "") dp1 dp2)
  8691. (if (equal (buffer-name) "*Calendar*")
  8692. (setq d1 (calendar-cursor-to-date t)
  8693. d2 (car calendar-mark-ring))
  8694. (setq dp1 (get-text-property (point-at-bol) 'day))
  8695. (unless dp1 (user-error "No date defined in current line"))
  8696. (setq d1 (calendar-gregorian-from-absolute dp1)
  8697. d2 (and (ignore-errors (mark))
  8698. (save-excursion
  8699. (goto-char (mark))
  8700. (setq dp2 (get-text-property (point-at-bol) 'day)))
  8701. (calendar-gregorian-from-absolute dp2))))
  8702. (message "Diary entry: [d]ay [a]nniversary [b]lock [j]ump to date tree")
  8703. (setq char (read-char-exclusive))
  8704. (cond
  8705. ((equal char ?d)
  8706. (setq text (read-string "Day entry: "))
  8707. (org-agenda-add-entry-to-org-agenda-diary-file 'day text d1)
  8708. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  8709. ((equal char ?a)
  8710. (setq d1 (list (car d1) (nth 1 d1)
  8711. (read-number (format "Reference year [%d]: " (nth 2 d1))
  8712. (nth 2 d1))))
  8713. (setq text (read-string "Anniversary (use %d to show years): "))
  8714. (org-agenda-add-entry-to-org-agenda-diary-file 'anniversary text d1)
  8715. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  8716. ((equal char ?b)
  8717. (setq text (read-string "Block entry: "))
  8718. (unless (and d1 d2 (not (equal d1 d2)))
  8719. (user-error "No block of days selected"))
  8720. (org-agenda-add-entry-to-org-agenda-diary-file 'block text d1 d2)
  8721. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  8722. ((equal char ?j)
  8723. (org-switch-to-buffer-other-window
  8724. (find-file-noselect org-agenda-diary-file))
  8725. (require 'org-datetree)
  8726. (org-datetree-find-date-create d1)
  8727. (org-reveal t))
  8728. (t (user-error "Invalid selection character `%c'" char)))))
  8729. (defcustom org-agenda-insert-diary-strategy 'date-tree
  8730. "Where in `org-agenda-diary-file' should new entries be added?
  8731. Valid values:
  8732. date-tree in the date tree, as child of the date
  8733. top-level as top-level entries at the end of the file."
  8734. :group 'org-agenda
  8735. :type '(choice
  8736. (const :tag "in a date tree" date-tree)
  8737. (const :tag "as top level at end of file" top-level)))
  8738. (defcustom org-agenda-insert-diary-extract-time nil
  8739. "Non-nil means extract any time specification from the diary entry."
  8740. :group 'org-agenda
  8741. :version "24.1"
  8742. :type 'boolean)
  8743. (defcustom org-agenda-bulk-mark-char ">"
  8744. "A single-character string to be used as the bulk mark."
  8745. :group 'org-agenda
  8746. :version "24.1"
  8747. :type 'string)
  8748. (defun org-agenda-add-entry-to-org-agenda-diary-file (type text &optional d1 d2)
  8749. "Add a diary entry with TYPE to `org-agenda-diary-file'.
  8750. If TEXT is not empty, it will become the headline of the new entry, and
  8751. the resulting entry will not be shown. When TEXT is empty, switch to
  8752. `org-agenda-diary-file' and let the user finish the entry there."
  8753. (let ((cw (current-window-configuration)))
  8754. (org-switch-to-buffer-other-window
  8755. (find-file-noselect org-agenda-diary-file))
  8756. (widen)
  8757. (goto-char (point-min))
  8758. (cond
  8759. ((eq type 'anniversary)
  8760. (or (re-search-forward "^*[ \t]+Anniversaries" nil t)
  8761. (progn
  8762. (or (org-at-heading-p t)
  8763. (progn
  8764. (outline-next-heading)
  8765. (insert "* Anniversaries\n\n")
  8766. (beginning-of-line -1)))))
  8767. (outline-next-heading)
  8768. (org-back-over-empty-lines)
  8769. (backward-char 1)
  8770. (insert "\n")
  8771. (insert (format "%%%%(org-anniversary %d %2d %2d) %s"
  8772. (nth 2 d1) (car d1) (nth 1 d1) text)))
  8773. ((eq type 'day)
  8774. (let ((org-prefix-has-time t)
  8775. (org-agenda-time-leading-zero t)
  8776. fmt time time2)
  8777. (if org-agenda-insert-diary-extract-time
  8778. ;; Use org-agenda-format-item to parse text for a time-range and
  8779. ;; remove it. FIXME: This is a hack, we should refactor
  8780. ;; that function to make time extraction available separately
  8781. (setq fmt (org-agenda-format-item nil text nil nil nil t)
  8782. time (get-text-property 0 'time fmt)
  8783. time2 (if (> (length time) 0)
  8784. ;; split-string removes trailing ...... if
  8785. ;; no end time given. First space
  8786. ;; separates time from date.
  8787. (concat " " (car (split-string time "\\.")))
  8788. nil)
  8789. text (get-text-property 0 'txt fmt)))
  8790. (if (eq org-agenda-insert-diary-strategy 'top-level)
  8791. (org-agenda-insert-diary-as-top-level text)
  8792. (require 'org-datetree)
  8793. (org-datetree-find-date-create d1)
  8794. (org-agenda-insert-diary-make-new-entry text))
  8795. (org-insert-time-stamp (org-time-from-absolute
  8796. (calendar-absolute-from-gregorian d1))
  8797. nil nil nil nil time2))
  8798. (end-of-line 0))
  8799. ((eq type 'block)
  8800. (if (> (calendar-absolute-from-gregorian d1)
  8801. (calendar-absolute-from-gregorian d2))
  8802. (setq d1 (prog1 d2 (setq d2 d1))))
  8803. (if (eq org-agenda-insert-diary-strategy 'top-level)
  8804. (org-agenda-insert-diary-as-top-level text)
  8805. (require 'org-datetree)
  8806. (org-datetree-find-date-create d1)
  8807. (org-agenda-insert-diary-make-new-entry text))
  8808. (org-insert-time-stamp (org-time-from-absolute
  8809. (calendar-absolute-from-gregorian d1)))
  8810. (insert "--")
  8811. (org-insert-time-stamp (org-time-from-absolute
  8812. (calendar-absolute-from-gregorian d2)))
  8813. (end-of-line 0)))
  8814. (if (string-match "\\S-" text)
  8815. (progn
  8816. (set-window-configuration cw)
  8817. (message "%s entry added to %s"
  8818. (capitalize (symbol-name type))
  8819. (abbreviate-file-name org-agenda-diary-file)))
  8820. (org-reveal t)
  8821. (message "Please finish entry here"))))
  8822. (defun org-agenda-insert-diary-as-top-level (text)
  8823. "Make new entry as a top-level entry at the end of the file.
  8824. Add TEXT as headline, and position the cursor in the second line so that
  8825. a timestamp can be added there."
  8826. (widen)
  8827. (goto-char (point-max))
  8828. (or (bolp) (insert "\n"))
  8829. (insert "* " text "\n")
  8830. (if org-adapt-indentation (org-indent-to-column 2)))
  8831. (defun org-agenda-insert-diary-make-new-entry (text)
  8832. "Make a new entry with TEXT as the first child of the current subtree.
  8833. Position the point in the line right after the new heading so
  8834. that a timestamp can be added there."
  8835. (let ((org-show-following-heading t)
  8836. (org-show-siblings t)
  8837. (org-show-hierarchy-above t)
  8838. (org-show-entry-below t)
  8839. col)
  8840. (outline-next-heading)
  8841. (org-back-over-empty-lines)
  8842. (or (looking-at "[ \t]*$")
  8843. (progn (insert "\n") (backward-char 1)))
  8844. (org-insert-heading nil t)
  8845. (org-do-demote)
  8846. (setq col (current-column))
  8847. (insert text "\n")
  8848. (if org-adapt-indentation (org-indent-to-column col))
  8849. (let ((org-show-following-heading t)
  8850. (org-show-siblings t)
  8851. (org-show-hierarchy-above t)
  8852. (org-show-entry-below t))
  8853. (org-show-context))))
  8854. (defun org-agenda-diary-entry ()
  8855. "Make a diary entry, like the `i' command from the calendar.
  8856. All the standard commands work: block, weekly etc.
  8857. When `org-agenda-diary-file' points to a file,
  8858. `org-agenda-diary-entry-in-org-file' is called instead to create
  8859. entries in that Org-mode file."
  8860. (interactive)
  8861. (if (not (eq org-agenda-diary-file 'diary-file))
  8862. (org-agenda-diary-entry-in-org-file)
  8863. (require 'diary-lib)
  8864. (let* ((char (progn
  8865. (message "Diary entry: [d]ay [w]eekly [m]onthly [y]early [a]nniversary [b]lock [c]yclic")
  8866. (read-char-exclusive)))
  8867. (cmd (cdr (assoc char
  8868. '((?d . insert-diary-entry)
  8869. (?w . insert-weekly-diary-entry)
  8870. (?m . insert-monthly-diary-entry)
  8871. (?y . insert-yearly-diary-entry)
  8872. (?a . insert-anniversary-diary-entry)
  8873. (?b . insert-block-diary-entry)
  8874. (?c . insert-cyclic-diary-entry)))))
  8875. (oldf (symbol-function 'calendar-cursor-to-date))
  8876. ;; (buf (get-file-buffer (substitute-in-file-name diary-file)))
  8877. (point (point))
  8878. (mark (or (mark t) (point))))
  8879. (unless cmd
  8880. (user-error "No command associated with <%c>" char))
  8881. (unless (and (get-text-property point 'day)
  8882. (or (not (equal ?b char))
  8883. (get-text-property mark 'day)))
  8884. (user-error "Don't know which date to use for diary entry"))
  8885. ;; We implement this by hacking the `calendar-cursor-to-date' function
  8886. ;; and the `calendar-mark-ring' variable. Saves a lot of code.
  8887. (let ((calendar-mark-ring
  8888. (list (calendar-gregorian-from-absolute
  8889. (or (get-text-property mark 'day)
  8890. (get-text-property point 'day))))))
  8891. (unwind-protect
  8892. (progn
  8893. (fset 'calendar-cursor-to-date
  8894. (lambda (&optional error dummy)
  8895. (calendar-gregorian-from-absolute
  8896. (get-text-property point 'day))))
  8897. (call-interactively cmd))
  8898. (fset 'calendar-cursor-to-date oldf))))))
  8899. (defun org-agenda-execute-calendar-command (cmd)
  8900. "Execute a calendar command from the agenda with date from cursor."
  8901. (org-agenda-check-type t 'agenda 'timeline)
  8902. (require 'diary-lib)
  8903. (unless (get-text-property (min (1- (point-max)) (point)) 'day)
  8904. (user-error "Don't know which date to use for the calendar command"))
  8905. (let* ((oldf (symbol-function 'calendar-cursor-to-date))
  8906. (point (point))
  8907. (date (calendar-gregorian-from-absolute
  8908. (get-text-property point 'day)))
  8909. ;; the following 2 vars are needed in the calendar
  8910. (displayed-month (car date))
  8911. (displayed-year (nth 2 date)))
  8912. (unwind-protect
  8913. (progn
  8914. (fset 'calendar-cursor-to-date
  8915. (lambda (&optional error dummy)
  8916. (calendar-gregorian-from-absolute
  8917. (get-text-property point 'day))))
  8918. (call-interactively cmd))
  8919. (fset 'calendar-cursor-to-date oldf))))
  8920. (defun org-agenda-phases-of-moon ()
  8921. "Display the phases of the moon for the 3 months around the cursor date."
  8922. (interactive)
  8923. (org-agenda-execute-calendar-command 'calendar-phases-of-moon))
  8924. (defun org-agenda-holidays ()
  8925. "Display the holidays for the 3 months around the cursor date."
  8926. (interactive)
  8927. (org-agenda-execute-calendar-command 'list-calendar-holidays))
  8928. (defvar calendar-longitude) ; defined in calendar.el
  8929. (defvar calendar-latitude) ; defined in calendar.el
  8930. (defvar calendar-location-name) ; defined in calendar.el
  8931. (defun org-agenda-sunrise-sunset (arg)
  8932. "Display sunrise and sunset for the cursor date.
  8933. Latitude and longitude can be specified with the variables
  8934. `calendar-latitude' and `calendar-longitude'. When called with prefix
  8935. argument, latitude and longitude will be prompted for."
  8936. (interactive "P")
  8937. (require 'solar)
  8938. (let ((calendar-longitude (if arg nil calendar-longitude))
  8939. (calendar-latitude (if arg nil calendar-latitude))
  8940. (calendar-location-name
  8941. (if arg "the given coordinates" calendar-location-name)))
  8942. (org-agenda-execute-calendar-command 'calendar-sunrise-sunset)))
  8943. (defun org-agenda-goto-calendar ()
  8944. "Open the Emacs calendar with the date at the cursor."
  8945. (interactive)
  8946. (org-agenda-check-type t 'agenda 'timeline)
  8947. (let* ((day (or (get-text-property (min (1- (point-max)) (point)) 'day)
  8948. (user-error "Don't know which date to open in calendar")))
  8949. (date (calendar-gregorian-from-absolute day))
  8950. (calendar-move-hook nil)
  8951. (calendar-view-holidays-initially-flag nil)
  8952. (calendar-view-diary-initially-flag nil))
  8953. (calendar)
  8954. (calendar-goto-date date)))
  8955. ;;;###autoload
  8956. (defun org-calendar-goto-agenda ()
  8957. "Compute the Org-mode agenda for the calendar date displayed at the cursor.
  8958. This is a command that has to be installed in `calendar-mode-map'."
  8959. (interactive)
  8960. (org-agenda-list nil (calendar-absolute-from-gregorian
  8961. (calendar-cursor-to-date))
  8962. nil))
  8963. (defun org-agenda-convert-date ()
  8964. (interactive)
  8965. (org-agenda-check-type t 'agenda 'timeline)
  8966. (let ((day (get-text-property (min (1- (point-max)) (point)) 'day))
  8967. date s)
  8968. (unless day
  8969. (user-error "Don't know which date to convert"))
  8970. (setq date (calendar-gregorian-from-absolute day))
  8971. (setq s (concat
  8972. "Gregorian: " (calendar-date-string date) "\n"
  8973. "ISO: " (calendar-iso-date-string date) "\n"
  8974. "Day of Yr: " (calendar-day-of-year-string date) "\n"
  8975. "Julian: " (calendar-julian-date-string date) "\n"
  8976. "Astron. JD: " (calendar-astro-date-string date)
  8977. " (Julian date number at noon UTC)\n"
  8978. "Hebrew: " (calendar-hebrew-date-string date) " (until sunset)\n"
  8979. "Islamic: " (calendar-islamic-date-string date) " (until sunset)\n"
  8980. "French: " (calendar-french-date-string date) "\n"
  8981. "Baha'i: " (calendar-bahai-date-string date) " (until sunset)\n"
  8982. "Mayan: " (calendar-mayan-date-string date) "\n"
  8983. "Coptic: " (calendar-coptic-date-string date) "\n"
  8984. "Ethiopic: " (calendar-ethiopic-date-string date) "\n"
  8985. "Persian: " (calendar-persian-date-string date) "\n"
  8986. "Chinese: " (calendar-chinese-date-string date) "\n"))
  8987. (with-output-to-temp-buffer "*Dates*"
  8988. (princ s))
  8989. (org-fit-window-to-buffer (get-buffer-window "*Dates*"))))
  8990. ;;; Bulk commands
  8991. (defun org-agenda-bulk-marked-p ()
  8992. (eq (get-char-property (point-at-bol) 'type)
  8993. 'org-marked-entry-overlay))
  8994. (defun org-agenda-bulk-mark (&optional arg)
  8995. "Mark the entry at point for future bulk action."
  8996. (interactive "p")
  8997. (dotimes (i (or arg 1))
  8998. (unless (org-get-at-bol 'org-agenda-diary-link)
  8999. (let* ((m (org-get-at-bol 'org-hd-marker))
  9000. ov)
  9001. (unless (org-agenda-bulk-marked-p)
  9002. (unless m (user-error "Nothing to mark at point"))
  9003. (push m org-agenda-bulk-marked-entries)
  9004. (setq ov (make-overlay (point-at-bol) (+ 2 (point-at-bol))))
  9005. (org-overlay-display ov (concat org-agenda-bulk-mark-char " ")
  9006. (org-get-todo-face "TODO")
  9007. 'evaporate)
  9008. (overlay-put ov 'type 'org-marked-entry-overlay))
  9009. (end-of-line 1)
  9010. (or (ignore-errors
  9011. (goto-char (next-single-property-change (point) 'txt)))
  9012. (beginning-of-line 2))
  9013. (while (and (get-char-property (point) 'invisible) (not (eobp)))
  9014. (beginning-of-line 2))
  9015. (message "%d entries marked for bulk action"
  9016. (length org-agenda-bulk-marked-entries))))))
  9017. (defun org-agenda-bulk-mark-all ()
  9018. "Mark all entries for future agenda bulk action."
  9019. (interactive)
  9020. (org-agenda-bulk-mark-regexp "."))
  9021. (defun org-agenda-bulk-mark-regexp (regexp)
  9022. "Mark entries matching REGEXP for future agenda bulk action."
  9023. (interactive "sMark entries matching regexp: ")
  9024. (let ((entries-marked 0) txt-at-point)
  9025. (save-excursion
  9026. (goto-char (point-min))
  9027. (goto-char (next-single-property-change (point) 'txt))
  9028. (while (and (re-search-forward regexp nil t)
  9029. (setq txt-at-point (get-text-property (point) 'txt)))
  9030. (when (string-match regexp txt-at-point)
  9031. (setq entries-marked (1+ entries-marked))
  9032. (call-interactively 'org-agenda-bulk-mark))))
  9033. (if (not entries-marked)
  9034. (message "No entry matching this regexp."))))
  9035. (defun org-agenda-bulk-unmark (&optional arg)
  9036. "Unmark the entry at point for future bulk action."
  9037. (interactive "P")
  9038. (if arg
  9039. (org-agenda-bulk-unmark-all)
  9040. (cond ((org-agenda-bulk-marked-p)
  9041. (org-agenda-bulk-remove-overlays
  9042. (point-at-bol) (+ 2 (point-at-bol)))
  9043. (setq org-agenda-bulk-marked-entries
  9044. (delete (org-get-at-bol 'org-hd-marker)
  9045. org-agenda-bulk-marked-entries))
  9046. (end-of-line 1)
  9047. (or (ignore-errors
  9048. (goto-char (next-single-property-change (point) 'txt)))
  9049. (beginning-of-line 2))
  9050. (while (and (get-char-property (point) 'invisible) (not (eobp)))
  9051. (beginning-of-line 2))
  9052. (message "%d entries left marked for bulk action"
  9053. (length org-agenda-bulk-marked-entries)))
  9054. (t (message "No entry to unmark here")))))
  9055. (defun org-agenda-bulk-toggle-all ()
  9056. "Toggle all marks for bulk action."
  9057. (interactive)
  9058. (save-excursion
  9059. (goto-char (point-min))
  9060. (while (ignore-errors
  9061. (goto-char (next-single-property-change (point) 'txt)))
  9062. (org-agenda-bulk-toggle))))
  9063. (defun org-agenda-bulk-toggle ()
  9064. "Toggle the mark at point for bulk action."
  9065. (interactive)
  9066. (if (org-agenda-bulk-marked-p)
  9067. (org-agenda-bulk-unmark)
  9068. (org-agenda-bulk-mark)))
  9069. (defun org-agenda-bulk-remove-overlays (&optional beg end)
  9070. "Remove the mark overlays between BEG and END in the agenda buffer.
  9071. BEG and END default to the buffer limits.
  9072. This only removes the overlays, it does not remove the markers
  9073. from the list in `org-agenda-bulk-marked-entries'."
  9074. (interactive)
  9075. (mapc (lambda (ov)
  9076. (and (eq (overlay-get ov 'type) 'org-marked-entry-overlay)
  9077. (delete-overlay ov)))
  9078. (overlays-in (or beg (point-min)) (or end (point-max)))))
  9079. (defun org-agenda-bulk-unmark-all ()
  9080. "Remove all marks in the agenda buffer.
  9081. This will remove the markers and the overlays."
  9082. (interactive)
  9083. (if (null org-agenda-bulk-marked-entries)
  9084. (message "No entry to unmark")
  9085. (mapc (lambda (m) (move-marker m nil)) org-agenda-bulk-marked-entries)
  9086. (setq org-agenda-bulk-marked-entries nil)
  9087. (org-agenda-bulk-remove-overlays (point-min) (point-max))))
  9088. (defcustom org-agenda-persistent-marks nil
  9089. "Non-nil means marked items will stay marked after a bulk action.
  9090. You can toggle this interactively by typing `p' when prompted for a
  9091. bulk action."
  9092. :group 'org-agenda
  9093. :version "24.1"
  9094. :type 'boolean)
  9095. (defun org-agenda-bulk-action (&optional arg)
  9096. "Execute an remote-editing action on all marked entries.
  9097. The prefix arg is passed through to the command if possible."
  9098. (interactive "P")
  9099. ;; Make sure we have markers, and only valid ones
  9100. (unless org-agenda-bulk-marked-entries (user-error "No entries are marked"))
  9101. (mapc
  9102. (lambda (m)
  9103. (unless (and (markerp m)
  9104. (marker-buffer m)
  9105. (buffer-live-p (marker-buffer m))
  9106. (marker-position m))
  9107. (user-error "Marker %s for bulk command is invalid" m)))
  9108. org-agenda-bulk-marked-entries)
  9109. ;; Prompt for the bulk command
  9110. (let* ((msg (if org-agenda-persistent-marks "Bulk (persistent): " "Bulk: ")))
  9111. (message (concat msg "[$]arch [A]rch->sib [t]odo [+/-]tag [s]chd [d]eadline [r]efile "
  9112. "[S]catter [f]unction "
  9113. (when org-agenda-bulk-custom-functions
  9114. (concat " Custom: ["
  9115. (mapconcat (lambda(f) (char-to-string (car f)))
  9116. org-agenda-bulk-custom-functions "")
  9117. "]"))))
  9118. (catch 'exit
  9119. (let* ((action (read-char-exclusive))
  9120. (org-log-refile (if org-log-refile 'time nil))
  9121. (entries (reverse org-agenda-bulk-marked-entries))
  9122. (org-overriding-default-time
  9123. (if (get-text-property (point) 'org-agenda-date-header)
  9124. (org-get-cursor-date)))
  9125. redo-at-end
  9126. cmd rfloc state e tag pos (cnt 0) (cntskip 0))
  9127. (cond
  9128. ((equal action ?p)
  9129. (let ((org-agenda-persistent-marks
  9130. (not org-agenda-persistent-marks)))
  9131. (org-agenda-bulk-action)
  9132. (throw 'exit nil)))
  9133. ((equal action ?$)
  9134. (setq cmd '(org-agenda-archive)))
  9135. ((equal action ?A)
  9136. (setq cmd '(org-agenda-archive-to-archive-sibling)))
  9137. ((member action '(?r ?w))
  9138. (setq rfloc (org-refile-get-location
  9139. "Refile to"
  9140. (marker-buffer (car entries))
  9141. org-refile-allow-creating-parent-nodes))
  9142. (if (nth 3 rfloc)
  9143. (setcar (nthcdr 3 rfloc)
  9144. (move-marker (make-marker) (nth 3 rfloc)
  9145. (or (get-file-buffer (nth 1 rfloc))
  9146. (find-buffer-visiting (nth 1 rfloc))
  9147. (error "This should not happen")))))
  9148. (setq cmd (list 'org-agenda-refile nil (list 'quote rfloc) t)
  9149. redo-at-end t))
  9150. ((equal action ?t)
  9151. (setq state (org-icompleting-read
  9152. "Todo state: "
  9153. (with-current-buffer (marker-buffer (car entries))
  9154. (mapcar 'list org-todo-keywords-1))))
  9155. (setq cmd `(let ((org-inhibit-blocking t)
  9156. (org-inhibit-logging 'note))
  9157. (org-agenda-todo ,state))))
  9158. ((memq action '(?- ?+))
  9159. (setq tag (org-icompleting-read
  9160. (format "Tag to %s: " (if (eq action ?+) "add" "remove"))
  9161. (with-current-buffer (marker-buffer (car entries))
  9162. (delq nil
  9163. (mapcar (lambda (x)
  9164. (if (stringp (car x)) x)) org-tag-alist)))))
  9165. (setq cmd `(org-agenda-set-tags ,tag ,(if (eq action ?+) ''on ''off))))
  9166. ((memq action '(?s ?d))
  9167. (let* ((time
  9168. (unless arg
  9169. (org-read-date
  9170. nil nil nil
  9171. (if (eq action ?s) "(Re)Schedule to" "(Re)Set Deadline to")
  9172. org-overriding-default-time)))
  9173. (c1 (if (eq action ?s) 'org-agenda-schedule 'org-agenda-deadline)))
  9174. (setq cmd `(eval '(,c1 arg ,time)))))
  9175. ((equal action ?S)
  9176. (if (not (org-agenda-check-type nil 'agenda 'timeline 'todo))
  9177. (user-error "Can't scatter tasks in \"%s\" agenda view" org-agenda-type)
  9178. (let ((days (read-number
  9179. (format "Scatter tasks across how many %sdays: "
  9180. (if arg "week" "")) 7)))
  9181. (setq cmd
  9182. `(let ((distance (1+ (random ,days))))
  9183. (if arg
  9184. (let ((dist distance)
  9185. (day-of-week
  9186. (calendar-day-of-week
  9187. (calendar-gregorian-from-absolute (org-today)))))
  9188. (dotimes (i (1+ dist))
  9189. (while (member day-of-week org-agenda-weekend-days)
  9190. (incf distance)
  9191. (incf day-of-week)
  9192. (if (= day-of-week 7)
  9193. (setq day-of-week 0)))
  9194. (incf day-of-week)
  9195. (if (= day-of-week 7)
  9196. (setq day-of-week 0)))))
  9197. ;; silently fail when try to replan a sexp entry
  9198. (condition-case nil
  9199. (let* ((date (calendar-gregorian-from-absolute
  9200. (+ (org-today) distance)))
  9201. (time (encode-time 0 0 0 (nth 1 date) (nth 0 date)
  9202. (nth 2 date))))
  9203. (org-agenda-schedule nil time))
  9204. (error nil)))))))
  9205. ((assoc action org-agenda-bulk-custom-functions)
  9206. (setq cmd (list (cadr (assoc action org-agenda-bulk-custom-functions)))
  9207. redo-at-end t))
  9208. ((equal action ?f)
  9209. (setq cmd (list (intern
  9210. (org-icompleting-read "Function: "
  9211. obarray 'fboundp t nil nil)))))
  9212. (t (user-error "Invalid bulk action")))
  9213. ;; Sort the markers, to make sure that parents are handled before children
  9214. (setq entries (sort entries
  9215. (lambda (a b)
  9216. (cond
  9217. ((equal (marker-buffer a) (marker-buffer b))
  9218. (< (marker-position a) (marker-position b)))
  9219. (t
  9220. (string< (buffer-name (marker-buffer a))
  9221. (buffer-name (marker-buffer b))))))))
  9222. ;; Now loop over all markers and apply cmd
  9223. (while (setq e (pop entries))
  9224. (setq pos (text-property-any (point-min) (point-max) 'org-hd-marker e))
  9225. (if (not pos)
  9226. (progn (message "Skipping removed entry at %s" e)
  9227. (setq cntskip (1+ cntskip)))
  9228. (goto-char pos)
  9229. (let (org-loop-over-headlines-in-active-region)
  9230. (eval cmd))
  9231. (setq cnt (1+ cnt))))
  9232. (when redo-at-end (org-agenda-redo))
  9233. (unless org-agenda-persistent-marks
  9234. (org-agenda-bulk-unmark-all))
  9235. (message "Acted on %d entries%s%s"
  9236. cnt
  9237. (if (= cntskip 0)
  9238. ""
  9239. (format ", skipped %d (disappeared before their turn)"
  9240. cntskip))
  9241. (if (not org-agenda-persistent-marks)
  9242. "" " (kept marked)"))))))
  9243. (defun org-agenda-capture (&optional with-time)
  9244. "Call `org-capture' with the date at point.
  9245. With a `C-1' prefix, use the HH:MM value at point (if any) or the
  9246. current HH:MM time."
  9247. (interactive "P")
  9248. (if (not (eq major-mode 'org-agenda-mode))
  9249. (user-error "You cannot do this outside of agenda buffers")
  9250. (let ((org-overriding-default-time
  9251. (org-get-cursor-date (equal with-time 1))))
  9252. (call-interactively 'org-capture))))
  9253. ;;; Dragging agenda lines forward/backward
  9254. (defun org-agenda-reapply-filters ()
  9255. "Re-apply all agenda filters."
  9256. (mapcar
  9257. (lambda(f) (when (car f) (org-agenda-filter-apply (car f) (cadr f))))
  9258. `((,org-agenda-tag-filter tag)
  9259. (,org-agenda-category-filter category)
  9260. (,org-agenda-regexp-filter regexp)
  9261. (,(get 'org-agenda-tag-filter :preset-filter) tag)
  9262. (,(get 'org-agenda-category-filter :preset-filter) category)
  9263. (,(get 'org-agenda-regexp-filter :preset-filter) regexp))))
  9264. (defun org-agenda-drag-line-forward (arg &optional backward)
  9265. "Drag an agenda line forward by ARG lines.
  9266. When the optional argument `backward' is non-nil, move backward."
  9267. (interactive "p")
  9268. (let ((inhibit-read-only t) lst line)
  9269. (if (or (not (get-text-property (point) 'txt))
  9270. (save-excursion
  9271. (dotimes (n arg)
  9272. (move-beginning-of-line (if backward 0 2))
  9273. (push (not (get-text-property (point) 'txt)) lst))
  9274. (delq nil lst)))
  9275. (message "Cannot move line forward")
  9276. (let ((end (save-excursion (move-beginning-of-line 2) (point))))
  9277. (move-beginning-of-line 1)
  9278. (setq line (buffer-substring (point) end))
  9279. (delete-region (point) end)
  9280. (move-beginning-of-line (funcall (if backward '1- '1+) arg))
  9281. (insert line)
  9282. (org-agenda-reapply-filters)
  9283. (org-agenda-mark-clocking-task)
  9284. (move-beginning-of-line 0)))))
  9285. (defun org-agenda-drag-line-backward (arg)
  9286. "Drag an agenda line backward by ARG lines."
  9287. (interactive "p")
  9288. (org-agenda-drag-line-forward arg t))
  9289. ;;; Flagging notes
  9290. (defun org-agenda-show-the-flagging-note ()
  9291. "Display the flagging note in the other window.
  9292. When called a second time in direct sequence, offer to remove the FLAGGING
  9293. tag and (if present) the flagging note."
  9294. (interactive)
  9295. (let ((hdmarker (org-get-at-bol 'org-hd-marker))
  9296. (win (selected-window))
  9297. note heading newhead)
  9298. (unless hdmarker
  9299. (user-error "No linked entry at point"))
  9300. (if (and (eq this-command last-command)
  9301. (y-or-n-p "Unflag and remove any flagging note? "))
  9302. (progn
  9303. (org-agenda-remove-flag hdmarker)
  9304. (let ((win (get-buffer-window "*Flagging Note*")))
  9305. (and win (delete-window win)))
  9306. (message "Entry unflagged"))
  9307. (setq note (org-entry-get hdmarker "THEFLAGGINGNOTE"))
  9308. (unless note
  9309. (user-error "No flagging note"))
  9310. (org-kill-new note)
  9311. (org-switch-to-buffer-other-window "*Flagging Note*")
  9312. (erase-buffer)
  9313. (insert note)
  9314. (goto-char (point-min))
  9315. (while (re-search-forward "\\\\n" nil t)
  9316. (replace-match "\n" t t))
  9317. (goto-char (point-min))
  9318. (select-window win)
  9319. (message "Flagging note pushed to kill ring. Press [?] again to remove tag and note"))))
  9320. (defun org-agenda-remove-flag (marker)
  9321. "Remove the FLAGGED tag and any flagging note in the entry."
  9322. (let (newhead)
  9323. (org-with-point-at marker
  9324. (org-toggle-tag "FLAGGED" 'off)
  9325. (org-entry-delete nil "THEFLAGGINGNOTE")
  9326. (setq newhead (org-get-heading)))
  9327. (org-agenda-change-all-lines newhead marker)
  9328. (message "Entry unflagged")))
  9329. (defun org-agenda-get-any-marker (&optional pos)
  9330. (or (get-text-property (or pos (point-at-bol)) 'org-hd-marker)
  9331. (get-text-property (or pos (point-at-bol)) 'org-marker)))
  9332. ;;; Appointment reminders
  9333. (defvar appt-time-msg-list) ; defined in appt.el
  9334. ;;;###autoload
  9335. (defun org-agenda-to-appt (&optional refresh filter &rest args)
  9336. "Activate appointments found in `org-agenda-files'.
  9337. With a \\[universal-argument] prefix, refresh the list of
  9338. appointments.
  9339. If FILTER is t, interactively prompt the user for a regular
  9340. expression, and filter out entries that don't match it.
  9341. If FILTER is a string, use this string as a regular expression
  9342. for filtering entries out.
  9343. If FILTER is a function, filter out entries against which
  9344. calling the function returns nil. This function takes one
  9345. argument: an entry from `org-agenda-get-day-entries'.
  9346. FILTER can also be an alist with the car of each cell being
  9347. either 'headline or 'category. For example:
  9348. '((headline \"IMPORTANT\")
  9349. (category \"Work\"))
  9350. will only add headlines containing IMPORTANT or headlines
  9351. belonging to the \"Work\" category.
  9352. ARGS are symbols indicating what kind of entries to consider.
  9353. By default `org-agenda-to-appt' will use :deadline*, :scheduled*
  9354. \(i.e., deadlines and scheduled items with a hh:mm specification)
  9355. and :timestamp entries. See the docstring of `org-diary' for
  9356. details and examples.
  9357. If an entry has a APPT_WARNTIME property, its value will be used
  9358. to override `appt-message-warning-time'."
  9359. (interactive "P")
  9360. (if refresh (setq appt-time-msg-list nil))
  9361. (if (eq filter t)
  9362. (setq filter (read-from-minibuffer "Regexp filter: ")))
  9363. (let* ((cnt 0) ; count added events
  9364. (scope (or args '(:deadline* :scheduled* :timestamp)))
  9365. (org-agenda-new-buffers nil)
  9366. (org-deadline-warning-days 0)
  9367. ;; Do not use `org-today' here because appt only takes
  9368. ;; time and without date as argument, so it may pass wrong
  9369. ;; information otherwise
  9370. (today (org-date-to-gregorian
  9371. (time-to-days (current-time))))
  9372. (org-agenda-restrict nil)
  9373. (files (org-agenda-files 'unrestricted)) entries file
  9374. (org-agenda-buffer nil))
  9375. ;; Get all entries which may contain an appt
  9376. (org-agenda-prepare-buffers files)
  9377. (while (setq file (pop files))
  9378. (setq entries
  9379. (delq nil
  9380. (append entries
  9381. (apply 'org-agenda-get-day-entries
  9382. file today scope)))))
  9383. ;; Map thru entries and find if we should filter them out
  9384. (mapc
  9385. (lambda(x)
  9386. (let* ((evt (org-trim
  9387. (replace-regexp-in-string
  9388. org-bracket-link-regexp "\\3"
  9389. (or (get-text-property 1 'txt x) ""))))
  9390. (cat (get-text-property 1 'org-category x))
  9391. (tod (get-text-property 1 'time-of-day x))
  9392. (ok (or (null filter)
  9393. (and (stringp filter) (string-match filter evt))
  9394. (and (functionp filter) (funcall filter x))
  9395. (and (listp filter)
  9396. (let ((cat-filter (cadr (assoc 'category filter)))
  9397. (evt-filter (cadr (assoc 'headline filter))))
  9398. (or (and (stringp cat-filter)
  9399. (string-match cat-filter cat))
  9400. (and (stringp evt-filter)
  9401. (string-match evt-filter evt)))))))
  9402. (wrn (get-text-property 1 'warntime x)))
  9403. ;; FIXME: Shall we remove text-properties for the appt text?
  9404. ;; (setq evt (set-text-properties 0 (length evt) nil evt))
  9405. (when (and ok tod)
  9406. (setq tod (concat "00" (number-to-string tod))
  9407. tod (when (string-match
  9408. "\\([0-9]\\{1,2\\}\\)\\([0-9]\\{2\\}\\)\\'" tod)
  9409. (concat (match-string 1 tod) ":"
  9410. (match-string 2 tod))))
  9411. (if (version< emacs-version "23.3")
  9412. (appt-add tod evt)
  9413. (appt-add tod evt wrn))
  9414. (setq cnt (1+ cnt))))) entries)
  9415. (org-release-buffers org-agenda-new-buffers)
  9416. (if (eq cnt 0)
  9417. (message "No event to add")
  9418. (message "Added %d event%s for today" cnt (if (> cnt 1) "s" "")))))
  9419. (defun org-agenda-todayp (date)
  9420. "Does DATE mean today, when considering `org-extend-today-until'?"
  9421. (let ((today (org-today))
  9422. (date (if (and date (listp date)) (calendar-absolute-from-gregorian date)
  9423. date)))
  9424. (eq date today)))
  9425. (defun org-agenda-todo-yesterday (&optional arg)
  9426. "Like `org-agenda-todo' but the time of change will be 23:59 of yesterday."
  9427. (interactive "P")
  9428. (let* ((hour (third (decode-time
  9429. (org-current-time))))
  9430. (org-extend-today-until (1+ hour)))
  9431. (org-agenda-todo arg)))
  9432. (provide 'org-agenda)
  9433. ;;; org-agenda.el ends here