org-agenda.el 386 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993
  1. ;;; org-agenda.el --- Dynamic task and appointment lists for Org
  2. ;; Copyright (C) 2004-2013 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 'string)
  203. (defcustom org-agenda-persistent-filter nil
  204. "When set, keep filters from one agenda view to the next."
  205. :group 'org-agenda
  206. :type 'boolean)
  207. (defgroup org-agenda-custom-commands nil
  208. "Options concerning agenda views in Org-mode."
  209. :tag "Org Agenda Custom Commands"
  210. :group 'org-agenda)
  211. (defconst org-sorting-choice
  212. '(choice
  213. (const time-up) (const time-down)
  214. (const category-keep) (const category-up) (const category-down)
  215. (const tag-down) (const tag-up)
  216. (const priority-up) (const priority-down)
  217. (const todo-state-up) (const todo-state-down)
  218. (const effort-up) (const effort-down)
  219. (const habit-up) (const habit-down)
  220. (const alpha-up) (const alpha-down)
  221. (const user-defined-up) (const user-defined-down))
  222. "Sorting choices.")
  223. ;; Keep custom values for `org-agenda-filter-preset' compatible with
  224. ;; the new variable `org-agenda-tag-filter-preset'.
  225. (if (fboundp 'defvaralias)
  226. (defvaralias 'org-agenda-filter-preset 'org-agenda-tag-filter-preset)
  227. (defvaralias 'org-agenda-filter 'org-agenda-tag-filter))
  228. (defconst org-agenda-custom-commands-local-options
  229. `(repeat :tag "Local settings for this command. Remember to quote values"
  230. (choice :tag "Setting"
  231. (list :tag "Heading for this block"
  232. (const org-agenda-overriding-header)
  233. (string :tag "Headline"))
  234. (list :tag "Files to be searched"
  235. (const org-agenda-files)
  236. (list
  237. (const :format "" quote)
  238. (repeat (file))))
  239. (list :tag "Sorting strategy"
  240. (const org-agenda-sorting-strategy)
  241. (list
  242. (const :format "" quote)
  243. (repeat
  244. ,org-sorting-choice)))
  245. (list :tag "Prefix format"
  246. (const org-agenda-prefix-format :value " %-12:c%?-12t% s")
  247. (string))
  248. (list :tag "Number of days in agenda"
  249. (const org-agenda-span)
  250. (choice (const :tag "Day" 'day)
  251. (const :tag "Week" 'week)
  252. (const :tag "Month" 'month)
  253. (const :tag "Year" 'year)
  254. (integer :tag "Custom")))
  255. (list :tag "Fixed starting date"
  256. (const org-agenda-start-day)
  257. (string :value "2007-11-01"))
  258. (list :tag "Start on day of week"
  259. (const org-agenda-start-on-weekday)
  260. (choice :value 1
  261. (const :tag "Today" nil)
  262. (integer :tag "Weekday No.")))
  263. (list :tag "Include data from diary"
  264. (const org-agenda-include-diary)
  265. (boolean))
  266. (list :tag "Deadline Warning days"
  267. (const org-deadline-warning-days)
  268. (integer :value 1))
  269. (list :tag "Category filter preset"
  270. (const org-agenda-category-filter-preset)
  271. (list
  272. (const :format "" quote)
  273. (repeat
  274. (string :tag "+category or -category"))))
  275. (list :tag "Tags filter preset"
  276. (const org-agenda-tag-filter-preset)
  277. (list
  278. (const :format "" quote)
  279. (repeat
  280. (string :tag "+tag or -tag"))))
  281. (list :tag "Set daily/weekly entry types"
  282. (const org-agenda-entry-types)
  283. (list
  284. (const :format "" quote)
  285. (set :greedy t :value (:deadline :scheduled :timestamp :sexp)
  286. (const :deadline)
  287. (const :scheduled)
  288. (const :timestamp)
  289. (const :sexp))))
  290. (list :tag "Standard skipping condition"
  291. :value (org-agenda-skip-function '(org-agenda-skip-entry-if))
  292. (const org-agenda-skip-function)
  293. (list
  294. (const :format "" quote)
  295. (list
  296. (choice
  297. :tag "Skipping range"
  298. (const :tag "Skip entry" org-agenda-skip-entry-if)
  299. (const :tag "Skip subtree" org-agenda-skip-subtree-if))
  300. (repeat :inline t :tag "Conditions for skipping"
  301. (choice
  302. :tag "Condition type"
  303. (list :tag "Regexp matches" :inline t (const :format "" 'regexp) (regexp))
  304. (list :tag "Regexp does not match" :inline t (const :format "" 'notregexp) (regexp))
  305. (list :tag "TODO state is" :inline t
  306. (const 'todo)
  307. (choice
  308. (const :tag "any not-done state" 'todo)
  309. (const :tag "any done state" 'done)
  310. (const :tag "any state" 'any)
  311. (list :tag "Keyword list"
  312. (const :format "" quote)
  313. (repeat (string :tag "Keyword")))))
  314. (list :tag "TODO state is not" :inline t
  315. (const 'nottodo)
  316. (choice
  317. (const :tag "any not-done state" 'todo)
  318. (const :tag "any done state" 'done)
  319. (const :tag "any state" 'any)
  320. (list :tag "Keyword list"
  321. (const :format "" quote)
  322. (repeat (string :tag "Keyword")))))
  323. (const :tag "scheduled" 'scheduled)
  324. (const :tag "not scheduled" 'notscheduled)
  325. (const :tag "deadline" 'deadline)
  326. (const :tag "no deadline" 'notdeadline)
  327. (const :tag "timestamp" 'timestamp)
  328. (const :tag "no timestamp" 'nottimestamp))))))
  329. (list :tag "Non-standard skipping condition"
  330. :value (org-agenda-skip-function)
  331. (const org-agenda-skip-function)
  332. (sexp :tag "Function or form (quoted!)"))
  333. (list :tag "Any variable"
  334. (variable :tag "Variable")
  335. (sexp :tag "Value (sexp)"))))
  336. "Selection of examples for agenda command settings.
  337. This will be spliced into the custom type of
  338. `org-agenda-custom-commands'.")
  339. (defcustom org-agenda-custom-commands '(("n" "Agenda and all TODO's"
  340. ((agenda "") (alltodo))))
  341. "Custom commands for the agenda.
  342. These commands will be offered on the splash screen displayed by the
  343. agenda dispatcher \\[org-agenda]. Each entry is a list like this:
  344. (key desc type match settings files)
  345. key The key (one or more characters as a string) to be associated
  346. with the command.
  347. desc A description of the command, when omitted or nil, a default
  348. description is built using MATCH.
  349. type The command type, any of the following symbols:
  350. agenda The daily/weekly agenda.
  351. todo Entries with a specific TODO keyword, in all agenda files.
  352. search Entries containing search words entry or headline.
  353. tags Tags/Property/TODO match in all agenda files.
  354. tags-todo Tags/P/T match in all agenda files, TODO entries only.
  355. todo-tree Sparse tree of specific TODO keyword in *current* file.
  356. tags-tree Sparse tree with all tags matches in *current* file.
  357. occur-tree Occur sparse tree for *current* file.
  358. ... A user-defined function.
  359. match What to search for:
  360. - a single keyword for TODO keyword searches
  361. - a tags match expression for tags searches
  362. - a word search expression for text searches.
  363. - a regular expression for occur searches
  364. For all other commands, this should be the empty string.
  365. settings A list of option settings, similar to that in a let form, so like
  366. this: ((opt1 val1) (opt2 val2) ...). The values will be
  367. evaluated at the moment of execution, so quote them when needed.
  368. files A list of files file to write the produced agenda buffer to
  369. with the command `org-store-agenda-views'.
  370. If a file name ends in \".html\", an HTML version of the buffer
  371. is written out. If it ends in \".ps\", a postscript version is
  372. produced. Otherwise, only the plain text is written to the file.
  373. You can also define a set of commands, to create a composite agenda buffer.
  374. In this case, an entry looks like this:
  375. (key desc (cmd1 cmd2 ...) general-settings-for-whole-set files)
  376. where
  377. desc A description string to be displayed in the dispatcher menu.
  378. cmd An agenda command, similar to the above. However, tree commands
  379. are not allowed, but instead you can get agenda and global todo list.
  380. So valid commands for a set are:
  381. (agenda \"\" settings)
  382. (alltodo \"\" settings)
  383. (stuck \"\" settings)
  384. (todo \"match\" settings files)
  385. (search \"match\" settings files)
  386. (tags \"match\" settings files)
  387. (tags-todo \"match\" settings files)
  388. Each command can carry a list of options, and another set of options can be
  389. given for the whole set of commands. Individual command options take
  390. precedence over the general options.
  391. When using several characters as key to a command, the first characters
  392. are prefix commands. For the dispatcher to display useful information, you
  393. should provide a description for the prefix, like
  394. (setq org-agenda-custom-commands
  395. '((\"h\" . \"HOME + Name tag searches\") ; describe prefix \"h\"
  396. (\"hl\" tags \"+HOME+Lisa\")
  397. (\"hp\" tags \"+HOME+Peter\")
  398. (\"hk\" tags \"+HOME+Kim\")))"
  399. :group 'org-agenda-custom-commands
  400. :type `(repeat
  401. (choice :value ("x" "Describe command here" tags "" nil)
  402. (list :tag "Single command"
  403. (string :tag "Access Key(s) ")
  404. (option (string :tag "Description"))
  405. (choice
  406. (const :tag "Agenda" agenda)
  407. (const :tag "TODO list" alltodo)
  408. (const :tag "Search words" search)
  409. (const :tag "Stuck projects" stuck)
  410. (const :tag "Tags/Property match (all agenda files)" tags)
  411. (const :tag "Tags/Property match of TODO entries (all agenda files)" tags-todo)
  412. (const :tag "TODO keyword search (all agenda files)" todo)
  413. (const :tag "Tags sparse tree (current buffer)" tags-tree)
  414. (const :tag "TODO keyword tree (current buffer)" todo-tree)
  415. (const :tag "Occur tree (current buffer)" occur-tree)
  416. (sexp :tag "Other, user-defined function"))
  417. (string :tag "Match (only for some commands)")
  418. ,org-agenda-custom-commands-local-options
  419. (option (repeat :tag "Export" (file :tag "Export to"))))
  420. (list :tag "Command series, all agenda files"
  421. (string :tag "Access Key(s)")
  422. (string :tag "Description ")
  423. (repeat :tag "Component"
  424. (choice
  425. (list :tag "Agenda"
  426. (const :format "" agenda)
  427. (const :tag "" :format "" "")
  428. ,org-agenda-custom-commands-local-options)
  429. (list :tag "TODO list (all keywords)"
  430. (const :format "" alltodo)
  431. (const :tag "" :format "" "")
  432. ,org-agenda-custom-commands-local-options)
  433. (list :tag "Search words"
  434. (const :format "" search)
  435. (string :tag "Match")
  436. ,org-agenda-custom-commands-local-options)
  437. (list :tag "Stuck projects"
  438. (const :format "" stuck)
  439. (const :tag "" :format "" "")
  440. ,org-agenda-custom-commands-local-options)
  441. (list :tag "Tags search"
  442. (const :format "" tags)
  443. (string :tag "Match")
  444. ,org-agenda-custom-commands-local-options)
  445. (list :tag "Tags search, TODO entries only"
  446. (const :format "" tags-todo)
  447. (string :tag "Match")
  448. ,org-agenda-custom-commands-local-options)
  449. (list :tag "TODO keyword search"
  450. (const :format "" todo)
  451. (string :tag "Match")
  452. ,org-agenda-custom-commands-local-options)
  453. (list :tag "Other, user-defined function"
  454. (symbol :tag "function")
  455. (string :tag "Match")
  456. ,org-agenda-custom-commands-local-options)))
  457. (repeat :tag "Settings for entire command set"
  458. (list (variable :tag "Any variable")
  459. (sexp :tag "Value")))
  460. (option (repeat :tag "Export" (file :tag "Export to"))))
  461. (cons :tag "Prefix key documentation"
  462. (string :tag "Access Key(s)")
  463. (string :tag "Description ")))))
  464. (defcustom org-agenda-query-register ?o
  465. "The register holding the current query string.
  466. The purpose of this is that if you construct a query string interactively,
  467. you can then use it to define a custom command."
  468. :group 'org-agenda-custom-commands
  469. :type 'character)
  470. (defcustom org-stuck-projects
  471. '("+LEVEL=2/-DONE" ("TODO" "NEXT" "NEXTACTION") nil "")
  472. "How to identify stuck projects.
  473. This is a list of four items:
  474. 1. A tags/todo/property matcher string that is used to identify a project.
  475. See the manual for a description of tag and property searches.
  476. The entire tree below a headline matched by this is considered one project.
  477. 2. A list of TODO keywords identifying non-stuck projects.
  478. If the project subtree contains any headline with one of these todo
  479. keywords, the project is considered to be not stuck. If you specify
  480. \"*\" as a keyword, any TODO keyword will mark the project unstuck.
  481. 3. A list of tags identifying non-stuck projects.
  482. If the project subtree contains any headline with one of these tags,
  483. the project is considered to be not stuck. If you specify \"*\" as
  484. a tag, any tag will mark the project unstuck. Note that this is about
  485. the explicit presence of a tag somewhere in the subtree, inherited
  486. tags do not count here. If inherited tags make a project not stuck,
  487. use \"-TAG\" in the tags part of the matcher under (1.) above.
  488. 4. An arbitrary regular expression matching non-stuck projects.
  489. If the project turns out to be not stuck, search continues also in the
  490. subtree to see if any of the subtasks have project status.
  491. See also the variable `org-tags-match-list-sublevels' which applies
  492. to projects matched by this search as well.
  493. After defining this variable, you may use \\[org-agenda-list-stuck-projects]
  494. or `C-c a #' to produce the list."
  495. :group 'org-agenda-custom-commands
  496. :type '(list
  497. (string :tag "Tags/TODO match to identify a project")
  498. (repeat :tag "Projects are *not* stuck if they have an entry with TODO keyword any of" (string))
  499. (repeat :tag "Projects are *not* stuck if they have an entry with TAG being any of" (string))
  500. (regexp :tag "Projects are *not* stuck if this regexp matches inside the subtree")))
  501. (defcustom org-agenda-filter-effort-default-operator "<"
  502. "The default operator for effort estimate filtering.
  503. If you select an effort estimate limit without first pressing an operator,
  504. this one will be used."
  505. :group 'org-agenda-custom-commands
  506. :type '(choice (const :tag "less or equal" "<")
  507. (const :tag "greater or equal"">")
  508. (const :tag "equal" "=")))
  509. (defgroup org-agenda-skip nil
  510. "Options concerning skipping parts of agenda files."
  511. :tag "Org Agenda Skip"
  512. :group 'org-agenda)
  513. (defcustom org-agenda-skip-function-global nil
  514. "Function to be called at each match during agenda construction.
  515. If this function returns nil, the current match should not be skipped.
  516. If the function decided to skip an agenda match, is must return the
  517. buffer position from which the search should be continued.
  518. This may also be a Lisp form, which will be evaluated.
  519. This variable will be applied to every agenda match, including
  520. tags/property searches and TODO lists. So try to make the test function
  521. do its checking as efficiently as possible. To implement a skipping
  522. condition just for specific agenda commands, use the variable
  523. `org-agenda-skip-function' which can be set in the options section
  524. of custom agenda commands."
  525. :group 'org-agenda-skip
  526. :type 'sexp)
  527. (defgroup org-agenda-daily/weekly nil
  528. "Options concerning the daily/weekly agenda."
  529. :tag "Org Agenda Daily/Weekly"
  530. :group 'org-agenda)
  531. (defgroup org-agenda-todo-list nil
  532. "Options concerning the global todo list agenda view."
  533. :tag "Org Agenda Todo List"
  534. :group 'org-agenda)
  535. (defgroup org-agenda-match-view nil
  536. "Options concerning the general tags/property/todo match agenda view."
  537. :tag "Org Agenda Match View"
  538. :group 'org-agenda)
  539. (defgroup org-agenda-search-view nil
  540. "Options concerning the general tags/property/todo match agenda view."
  541. :tag "Org Agenda Match View"
  542. :group 'org-agenda)
  543. (defvar org-agenda-archives-mode nil
  544. "Non-nil means the agenda will include archived items.
  545. If this is the symbol `trees', trees in the selected agenda scope
  546. that are marked with the ARCHIVE tag will be included anyway. When this is
  547. t, also all archive files associated with the current selection of agenda
  548. files will be included.")
  549. (defcustom org-agenda-skip-comment-trees t
  550. "Non-nil means skip trees that start with the COMMENT keyword.
  551. When nil, these trees are also scanned by agenda commands."
  552. :group 'org-agenda-skip
  553. :type 'boolean)
  554. (defcustom org-agenda-todo-list-sublevels t
  555. "Non-nil means check also the sublevels of a TODO entry for TODO entries.
  556. When nil, the sublevels of a TODO entry are not checked, resulting in
  557. potentially much shorter TODO lists."
  558. :group 'org-agenda-skip
  559. :group 'org-agenda-todo-list
  560. :type 'boolean)
  561. (defcustom org-agenda-todo-ignore-with-date nil
  562. "Non-nil means don't show entries with a date in the global todo list.
  563. You can use this if you prefer to mark mere appointments with a TODO keyword,
  564. but don't want them to show up in the TODO list.
  565. When this is set, it also covers deadlines and scheduled items, the settings
  566. of `org-agenda-todo-ignore-scheduled' and `org-agenda-todo-ignore-deadlines'
  567. will be ignored.
  568. See also the variable `org-agenda-tags-todo-honor-ignore-options'."
  569. :group 'org-agenda-skip
  570. :group 'org-agenda-todo-list
  571. :type 'boolean)
  572. (defcustom org-agenda-todo-ignore-timestamp nil
  573. "Non-nil means don't show entries with a timestamp.
  574. This applies when creating the global todo list.
  575. Valid values are:
  576. past Don't show entries for today or in the past.
  577. future Don't show entries with a timestamp in the future.
  578. The idea behind this is that if it has a future
  579. timestamp, you don't want to think about it until the
  580. date.
  581. all Don't show any entries with a timestamp in the global todo list.
  582. The idea behind this is that by setting a timestamp, you
  583. have already \"taken care\" of this item.
  584. This variable can also have an integer as a value. If positive (N),
  585. todos with a timestamp N or more days in the future will be ignored. If
  586. negative (-N), todos with a timestamp N or more days in the past will be
  587. ignored. If 0, todos with a timestamp either today or in the future will
  588. be ignored. For example, a value of -1 will exclude todos with a
  589. timestamp in the past (yesterday or earlier), while a value of 7 will
  590. exclude todos with a timestamp a week or more in the future.
  591. See also `org-agenda-todo-ignore-with-date'.
  592. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  593. to make his option also apply to the tags-todo list."
  594. :group 'org-agenda-skip
  595. :group 'org-agenda-todo-list
  596. :version "24.1"
  597. :type '(choice
  598. (const :tag "Ignore future timestamp todos" future)
  599. (const :tag "Ignore past or present timestamp todos" past)
  600. (const :tag "Ignore all timestamp todos" all)
  601. (const :tag "Show timestamp todos" nil)
  602. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  603. (defcustom org-agenda-todo-ignore-scheduled nil
  604. "Non-nil means, ignore some scheduled TODO items when making TODO list.
  605. This applies when creating the global todo list.
  606. Valid values are:
  607. past Don't show entries scheduled today or in the past.
  608. future Don't show entries scheduled in the future.
  609. The idea behind this is that by scheduling it, you don't want to
  610. think about it until the scheduled date.
  611. all Don't show any scheduled entries in the global todo list.
  612. The idea behind this is that by scheduling it, you have already
  613. \"taken care\" of this item.
  614. t Same as `all', for backward compatibility.
  615. This variable can also have an integer as a value. See
  616. `org-agenda-todo-ignore-timestamp' for more details.
  617. See also `org-agenda-todo-ignore-with-date'.
  618. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  619. to make his option also apply to the tags-todo list."
  620. :group 'org-agenda-skip
  621. :group 'org-agenda-todo-list
  622. :type '(choice
  623. (const :tag "Ignore future-scheduled todos" future)
  624. (const :tag "Ignore past- or present-scheduled todos" past)
  625. (const :tag "Ignore all scheduled todos" all)
  626. (const :tag "Ignore all scheduled todos (compatibility)" t)
  627. (const :tag "Show scheduled todos" nil)
  628. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  629. (defcustom org-agenda-todo-ignore-deadlines nil
  630. "Non-nil means ignore some deadlined TODO items when making TODO list.
  631. There are different motivations for using different values, please think
  632. carefully when configuring this variable.
  633. This applies when creating the global todo list.
  634. Valid values are:
  635. near Don't show near deadline entries. A deadline is near when it is
  636. closer than `org-deadline-warning-days' days. The idea behind this
  637. is that such items will appear in the agenda anyway.
  638. far Don't show TODO entries where a deadline has been defined, but
  639. the deadline is not near. This is useful if you don't want to
  640. use the todo list to figure out what to do now.
  641. past Don't show entries with a deadline timestamp for today or in the past.
  642. future Don't show entries with a deadline timestamp in the future, not even
  643. when they become `near' ones. Use it with caution.
  644. all Ignore all TODO entries that do have a deadline.
  645. t Same as `near', for backward compatibility.
  646. This variable can also have an integer as a value. See
  647. `org-agenda-todo-ignore-timestamp' for more details.
  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. :type '(choice
  654. (const :tag "Ignore near deadlines" near)
  655. (const :tag "Ignore near deadlines (compatibility)" t)
  656. (const :tag "Ignore far deadlines" far)
  657. (const :tag "Ignore all TODOs with a deadlines" all)
  658. (const :tag "Show all TODOs, even if they have a deadline" nil)
  659. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  660. (defcustom org-agenda-todo-ignore-time-comparison-use-seconds nil
  661. "Time unit to use when possibly ignoring an agenda item.
  662. See the docstring of various `org-agenda-todo-ignore-*' options.
  663. The default is to compare time stamps using days. An item is thus
  664. considered to be in the future if it is at least one day after today.
  665. Non-nil means to compare time stamps using seconds. An item is then
  666. considered future if it has a time value later than current time."
  667. :group 'org-agenda-skip
  668. :group 'org-agenda-todo-list
  669. :type '(choice
  670. (const :tag "Compare time with days" nil)
  671. (const :tag "Compare time with seconds" t)))
  672. (defcustom org-agenda-tags-todo-honor-ignore-options nil
  673. "Non-nil means honor todo-list ...ignore options also in tags-todo search.
  674. The variables
  675. `org-agenda-todo-ignore-with-date',
  676. `org-agenda-todo-ignore-timestamp',
  677. `org-agenda-todo-ignore-scheduled',
  678. `org-agenda-todo-ignore-deadlines'
  679. make the global TODO list skip entries that have time stamps of certain
  680. kinds. If this option is set, the same options will also apply for the
  681. tags-todo search, which is the general tags/property matcher
  682. restricted to unfinished TODO entries only."
  683. :group 'org-agenda-skip
  684. :group 'org-agenda-todo-list
  685. :group 'org-agenda-match-view
  686. :type 'boolean)
  687. (defcustom org-agenda-skip-scheduled-if-done nil
  688. "Non-nil means don't show scheduled items in agenda when they are done.
  689. This is relevant for the daily/weekly agenda, not for the TODO list. And
  690. it applies only to the actual date of the scheduling. Warnings about
  691. an item with a past scheduling dates are always turned off when the item
  692. is DONE."
  693. :group 'org-agenda-skip
  694. :group 'org-agenda-daily/weekly
  695. :type 'boolean)
  696. (defcustom org-agenda-skip-scheduled-if-deadline-is-shown nil
  697. "Non-nil means skip scheduling line if same entry shows because of deadline.
  698. In the agenda of today, an entry can show up multiple times because
  699. it is both scheduled and has a nearby deadline, and maybe a plain time
  700. stamp as well.
  701. When this variable is t, then only the deadline is shown and the fact that
  702. the entry is scheduled today or was scheduled previously is not shown.
  703. When this variable is nil, the entry will be shown several times. When
  704. the variable is the symbol `not-today', then skip scheduled previously,
  705. but not scheduled today."
  706. :group 'org-agenda-skip
  707. :group 'org-agenda-daily/weekly
  708. :type '(choice
  709. (const :tag "Never" nil)
  710. (const :tag "Always" t)
  711. (const :tag "Not when scheduled today" not-today)))
  712. (defcustom org-agenda-skip-timestamp-if-deadline-is-shown nil
  713. "Non-nil means skip timestamp line if same entry shows because of deadline.
  714. In the agenda of today, an entry can show up multiple times
  715. because it has both a plain timestamp and has a nearby deadline.
  716. When this variable is t, then only the deadline is shown and the
  717. fact that the entry has a timestamp for or including today is not
  718. shown. When this variable is nil, the entry will be shown
  719. several times."
  720. :group 'org-agenda-skip
  721. :group 'org-agenda-daily/weekly
  722. :version "24.1"
  723. :type '(choice
  724. (const :tag "Never" nil)
  725. (const :tag "Always" t)))
  726. (defcustom org-agenda-skip-deadline-if-done nil
  727. "Non-nil means don't show deadlines when the corresponding item is done.
  728. When nil, the deadline is still shown and should give you a happy feeling.
  729. This is relevant for the daily/weekly agenda. And it applied only to the
  730. actually date of the deadline. Warnings about approaching and past-due
  731. deadlines are always turned off when the item is DONE."
  732. :group 'org-agenda-skip
  733. :group 'org-agenda-daily/weekly
  734. :type 'boolean)
  735. (defcustom org-agenda-skip-deadline-prewarning-if-scheduled nil
  736. "Non-nil means skip deadline prewarning when entry is also scheduled.
  737. This will apply on all days where a prewarning for the deadline would
  738. be shown, but not at the day when the entry is actually due. On that day,
  739. the deadline will be shown anyway.
  740. This variable may be set to nil, t, the symbol `pre-scheduled',
  741. or a number which will then give the number of days before the actual
  742. deadline when the prewarnings should resume. The symbol `pre-scheduled'
  743. eliminates the deadline prewarning only prior to the scheduled date.
  744. This can be used in a workflow where the first showing of the deadline will
  745. trigger you to schedule it, and then you don't want to be reminded of it
  746. because you will take care of it on the day when scheduled."
  747. :group 'org-agenda-skip
  748. :group 'org-agenda-daily/weekly
  749. :version "24.1"
  750. :type '(choice
  751. (const :tag "Always show prewarning" nil)
  752. (const :tag "Remove prewarning prior to scheduled date" pre-scheduled)
  753. (const :tag "Remove prewarning if entry is scheduled" t)
  754. (integer :tag "Restart prewarning N days before deadline")))
  755. (defcustom org-agenda-skip-scheduled-delay-if-deadline nil
  756. "Non-nil means skip scheduled delay when entry also has a deadline.
  757. This variable may be set to nil, t, the symbol `post-deadline',
  758. or a number which will then give the number of days after the actual
  759. scheduled date when the delay should expire. The symbol `post-deadline'
  760. eliminates the schedule delay when the date is posterior to the deadline."
  761. :group 'org-agenda-skip
  762. :group 'org-agenda-daily/weekly
  763. :version "24.3"
  764. :type '(choice
  765. (const :tag "Always honor delay" nil)
  766. (const :tag "Ignore delay if posterior to the deadline" post-deadline)
  767. (const :tag "Ignore delay if entry has a deadline" t)
  768. (integer :tag "Honor delay up until N days after the scheduled date")))
  769. (defcustom org-agenda-skip-additional-timestamps-same-entry nil
  770. "When nil, multiple same-day timestamps in entry make multiple agenda lines.
  771. When non-nil, after the search for timestamps has matched once in an
  772. entry, the rest of the entry will not be searched."
  773. :group 'org-agenda-skip
  774. :type 'boolean)
  775. (defcustom org-agenda-skip-timestamp-if-done nil
  776. "Non-nil means don't select item by timestamp or -range if it is DONE."
  777. :group 'org-agenda-skip
  778. :group 'org-agenda-daily/weekly
  779. :type 'boolean)
  780. (defcustom org-agenda-dim-blocked-tasks nil
  781. "Non-nil means dim blocked tasks in the agenda display.
  782. This causes some overhead during agenda construction, but if you
  783. have turned on `org-enforce-todo-dependencies',
  784. `org-enforce-todo-checkbox-dependencies', or any other blocking
  785. mechanism, this will create useful feedback in the agenda.
  786. Instead of t, this variable can also have the value `invisible'.
  787. Then blocked tasks will be invisible and only become visible when
  788. they become unblocked. An exemption to this behavior is when a task is
  789. blocked because of unchecked checkboxes below it. Since checkboxes do
  790. not show up in the agenda views, making this task invisible you remove any
  791. trace from agenda views that there is something to do. Therefore, a task
  792. that is blocked because of checkboxes will never be made invisible, it
  793. will only be dimmed."
  794. :group 'org-agenda-daily/weekly
  795. :group 'org-agenda-todo-list
  796. :version "24.3"
  797. :type '(choice
  798. (const :tag "Do not dim" nil)
  799. (const :tag "Dim to a gray face" t)
  800. (const :tag "Make invisible" invisible)))
  801. (defcustom org-timeline-show-empty-dates 3
  802. "Non-nil means `org-timeline' also shows dates without an entry.
  803. When nil, only the days which actually have entries are shown.
  804. When t, all days between the first and the last date are shown.
  805. When an integer, show also empty dates, but if there is a gap of more than
  806. N days, just insert a special line indicating the size of the gap."
  807. :group 'org-agenda-skip
  808. :type '(choice
  809. (const :tag "None" nil)
  810. (const :tag "All" t)
  811. (integer :tag "at most")))
  812. (defgroup org-agenda-startup nil
  813. "Options concerning initial settings in the Agenda in Org Mode."
  814. :tag "Org Agenda Startup"
  815. :group 'org-agenda)
  816. (defcustom org-agenda-menu-show-matcher t
  817. "Non-nil means show the match string in the agenda dispatcher menu.
  818. When nil, the matcher string is not shown, but is put into the help-echo
  819. property so than moving the mouse over the command shows it.
  820. Setting it to nil is good if matcher strings are very long and/or if
  821. you want to use two-columns display (see `org-agenda-menu-two-columns')."
  822. :group 'org-agenda
  823. :version "24.1"
  824. :type 'boolean)
  825. (define-obsolete-variable-alias 'org-agenda-menu-two-column 'org-agenda-menu-two-columns "24.3")
  826. (defcustom org-agenda-menu-two-columns nil
  827. "Non-nil means, use two columns to show custom commands in the dispatcher.
  828. If you use this, you probably want to set `org-agenda-menu-show-matcher'
  829. to nil."
  830. :group 'org-agenda
  831. :version "24.1"
  832. :type 'boolean)
  833. (define-obsolete-variable-alias 'org-finalize-agenda-hook 'org-agenda-finalize-hook "24.3")
  834. (defcustom org-agenda-finalize-hook nil
  835. "Hook run just before displaying an agenda buffer.
  836. The buffer is still writable when the hook is called.
  837. You can modify some of the buffer substrings but you should be
  838. extra careful not to modify the text properties of the agenda
  839. headlines as the agenda display heavily relies on them."
  840. :group 'org-agenda-startup
  841. :type 'hook)
  842. (defcustom org-agenda-mouse-1-follows-link nil
  843. "Non-nil means mouse-1 on a link will follow the link in the agenda.
  844. A longer mouse click will still set point. Does not work on XEmacs.
  845. Needs to be set before org.el is loaded."
  846. :group 'org-agenda-startup
  847. :type 'boolean)
  848. (defcustom org-agenda-start-with-follow-mode nil
  849. "The initial value of follow mode in a newly created agenda window."
  850. :group 'org-agenda-startup
  851. :type 'boolean)
  852. (defcustom org-agenda-follow-indirect nil
  853. "Non-nil means `org-agenda-follow-mode' displays only the
  854. current item's tree, in an indirect buffer."
  855. :group 'org-agenda
  856. :version "24.1"
  857. :type 'boolean)
  858. (defcustom org-agenda-show-outline-path t
  859. "Non-nil means show outline path in echo area after line motion."
  860. :group 'org-agenda-startup
  861. :type 'boolean)
  862. (defcustom org-agenda-start-with-entry-text-mode nil
  863. "The initial value of entry-text-mode in a newly created agenda window."
  864. :group 'org-agenda-startup
  865. :type 'boolean)
  866. (defcustom org-agenda-entry-text-maxlines 5
  867. "Number of text lines to be added when `E' is pressed in the agenda.
  868. Note that this variable only used during agenda display. Add add entry text
  869. when exporting the agenda, configure the variable
  870. `org-agenda-add-entry-ext-maxlines'."
  871. :group 'org-agenda
  872. :type 'integer)
  873. (defcustom org-agenda-entry-text-exclude-regexps nil
  874. "List of regular expressions to clean up entry text.
  875. The complete matches of all regular expressions in this list will be
  876. removed from entry text before it is shown in the agenda."
  877. :group 'org-agenda
  878. :type '(repeat (regexp)))
  879. (defvar org-agenda-entry-text-cleanup-hook nil
  880. "Hook that is run after basic cleanup of entry text to be shown in agenda.
  881. This cleanup is done in a temporary buffer, so the function may inspect and
  882. change the entire buffer.
  883. Some default stuff like drawers and scheduling/deadline dates will already
  884. have been removed when this is called, as will any matches for regular
  885. expressions listed in `org-agenda-entry-text-exclude-regexps'.")
  886. (defvar org-agenda-include-inactive-timestamps nil
  887. "Non-nil means include inactive time stamps in agenda and timeline.
  888. Dynamically scoped.")
  889. (defgroup org-agenda-windows nil
  890. "Options concerning the windows used by the Agenda in Org Mode."
  891. :tag "Org Agenda Windows"
  892. :group 'org-agenda)
  893. (defcustom org-agenda-window-setup 'reorganize-frame
  894. "How the agenda buffer should be displayed.
  895. Possible values for this option are:
  896. current-window Show agenda in the current window, keeping all other windows.
  897. other-window Use `switch-to-buffer-other-window' to display agenda.
  898. reorganize-frame Show only two windows on the current frame, the current
  899. window and the agenda.
  900. other-frame Use `switch-to-buffer-other-frame' to display agenda.
  901. Also, when exiting the agenda, kill that frame.
  902. See also the variable `org-agenda-restore-windows-after-quit'."
  903. :group 'org-agenda-windows
  904. :type '(choice
  905. (const current-window)
  906. (const other-frame)
  907. (const other-window)
  908. (const reorganize-frame)))
  909. (defcustom org-agenda-window-frame-fractions '(0.5 . 0.75)
  910. "The min and max height of the agenda window as a fraction of frame height.
  911. The value of the variable is a cons cell with two numbers between 0 and 1.
  912. It only matters if `org-agenda-window-setup' is `reorganize-frame'."
  913. :group 'org-agenda-windows
  914. :type '(cons (number :tag "Minimum") (number :tag "Maximum")))
  915. (defcustom org-agenda-restore-windows-after-quit nil
  916. "Non-nil means restore window configuration upon exiting agenda.
  917. Before the window configuration is changed for displaying the agenda,
  918. the current status is recorded. When the agenda is exited with
  919. `q' or `x' and this option is set, the old state is restored. If
  920. `org-agenda-window-setup' is `other-frame', the value of this
  921. option will be ignored."
  922. :group 'org-agenda-windows
  923. :type 'boolean)
  924. (defcustom org-agenda-ndays nil
  925. "Number of days to include in overview display.
  926. Should be 1 or 7.
  927. Obsolete, see `org-agenda-span'."
  928. :group 'org-agenda-daily/weekly
  929. :type 'integer)
  930. (make-obsolete-variable 'org-agenda-ndays 'org-agenda-span "24.1")
  931. (defcustom org-agenda-span 'week
  932. "Number of days to include in overview display.
  933. Can be day, week, month, year, or any number of days.
  934. Custom commands can set this variable in the options section."
  935. :group 'org-agenda-daily/weekly
  936. :type '(choice (const :tag "Day" day)
  937. (const :tag "Week" week)
  938. (const :tag "Month" month)
  939. (const :tag "Year" year)
  940. (integer :tag "Custom")))
  941. (defcustom org-agenda-start-on-weekday 1
  942. "Non-nil means start the overview always on the specified weekday.
  943. 0 denotes Sunday, 1 denotes Monday etc.
  944. When nil, always start on the current day.
  945. Custom commands can set this variable in the options section."
  946. :group 'org-agenda-daily/weekly
  947. :type '(choice (const :tag "Today" nil)
  948. (integer :tag "Weekday No.")))
  949. (defcustom org-agenda-show-all-dates t
  950. "Non-nil means `org-agenda' shows every day in the selected range.
  951. When nil, only the days which actually have entries are shown."
  952. :group 'org-agenda-daily/weekly
  953. :type 'boolean)
  954. (defcustom org-agenda-format-date 'org-agenda-format-date-aligned
  955. "Format string for displaying dates in the agenda.
  956. Used by the daily/weekly agenda and by the timeline. This should be
  957. a format string understood by `format-time-string', or a function returning
  958. the formatted date as a string. The function must take a single argument,
  959. a calendar-style date list like (month day year)."
  960. :group 'org-agenda-daily/weekly
  961. :type '(choice
  962. (string :tag "Format string")
  963. (function :tag "Function")))
  964. (defun org-agenda-format-date-aligned (date)
  965. "Format a date string for display in the daily/weekly agenda, or timeline.
  966. This function makes sure that dates are aligned for easy reading."
  967. (require 'cal-iso)
  968. (let* ((dayname (calendar-day-name date))
  969. (day (cadr date))
  970. (day-of-week (calendar-day-of-week date))
  971. (month (car date))
  972. (monthname (calendar-month-name month))
  973. (year (nth 2 date))
  974. (iso-week (org-days-to-iso-week
  975. (calendar-absolute-from-gregorian date)))
  976. (weekyear (cond ((and (= month 1) (>= iso-week 52))
  977. (1- year))
  978. ((and (= month 12) (<= iso-week 1))
  979. (1+ year))
  980. (t year)))
  981. (weekstring (if (= day-of-week 1)
  982. (format " W%02d" iso-week)
  983. "")))
  984. (format "%-10s %2d %s %4d%s"
  985. dayname day monthname year weekstring)))
  986. (defcustom org-agenda-time-leading-zero nil
  987. "Non-nil means use leading zero for military times in agenda.
  988. For example, 9:30am would become 09:30 rather than 9:30."
  989. :group 'org-agenda-daily/weekly
  990. :version "24.1"
  991. :type 'boolean)
  992. (defcustom org-agenda-timegrid-use-ampm nil
  993. "When set, show AM/PM style timestamps on the timegrid."
  994. :group 'org-agenda
  995. :version "24.1"
  996. :type 'boolean)
  997. (defun org-agenda-time-of-day-to-ampm (time)
  998. "Convert TIME of a string like '13:45' to an AM/PM style time string."
  999. (let* ((hour-number (string-to-number (substring time 0 -3)))
  1000. (minute (substring time -2))
  1001. (ampm "am"))
  1002. (cond
  1003. ((equal hour-number 12)
  1004. (setq ampm "pm"))
  1005. ((> hour-number 12)
  1006. (setq ampm "pm")
  1007. (setq hour-number (- hour-number 12))))
  1008. (concat
  1009. (if org-agenda-time-leading-zero
  1010. (format "%02d" hour-number)
  1011. (format "%02s" (number-to-string hour-number)))
  1012. ":" minute ampm)))
  1013. (defun org-agenda-time-of-day-to-ampm-maybe (time)
  1014. "Conditionally convert TIME to AM/PM format
  1015. based on `org-agenda-timegrid-use-ampm'"
  1016. (if org-agenda-timegrid-use-ampm
  1017. (org-agenda-time-of-day-to-ampm time)
  1018. time))
  1019. (defcustom org-agenda-weekend-days '(6 0)
  1020. "Which days are weekend?
  1021. These days get the special face `org-agenda-date-weekend' in the agenda
  1022. and timeline buffers."
  1023. :group 'org-agenda-daily/weekly
  1024. :type '(set :greedy t
  1025. (const :tag "Monday" 1)
  1026. (const :tag "Tuesday" 2)
  1027. (const :tag "Wednesday" 3)
  1028. (const :tag "Thursday" 4)
  1029. (const :tag "Friday" 5)
  1030. (const :tag "Saturday" 6)
  1031. (const :tag "Sunday" 0)))
  1032. (defcustom org-agenda-move-date-from-past-immediately-to-today t
  1033. "Non-nil means jump to today when moving a past date forward in time.
  1034. When using S-right in the agenda to move a a date forward, and the date
  1035. stamp currently points to the past, the first key press will move it
  1036. to today. WHen nil, just move one day forward even if the date stays
  1037. in the past."
  1038. :group 'org-agenda-daily/weekly
  1039. :version "24.1"
  1040. :type 'boolean)
  1041. (defcustom org-agenda-include-diary nil
  1042. "If non-nil, include in the agenda entries from the Emacs Calendar's diary.
  1043. Custom commands can set this variable in the options section."
  1044. :group 'org-agenda-daily/weekly
  1045. :type 'boolean)
  1046. (defcustom org-agenda-include-deadlines t
  1047. "If non-nil, include entries within their deadline warning period.
  1048. Custom commands can set this variable in the options section."
  1049. :group 'org-agenda-daily/weekly
  1050. :version "24.1"
  1051. :type 'boolean)
  1052. (defcustom org-agenda-repeating-timestamp-show-all t
  1053. "Non-nil means show all occurrences of a repeating stamp in the agenda.
  1054. When set to a list of strings, only show occurrences of repeating
  1055. stamps for these TODO keywords. When nil, only one occurrence is
  1056. shown, either today or the nearest into the future."
  1057. :group 'org-agenda-daily/weekly
  1058. :type '(choice
  1059. (const :tag "Show repeating stamps" t)
  1060. (repeat :tag "Show repeating stamps for these TODO keywords"
  1061. (string :tag "TODO Keyword"))
  1062. (const :tag "Don't show repeating stamps" nil)))
  1063. (defcustom org-scheduled-past-days 10000
  1064. "No. of days to continue listing scheduled items that are not marked DONE.
  1065. When an item is scheduled on a date, it shows up in the agenda on this
  1066. day and will be listed until it is marked done for the number of days
  1067. given here."
  1068. :group 'org-agenda-daily/weekly
  1069. :type 'integer)
  1070. (defcustom org-agenda-log-mode-items '(closed clock)
  1071. "List of items that should be shown in agenda log mode.
  1072. This list may contain the following symbols:
  1073. closed Show entries that have been closed on that day.
  1074. clock Show entries that have received clocked time on that day.
  1075. state Show all logged state changes.
  1076. Note that instead of changing this variable, you can also press `C-u l' in
  1077. the agenda to display all available LOG items temporarily."
  1078. :group 'org-agenda-daily/weekly
  1079. :type '(set :greedy t (const closed) (const clock) (const state)))
  1080. (defcustom org-agenda-clock-consistency-checks
  1081. '(:max-duration "10:00" :min-duration 0 :max-gap "0:05"
  1082. :gap-ok-around ("4:00")
  1083. :default-face ((:background "DarkRed") (:foreground "white"))
  1084. :overlap-face nil :gap-face nil :no-end-time-face nil
  1085. :long-face nil :short-face nil)
  1086. "This is a property list, with the following keys:
  1087. :max-duration Mark clocking chunks that are longer than this time.
  1088. This is a time string like \"HH:MM\", or the number
  1089. of minutes as an integer.
  1090. :min-duration Mark clocking chunks that are shorter that this.
  1091. This is a time string like \"HH:MM\", or the number
  1092. of minutes as an integer.
  1093. :max-gap Mark gaps between clocking chunks that are longer than
  1094. this duration. A number of minutes, or a string
  1095. like \"HH:MM\".
  1096. :gap-ok-around List of times during the day which are usually not working
  1097. times. When a gap is detected, but the gap contains any
  1098. of these times, the gap is *not* reported. For example,
  1099. if this is (\"4:00\" \"13:00\") then gaps that contain
  1100. 4:00 in the morning (i.e. the night) and 13:00
  1101. (i.e. a typical lunch time) do not cause a warning.
  1102. You should have at least one time during the night in this
  1103. list, or otherwise the first task each morning will trigger
  1104. a warning because it follows a long gap.
  1105. Furthermore, the following properties can be used to define faces for
  1106. issue display.
  1107. :default-face the default face, if the specific face is undefined
  1108. :overlap-face face for overlapping clocks
  1109. :gap-face face for gaps between clocks
  1110. :no-end-time-face face for incomplete clocks
  1111. :long-face face for clock intervals that are too long
  1112. :short-face face for clock intervals that are too short"
  1113. :group 'org-agenda-daily/weekly
  1114. :group 'org-clock
  1115. :version "24.1"
  1116. :type 'plist)
  1117. (defcustom org-agenda-log-mode-add-notes t
  1118. "Non-nil means add first line of notes to log entries in agenda views.
  1119. If a log item like a state change or a clock entry is associated with
  1120. notes, the first line of these notes will be added to the entry in the
  1121. agenda display."
  1122. :group 'org-agenda-daily/weekly
  1123. :type 'boolean)
  1124. (defcustom org-agenda-start-with-log-mode nil
  1125. "The initial value of log-mode in a newly created agenda window.
  1126. See `org-agenda-log-mode' and `org-agenda-log-mode-items' for further
  1127. explanations on the possible values."
  1128. :group 'org-agenda-startup
  1129. :group 'org-agenda-daily/weekly
  1130. :type '(choice (const :tag "Don't show log items" nil)
  1131. (const :tag "Show only log items" 'only)
  1132. (const :tag "Show all possible log items" 'clockcheck)
  1133. (repeat :tag "Choose among possible values for `org-agenda-log-mode-items'"
  1134. (choice (const :tag "Show closed log items" 'closed)
  1135. (const :tag "Show clocked log items" 'clock)
  1136. (const :tag "Show all logged state changes" 'state)))))
  1137. (defcustom org-agenda-start-with-clockreport-mode nil
  1138. "The initial value of clockreport-mode in a newly created agenda window."
  1139. :group 'org-agenda-startup
  1140. :group 'org-agenda-daily/weekly
  1141. :type 'boolean)
  1142. (defcustom org-agenda-clockreport-parameter-plist '(:link t :maxlevel 2)
  1143. "Property list with parameters for the clocktable in clockreport mode.
  1144. This is the display mode that shows a clock table in the daily/weekly
  1145. agenda, the properties for this dynamic block can be set here.
  1146. The usual clocktable parameters are allowed here, but you cannot set
  1147. the properties :name, :tstart, :tend, :block, and :scope - these will
  1148. be overwritten to make sure the content accurately reflects the
  1149. current display in the agenda."
  1150. :group 'org-agenda-daily/weekly
  1151. :type 'plist)
  1152. (defcustom org-agenda-search-view-always-boolean nil
  1153. "Non-nil means the search string is interpreted as individual parts.
  1154. The search string for search view can either be interpreted as a phrase,
  1155. or as a list of snippets that define a boolean search for a number of
  1156. strings.
  1157. When this is non-nil, the string will be split on whitespace, and each
  1158. snippet will be searched individually, and all must match in order to
  1159. select an entry. A snippet is then a single string of non-white
  1160. characters, or a string in double quotes, or a regexp in {} braces.
  1161. If a snippet is preceded by \"-\", the snippet must *not* match.
  1162. \"+\" is syntactic sugar for positive selection. Each snippet may
  1163. be found as a full word or a partial word, but see the variable
  1164. `org-agenda-search-view-force-full-words'.
  1165. When this is nil, search will look for the entire search phrase as one,
  1166. with each space character matching any amount of whitespace, including
  1167. line breaks.
  1168. Even when this is nil, you can still switch to Boolean search dynamically
  1169. by preceding the first snippet with \"+\" or \"-\". If the first snippet
  1170. is a regexp marked with braces like \"{abc}\", this will also switch to
  1171. boolean search."
  1172. :group 'org-agenda-search-view
  1173. :version "24.1"
  1174. :type 'boolean)
  1175. (if (fboundp 'defvaralias)
  1176. (defvaralias 'org-agenda-search-view-search-words-only
  1177. 'org-agenda-search-view-always-boolean))
  1178. (defcustom org-agenda-search-view-force-full-words nil
  1179. "Non-nil means, search words must be matches as complete words.
  1180. When nil, they may also match part of a word."
  1181. :group 'org-agenda-search-view
  1182. :version "24.1"
  1183. :type 'boolean)
  1184. (defcustom org-agenda-search-view-max-outline-level nil
  1185. "Maximum outline level to display in search view.
  1186. E.g. when this is set to 1, the search view will only
  1187. show headlines of level 1."
  1188. :group 'org-agenda-search-view
  1189. :version "24.3"
  1190. :type 'integer)
  1191. (defgroup org-agenda-time-grid nil
  1192. "Options concerning the time grid in the Org-mode Agenda."
  1193. :tag "Org Agenda Time Grid"
  1194. :group 'org-agenda)
  1195. (defcustom org-agenda-search-headline-for-time t
  1196. "Non-nil means search headline for a time-of-day.
  1197. If the headline contains a time-of-day in one format or another, it will
  1198. be used to sort the entry into the time sequence of items for a day.
  1199. Some people have time stamps in the headline that refer to the creation
  1200. time or so, and then this produces an unwanted side effect. If this is
  1201. the case for your, use this variable to turn off searching the headline
  1202. for a time."
  1203. :group 'org-agenda-time-grid
  1204. :type 'boolean)
  1205. (defcustom org-agenda-use-time-grid t
  1206. "Non-nil means show a time grid in the agenda schedule.
  1207. A time grid is a set of lines for specific times (like every two hours between
  1208. 8:00 and 20:00). The items scheduled for a day at specific times are
  1209. sorted in between these lines.
  1210. For details about when the grid will be shown, and what it will look like, see
  1211. the variable `org-agenda-time-grid'."
  1212. :group 'org-agenda-time-grid
  1213. :type 'boolean)
  1214. (defcustom org-agenda-time-grid
  1215. '((daily today require-timed)
  1216. "----------------"
  1217. (800 1000 1200 1400 1600 1800 2000))
  1218. "The settings for time grid for agenda display.
  1219. This is a list of three items. The first item is again a list. It contains
  1220. symbols specifying conditions when the grid should be displayed:
  1221. daily if the agenda shows a single day
  1222. weekly if the agenda shows an entire week
  1223. today show grid on current date, independent of daily/weekly display
  1224. require-timed show grid only if at least one item has a time specification
  1225. The second item is a string which will be placed behind the grid time.
  1226. The third item is a list of integers, indicating the times that should have
  1227. a grid line."
  1228. :group 'org-agenda-time-grid
  1229. :type
  1230. '(list
  1231. (set :greedy t :tag "Grid Display Options"
  1232. (const :tag "Show grid in single day agenda display" daily)
  1233. (const :tag "Show grid in weekly agenda display" weekly)
  1234. (const :tag "Always show grid for today" today)
  1235. (const :tag "Show grid only if any timed entries are present"
  1236. require-timed)
  1237. (const :tag "Skip grid times already present in an entry"
  1238. remove-match))
  1239. (string :tag "Grid String")
  1240. (repeat :tag "Grid Times" (integer :tag "Time"))))
  1241. (defcustom org-agenda-show-current-time-in-grid t
  1242. "Non-nil means show the current time in the time grid."
  1243. :group 'org-agenda-time-grid
  1244. :version "24.1"
  1245. :type 'boolean)
  1246. (defcustom org-agenda-current-time-string
  1247. "now - - - - - - - - - - - - - - - - - - - - - - - - -"
  1248. "The string for the current time marker in the agenda."
  1249. :group 'org-agenda-time-grid
  1250. :version "24.1"
  1251. :type 'string)
  1252. (defgroup org-agenda-sorting nil
  1253. "Options concerning sorting in the Org-mode Agenda."
  1254. :tag "Org Agenda Sorting"
  1255. :group 'org-agenda)
  1256. (defcustom org-agenda-sorting-strategy
  1257. '((agenda habit-down time-up priority-down category-keep)
  1258. (todo priority-down category-keep)
  1259. (tags priority-down category-keep)
  1260. (search category-keep))
  1261. "Sorting structure for the agenda items of a single day.
  1262. This is a list of symbols which will be used in sequence to determine
  1263. if an entry should be listed before another entry. The following
  1264. symbols are recognized:
  1265. time-up Put entries with time-of-day indications first, early first
  1266. time-down Put entries with time-of-day indications first, late first
  1267. timestamp-up Sort by any timestamp, early first
  1268. timestamp-down Sort by any timestamp, late first
  1269. scheduled-up Sort by scheduled timestamp, early first
  1270. scheduled-down Sort by scheduled timestamp, late first
  1271. deadline-up Sort by deadline timestamp, early first
  1272. deadline-down Sort by deadline timestamp, late first
  1273. ts-up Sort by active timestamp, early first
  1274. ts-down Sort by active timestamp, late first
  1275. tsia-up Sort by inactive timestamp, early first
  1276. tsia-down Sort by inactive timestamp, late first
  1277. category-keep Keep the default order of categories, corresponding to the
  1278. sequence in `org-agenda-files'.
  1279. category-up Sort alphabetically by category, A-Z.
  1280. category-down Sort alphabetically by category, Z-A.
  1281. tag-up Sort alphabetically by last tag, A-Z.
  1282. tag-down Sort alphabetically by last tag, Z-A.
  1283. priority-up Sort numerically by priority, high priority last.
  1284. priority-down Sort numerically by priority, high priority first.
  1285. todo-state-up Sort by todo state, tasks that are done last.
  1286. todo-state-down Sort by todo state, tasks that are done first.
  1287. effort-up Sort numerically by estimated effort, high effort last.
  1288. effort-down Sort numerically by estimated effort, high effort first.
  1289. user-defined-up Sort according to `org-agenda-cmp-user-defined', high last.
  1290. user-defined-down Sort according to `org-agenda-cmp-user-defined', high first.
  1291. habit-up Put entries that are habits first
  1292. habit-down Put entries that are habits last
  1293. alpha-up Sort headlines alphabetically
  1294. alpha-down Sort headlines alphabetically, reversed
  1295. The different possibilities will be tried in sequence, and testing stops
  1296. if one comparison returns a \"not-equal\". For example, the default
  1297. '(time-up category-keep priority-down)
  1298. means: Pull out all entries having a specified time of day and sort them,
  1299. in order to make a time schedule for the current day the first thing in the
  1300. agenda listing for the day. Of the entries without a time indication, keep
  1301. the grouped in categories, don't sort the categories, but keep them in
  1302. the sequence given in `org-agenda-files'. Within each category sort by
  1303. priority.
  1304. Leaving out `category-keep' would mean that items will be sorted across
  1305. categories by priority.
  1306. Instead of a single list, this can also be a set of list for specific
  1307. contents, with a context symbol in the car of the list, any of
  1308. `agenda', `todo', `tags', `search' for the corresponding agenda views.
  1309. Custom commands can bind this variable in the options section."
  1310. :group 'org-agenda-sorting
  1311. :type `(choice
  1312. (repeat :tag "General" ,org-sorting-choice)
  1313. (list :tag "Individually"
  1314. (cons (const :tag "Strategy for Weekly/Daily agenda" agenda)
  1315. (repeat ,org-sorting-choice))
  1316. (cons (const :tag "Strategy for TODO lists" todo)
  1317. (repeat ,org-sorting-choice))
  1318. (cons (const :tag "Strategy for Tags matches" tags)
  1319. (repeat ,org-sorting-choice))
  1320. (cons (const :tag "Strategy for search matches" search)
  1321. (repeat ,org-sorting-choice)))))
  1322. (defcustom org-agenda-cmp-user-defined nil
  1323. "A function to define the comparison `user-defined'.
  1324. This function must receive two arguments, agenda entry a and b.
  1325. If a>b, return +1. If a<b, return -1. If they are equal as seen by
  1326. the user comparison, return nil.
  1327. When this is defined, you can make `user-defined-up' and `user-defined-down'
  1328. part of an agenda sorting strategy."
  1329. :group 'org-agenda-sorting
  1330. :type 'symbol)
  1331. (defcustom org-sort-agenda-notime-is-late t
  1332. "Non-nil means items without time are considered late.
  1333. This is only relevant for sorting. When t, items which have no explicit
  1334. time like 15:30 will be considered as 99:01, i.e. later than any items which
  1335. do have a time. When nil, the default time is before 0:00. You can use this
  1336. option to decide if the schedule for today should come before or after timeless
  1337. agenda entries."
  1338. :group 'org-agenda-sorting
  1339. :type 'boolean)
  1340. (defcustom org-sort-agenda-noeffort-is-high t
  1341. "Non-nil means items without effort estimate are sorted as high effort.
  1342. This also applies when filtering an agenda view with respect to the
  1343. < or > effort operator. Then, tasks with no effort defined will be treated
  1344. as tasks with high effort.
  1345. When nil, such items are sorted as 0 minutes effort."
  1346. :group 'org-agenda-sorting
  1347. :type 'boolean)
  1348. (defgroup org-agenda-line-format nil
  1349. "Options concerning the entry prefix in the Org-mode agenda display."
  1350. :tag "Org Agenda Line Format"
  1351. :group 'org-agenda)
  1352. (defcustom org-agenda-prefix-format
  1353. '((agenda . " %i %-12:c%?-12t% s")
  1354. (timeline . " % s")
  1355. (todo . " %i %-12:c")
  1356. (tags . " %i %-12:c")
  1357. (search . " %i %-12:c"))
  1358. "Format specifications for the prefix of items in the agenda views.
  1359. An alist with five entries, each for the different agenda types. The
  1360. keys of the sublists are `agenda', `timeline', `todo', `search' and `tags'.
  1361. The values are format strings.
  1362. This format works similar to a printf format, with the following meaning:
  1363. %c the category of the item, \"Diary\" for entries from the diary,
  1364. or as given by the CATEGORY keyword or derived from the file name
  1365. %e the effort required by the item
  1366. %l the level of the item (insert X space(s) if item is of level X)
  1367. %i the icon category of the item, see `org-agenda-category-icon-alist'
  1368. %T the last tag of the item (ignore inherited tags, which come first)
  1369. %t the HH:MM time-of-day specification if one applies to the entry
  1370. %s Scheduling/Deadline information, a short string
  1371. %b show breadcrumbs, i.e., the names of the higher levels
  1372. %(expression) Eval EXPRESSION and replace the control string
  1373. by the result
  1374. All specifiers work basically like the standard `%s' of printf, but may
  1375. contain two additional characters: a question mark just after the `%'
  1376. and a whitespace/punctuation character just before the final letter.
  1377. If the first character after `%' is a question mark, the entire field
  1378. will only be included if the corresponding value applies to the current
  1379. entry. This is useful for fields which should have fixed width when
  1380. present, but zero width when absent. For example, \"%?-12t\" will
  1381. result in a 12 character time field if a time of the day is specified,
  1382. but will completely disappear in entries which do not contain a time.
  1383. If there is punctuation or whitespace character just before the final
  1384. format letter, this character will be appended to the field value if
  1385. the value is not empty. For example, the format \"%-12:c\" leads to
  1386. \"Diary: \" if the category is \"Diary\". If the category were be
  1387. empty, no additional colon would be inserted.
  1388. The default value for the agenda sublist is \" %-12:c%?-12t% s\",
  1389. which means:
  1390. - Indent the line with two space characters
  1391. - Give the category a 12 chars wide field, padded with whitespace on
  1392. the right (because of `-'). Append a colon if there is a category
  1393. (because of `:').
  1394. - If there is a time-of-day, put it into a 12 chars wide field. If no
  1395. time, don't put in an empty field, just skip it (because of '?').
  1396. - Finally, put the scheduling information.
  1397. See also the variables `org-agenda-remove-times-when-in-prefix' and
  1398. `org-agenda-remove-tags'.
  1399. Custom commands can set this variable in the options section."
  1400. :type '(choice
  1401. (string :tag "General format")
  1402. (list :greedy t :tag "View dependent"
  1403. (cons (const agenda) (string :tag "Format"))
  1404. (cons (const timeline) (string :tag "Format"))
  1405. (cons (const todo) (string :tag "Format"))
  1406. (cons (const tags) (string :tag "Format"))
  1407. (cons (const search) (string :tag "Format"))))
  1408. :group 'org-agenda-line-format)
  1409. (defvar org-prefix-format-compiled nil
  1410. "The compiled prefix format and associated variables.
  1411. This is a list where first element is a list of variable bindings, and second
  1412. element is the compiled format expression. See the variable
  1413. `org-agenda-prefix-format'.")
  1414. (defcustom org-agenda-todo-keyword-format "%-1s"
  1415. "Format for the TODO keyword in agenda lines.
  1416. Set this to something like \"%-12s\" if you want all TODO keywords
  1417. to occupy a fixed space in the agenda display."
  1418. :group 'org-agenda-line-format
  1419. :type 'string)
  1420. (defcustom org-agenda-diary-sexp-prefix nil
  1421. "A regexp that matches part of a diary sexp entry
  1422. which should be treated as scheduling/deadline information in
  1423. `org-agenda'.
  1424. For example, you can use this to extract the `diary-remind-message' from
  1425. `diary-remind' entries."
  1426. :group 'org-agenda-line-format
  1427. :type '(choice (const :tag "None" nil) (regexp :tag "Regexp")))
  1428. (defcustom org-agenda-timerange-leaders '("" "(%d/%d): ")
  1429. "Text preceding timerange entries in the agenda view.
  1430. This is a list with two strings. The first applies when the range
  1431. is entirely on one day. The second applies if the range spans several days.
  1432. The strings may have two \"%d\" format specifiers which will be filled
  1433. with the sequence number of the days, and the total number of days in the
  1434. range, respectively."
  1435. :group 'org-agenda-line-format
  1436. :type '(list
  1437. (string :tag "Deadline today ")
  1438. (choice :tag "Deadline relative"
  1439. (string :tag "Format string")
  1440. (function))))
  1441. (defcustom org-agenda-scheduled-leaders '("Scheduled: " "Sched.%2dx: ")
  1442. "Text preceding scheduled items in the agenda view.
  1443. This is a list with two strings. The first applies when the item is
  1444. scheduled on the current day. The second applies when it has been scheduled
  1445. previously, it may contain a %d indicating that this is the nth time that
  1446. this item is scheduled, due to automatic rescheduling of unfinished items
  1447. for the following day. So this number is one larger than the number of days
  1448. that passed since this item was scheduled first."
  1449. :group 'org-agenda-line-format
  1450. :type '(list
  1451. (string :tag "Scheduled today ")
  1452. (string :tag "Scheduled previously")))
  1453. (defcustom org-agenda-inactive-leader "["
  1454. "Text preceding item pulled into the agenda by inactive time stamps.
  1455. These entries are added to the agenda when pressing \"[\"."
  1456. :group 'org-agenda-line-format
  1457. :version "24.1"
  1458. :type '(list
  1459. (string :tag "Scheduled today ")
  1460. (string :tag "Scheduled previously")))
  1461. (defcustom org-agenda-deadline-leaders '("Deadline: " "In %3d d.: ")
  1462. "Text preceding deadline items in the agenda view.
  1463. This is a list with two strings. The first applies when the item has its
  1464. deadline on the current day. The second applies when it is in the past or
  1465. in the future, it may contain %d to capture how many days away the deadline
  1466. is (was)."
  1467. :group 'org-agenda-line-format
  1468. :type '(list
  1469. (string :tag "Deadline today ")
  1470. (choice :tag "Deadline relative"
  1471. (string :tag "Format string")
  1472. (function))))
  1473. (defcustom org-agenda-remove-times-when-in-prefix t
  1474. "Non-nil means remove duplicate time specifications in agenda items.
  1475. When the format `org-agenda-prefix-format' contains a `%t' specifier, a
  1476. time-of-day specification in a headline or diary entry is extracted and
  1477. placed into the prefix. If this option is non-nil, the original specification
  1478. \(a timestamp or -range, or just a plain time(range) specification like
  1479. 11:30-4pm) will be removed for agenda display. This makes the agenda less
  1480. cluttered.
  1481. The option can be t or nil. It may also be the symbol `beg', indicating
  1482. that the time should only be removed when it is located at the beginning of
  1483. the headline/diary entry."
  1484. :group 'org-agenda-line-format
  1485. :type '(choice
  1486. (const :tag "Always" t)
  1487. (const :tag "Never" nil)
  1488. (const :tag "When at beginning of entry" beg)))
  1489. (defcustom org-agenda-remove-timeranges-from-blocks nil
  1490. "Non-nil means remove time ranges specifications in agenda
  1491. items that span on several days."
  1492. :group 'org-agenda-line-format
  1493. :version "24.1"
  1494. :type 'boolean)
  1495. (defcustom org-agenda-default-appointment-duration nil
  1496. "Default duration for appointments that only have a starting time.
  1497. When nil, no duration is specified in such cases.
  1498. When non-nil, this must be the number of minutes, e.g. 60 for one hour."
  1499. :group 'org-agenda-line-format
  1500. :type '(choice
  1501. (integer :tag "Minutes")
  1502. (const :tag "No default duration")))
  1503. (defcustom org-agenda-show-inherited-tags t
  1504. "Non-nil means show inherited tags in each agenda line.
  1505. When this option is set to 'always, it take precedences over
  1506. `org-agenda-use-tag-inheritance' and inherited tags are shown
  1507. in every agenda.
  1508. When this option is set to t (the default), inherited tags are
  1509. shown when they are available, i.e. when the value of
  1510. `org-agenda-use-tag-inheritance' has been taken into account.
  1511. This can be set to a list of agenda types in which the agenda
  1512. must display the inherited tags. Available types are 'todo,
  1513. 'agenda, 'search and 'timeline.
  1514. When set to nil, never show inherited tags in agenda lines."
  1515. :group 'org-agenda-line-format
  1516. :group 'org-agenda
  1517. :version "24.3"
  1518. :type '(choice
  1519. (const :tag "Show inherited tags when available" t)
  1520. (const :tag "Always show inherited tags" 'always)
  1521. (repeat :tag "Show inherited tags only in selected agenda types"
  1522. (symbol :tag "Agenda type"))))
  1523. (defcustom org-agenda-use-tag-inheritance '(todo search timeline agenda)
  1524. "List of agenda view types where to use tag inheritance.
  1525. In tags/tags-todo/tags-tree agenda views, tag inheritance is
  1526. controlled by `org-use-tag-inheritance'. In other agenda types,
  1527. `org-use-tag-inheritance' is not used for the selection of the
  1528. agenda entries. Still, you may want the agenda to be aware of
  1529. the inherited tags anyway, e.g. for later tag filtering.
  1530. Allowed value are 'todo, 'search, 'timeline and 'agenda.
  1531. This variable has no effect if `org-agenda-show-inherited-tags'
  1532. is set to 'always. In that case, the agenda is aware of those
  1533. tags.
  1534. The default value sets tags in every agenda type. Setting this
  1535. option to nil will speed up non-tags agenda view a lot."
  1536. :group 'org-agenda
  1537. :version "24.3"
  1538. :type '(choice
  1539. (const :tag "Use tag inheritance in all agenda types" t)
  1540. (repeat :tag "Use tag inheritance in selected agenda types"
  1541. (symbol :tag "Agenda type"))))
  1542. (defcustom org-agenda-hide-tags-regexp nil
  1543. "Regular expression used to filter away specific tags in agenda views.
  1544. This means that these tags will be present, but not be shown in the agenda
  1545. line. Secondary filtering will still work on the hidden tags.
  1546. Nil means don't hide any tags."
  1547. :group 'org-agenda-line-format
  1548. :type '(choice
  1549. (const :tag "Hide none" nil)
  1550. (string :tag "Regexp ")))
  1551. (defcustom org-agenda-remove-tags nil
  1552. "Non-nil means remove the tags from the headline copy in the agenda.
  1553. When this is the symbol `prefix', only remove tags when
  1554. `org-agenda-prefix-format' contains a `%T' specifier."
  1555. :group 'org-agenda-line-format
  1556. :type '(choice
  1557. (const :tag "Always" t)
  1558. (const :tag "Never" nil)
  1559. (const :tag "When prefix format contains %T" prefix)))
  1560. (if (fboundp 'defvaralias)
  1561. (defvaralias 'org-agenda-remove-tags-when-in-prefix
  1562. 'org-agenda-remove-tags))
  1563. (defcustom org-agenda-tags-column (if (featurep 'xemacs) -79 -80)
  1564. "Shift tags in agenda items to this column.
  1565. If this number is positive, it specifies the column. If it is negative,
  1566. it means that the tags should be flushright to that column. For example,
  1567. -80 works well for a normal 80 character screen."
  1568. :group 'org-agenda-line-format
  1569. :type 'integer)
  1570. (if (fboundp 'defvaralias)
  1571. (defvaralias 'org-agenda-align-tags-to-column 'org-agenda-tags-column))
  1572. (defcustom org-agenda-fontify-priorities 'cookies
  1573. "Non-nil means highlight low and high priorities in agenda.
  1574. When t, the highest priority entries are bold, lowest priority italic.
  1575. However, settings in `org-priority-faces' will overrule these faces.
  1576. When this variable is the symbol `cookies', only fontify the
  1577. cookies, not the entire task.
  1578. This may also be an association list of priority faces, whose
  1579. keys are the character values of `org-highest-priority',
  1580. `org-default-priority', and `org-lowest-priority' (the default values
  1581. are ?A, ?B, and ?C, respectively). The face may be a named face, a
  1582. color as a string, or a list like `(:background \"Red\")'.
  1583. If it is a color, the variable `org-faces-easy-properties'
  1584. determines if it is a foreground or a background color."
  1585. :group 'org-agenda-line-format
  1586. :type '(choice
  1587. (const :tag "Never" nil)
  1588. (const :tag "Defaults" t)
  1589. (const :tag "Cookies only" cookies)
  1590. (repeat :tag "Specify"
  1591. (list (character :tag "Priority" :value ?A)
  1592. (choice :tag "Face "
  1593. (string :tag "Color")
  1594. (sexp :tag "Face"))))))
  1595. (defcustom org-agenda-day-face-function nil
  1596. "Function called to determine what face should be used to display a day.
  1597. The only argument passed to that function is the day. It should
  1598. returns a face, or nil if does not want to specify a face and let
  1599. the normal rules apply."
  1600. :group 'org-agenda-line-format
  1601. :version "24.1"
  1602. :type 'function)
  1603. (defcustom org-agenda-category-icon-alist nil
  1604. "Alist of category icon to be displayed in agenda views.
  1605. Each entry should have the following format:
  1606. (CATEGORY-REGEXP FILE-OR-DATA TYPE DATA-P PROPS)
  1607. Where CATEGORY-REGEXP is a regexp matching the categories where
  1608. the icon should be displayed.
  1609. FILE-OR-DATA either a file path or a string containing image data.
  1610. The other fields can be omitted safely if not needed:
  1611. TYPE indicates the image type.
  1612. DATA-P is a boolean indicating whether the FILE-OR-DATA string is
  1613. image data.
  1614. PROPS are additional image attributes to assign to the image,
  1615. like, e.g. `:ascent center'.
  1616. (\"Org\" \"/path/to/icon.png\" nil nil :ascent center)
  1617. If you want to set the display properties yourself, just put a
  1618. list as second element:
  1619. (CATEGORY-REGEXP (MY PROPERTY LIST))
  1620. For example, to display a 16px horizontal space for Emacs
  1621. category, you can use:
  1622. (\"Emacs\" '(space . (:width (16))))"
  1623. :group 'org-agenda-line-format
  1624. :version "24.1"
  1625. :type '(alist :key-type (string :tag "Regexp matching category")
  1626. :value-type (choice (list :tag "Icon"
  1627. (string :tag "File or data")
  1628. (symbol :tag "Type")
  1629. (boolean :tag "Data?")
  1630. (repeat :tag "Extra image properties" :inline t symbol))
  1631. (list :tag "Display properties" sexp))))
  1632. (defgroup org-agenda-column-view nil
  1633. "Options concerning column view in the agenda."
  1634. :tag "Org Agenda Column View"
  1635. :group 'org-agenda)
  1636. (defcustom org-agenda-columns-show-summaries t
  1637. "Non-nil means show summaries for columns displayed in the agenda view."
  1638. :group 'org-agenda-column-view
  1639. :type 'boolean)
  1640. (defcustom org-agenda-columns-compute-summary-properties t
  1641. "Non-nil means recompute all summary properties before column view.
  1642. When column view in the agenda is listing properties that have a summary
  1643. operator, it can go to all relevant buffers and recompute the summaries
  1644. there. This can mean overhead for the agenda column view, but is necessary
  1645. to have thing up to date.
  1646. As a special case, a CLOCKSUM property also makes sure that the clock
  1647. computations are current."
  1648. :group 'org-agenda-column-view
  1649. :type 'boolean)
  1650. (defcustom org-agenda-columns-add-appointments-to-effort-sum nil
  1651. "Non-nil means the duration of an appointment will add to day effort.
  1652. The property to which appointment durations will be added is the one given
  1653. in the option `org-effort-property'. If an appointment does not have
  1654. an end time, `org-agenda-default-appointment-duration' will be used. If that
  1655. is not set, an appointment without end time will not contribute to the time
  1656. estimate."
  1657. :group 'org-agenda-column-view
  1658. :type 'boolean)
  1659. (defcustom org-agenda-auto-exclude-function nil
  1660. "A function called with a tag to decide if it is filtered on '/ RET'.
  1661. The sole argument to the function, which is called once for each
  1662. possible tag, is a string giving the name of the tag. The
  1663. function should return either nil if the tag should be included
  1664. as normal, or \"-<TAG>\" to exclude the tag.
  1665. Note that for the purpose of tag filtering, only the lower-case version of
  1666. all tags will be considered, so that this function will only ever see
  1667. the lower-case version of all tags."
  1668. :group 'org-agenda
  1669. :type 'function)
  1670. (defcustom org-agenda-bulk-custom-functions nil
  1671. "Alist of characters and custom functions for bulk actions.
  1672. For example, this value makes those two functions available:
  1673. '((?R set-category)
  1674. (?C bulk-cut))
  1675. With selected entries in an agenda buffer, `B R' will call
  1676. the custom function `set-category' on the selected entries.
  1677. Note that functions in this alist don't need to be quoted."
  1678. :type 'alist
  1679. :version "24.1"
  1680. :group 'org-agenda)
  1681. (defmacro org-agenda-with-point-at-orig-entry (string &rest body)
  1682. "Execute BODY with point at location given by `org-hd-marker' property.
  1683. If STRING is non-nil, the text property will be fetched from position 0
  1684. in that string. If STRING is nil, it will be fetched from the beginning
  1685. of the current line."
  1686. (org-with-gensyms (marker)
  1687. `(let ((,marker (get-text-property (if string 0 (point-at-bol))
  1688. 'org-hd-marker ,string)))
  1689. (with-current-buffer (marker-buffer ,marker)
  1690. (save-excursion
  1691. (goto-char ,marker)
  1692. ,@body)))))
  1693. (def-edebug-spec org-agenda-with-point-at-orig-entry (form body))
  1694. (defun org-add-agenda-custom-command (entry)
  1695. "Replace or add a command in `org-agenda-custom-commands'.
  1696. This is mostly for hacking and trying a new command - once the command
  1697. works you probably want to add it to `org-agenda-custom-commands' for good."
  1698. (let ((ass (assoc (car entry) org-agenda-custom-commands)))
  1699. (if ass
  1700. (setcdr ass (cdr entry))
  1701. (push entry org-agenda-custom-commands))))
  1702. ;;; Define the org-agenda-mode
  1703. (defvar org-agenda-mode-map (make-sparse-keymap)
  1704. "Keymap for `org-agenda-mode'.")
  1705. (if (fboundp 'defvaralias)
  1706. (defvaralias 'org-agenda-keymap 'org-agenda-mode-map))
  1707. (defvar org-agenda-menu) ; defined later in this file.
  1708. (defvar org-agenda-restrict nil) ; defined later in this file.
  1709. (defvar org-agenda-follow-mode nil)
  1710. (defvar org-agenda-entry-text-mode nil)
  1711. (defvar org-agenda-clockreport-mode nil)
  1712. (defvar org-agenda-show-log nil)
  1713. (defvar org-agenda-redo-command nil)
  1714. (defvar org-agenda-query-string nil)
  1715. (defvar org-agenda-mode-hook nil
  1716. "Hook run after `org-agenda-mode' is turned on.
  1717. The buffer is still writable when this hook is called.")
  1718. (defvar org-agenda-type nil)
  1719. (defvar org-agenda-force-single-file nil)
  1720. (defvar org-agenda-bulk-marked-entries nil
  1721. "List of markers that refer to marked entries in the agenda.")
  1722. ;;; Multiple agenda buffers support
  1723. (defcustom org-agenda-sticky nil
  1724. "Non-nil means agenda q key will bury agenda buffers.
  1725. Agenda commands will then show existing buffer instead of generating new ones.
  1726. When nil, `q' will kill the single agenda buffer."
  1727. :group 'org-agenda
  1728. :version "24.3"
  1729. :type 'boolean)
  1730. ;;;###autoload
  1731. (defun org-toggle-sticky-agenda (&optional arg)
  1732. "Toggle `org-agenda-sticky'."
  1733. (interactive "P")
  1734. (let ((new-value (if arg
  1735. (> (prefix-numeric-value arg) 0)
  1736. (not org-agenda-sticky))))
  1737. (if (equal new-value org-agenda-sticky)
  1738. (and (org-called-interactively-p 'interactive)
  1739. (message "Sticky agenda was already %s"
  1740. (if org-agenda-sticky "enabled" "disabled")))
  1741. (setq org-agenda-sticky new-value)
  1742. (org-agenda-kill-all-agenda-buffers)
  1743. (and (org-called-interactively-p 'interactive)
  1744. (message "Sticky agenda was %s"
  1745. (if org-agenda-sticky "enabled" "disabled"))))))
  1746. (autoload 'org-toggle-sticky-agenda "org-agenda" "\
  1747. Toggle `org-agenda-sticky'.
  1748. \(fn &optional ARG)" t nil)
  1749. (defvar org-agenda-buffer nil
  1750. "Agenda buffer currently being generated.")
  1751. (defvar org-agenda-last-prefix-arg nil)
  1752. (defvar org-agenda-this-buffer-name nil)
  1753. (defvar org-agenda-doing-sticky-redo nil)
  1754. (defvar org-agenda-this-buffer-is-sticky nil)
  1755. (defconst org-agenda-local-vars
  1756. '(org-agenda-this-buffer-name
  1757. org-agenda-undo-list
  1758. org-agenda-pending-undo-list
  1759. org-agenda-follow-mode
  1760. org-agenda-entry-text-mode
  1761. org-agenda-clockreport-mode
  1762. org-agenda-show-log
  1763. org-agenda-redo-command
  1764. org-agenda-query-string
  1765. org-agenda-type
  1766. org-agenda-bulk-marked-entries
  1767. org-agenda-undo-has-started-in
  1768. org-agenda-info
  1769. org-agenda-tag-filter-overlays
  1770. org-agenda-cat-filter-overlays
  1771. org-agenda-pre-window-conf
  1772. org-agenda-columns-active
  1773. org-agenda-tag-filter
  1774. org-agenda-category-filter
  1775. org-agenda-markers
  1776. org-agenda-last-search-view-search-was-boolean
  1777. org-agenda-filtered-by-category
  1778. org-agenda-filter-form
  1779. org-agenda-show-window
  1780. org-agenda-cycle-counter
  1781. org-agenda-last-prefix-arg)
  1782. "Variables that must be local in agenda buffers to allow multiple buffers.")
  1783. (defun org-agenda-mode ()
  1784. "Mode for time-sorted view on action items in Org-mode files.
  1785. The following commands are available:
  1786. \\{org-agenda-mode-map}"
  1787. (interactive)
  1788. (cond (org-agenda-doing-sticky-redo
  1789. ;; Refreshing sticky agenda-buffer
  1790. ;;
  1791. ;; Preserve the value of `org-agenda-local-vars' variables,
  1792. ;; while letting `kill-all-local-variables' kill the rest
  1793. (let ((save (buffer-local-variables)))
  1794. (kill-all-local-variables)
  1795. (mapc 'make-local-variable org-agenda-local-vars)
  1796. (dolist (elem save)
  1797. (let ((var (car elem))
  1798. (val (cdr elem)))
  1799. (when (and val
  1800. (member var org-agenda-local-vars))
  1801. (set var val)))))
  1802. (set (make-local-variable 'org-agenda-this-buffer-is-sticky) t))
  1803. (org-agenda-sticky
  1804. ;; Creating a sticky Agenda buffer for the first time
  1805. (kill-all-local-variables)
  1806. (mapc 'make-local-variable org-agenda-local-vars)
  1807. (set (make-local-variable 'org-agenda-this-buffer-is-sticky) t))
  1808. (t
  1809. ;; Creating a non-sticky agenda buffer
  1810. (kill-all-local-variables)
  1811. (set (make-local-variable 'org-agenda-this-buffer-is-sticky) nil)))
  1812. (setq org-agenda-undo-list nil
  1813. org-agenda-pending-undo-list nil
  1814. org-agenda-bulk-marked-entries nil)
  1815. (setq major-mode 'org-agenda-mode)
  1816. ;; Keep global-font-lock-mode from turning on font-lock-mode
  1817. (org-set-local 'font-lock-global-modes (list 'not major-mode))
  1818. (setq mode-name "Org-Agenda")
  1819. (use-local-map org-agenda-mode-map)
  1820. (easy-menu-add org-agenda-menu)
  1821. (if org-startup-truncated (setq truncate-lines t))
  1822. (org-set-local 'line-move-visual nil)
  1823. (org-add-hook 'post-command-hook 'org-agenda-update-agenda-type nil 'local)
  1824. (org-add-hook 'pre-command-hook 'org-unhighlight nil 'local)
  1825. ;; Make sure properties are removed when copying text
  1826. (make-local-variable 'filter-buffer-substring-functions)
  1827. (add-hook 'filter-buffer-substring-functions
  1828. (lambda (fun start end delete)
  1829. (substring-no-properties (funcall fun start end delete))))
  1830. (unless org-agenda-keep-modes
  1831. (setq org-agenda-follow-mode org-agenda-start-with-follow-mode
  1832. org-agenda-entry-text-mode org-agenda-start-with-entry-text-mode
  1833. org-agenda-clockreport-mode org-agenda-start-with-clockreport-mode
  1834. org-agenda-show-log org-agenda-start-with-log-mode))
  1835. (easy-menu-change
  1836. '("Agenda") "Agenda Files"
  1837. (append
  1838. (list
  1839. (vector
  1840. (if (get 'org-agenda-files 'org-restrict)
  1841. "Restricted to single file"
  1842. "Edit File List")
  1843. '(org-edit-agenda-file-list)
  1844. (not (get 'org-agenda-files 'org-restrict)))
  1845. "--")
  1846. (mapcar 'org-file-menu-entry (org-agenda-files))))
  1847. (org-agenda-set-mode-name)
  1848. (apply
  1849. (if (fboundp 'run-mode-hooks) 'run-mode-hooks 'run-hooks)
  1850. (list 'org-agenda-mode-hook)))
  1851. (substitute-key-definition 'undo 'org-agenda-undo
  1852. org-agenda-mode-map global-map)
  1853. (org-defkey org-agenda-mode-map "\C-i" 'org-agenda-goto)
  1854. (org-defkey org-agenda-mode-map [(tab)] 'org-agenda-goto)
  1855. (org-defkey org-agenda-mode-map "\C-m" 'org-agenda-switch-to)
  1856. (org-defkey org-agenda-mode-map "\C-k" 'org-agenda-kill)
  1857. (org-defkey org-agenda-mode-map "\C-c\C-w" 'org-agenda-refile)
  1858. (org-defkey org-agenda-mode-map "m" 'org-agenda-bulk-mark)
  1859. (org-defkey org-agenda-mode-map "*" 'org-agenda-bulk-mark-all)
  1860. (org-defkey org-agenda-mode-map "#" 'org-agenda-dim-blocked-tasks)
  1861. (org-defkey org-agenda-mode-map "%" 'org-agenda-bulk-mark-regexp)
  1862. (org-defkey org-agenda-mode-map "u" 'org-agenda-bulk-unmark)
  1863. (org-defkey org-agenda-mode-map "U" 'org-agenda-bulk-unmark-all)
  1864. (org-defkey org-agenda-mode-map "B" 'org-agenda-bulk-action)
  1865. (org-defkey org-agenda-mode-map "k" 'org-agenda-capture)
  1866. (org-defkey org-agenda-mode-map "A" 'org-agenda-append-agenda)
  1867. (org-defkey org-agenda-mode-map "\C-c\C-x!" 'org-reload)
  1868. (org-defkey org-agenda-mode-map "\C-c\C-x\C-a" 'org-agenda-archive-default)
  1869. (org-defkey org-agenda-mode-map "\C-c\C-xa" 'org-agenda-toggle-archive-tag)
  1870. (org-defkey org-agenda-mode-map "\C-c\C-xA" 'org-agenda-archive-to-archive-sibling)
  1871. (org-defkey org-agenda-mode-map "\C-c\C-x\C-s" 'org-agenda-archive)
  1872. (org-defkey org-agenda-mode-map "\C-c$" 'org-agenda-archive)
  1873. (org-defkey org-agenda-mode-map "$" 'org-agenda-archive)
  1874. (org-defkey org-agenda-mode-map "\C-c\C-o" 'org-agenda-open-link)
  1875. (org-defkey org-agenda-mode-map " " 'org-agenda-show-and-scroll-up)
  1876. (org-defkey org-agenda-mode-map [backspace] 'org-agenda-show-scroll-down)
  1877. (org-defkey org-agenda-mode-map "\d" 'org-agenda-show-scroll-down)
  1878. (org-defkey org-agenda-mode-map [(control shift right)] 'org-agenda-todo-nextset)
  1879. (org-defkey org-agenda-mode-map [(control shift left)] 'org-agenda-todo-previousset)
  1880. (org-defkey org-agenda-mode-map "\C-c\C-xb" 'org-agenda-tree-to-indirect-buffer)
  1881. (org-defkey org-agenda-mode-map "o" 'delete-other-windows)
  1882. (org-defkey org-agenda-mode-map "L" 'org-agenda-recenter)
  1883. (org-defkey org-agenda-mode-map "\C-c\C-t" 'org-agenda-todo)
  1884. (org-defkey org-agenda-mode-map "t" 'org-agenda-todo)
  1885. (org-defkey org-agenda-mode-map "a" 'org-agenda-archive-default-with-confirmation)
  1886. (org-defkey org-agenda-mode-map ":" 'org-agenda-set-tags)
  1887. (org-defkey org-agenda-mode-map "\C-c\C-q" 'org-agenda-set-tags)
  1888. (org-defkey org-agenda-mode-map "." 'org-agenda-goto-today)
  1889. (org-defkey org-agenda-mode-map "j" 'org-agenda-goto-date)
  1890. (org-defkey org-agenda-mode-map "d" 'org-agenda-day-view)
  1891. (org-defkey org-agenda-mode-map "w" 'org-agenda-week-view)
  1892. (org-defkey org-agenda-mode-map "y" 'org-agenda-year-view)
  1893. (org-defkey org-agenda-mode-map "\C-c\C-z" 'org-agenda-add-note)
  1894. (org-defkey org-agenda-mode-map "z" 'org-agenda-add-note)
  1895. (org-defkey org-agenda-mode-map [(shift right)] 'org-agenda-do-date-later)
  1896. (org-defkey org-agenda-mode-map [(shift left)] 'org-agenda-do-date-earlier)
  1897. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (right)] 'org-agenda-do-date-later)
  1898. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (left)] 'org-agenda-do-date-earlier)
  1899. (org-defkey org-agenda-mode-map ">" 'org-agenda-date-prompt)
  1900. (org-defkey org-agenda-mode-map "\C-c\C-s" 'org-agenda-schedule)
  1901. (org-defkey org-agenda-mode-map "\C-c\C-d" 'org-agenda-deadline)
  1902. (let ((l '(1 2 3 4 5 6 7 8 9 0)))
  1903. (while l (org-defkey org-agenda-mode-map
  1904. (int-to-string (pop l)) 'digit-argument)))
  1905. (org-defkey org-agenda-mode-map "F" 'org-agenda-follow-mode)
  1906. (org-defkey org-agenda-mode-map "R" 'org-agenda-clockreport-mode)
  1907. (org-defkey org-agenda-mode-map "E" 'org-agenda-entry-text-mode)
  1908. (org-defkey org-agenda-mode-map "l" 'org-agenda-log-mode)
  1909. (org-defkey org-agenda-mode-map "v" 'org-agenda-view-mode-dispatch)
  1910. (org-defkey org-agenda-mode-map "D" 'org-agenda-toggle-diary)
  1911. (org-defkey org-agenda-mode-map "!" 'org-agenda-toggle-deadlines)
  1912. (org-defkey org-agenda-mode-map "G" 'org-agenda-toggle-time-grid)
  1913. (org-defkey org-agenda-mode-map "r" 'org-agenda-redo)
  1914. (org-defkey org-agenda-mode-map "g" (lambda () (interactive) (org-agenda-redo t)))
  1915. (org-defkey org-agenda-mode-map "e" 'org-agenda-set-effort)
  1916. (org-defkey org-agenda-mode-map "\C-c\C-xe" 'org-agenda-set-effort)
  1917. (org-defkey org-agenda-mode-map "\C-c\C-x\C-e"
  1918. 'org-clock-modify-effort-estimate)
  1919. (org-defkey org-agenda-mode-map "\C-c\C-xp" 'org-agenda-set-property)
  1920. (org-defkey org-agenda-mode-map "q" 'org-agenda-quit)
  1921. (org-defkey org-agenda-mode-map "Q" 'org-agenda-Quit)
  1922. (org-defkey org-agenda-mode-map "x" 'org-agenda-exit)
  1923. (org-defkey org-agenda-mode-map "\C-x\C-w" 'org-agenda-write)
  1924. (org-defkey org-agenda-mode-map "\C-x\C-s" 'org-save-all-org-buffers)
  1925. (org-defkey org-agenda-mode-map "s" 'org-save-all-org-buffers)
  1926. (org-defkey org-agenda-mode-map "T" 'org-agenda-show-tags)
  1927. (org-defkey org-agenda-mode-map "n" 'org-agenda-next-line)
  1928. (org-defkey org-agenda-mode-map "p" 'org-agenda-previous-line)
  1929. (org-defkey org-agenda-mode-map "N" 'org-agenda-next-item)
  1930. (org-defkey org-agenda-mode-map "P" 'org-agenda-previous-item)
  1931. (substitute-key-definition 'next-line 'org-agenda-next-line
  1932. org-agenda-mode-map global-map)
  1933. (substitute-key-definition 'previous-line 'org-agenda-previous-line
  1934. org-agenda-mode-map global-map)
  1935. (org-defkey org-agenda-mode-map "\C-c\C-a" 'org-attach)
  1936. (org-defkey org-agenda-mode-map "\C-c\C-n" 'org-agenda-next-date-line)
  1937. (org-defkey org-agenda-mode-map "\C-c\C-p" 'org-agenda-previous-date-line)
  1938. (org-defkey org-agenda-mode-map "\C-c," 'org-agenda-priority)
  1939. (org-defkey org-agenda-mode-map "," 'org-agenda-priority)
  1940. (org-defkey org-agenda-mode-map "i" 'org-agenda-diary-entry)
  1941. (org-defkey org-agenda-mode-map "c" 'org-agenda-goto-calendar)
  1942. (org-defkey org-agenda-mode-map "C" 'org-agenda-convert-date)
  1943. (org-defkey org-agenda-mode-map "M" 'org-agenda-phases-of-moon)
  1944. (org-defkey org-agenda-mode-map "S" 'org-agenda-sunrise-sunset)
  1945. (org-defkey org-agenda-mode-map "h" 'org-agenda-holidays)
  1946. (org-defkey org-agenda-mode-map "H" 'org-agenda-holidays)
  1947. (org-defkey org-agenda-mode-map "\C-c\C-x\C-i" 'org-agenda-clock-in)
  1948. (org-defkey org-agenda-mode-map "I" 'org-agenda-clock-in)
  1949. (org-defkey org-agenda-mode-map "\C-c\C-x\C-o" 'org-agenda-clock-out)
  1950. (org-defkey org-agenda-mode-map "O" 'org-agenda-clock-out)
  1951. (org-defkey org-agenda-mode-map "\C-c\C-x\C-x" 'org-agenda-clock-cancel)
  1952. (org-defkey org-agenda-mode-map "X" 'org-agenda-clock-cancel)
  1953. (org-defkey org-agenda-mode-map "\C-c\C-x\C-j" 'org-clock-goto)
  1954. (org-defkey org-agenda-mode-map "J" 'org-agenda-clock-goto)
  1955. (org-defkey org-agenda-mode-map "+" 'org-agenda-priority-up)
  1956. (org-defkey org-agenda-mode-map "-" 'org-agenda-priority-down)
  1957. (org-defkey org-agenda-mode-map [(shift up)] 'org-agenda-priority-up)
  1958. (org-defkey org-agenda-mode-map [(shift down)] 'org-agenda-priority-down)
  1959. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (up)] 'org-agenda-priority-up)
  1960. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (down)] 'org-agenda-priority-down)
  1961. (org-defkey org-agenda-mode-map "f" 'org-agenda-later)
  1962. (org-defkey org-agenda-mode-map "b" 'org-agenda-earlier)
  1963. (org-defkey org-agenda-mode-map "\C-c\C-x\C-c" 'org-agenda-columns)
  1964. (org-defkey org-agenda-mode-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
  1965. (org-defkey org-agenda-mode-map "[" 'org-agenda-manipulate-query-add)
  1966. (org-defkey org-agenda-mode-map "]" 'org-agenda-manipulate-query-subtract)
  1967. (org-defkey org-agenda-mode-map "{" 'org-agenda-manipulate-query-add-re)
  1968. (org-defkey org-agenda-mode-map "}" 'org-agenda-manipulate-query-subtract-re)
  1969. (org-defkey org-agenda-mode-map "/" 'org-agenda-filter-by-tag)
  1970. (org-defkey org-agenda-mode-map "\\" 'org-agenda-filter-by-tag-refine)
  1971. (org-defkey org-agenda-mode-map "<" 'org-agenda-filter-by-category)
  1972. (org-defkey org-agenda-mode-map "^" 'org-agenda-filter-by-top-category)
  1973. (org-defkey org-agenda-mode-map ";" 'org-timer-set-timer)
  1974. (define-key org-agenda-mode-map "?" 'org-agenda-show-the-flagging-note)
  1975. (org-defkey org-agenda-mode-map "\C-c\C-x\C-mg" 'org-mobile-pull)
  1976. (org-defkey org-agenda-mode-map "\C-c\C-x\C-mp" 'org-mobile-push)
  1977. (org-defkey org-agenda-mode-map [mouse-2] 'org-agenda-goto-mouse)
  1978. (org-defkey org-agenda-mode-map [mouse-3] 'org-agenda-show-mouse)
  1979. (when org-agenda-mouse-1-follows-link
  1980. (org-defkey org-agenda-mode-map [follow-link] 'mouse-face))
  1981. (easy-menu-define org-agenda-menu org-agenda-mode-map "Agenda menu"
  1982. '("Agenda"
  1983. ("Agenda Files")
  1984. "--"
  1985. ("Agenda Dates"
  1986. ["Goto Today" org-agenda-goto-today (org-agenda-check-type nil 'agenda 'timeline)]
  1987. ["Next Dates" org-agenda-later (org-agenda-check-type nil 'agenda)]
  1988. ["Previous Dates" org-agenda-earlier (org-agenda-check-type nil 'agenda)]
  1989. ["Jump to date" org-agenda-goto-date (org-agenda-check-type nil 'agenda)])
  1990. "--"
  1991. ("View"
  1992. ["Day View" org-agenda-day-view
  1993. :active (org-agenda-check-type nil 'agenda)
  1994. :style radio :selected (eq org-agenda-current-span 'day)
  1995. :keys "v d (or just d)"]
  1996. ["Week View" org-agenda-week-view
  1997. :active (org-agenda-check-type nil 'agenda)
  1998. :style radio :selected (eq org-agenda-current-span 'week)
  1999. :keys "v w (or just w)"]
  2000. ["Month View" org-agenda-month-view
  2001. :active (org-agenda-check-type nil 'agenda)
  2002. :style radio :selected (eq org-agenda-current-span 'month)
  2003. :keys "v m"]
  2004. ["Year View" org-agenda-year-view
  2005. :active (org-agenda-check-type nil 'agenda)
  2006. :style radio :selected (eq org-agenda-current-span 'year)
  2007. :keys "v y"]
  2008. "--"
  2009. ["Include Diary" org-agenda-toggle-diary
  2010. :style toggle :selected org-agenda-include-diary
  2011. :active (org-agenda-check-type nil 'agenda)]
  2012. ["Include Deadlines" org-agenda-toggle-deadlines
  2013. :style toggle :selected org-agenda-include-deadlines
  2014. :active (org-agenda-check-type nil 'agenda)]
  2015. ["Use Time Grid" org-agenda-toggle-time-grid
  2016. :style toggle :selected org-agenda-use-time-grid
  2017. :active (org-agenda-check-type nil 'agenda)]
  2018. "--"
  2019. ["Show clock report" org-agenda-clockreport-mode
  2020. :style toggle :selected org-agenda-clockreport-mode
  2021. :active (org-agenda-check-type nil 'agenda)]
  2022. ["Show some entry text" org-agenda-entry-text-mode
  2023. :style toggle :selected org-agenda-entry-text-mode
  2024. :active t]
  2025. "--"
  2026. ["Show Logbook entries" org-agenda-log-mode
  2027. :style toggle :selected org-agenda-show-log
  2028. :active (org-agenda-check-type nil 'agenda 'timeline)
  2029. :keys "v l (or just l)"]
  2030. ["Include archived trees" org-agenda-archives-mode
  2031. :style toggle :selected org-agenda-archives-mode :active t
  2032. :keys "v a"]
  2033. ["Include archive files" (org-agenda-archives-mode t)
  2034. :style toggle :selected (eq org-agenda-archives-mode t) :active t
  2035. :keys "v A"]
  2036. "--"
  2037. ["Remove Restriction" org-agenda-remove-restriction-lock org-agenda-restrict])
  2038. ["Write view to file" org-agenda-write t]
  2039. ["Rebuild buffer" org-agenda-redo t]
  2040. ["Save all Org-mode Buffers" org-save-all-org-buffers t]
  2041. "--"
  2042. ["Show original entry" org-agenda-show t]
  2043. ["Go To (other window)" org-agenda-goto t]
  2044. ["Go To (this window)" org-agenda-switch-to t]
  2045. ["Capture with cursor date" org-agenda-capture t]
  2046. ["Follow Mode" org-agenda-follow-mode
  2047. :style toggle :selected org-agenda-follow-mode :active t]
  2048. ;; ["Tree to indirect frame" org-agenda-tree-to-indirect-buffer t]
  2049. "--"
  2050. ("TODO"
  2051. ["Cycle TODO" org-agenda-todo t]
  2052. ["Next TODO set" org-agenda-todo-nextset t]
  2053. ["Previous TODO set" org-agenda-todo-previousset t]
  2054. ["Add note" org-agenda-add-note t])
  2055. ("Archive/Refile/Delete"
  2056. ["Archive default" org-agenda-archive-default t]
  2057. ["Archive default" org-agenda-archive-default-with-confirmation t]
  2058. ["Toggle ARCHIVE tag" org-agenda-toggle-archive-tag t]
  2059. ["Move to archive sibling" org-agenda-archive-to-archive-sibling t]
  2060. ["Archive subtree" org-agenda-archive t]
  2061. "--"
  2062. ["Refile" org-agenda-refile t]
  2063. "--"
  2064. ["Delete subtree" org-agenda-kill t])
  2065. ("Bulk action"
  2066. ["Mark entry" org-agenda-bulk-mark t]
  2067. ["Mark all" org-agenda-bulk-mark-all t]
  2068. ["Mark matching regexp" org-agenda-bulk-mark-regexp t]
  2069. ["Unmark entry" org-agenda-bulk-unmark t]
  2070. ["Unmark all entries" org-agenda-bulk-unmark-all :active t :keys "U"])
  2071. ["Act on all marked" org-agenda-bulk-action t]
  2072. "--"
  2073. ("Tags and Properties"
  2074. ["Show all Tags" org-agenda-show-tags t]
  2075. ["Set Tags current line" org-agenda-set-tags (not (org-region-active-p))]
  2076. ["Change tag in region" org-agenda-set-tags (org-region-active-p)]
  2077. "--"
  2078. ["Column View" org-columns t])
  2079. ("Deadline/Schedule"
  2080. ["Schedule" org-agenda-schedule t]
  2081. ["Set Deadline" org-agenda-deadline t]
  2082. "--"
  2083. ["Change Date +1 day" org-agenda-date-later (org-agenda-check-type nil 'agenda 'timeline)]
  2084. ["Change Date -1 day" org-agenda-date-earlier (org-agenda-check-type nil 'agenda 'timeline)]
  2085. ["Change Time +1 hour" org-agenda-do-date-later :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u S-right"]
  2086. ["Change Time -1 hour" org-agenda-do-date-earlier :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u S-left"]
  2087. ["Change Time + min" org-agenda-date-later :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u C-u S-right"]
  2088. ["Change Time - min" org-agenda-date-earlier :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u C-u S-left"]
  2089. ["Change Date to ..." org-agenda-date-prompt (org-agenda-check-type nil 'agenda 'timeline)])
  2090. ("Clock and Effort"
  2091. ["Clock in" org-agenda-clock-in t]
  2092. ["Clock out" org-agenda-clock-out t]
  2093. ["Clock cancel" org-agenda-clock-cancel t]
  2094. ["Goto running clock" org-clock-goto t]
  2095. "--"
  2096. ["Set Effort" org-agenda-set-effort t]
  2097. ["Change clocked effort" org-clock-modify-effort-estimate
  2098. (org-clock-is-active)])
  2099. ("Priority"
  2100. ["Set Priority" org-agenda-priority t]
  2101. ["Increase Priority" org-agenda-priority-up t]
  2102. ["Decrease Priority" org-agenda-priority-down t]
  2103. ["Show Priority" org-show-priority t])
  2104. ("Calendar/Diary"
  2105. ["New Diary Entry" org-agenda-diary-entry (org-agenda-check-type nil 'agenda 'timeline)]
  2106. ["Goto Calendar" org-agenda-goto-calendar (org-agenda-check-type nil 'agenda 'timeline)]
  2107. ["Phases of the Moon" org-agenda-phases-of-moon (org-agenda-check-type nil 'agenda 'timeline)]
  2108. ["Sunrise/Sunset" org-agenda-sunrise-sunset (org-agenda-check-type nil 'agenda 'timeline)]
  2109. ["Holidays" org-agenda-holidays (org-agenda-check-type nil 'agenda 'timeline)]
  2110. ["Convert" org-agenda-convert-date (org-agenda-check-type nil 'agenda 'timeline)]
  2111. "--"
  2112. ["Create iCalendar File" org-icalendar-combine-agenda-files t])
  2113. "--"
  2114. ["Undo Remote Editing" org-agenda-undo org-agenda-undo-list]
  2115. "--"
  2116. ("MobileOrg"
  2117. ["Push Files and Views" org-mobile-push t]
  2118. ["Get Captured and Flagged" org-mobile-pull t]
  2119. ["Find FLAGGED Tasks" (org-agenda nil "?") :active t :keys "C-c a ?"]
  2120. ["Show note / unflag" org-agenda-show-the-flagging-note t]
  2121. "--"
  2122. ["Setup" (progn (require 'org-mobile) (customize-group 'org-mobile)) t])
  2123. "--"
  2124. ["Quit" org-agenda-quit t]
  2125. ["Exit and Release Buffers" org-agenda-exit t]
  2126. ))
  2127. ;;; Agenda undo
  2128. (defvar org-agenda-allow-remote-undo t
  2129. "Non-nil means allow remote undo from the agenda buffer.")
  2130. (defvar org-agenda-undo-has-started-in nil
  2131. "Buffers that have already seen `undo-start' in the current undo sequence.")
  2132. (defun org-agenda-undo ()
  2133. "Undo a remote editing step in the agenda.
  2134. This undoes changes both in the agenda buffer and in the remote buffer
  2135. that have been changed along."
  2136. (interactive)
  2137. (or org-agenda-allow-remote-undo
  2138. (error "Check the variable `org-agenda-allow-remote-undo' to activate remote undo"))
  2139. (if (not (eq this-command last-command))
  2140. (setq org-agenda-undo-has-started-in nil
  2141. org-agenda-pending-undo-list org-agenda-undo-list))
  2142. (if (not org-agenda-pending-undo-list)
  2143. (error "No further undo information"))
  2144. (let* ((entry (pop org-agenda-pending-undo-list))
  2145. buf line cmd rembuf)
  2146. (setq cmd (pop entry) line (pop entry))
  2147. (setq rembuf (nth 2 entry))
  2148. (org-with-remote-undo rembuf
  2149. (while (bufferp (setq buf (pop entry)))
  2150. (if (pop entry)
  2151. (with-current-buffer buf
  2152. (let ((last-undo-buffer buf)
  2153. (inhibit-read-only t))
  2154. (unless (memq buf org-agenda-undo-has-started-in)
  2155. (push buf org-agenda-undo-has-started-in)
  2156. (make-local-variable 'pending-undo-list)
  2157. (undo-start))
  2158. (while (and pending-undo-list
  2159. (listp pending-undo-list)
  2160. (not (car pending-undo-list)))
  2161. (pop pending-undo-list))
  2162. (undo-more 1))))))
  2163. (org-goto-line line)
  2164. (message "`%s' undone (buffer %s)" cmd (buffer-name rembuf))))
  2165. (defun org-verify-change-for-undo (l1 l2)
  2166. "Verify that a real change occurred between the undo lists L1 and L2."
  2167. (while (and l1 (listp l1) (null (car l1))) (pop l1))
  2168. (while (and l2 (listp l2) (null (car l2))) (pop l2))
  2169. (not (eq l1 l2)))
  2170. ;;; Agenda dispatch
  2171. (defvar org-agenda-restrict-begin (make-marker))
  2172. (defvar org-agenda-restrict-end (make-marker))
  2173. (defvar org-agenda-last-dispatch-buffer nil)
  2174. (defvar org-agenda-overriding-restriction nil)
  2175. (defcustom org-agenda-custom-commands-contexts nil
  2176. "Alist of custom agenda keys and contextual rules.
  2177. For example, if you have a custom agenda command \"p\" and you
  2178. want this command to be accessible only from plain text files,
  2179. use this:
  2180. '((\"p\" ((in-file . \"\\.txt\"))))
  2181. Here are the available contexts definitions:
  2182. in-file: command displayed only in matching files
  2183. in-mode: command displayed only in matching modes
  2184. not-in-file: command not displayed in matching files
  2185. not-in-mode: command not displayed in matching modes
  2186. in-buffer: command displayed only in matching buffers
  2187. not-in-buffer: command not displayed in matching buffers
  2188. [function]: a custom function taking no argument
  2189. If you define several checks, the agenda command will be
  2190. accessible if there is at least one valid check.
  2191. You can also bind a key to another agenda custom command
  2192. depending on contextual rules.
  2193. '((\"p\" \"q\" ((in-file . \"\\.txt\"))))
  2194. Here it means: in .txt files, use \"p\" as the key for the
  2195. agenda command otherwise associated with \"q\". (The command
  2196. originally associated with \"q\" is not displayed to avoid
  2197. duplicates.)"
  2198. :version "24.3"
  2199. :group 'org-agenda-custom-commands
  2200. :type '(repeat (list :tag "Rule"
  2201. (string :tag " Agenda key")
  2202. (string :tag "Replace by command")
  2203. (repeat :tag "Available when"
  2204. (choice
  2205. (cons :tag "Condition"
  2206. (choice
  2207. (const :tag "In file" in-file)
  2208. (const :tag "Not in file" not-in-file)
  2209. (const :tag "In buffer" in-buffer)
  2210. (const :tag "Not in buffer" not-in-buffer)
  2211. (const :tag "In mode" in-mode)
  2212. (const :tag "Not in mode" not-in-mode))
  2213. (regexp))
  2214. (function :tag "Custom function"))))))
  2215. (defcustom org-agenda-max-entries nil
  2216. "Maximum number of entries to display in an agenda.
  2217. This can be nil (no limit) or an integer or an alist of agenda
  2218. types with an associated number of entries to display in this
  2219. type."
  2220. :version "24.3"
  2221. :group 'org-agenda-custom-commands
  2222. :type '(choice (symbol :tag "No limit" nil)
  2223. (integer :tag "Max number of entries")
  2224. (repeat
  2225. (cons (choice :tag "Agenda type"
  2226. (const agenda)
  2227. (const todo)
  2228. (const tags)
  2229. (const search)
  2230. (const timeline))
  2231. (integer :tag "Max number of entries")))))
  2232. (defcustom org-agenda-max-todos nil
  2233. "Maximum number of TODOs to display in an agenda.
  2234. This can be nil (no limit) or an integer or an alist of agenda
  2235. types with an associated number of entries to display in this
  2236. type."
  2237. :version "24.3"
  2238. :group 'org-agenda-custom-commands
  2239. :type '(choice (symbol :tag "No limit" nil)
  2240. (integer :tag "Max number of entries")
  2241. (repeat
  2242. (cons (choice :tag "Agenda type"
  2243. (const agenda)
  2244. (const todo)
  2245. (const tags)
  2246. (const search)
  2247. (const timeline))
  2248. (integer :tag "Max number of entries")))))
  2249. (defcustom org-agenda-max-tags nil
  2250. "Maximum number of tagged entries to display in an agenda.
  2251. This can be nil (no limit) or an integer or an alist of agenda
  2252. types with an associated number of entries to display in this
  2253. type."
  2254. :version "24.3"
  2255. :group 'org-agenda-custom-commands
  2256. :type '(choice (symbol :tag "No limit" nil)
  2257. (integer :tag "Max number of entries")
  2258. (repeat
  2259. (cons (choice :tag "Agenda type"
  2260. (const agenda)
  2261. (const todo)
  2262. (const tags)
  2263. (const search)
  2264. (const timeline))
  2265. (integer :tag "Max number of entries")))))
  2266. (defcustom org-agenda-max-effort nil
  2267. "Maximum cumulated effort duration for the agenda.
  2268. This can be nil (no limit) or a number of minutes (as an integer)
  2269. or an alist of agenda types with an associated number of minutes
  2270. to limit entries to in this type."
  2271. :version "24.3"
  2272. :group 'org-agenda-custom-commands
  2273. :type '(choice (symbol :tag "No limit" nil)
  2274. (integer :tag "Max number of entries")
  2275. (repeat
  2276. (cons (choice :tag "Agenda type"
  2277. (const agenda)
  2278. (const todo)
  2279. (const tags)
  2280. (const search)
  2281. (const timeline))
  2282. (integer :tag "Max number of entries")))))
  2283. (defvar org-keys nil)
  2284. (defvar org-match nil)
  2285. ;;;###autoload
  2286. (defun org-agenda (&optional arg org-keys restriction)
  2287. "Dispatch agenda commands to collect entries to the agenda buffer.
  2288. Prompts for a command to execute. Any prefix arg will be passed
  2289. on to the selected command. The default selections are:
  2290. a Call `org-agenda-list' to display the agenda for current day or week.
  2291. t Call `org-todo-list' to display the global todo list.
  2292. T Call `org-todo-list' to display the global todo list, select only
  2293. entries with a specific TODO keyword (the user gets a prompt).
  2294. m Call `org-tags-view' to display headlines with tags matching
  2295. a condition (the user is prompted for the condition).
  2296. M Like `m', but select only TODO entries, no ordinary headlines.
  2297. L Create a timeline for the current buffer.
  2298. e Export views to associated files.
  2299. s Search entries for keywords.
  2300. S Search entries for keywords, only with TODO keywords.
  2301. / Multi occur across all agenda files and also files listed
  2302. in `org-agenda-text-search-extra-files'.
  2303. < Restrict agenda commands to buffer, subtree, or region.
  2304. Press several times to get the desired effect.
  2305. > Remove a previous restriction.
  2306. # List \"stuck\" projects.
  2307. ! Configure what \"stuck\" means.
  2308. C Configure custom agenda commands.
  2309. More commands can be added by configuring the variable
  2310. `org-agenda-custom-commands'. In particular, specific tags and TODO keyword
  2311. searches can be pre-defined in this way.
  2312. If the current buffer is in Org-mode and visiting a file, you can also
  2313. first press `<' once to indicate that the agenda should be temporarily
  2314. \(until the next use of \\[org-agenda]) restricted to the current file.
  2315. Pressing `<' twice means to restrict to the current subtree or region
  2316. \(if active)."
  2317. (interactive "P")
  2318. (catch 'exit
  2319. (let* ((prefix-descriptions nil)
  2320. (org-agenda-buffer-name org-agenda-buffer-name)
  2321. (org-agenda-window-setup (if (equal (buffer-name)
  2322. org-agenda-buffer-name)
  2323. 'current-window
  2324. org-agenda-window-setup))
  2325. (org-agenda-custom-commands-orig org-agenda-custom-commands)
  2326. (org-agenda-custom-commands
  2327. ;; normalize different versions
  2328. (delq nil
  2329. (mapcar
  2330. (lambda (x)
  2331. (cond ((stringp (cdr x))
  2332. (push x prefix-descriptions)
  2333. nil)
  2334. ((stringp (nth 1 x)) x)
  2335. ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
  2336. (t (cons (car x) (cons "" (cdr x))))))
  2337. org-agenda-custom-commands)))
  2338. (org-agenda-custom-commands
  2339. (org-contextualize-keys
  2340. org-agenda-custom-commands org-agenda-custom-commands-contexts))
  2341. (buf (current-buffer))
  2342. (bfn (buffer-file-name (buffer-base-buffer)))
  2343. entry key type org-match lprops ans)
  2344. ;; Turn off restriction unless there is an overriding one,
  2345. (unless org-agenda-overriding-restriction
  2346. (unless (org-bound-and-true-p org-agenda-keep-restricted-file-list)
  2347. ;; There is a request to keep the file list in place
  2348. (put 'org-agenda-files 'org-restrict nil))
  2349. (setq org-agenda-restrict nil)
  2350. (move-marker org-agenda-restrict-begin nil)
  2351. (move-marker org-agenda-restrict-end nil))
  2352. ;; Delete old local properties
  2353. (put 'org-agenda-redo-command 'org-lprops nil)
  2354. ;; Delete previously set last-arguments
  2355. (put 'org-agenda-redo-command 'last-args nil)
  2356. ;; Remember where this call originated
  2357. (setq org-agenda-last-dispatch-buffer (current-buffer))
  2358. (unless org-keys
  2359. (setq ans (org-agenda-get-restriction-and-command prefix-descriptions)
  2360. org-keys (car ans)
  2361. restriction (cdr ans)))
  2362. ;; If we have sticky agenda buffers, set a name for the buffer,
  2363. ;; depending on the invoking keys. The user may still set this
  2364. ;; as a command option, which will overwrite what we do here.
  2365. (if org-agenda-sticky
  2366. (setq org-agenda-buffer-name
  2367. (format "*Org Agenda(%s)*" org-keys)))
  2368. ;; Establish the restriction, if any
  2369. (when (and (not org-agenda-overriding-restriction) restriction)
  2370. (put 'org-agenda-files 'org-restrict (list bfn))
  2371. (cond
  2372. ((eq restriction 'region)
  2373. (setq org-agenda-restrict t)
  2374. (move-marker org-agenda-restrict-begin (region-beginning))
  2375. (move-marker org-agenda-restrict-end (region-end)))
  2376. ((eq restriction 'subtree)
  2377. (save-excursion
  2378. (setq org-agenda-restrict t)
  2379. (org-back-to-heading t)
  2380. (move-marker org-agenda-restrict-begin (point))
  2381. (move-marker org-agenda-restrict-end
  2382. (progn (org-end-of-subtree t)))))))
  2383. ;; For example the todo list should not need it (but does...)
  2384. (cond
  2385. ((setq entry (assoc org-keys org-agenda-custom-commands))
  2386. (if (or (symbolp (nth 2 entry)) (functionp (nth 2 entry)))
  2387. (progn
  2388. (setq type (nth 2 entry) org-match (eval (nth 3 entry))
  2389. lprops (nth 4 entry))
  2390. (if org-agenda-sticky
  2391. (setq org-agenda-buffer-name
  2392. (or (and (stringp org-match) (format "*Org Agenda(%s:%s)*" org-keys org-match))
  2393. (format "*Org Agenda(%s)*" org-keys))))
  2394. (put 'org-agenda-redo-command 'org-lprops lprops)
  2395. (cond
  2396. ((eq type 'agenda)
  2397. (org-let lprops '(org-agenda-list current-prefix-arg)))
  2398. ((eq type 'alltodo)
  2399. (org-let lprops '(org-todo-list current-prefix-arg)))
  2400. ((eq type 'search)
  2401. (org-let lprops '(org-search-view current-prefix-arg org-match nil)))
  2402. ((eq type 'stuck)
  2403. (org-let lprops '(org-agenda-list-stuck-projects
  2404. current-prefix-arg)))
  2405. ((eq type 'tags)
  2406. (org-let lprops '(org-tags-view current-prefix-arg org-match)))
  2407. ((eq type 'tags-todo)
  2408. (org-let lprops '(org-tags-view '(4) org-match)))
  2409. ((eq type 'todo)
  2410. (org-let lprops '(org-todo-list org-match)))
  2411. ((eq type 'tags-tree)
  2412. (org-check-for-org-mode)
  2413. (org-let lprops '(org-match-sparse-tree current-prefix-arg org-match)))
  2414. ((eq type 'todo-tree)
  2415. (org-check-for-org-mode)
  2416. (org-let lprops
  2417. '(org-occur (concat "^" org-outline-regexp "[ \t]*"
  2418. (regexp-quote org-match) "\\>"))))
  2419. ((eq type 'occur-tree)
  2420. (org-check-for-org-mode)
  2421. (org-let lprops '(org-occur org-match)))
  2422. ((functionp type)
  2423. (org-let lprops '(funcall type org-match)))
  2424. ((fboundp type)
  2425. (org-let lprops '(funcall type org-match)))
  2426. (t (error "Invalid custom agenda command type %s" type))))
  2427. (org-agenda-run-series (nth 1 entry) (cddr entry))))
  2428. ((equal org-keys "C")
  2429. (setq org-agenda-custom-commands org-agenda-custom-commands-orig)
  2430. (customize-variable 'org-agenda-custom-commands))
  2431. ((equal org-keys "a") (call-interactively 'org-agenda-list))
  2432. ((equal org-keys "s") (call-interactively 'org-search-view))
  2433. ((equal org-keys "S") (org-call-with-arg 'org-search-view (or arg '(4))))
  2434. ((equal org-keys "t") (call-interactively 'org-todo-list))
  2435. ((equal org-keys "T") (org-call-with-arg 'org-todo-list (or arg '(4))))
  2436. ((equal org-keys "m") (call-interactively 'org-tags-view))
  2437. ((equal org-keys "M") (org-call-with-arg 'org-tags-view (or arg '(4))))
  2438. ((equal org-keys "e") (call-interactively 'org-store-agenda-views))
  2439. ((equal org-keys "?") (org-tags-view nil "+FLAGGED")
  2440. (org-add-hook
  2441. 'post-command-hook
  2442. (lambda ()
  2443. (unless (current-message)
  2444. (let* ((m (org-agenda-get-any-marker))
  2445. (note (and m (org-entry-get m "THEFLAGGINGNOTE"))))
  2446. (when note
  2447. (message (concat
  2448. "FLAGGING-NOTE ([?] for more info): "
  2449. (org-add-props
  2450. (replace-regexp-in-string
  2451. "\\\\n" "//"
  2452. (copy-sequence note))
  2453. nil 'face 'org-warning)))))))
  2454. t t))
  2455. ((equal org-keys "L")
  2456. (unless (derived-mode-p 'org-mode)
  2457. (error "This is not an Org-mode file"))
  2458. (unless restriction
  2459. (put 'org-agenda-files 'org-restrict (list bfn))
  2460. (org-call-with-arg 'org-timeline arg)))
  2461. ((equal org-keys "#") (call-interactively 'org-agenda-list-stuck-projects))
  2462. ((equal org-keys "/") (call-interactively 'org-occur-in-agenda-files))
  2463. ((equal org-keys "!") (customize-variable 'org-stuck-projects))
  2464. (t (error "Invalid agenda key"))))))
  2465. (autoload 'org-agenda "org-agenda" "\
  2466. Dispatch agenda commands to collect entries to the agenda buffer.
  2467. Prompts for a command to execute. Any prefix arg will be passed
  2468. on to the selected command. The default selections are:
  2469. a Call `org-agenda-list' to display the agenda for current day or week.
  2470. t Call `org-todo-list' to display the global todo list.
  2471. T Call `org-todo-list' to display the global todo list, select only
  2472. entries with a specific TODO keyword (the user gets a prompt).
  2473. m Call `org-tags-view' to display headlines with tags matching
  2474. a condition (the user is prompted for the condition).
  2475. M Like `m', but select only TODO entries, no ordinary headlines.
  2476. L Create a timeline for the current buffer.
  2477. e Export views to associated files.
  2478. s Search entries for keywords.
  2479. S Search entries for keywords, only with TODO keywords.
  2480. / Multi occur across all agenda files and also files listed
  2481. in `org-agenda-text-search-extra-files'.
  2482. < Restrict agenda commands to buffer, subtree, or region.
  2483. Press several times to get the desired effect.
  2484. > Remove a previous restriction.
  2485. # List \"stuck\" projects.
  2486. ! Configure what \"stuck\" means.
  2487. C Configure custom agenda commands.
  2488. More commands can be added by configuring the variable
  2489. `org-agenda-custom-commands'. In particular, specific tags and TODO keyword
  2490. searches can be pre-defined in this way.
  2491. If the current buffer is in Org-mode and visiting a file, you can also
  2492. first press `<' once to indicate that the agenda should be temporarily
  2493. \(until the next use of \\[org-agenda]) restricted to the current file.
  2494. Pressing `<' twice means to restrict to the current subtree or region
  2495. \(if active).
  2496. \(fn &optional ARG ORG-KEYS RESTRICTION)" t nil)
  2497. (defun org-agenda-append-agenda ()
  2498. "Append another agenda view to the current one.
  2499. This function allows interactive building of block agendas.
  2500. Agenda views are separated by `org-agenda-block-separator'."
  2501. (interactive)
  2502. (unless (derived-mode-p 'org-agenda-mode)
  2503. (error "Can only append from within agenda buffer"))
  2504. (let ((org-agenda-multi t))
  2505. (org-agenda)
  2506. (widen)
  2507. (org-agenda-finalize)
  2508. (org-agenda-fit-window-to-buffer)))
  2509. (defun org-agenda-normalize-custom-commands (cmds)
  2510. (delq nil
  2511. (mapcar
  2512. (lambda (x)
  2513. (cond ((stringp (cdr x)) nil)
  2514. ((stringp (nth 1 x)) x)
  2515. ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
  2516. (t (cons (car x) (cons "" (cdr x))))))
  2517. cmds)))
  2518. (defun org-agenda-get-restriction-and-command (prefix-descriptions)
  2519. "The user interface for selecting an agenda command."
  2520. (catch 'exit
  2521. (let* ((bfn (buffer-file-name (buffer-base-buffer)))
  2522. (restrict-ok (and bfn (derived-mode-p 'org-mode)))
  2523. (region-p (org-region-active-p))
  2524. (custom org-agenda-custom-commands)
  2525. (selstring "")
  2526. restriction second-time
  2527. c entry key type match prefixes rmheader header-end custom1 desc
  2528. line lines left right n n1)
  2529. (save-window-excursion
  2530. (delete-other-windows)
  2531. (org-switch-to-buffer-other-window " *Agenda Commands*")
  2532. (erase-buffer)
  2533. (insert (eval-when-compile
  2534. (let ((header
  2535. "Press key for an agenda command: < Buffer, subtree/region restriction
  2536. -------------------------------- > Remove restriction
  2537. a Agenda for current week or day e Export agenda views
  2538. t List of all TODO entries T Entries with special TODO kwd
  2539. m Match a TAGS/PROP/TODO query M Like m, but only TODO entries
  2540. s Search for keywords S Like s, but only TODO entries
  2541. L Timeline for current buffer # List stuck projects (!=configure)
  2542. / Multi-occur C Configure custom agenda commands
  2543. ? Find :FLAGGED: entries * Toggle sticky agenda views
  2544. ")
  2545. (start 0))
  2546. (while (string-match
  2547. "\\(^\\| \\|(\\)\\(\\S-\\)\\( \\|=\\)"
  2548. header start)
  2549. (setq start (match-end 0))
  2550. (add-text-properties (match-beginning 2) (match-end 2)
  2551. '(face bold) header))
  2552. header)))
  2553. (setq header-end (point-marker))
  2554. (while t
  2555. (setq custom1 custom)
  2556. (when (eq rmheader t)
  2557. (org-goto-line 1)
  2558. (re-search-forward ":" nil t)
  2559. (delete-region (match-end 0) (point-at-eol))
  2560. (forward-char 1)
  2561. (looking-at "-+")
  2562. (delete-region (match-end 0) (point-at-eol))
  2563. (move-marker header-end (match-end 0)))
  2564. (goto-char header-end)
  2565. (delete-region (point) (point-max))
  2566. ;; Produce all the lines that describe custom commands and prefixes
  2567. (setq lines nil)
  2568. (while (setq entry (pop custom1))
  2569. (setq key (car entry) desc (nth 1 entry)
  2570. type (nth 2 entry)
  2571. match (nth 3 entry))
  2572. (if (> (length key) 1)
  2573. (add-to-list 'prefixes (string-to-char key))
  2574. (setq line
  2575. (format
  2576. "%-4s%-14s"
  2577. (org-add-props (copy-sequence key)
  2578. '(face bold))
  2579. (cond
  2580. ((string-match "\\S-" desc) desc)
  2581. ((eq type 'agenda) "Agenda for current week or day")
  2582. ((eq type 'alltodo) "List of all TODO entries")
  2583. ((eq type 'search) "Word search")
  2584. ((eq type 'stuck) "List of stuck projects")
  2585. ((eq type 'todo) "TODO keyword")
  2586. ((eq type 'tags) "Tags query")
  2587. ((eq type 'tags-todo) "Tags (TODO)")
  2588. ((eq type 'tags-tree) "Tags tree")
  2589. ((eq type 'todo-tree) "TODO kwd tree")
  2590. ((eq type 'occur-tree) "Occur tree")
  2591. ((functionp type) (if (symbolp type)
  2592. (symbol-name type)
  2593. "Lambda expression"))
  2594. (t "???"))))
  2595. (if org-agenda-menu-show-matcher
  2596. (setq line
  2597. (concat line ": "
  2598. (cond
  2599. ((stringp match)
  2600. (setq match (copy-sequence match))
  2601. (org-add-props match nil 'face 'org-warning))
  2602. ((listp type)
  2603. (format "set of %d commands" (length type))))))
  2604. (if (org-string-nw-p match)
  2605. (add-text-properties
  2606. 0 (length line) (list 'help-echo
  2607. (concat "Matcher: " match)) line)))
  2608. (push line lines)))
  2609. (setq lines (nreverse lines))
  2610. (when prefixes
  2611. (mapc (lambda (x)
  2612. (push
  2613. (format "%s %s"
  2614. (org-add-props (char-to-string x)
  2615. nil 'face 'bold)
  2616. (or (cdr (assoc (concat selstring
  2617. (char-to-string x))
  2618. prefix-descriptions))
  2619. "Prefix key"))
  2620. lines))
  2621. prefixes))
  2622. ;; Check if we should display in two columns
  2623. (if org-agenda-menu-two-columns
  2624. (progn
  2625. (setq n (length lines)
  2626. n1 (+ (/ n 2) (mod n 2))
  2627. right (nthcdr n1 lines)
  2628. left (copy-sequence lines))
  2629. (setcdr (nthcdr (1- n1) left) nil))
  2630. (setq left lines right nil))
  2631. (while left
  2632. (insert "\n" (pop left))
  2633. (when right
  2634. (if (< (current-column) 40)
  2635. (move-to-column 40 t)
  2636. (insert " "))
  2637. (insert (pop right))))
  2638. ;; Make the window the right size
  2639. (goto-char (point-min))
  2640. (if second-time
  2641. (if (not (pos-visible-in-window-p (point-max)))
  2642. (org-fit-window-to-buffer))
  2643. (setq second-time t)
  2644. (org-fit-window-to-buffer))
  2645. ;; Ask for selection
  2646. (message "Press key for agenda command%s:"
  2647. (if (or restrict-ok org-agenda-overriding-restriction)
  2648. (if org-agenda-overriding-restriction
  2649. " (restriction lock active)"
  2650. (if restriction
  2651. (format " (restricted to %s)" restriction)
  2652. " (unrestricted)"))
  2653. ""))
  2654. (setq c (read-char-exclusive))
  2655. (message "")
  2656. (cond
  2657. ((assoc (char-to-string c) custom)
  2658. (setq selstring (concat selstring (char-to-string c)))
  2659. (throw 'exit (cons selstring restriction)))
  2660. ((memq c prefixes)
  2661. (setq selstring (concat selstring (char-to-string c))
  2662. prefixes nil
  2663. rmheader (or rmheader t)
  2664. custom (delq nil (mapcar
  2665. (lambda (x)
  2666. (if (or (= (length (car x)) 1)
  2667. (/= (string-to-char (car x)) c))
  2668. nil
  2669. (cons (substring (car x) 1) (cdr x))))
  2670. custom))))
  2671. ((eq c ?*)
  2672. (call-interactively 'org-toggle-sticky-agenda)
  2673. (sit-for 2))
  2674. ((and (not restrict-ok) (memq c '(?1 ?0 ?<)))
  2675. (message "Restriction is only possible in Org-mode buffers")
  2676. (ding) (sit-for 1))
  2677. ((eq c ?1)
  2678. (org-agenda-remove-restriction-lock 'noupdate)
  2679. (setq restriction 'buffer))
  2680. ((eq c ?0)
  2681. (org-agenda-remove-restriction-lock 'noupdate)
  2682. (setq restriction (if region-p 'region 'subtree)))
  2683. ((eq c ?<)
  2684. (org-agenda-remove-restriction-lock 'noupdate)
  2685. (setq restriction
  2686. (cond
  2687. ((eq restriction 'buffer)
  2688. (if region-p 'region 'subtree))
  2689. ((memq restriction '(subtree region))
  2690. nil)
  2691. (t 'buffer))))
  2692. ((eq c ?>)
  2693. (org-agenda-remove-restriction-lock 'noupdate)
  2694. (setq restriction nil))
  2695. ((and (equal selstring "") (memq c '(?s ?S ?a ?t ?m ?L ?C ?e ?T ?M ?# ?! ?/ ??)))
  2696. (throw 'exit (cons (setq selstring (char-to-string c)) restriction)))
  2697. ((and (> (length selstring) 0) (eq c ?\d))
  2698. (delete-window)
  2699. (org-agenda-get-restriction-and-command prefix-descriptions))
  2700. ((equal c ?q) (error "Abort"))
  2701. (t (error "Invalid key %c" c))))))))
  2702. (defun org-agenda-fit-window-to-buffer ()
  2703. "Fit the window to the buffer size."
  2704. (and (memq org-agenda-window-setup '(reorganize-frame))
  2705. (fboundp 'fit-window-to-buffer)
  2706. (org-fit-window-to-buffer
  2707. nil
  2708. (floor (* (frame-height) (cdr org-agenda-window-frame-fractions)))
  2709. (floor (* (frame-height) (car org-agenda-window-frame-fractions))))))
  2710. (defvar org-cmd nil)
  2711. (defvar org-agenda-overriding-cmd nil)
  2712. (defvar org-agenda-overriding-arguments nil)
  2713. (defvar org-agenda-overriding-cmd-arguments nil)
  2714. (defun org-agenda-run-series (name series)
  2715. (org-let (nth 1 series) '(org-agenda-prepare name))
  2716. ;; We need to reset agenda markers here, because when constructing a
  2717. ;; block agenda, the individual blocks do not do that.
  2718. (org-agenda-reset-markers)
  2719. (let* ((org-agenda-multi t)
  2720. (redo (list 'org-agenda-run-series name (list 'quote series)))
  2721. (cmds (car series))
  2722. (gprops (nth 1 series))
  2723. match ;; The byte compiler incorrectly complains about this. Keep it!
  2724. org-cmd type lprops)
  2725. (while (setq org-cmd (pop cmds))
  2726. (setq type (car org-cmd)
  2727. match (eval (nth 1 org-cmd))
  2728. lprops (nth 2 org-cmd))
  2729. (let ((org-agenda-overriding-arguments
  2730. (if (eq org-agenda-overriding-cmd org-cmd)
  2731. (or org-agenda-overriding-arguments
  2732. org-agenda-overriding-cmd-arguments))))
  2733. (cond
  2734. ((eq type 'agenda)
  2735. (org-let2 gprops lprops
  2736. '(call-interactively 'org-agenda-list)))
  2737. ((eq type 'alltodo)
  2738. (org-let2 gprops lprops
  2739. '(call-interactively 'org-todo-list)))
  2740. ((eq type 'search)
  2741. (org-let2 gprops lprops
  2742. '(org-search-view current-prefix-arg match nil)))
  2743. ((eq type 'stuck)
  2744. (org-let2 gprops lprops
  2745. '(call-interactively 'org-agenda-list-stuck-projects)))
  2746. ((eq type 'tags)
  2747. (org-let2 gprops lprops
  2748. '(org-tags-view current-prefix-arg match)))
  2749. ((eq type 'tags-todo)
  2750. (org-let2 gprops lprops
  2751. '(org-tags-view '(4) match)))
  2752. ((eq type 'todo)
  2753. (org-let2 gprops lprops
  2754. '(org-todo-list match)))
  2755. ((fboundp type)
  2756. (org-let2 gprops lprops
  2757. '(funcall type match)))
  2758. (t (error "Invalid type in command series")))))
  2759. (widen)
  2760. (let ((inhibit-read-only t))
  2761. (add-text-properties (point-min) (point-max)
  2762. `(org-series t org-series-redo-cmd ,redo)))
  2763. (setq org-agenda-redo-command redo)
  2764. (goto-char (point-min)))
  2765. (org-agenda-fit-window-to-buffer)
  2766. (org-let (nth 1 series) '(org-agenda-finalize)))
  2767. ;;;###autoload
  2768. (defmacro org-batch-agenda (cmd-key &rest parameters)
  2769. "Run an agenda command in batch mode and send the result to STDOUT.
  2770. If CMD-KEY is a string of length 1, it is used as a key in
  2771. `org-agenda-custom-commands' and triggers this command. If it is a
  2772. longer string it is used as a tags/todo match string.
  2773. Parameters are alternating variable names and values that will be bound
  2774. before running the agenda command."
  2775. (org-eval-in-environment (org-make-parameter-alist parameters)
  2776. (if (> (length cmd-key) 2)
  2777. (org-tags-view nil cmd-key)
  2778. (org-agenda nil cmd-key)))
  2779. (set-buffer org-agenda-buffer-name)
  2780. (princ (buffer-string)))
  2781. (autoload 'org-batch-agenda "org-agenda" "\
  2782. Run an agenda command in batch mode and send the result to STDOUT.
  2783. If CMD-KEY is a string of length 1, it is used as a key in
  2784. `org-agenda-custom-commands' and triggers this command. If it is a
  2785. longer string it is used as a tags/todo match string.
  2786. Parameters are alternating variable names and values that will be bound
  2787. before running the agenda command.
  2788. \(fn CMD-KEY &rest PARAMETERS)" nil t)
  2789. (def-edebug-spec org-batch-agenda (form &rest sexp))
  2790. (defvar org-agenda-info nil)
  2791. ;;;###autoload
  2792. (defmacro org-batch-agenda-csv (cmd-key &rest parameters)
  2793. "Run an agenda command in batch mode and send the result to STDOUT.
  2794. If CMD-KEY is a string of length 1, it is used as a key in
  2795. `org-agenda-custom-commands' and triggers this command. If it is a
  2796. longer string it is used as a tags/todo match string.
  2797. Parameters are alternating variable names and values that will be bound
  2798. before running the agenda command.
  2799. The output gives a line for each selected agenda item. Each
  2800. item is a list of comma-separated values, like this:
  2801. category,head,type,todo,tags,date,time,extra,priority-l,priority-n
  2802. category The category of the item
  2803. head The headline, without TODO kwd, TAGS and PRIORITY
  2804. type The type of the agenda entry, can be
  2805. todo selected in TODO match
  2806. tagsmatch selected in tags match
  2807. diary imported from diary
  2808. deadline a deadline on given date
  2809. scheduled scheduled on given date
  2810. timestamp entry has timestamp on given date
  2811. closed entry was closed on given date
  2812. upcoming-deadline warning about deadline
  2813. past-scheduled forwarded scheduled item
  2814. block entry has date block including g. date
  2815. todo The todo keyword, if any
  2816. tags All tags including inherited ones, separated by colons
  2817. date The relevant date, like 2007-2-14
  2818. time The time, like 15:00-16:50
  2819. extra Sting with extra planning info
  2820. priority-l The priority letter if any was given
  2821. priority-n The computed numerical priority
  2822. agenda-day The day in the agenda where this is listed"
  2823. (org-eval-in-environment (append '((org-agenda-remove-tags t))
  2824. (org-make-parameter-alist parameters))
  2825. (if (> (length cmd-key) 2)
  2826. (org-tags-view nil cmd-key)
  2827. (org-agenda nil cmd-key)))
  2828. (set-buffer org-agenda-buffer-name)
  2829. (let* ((lines (org-split-string (buffer-string) "\n"))
  2830. line)
  2831. (while (setq line (pop lines))
  2832. (catch 'next
  2833. (if (not (get-text-property 0 'org-category line)) (throw 'next nil))
  2834. (setq org-agenda-info
  2835. (org-fix-agenda-info (text-properties-at 0 line)))
  2836. (princ
  2837. (mapconcat 'org-agenda-export-csv-mapper
  2838. '(org-category txt type todo tags date time extra
  2839. priority-letter priority agenda-day)
  2840. ","))
  2841. (princ "\n")))))
  2842. (autoload 'org-batch-agenda-csv "org-agenda" "\
  2843. Run an agenda command in batch mode and send the result to STDOUT.
  2844. If CMD-KEY is a string of length 1, it is used as a key in
  2845. `org-agenda-custom-commands' and triggers this command. If it is a
  2846. longer string it is used as a tags/todo match string.
  2847. Parameters are alternating variable names and values that will be bound
  2848. before running the agenda command.
  2849. The output gives a line for each selected agenda item. Each
  2850. item is a list of comma-separated values, like this:
  2851. category,head,type,todo,tags,date,time,extra,priority-l,priority-n
  2852. category The category of the item
  2853. head The headline, without TODO kwd, TAGS and PRIORITY
  2854. type The type of the agenda entry, can be
  2855. todo selected in TODO match
  2856. tagsmatch selected in tags match
  2857. diary imported from diary
  2858. deadline a deadline on given date
  2859. scheduled scheduled on given date
  2860. timestamp entry has timestamp on given date
  2861. closed entry was closed on given date
  2862. upcoming-deadline warning about deadline
  2863. past-scheduled forwarded scheduled item
  2864. block entry has date block including g. date
  2865. todo The todo keyword, if any
  2866. tags All tags including inherited ones, separated by colons
  2867. date The relevant date, like 2007-2-14
  2868. time The time, like 15:00-16:50
  2869. extra Sting with extra planning info
  2870. priority-l The priority letter if any was given
  2871. priority-n The computed numerical priority
  2872. agenda-day The day in the agenda where this is listed
  2873. \(fn CMD-KEY &rest PARAMETERS)" nil t)
  2874. (def-edebug-spec org-batch-agenda-csv (form &rest sexp))
  2875. (defun org-fix-agenda-info (props)
  2876. "Make sure all properties on an agenda item have a canonical form.
  2877. This ensures the export commands can easily use it."
  2878. (let (tmp re)
  2879. (when (setq tmp (plist-get props 'tags))
  2880. (setq props (plist-put props 'tags (mapconcat 'identity tmp ":"))))
  2881. (when (setq tmp (plist-get props 'date))
  2882. (if (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
  2883. (let ((calendar-date-display-form '(year "-" month "-" day)))
  2884. '((format "%4d, %9s %2s, %4s" dayname monthname day year))
  2885. (setq tmp (calendar-date-string tmp)))
  2886. (setq props (plist-put props 'date tmp)))
  2887. (when (setq tmp (plist-get props 'day))
  2888. (if (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
  2889. (let ((calendar-date-display-form '(year "-" month "-" day)))
  2890. (setq tmp (calendar-date-string tmp)))
  2891. (setq props (plist-put props 'day tmp))
  2892. (setq props (plist-put props 'agenda-day tmp)))
  2893. (when (setq tmp (plist-get props 'txt))
  2894. (when (string-match "\\[#\\([A-Z0-9]\\)\\] ?" tmp)
  2895. (plist-put props 'priority-letter (match-string 1 tmp))
  2896. (setq tmp (replace-match "" t t tmp)))
  2897. (when (and (setq re (plist-get props 'org-todo-regexp))
  2898. (setq re (concat "\\`\\.*" re " ?"))
  2899. (string-match re tmp))
  2900. (plist-put props 'todo (match-string 1 tmp))
  2901. (setq tmp (replace-match "" t t tmp)))
  2902. (plist-put props 'txt tmp)))
  2903. props)
  2904. (defun org-agenda-export-csv-mapper (prop)
  2905. (let ((res (plist-get org-agenda-info prop)))
  2906. (setq res
  2907. (cond
  2908. ((not res) "")
  2909. ((stringp res) res)
  2910. (t (prin1-to-string res))))
  2911. (while (string-match "," res)
  2912. (setq res (replace-match ";" t t res)))
  2913. (org-trim res)))
  2914. ;;;###autoload
  2915. (defun org-store-agenda-views (&rest parameters)
  2916. (interactive)
  2917. (eval (list 'org-batch-store-agenda-views)))
  2918. (autoload 'org-store-agenda-views "org-agenda" "\
  2919. \(fn &rest PARAMETERS)" t nil)
  2920. ;;;###autoload
  2921. (defmacro org-batch-store-agenda-views (&rest parameters)
  2922. "Run all custom agenda commands that have a file argument."
  2923. (let ((cmds (org-agenda-normalize-custom-commands org-agenda-custom-commands))
  2924. (pop-up-frames nil)
  2925. (dir default-directory)
  2926. (pars (org-make-parameter-alist parameters))
  2927. cmd thiscmdkey thiscmdcmd match files opts cmd-or-set bufname)
  2928. (save-window-excursion
  2929. (while cmds
  2930. (setq cmd (pop cmds)
  2931. thiscmdkey (car cmd)
  2932. thiscmdcmd (cdr cmd)
  2933. match (nth 2 thiscmdcmd)
  2934. bufname (if org-agenda-sticky
  2935. (or (and (stringp match)
  2936. (format "*Org Agenda(%s:%s)*" thiscmdkey match))
  2937. (format "*Org Agenda(%s)*" thiscmdkey))
  2938. org-agenda-buffer-name)
  2939. cmd-or-set (nth 2 cmd)
  2940. opts (nth (if (listp cmd-or-set) 3 4) cmd)
  2941. files (nth (if (listp cmd-or-set) 4 5) cmd))
  2942. (if (stringp files) (setq files (list files)))
  2943. (when files
  2944. (org-eval-in-environment (append org-agenda-exporter-settings
  2945. opts pars)
  2946. (org-agenda nil thiscmdkey))
  2947. (set-buffer bufname)
  2948. (while files
  2949. (org-eval-in-environment (append org-agenda-exporter-settings
  2950. opts pars)
  2951. (org-agenda-write (expand-file-name (pop files) dir) nil t bufname)))
  2952. (and (get-buffer bufname)
  2953. (kill-buffer bufname)))))))
  2954. (autoload 'org-batch-store-agenda-views "org-agenda" "\
  2955. Run all custom agenda commands that have a file argument.
  2956. \(fn &rest PARAMETERS)" nil t)
  2957. (def-edebug-spec org-batch-store-agenda-views (&rest sexp))
  2958. (defvar org-agenda-current-span nil
  2959. "The current span used in the agenda view.") ; local variable in the agenda buffer
  2960. (defun org-agenda-mark-header-line (pos)
  2961. "Mark the line at POS as an agenda structure header."
  2962. (save-excursion
  2963. (goto-char pos)
  2964. (put-text-property (point-at-bol) (point-at-eol)
  2965. 'org-agenda-structural-header t)
  2966. (when org-agenda-title-append
  2967. (put-text-property (point-at-bol) (point-at-eol)
  2968. 'org-agenda-title-append org-agenda-title-append))))
  2969. (defvar org-mobile-creating-agendas) ; defined in org-mobile.el
  2970. (defvar org-agenda-write-buffer-name "Agenda View")
  2971. (defun org-agenda-write (file &optional open nosettings agenda-bufname)
  2972. "Write the current buffer (an agenda view) as a file.
  2973. Depending on the extension of the file name, plain text (.txt),
  2974. HTML (.html or .htm), PDF (.pdf) or Postscript (.ps) is produced.
  2975. If the extension is .ics, run icalendar export over all files used
  2976. to construct the agenda and limit the export to entries listed in the
  2977. agenda now.
  2978. If the extension is .org, collect all subtrees corresponding to the
  2979. agenda entries and add them in an .org file.
  2980. With prefix argument OPEN, open the new file immediately.
  2981. If NOSETTINGS is given, do not scope the settings of
  2982. `org-agenda-exporter-settings' into the export commands. This is used when
  2983. the settings have already been scoped and we do not wish to overrule other,
  2984. higher priority settings.
  2985. If AGENDA-BUFFER-NAME, use this as the buffer name for the agenda to write."
  2986. (interactive "FWrite agenda to file: \nP")
  2987. (if (not (file-writable-p file))
  2988. (error "Cannot write agenda to file %s" file))
  2989. (org-let (if nosettings nil org-agenda-exporter-settings)
  2990. '(save-excursion
  2991. (save-window-excursion
  2992. (org-agenda-mark-filtered-text)
  2993. (let ((bs (copy-sequence (buffer-string))) beg content)
  2994. (org-agenda-unmark-filtered-text)
  2995. (with-temp-buffer
  2996. (rename-buffer org-agenda-write-buffer-name t)
  2997. (set-buffer-modified-p nil)
  2998. (insert bs)
  2999. (org-agenda-remove-marked-text 'org-filtered)
  3000. (while (setq beg (text-property-any (point-min) (point-max)
  3001. 'org-filtered t))
  3002. (delete-region
  3003. beg (or (next-single-property-change beg 'org-filtered)
  3004. (point-max))))
  3005. (run-hooks 'org-agenda-before-write-hook)
  3006. (cond
  3007. ((org-bound-and-true-p org-mobile-creating-agendas)
  3008. (org-mobile-write-agenda-for-mobile file))
  3009. ((string-match "\\.org\\'" file)
  3010. (let (content p m message-log-max)
  3011. (goto-char (point-min))
  3012. (while (setq p (next-single-property-change (point) 'org-hd-marker nil))
  3013. (goto-char p)
  3014. (setq m (get-text-property (point) 'org-hd-marker))
  3015. (when m
  3016. (push (save-excursion
  3017. (set-buffer (marker-buffer m))
  3018. (goto-char m)
  3019. (org-copy-subtree 1 nil t t)
  3020. org-subtree-clip)
  3021. content)))
  3022. (find-file file)
  3023. (erase-buffer)
  3024. (mapcar (lambda (s) (org-paste-subtree 1 s)) (reverse content))
  3025. (write-file file)
  3026. (kill-buffer (current-buffer))
  3027. (message "Org file written to %s" file)))
  3028. ((string-match "\\.html?\\'" file)
  3029. (require 'htmlize)
  3030. (set-buffer (htmlize-buffer (current-buffer)))
  3031. (when org-agenda-export-html-style
  3032. ;; replace <style> section with org-agenda-export-html-style
  3033. (goto-char (point-min))
  3034. (kill-region (- (search-forward "<style") 6)
  3035. (search-forward "</style>"))
  3036. (insert org-agenda-export-html-style))
  3037. (write-file file)
  3038. (kill-buffer (current-buffer))
  3039. (message "HTML written to %s" file))
  3040. ((string-match "\\.ps\\'" file)
  3041. (require 'ps-print)
  3042. (ps-print-buffer-with-faces file)
  3043. (message "Postscript written to %s" file))
  3044. ((string-match "\\.pdf\\'" file)
  3045. (require 'ps-print)
  3046. (ps-print-buffer-with-faces
  3047. (concat (file-name-sans-extension file) ".ps"))
  3048. (call-process "ps2pdf" nil nil nil
  3049. (expand-file-name
  3050. (concat (file-name-sans-extension file) ".ps"))
  3051. (expand-file-name file))
  3052. (delete-file (concat (file-name-sans-extension file) ".ps"))
  3053. (message "PDF written to %s" file))
  3054. ((string-match "\\.ics\\'" file)
  3055. (require 'ox-icalendar)
  3056. (org-icalendar-export-current-agenda (expand-file-name file)))
  3057. (t
  3058. (let ((bs (buffer-string)))
  3059. (find-file file)
  3060. (erase-buffer)
  3061. (insert bs)
  3062. (save-buffer 0)
  3063. (kill-buffer (current-buffer))
  3064. (message "Plain text written to %s" file))))))))
  3065. (set-buffer (or agenda-bufname
  3066. (and (org-called-interactively-p 'any) (buffer-name))
  3067. org-agenda-buffer-name)))
  3068. (when open (org-open-file file)))
  3069. (defvar org-agenda-tag-filter-overlays nil)
  3070. (defvar org-agenda-cat-filter-overlays nil)
  3071. (defun org-agenda-mark-filtered-text ()
  3072. "Mark all text hidden by filtering with a text property."
  3073. (let ((inhibit-read-only t))
  3074. (mapc
  3075. (lambda (o)
  3076. (when (equal (overlay-buffer o) (current-buffer))
  3077. (put-text-property
  3078. (overlay-start o) (overlay-end o)
  3079. 'org-filtered t)))
  3080. (append org-agenda-tag-filter-overlays
  3081. org-agenda-cat-filter-overlays))))
  3082. (defun org-agenda-unmark-filtered-text ()
  3083. "Remove the filtering text property."
  3084. (let ((inhibit-read-only t))
  3085. (remove-text-properties (point-min) (point-max) '(org-filtered t))))
  3086. (defun org-agenda-remove-marked-text (property &optional value)
  3087. "Delete all text marked with VALUE of PROPERTY.
  3088. VALUE defaults to t."
  3089. (let (beg)
  3090. (setq value (or value t))
  3091. (while (setq beg (text-property-any (point-min) (point-max)
  3092. property value))
  3093. (delete-region
  3094. beg (or (next-single-property-change beg 'org-filtered)
  3095. (point-max))))))
  3096. (defun org-agenda-add-entry-text ()
  3097. "Add entry text to agenda lines.
  3098. This will add a maximum of `org-agenda-add-entry-text-maxlines' lines of the
  3099. entry text following headings shown in the agenda.
  3100. Drawers will be excluded, also the line with scheduling/deadline info."
  3101. (when (and (> org-agenda-add-entry-text-maxlines 0)
  3102. (not (org-bound-and-true-p org-mobile-creating-agendas)))
  3103. (let (m txt)
  3104. (goto-char (point-min))
  3105. (while (not (eobp))
  3106. (if (not (setq m (org-get-at-bol 'org-hd-marker)))
  3107. (beginning-of-line 2)
  3108. (setq txt (org-agenda-get-some-entry-text
  3109. m org-agenda-add-entry-text-maxlines " > "))
  3110. (end-of-line 1)
  3111. (if (string-match "\\S-" txt)
  3112. (insert "\n" txt)
  3113. (or (eobp) (forward-char 1))))))))
  3114. (defun org-agenda-get-some-entry-text (marker n-lines &optional indent
  3115. &rest keep)
  3116. "Extract entry text from MARKER, at most N-LINES lines.
  3117. This will ignore drawers etc, just get the text.
  3118. If INDENT is given, prefix every line with this string. If KEEP is
  3119. given, it is a list of symbols, defining stuff that should not be
  3120. removed from the entry content. Currently only `planning' is allowed here."
  3121. (let (txt drawer-re kwd-time-re ind)
  3122. (save-excursion
  3123. (with-current-buffer (marker-buffer marker)
  3124. (if (not (derived-mode-p 'org-mode))
  3125. (setq txt "")
  3126. (save-excursion
  3127. (save-restriction
  3128. (widen)
  3129. (goto-char marker)
  3130. (end-of-line 1)
  3131. (setq txt (buffer-substring
  3132. (min (1+ (point)) (point-max))
  3133. (progn (outline-next-heading) (point)))
  3134. drawer-re org-drawer-regexp
  3135. kwd-time-re (concat "^[ \t]*" org-keyword-time-regexp
  3136. ".*\n?"))
  3137. (with-temp-buffer
  3138. (insert txt)
  3139. (when org-agenda-add-entry-text-descriptive-links
  3140. (goto-char (point-min))
  3141. (while (org-activate-bracket-links (point-max))
  3142. (add-text-properties (match-beginning 0) (match-end 0)
  3143. '(face org-link))))
  3144. (goto-char (point-min))
  3145. (while (re-search-forward org-bracket-link-regexp (point-max) t)
  3146. (set-text-properties (match-beginning 0) (match-end 0)
  3147. nil))
  3148. (goto-char (point-min))
  3149. (while (re-search-forward drawer-re nil t)
  3150. (delete-region
  3151. (match-beginning 0)
  3152. (progn (re-search-forward
  3153. "^[ \t]*:END:.*\n?" nil 'move)
  3154. (point))))
  3155. (unless (member 'planning keep)
  3156. (goto-char (point-min))
  3157. (while (re-search-forward kwd-time-re nil t)
  3158. (replace-match "")))
  3159. (goto-char (point-min))
  3160. (when org-agenda-entry-text-exclude-regexps
  3161. (let ((re-list org-agenda-entry-text-exclude-regexps) re)
  3162. (while (setq re (pop re-list))
  3163. (goto-char (point-min))
  3164. (while (re-search-forward re nil t)
  3165. (replace-match "")))))
  3166. (goto-char (point-max))
  3167. (skip-chars-backward " \t\n")
  3168. (if (looking-at "[ \t\n]+\\'") (replace-match ""))
  3169. ;; find and remove min common indentation
  3170. (goto-char (point-min))
  3171. (untabify (point-min) (point-max))
  3172. (setq ind (org-get-indentation))
  3173. (while (not (eobp))
  3174. (unless (looking-at "[ \t]*$")
  3175. (setq ind (min ind (org-get-indentation))))
  3176. (beginning-of-line 2))
  3177. (goto-char (point-min))
  3178. (while (not (eobp))
  3179. (unless (looking-at "[ \t]*$")
  3180. (move-to-column ind)
  3181. (delete-region (point-at-bol) (point)))
  3182. (beginning-of-line 2))
  3183. (run-hooks 'org-agenda-entry-text-cleanup-hook)
  3184. (goto-char (point-min))
  3185. (when indent
  3186. (while (and (not (eobp)) (re-search-forward "^" nil t))
  3187. (replace-match indent t t)))
  3188. (goto-char (point-min))
  3189. (while (looking-at "[ \t]*\n") (replace-match ""))
  3190. (goto-char (point-max))
  3191. (when (> (org-current-line)
  3192. n-lines)
  3193. (org-goto-line (1+ n-lines))
  3194. (backward-char 1))
  3195. (setq txt (buffer-substring (point-min) (point)))))))))
  3196. txt))
  3197. (defun org-agenda-collect-markers ()
  3198. "Collect the markers pointing to entries in the agenda buffer."
  3199. (let (m markers)
  3200. (save-excursion
  3201. (goto-char (point-min))
  3202. (while (not (eobp))
  3203. (when (setq m (or (org-get-at-bol 'org-hd-marker)
  3204. (org-get-at-bol 'org-marker)))
  3205. (push m markers))
  3206. (beginning-of-line 2)))
  3207. (nreverse markers)))
  3208. (defun org-create-marker-find-array (marker-list)
  3209. "Create a alist of files names with all marker positions in that file."
  3210. (let (f tbl m a p)
  3211. (while (setq m (pop marker-list))
  3212. (setq p (marker-position m)
  3213. f (buffer-file-name (or (buffer-base-buffer
  3214. (marker-buffer m))
  3215. (marker-buffer m))))
  3216. (if (setq a (assoc f tbl))
  3217. (push (marker-position m) (cdr a))
  3218. (push (list f p) tbl)))
  3219. (mapcar (lambda (x) (setcdr x (sort (copy-sequence (cdr x)) '<)) x)
  3220. tbl)))
  3221. (defvar org-agenda-marker-table nil) ; dynamically scoped parameter
  3222. (defun org-check-agenda-marker-table ()
  3223. "Check of the current entry is on the marker list."
  3224. (let ((file (buffer-file-name (or (buffer-base-buffer) (current-buffer))))
  3225. a)
  3226. (and (setq a (assoc file org-agenda-marker-table))
  3227. (save-match-data
  3228. (save-excursion
  3229. (org-back-to-heading t)
  3230. (member (point) (cdr a)))))))
  3231. (defun org-check-for-org-mode ()
  3232. "Make sure current buffer is in org-mode. Error if not."
  3233. (or (derived-mode-p 'org-mode)
  3234. (error "Cannot execute org-mode agenda command on buffer in %s"
  3235. major-mode)))
  3236. ;;; Agenda prepare and finalize
  3237. (defvar org-agenda-multi nil) ; dynamically scoped
  3238. (defvar org-agenda-pre-window-conf nil)
  3239. (defvar org-agenda-columns-active nil)
  3240. (defvar org-agenda-name nil)
  3241. (defvar org-agenda-tag-filter nil)
  3242. (defvar org-agenda-category-filter nil)
  3243. (defvar org-agenda-top-category-filter nil)
  3244. (defvar org-agenda-tag-filter-while-redo nil)
  3245. (defvar org-agenda-tag-filter-preset nil
  3246. "A preset of the tags filter used for secondary agenda filtering.
  3247. This must be a list of strings, each string must be a single tag preceded
  3248. by \"+\" or \"-\".
  3249. This variable should not be set directly, but agenda custom commands can
  3250. bind it in the options section. The preset filter is a global property of
  3251. the entire agenda view. In a block agenda, it will not work reliably to
  3252. define a filter for one of the individual blocks. You need to set it in
  3253. the global options and expect it to be applied to the entire view.")
  3254. (defvar org-agenda-category-filter-preset nil
  3255. "A preset of the category filter used for secondary agenda filtering.
  3256. This must be a list of strings, each string must be a single category
  3257. preceded by \"+\" or \"-\".
  3258. This variable should not be set directly, but agenda custom commands can
  3259. bind it in the options section. The preset filter is a global property of
  3260. the entire agenda view. In a block agenda, it will not work reliably to
  3261. define a filter for one of the individual blocks. You need to set it in
  3262. the global options and expect it to be applied to the entire view.")
  3263. (defun org-agenda-use-sticky-p ()
  3264. "Return non-nil if an agenda buffer named
  3265. `org-agenda-buffer-name' exists and should be shown instead of
  3266. generating a new one."
  3267. (and
  3268. ;; turned off by user
  3269. org-agenda-sticky
  3270. ;; For multi-agenda buffer already exists
  3271. (not org-agenda-multi)
  3272. ;; buffer found
  3273. (get-buffer org-agenda-buffer-name)
  3274. ;; C-u parameter is same as last call
  3275. (with-current-buffer (get-buffer org-agenda-buffer-name)
  3276. (and
  3277. (equal current-prefix-arg
  3278. org-agenda-last-prefix-arg)
  3279. ;; In case user turned stickiness on, while having existing
  3280. ;; Agenda buffer active, don't reuse that buffer, because it
  3281. ;; does not have org variables local
  3282. org-agenda-this-buffer-is-sticky))))
  3283. (defun org-agenda-prepare-window (abuf)
  3284. "Setup agenda buffer in the window."
  3285. (let* ((awin (get-buffer-window abuf))
  3286. wconf)
  3287. (cond
  3288. ((equal (current-buffer) abuf) nil)
  3289. (awin (select-window awin))
  3290. ((not (setq wconf (current-window-configuration))))
  3291. ((equal org-agenda-window-setup 'current-window)
  3292. (org-pop-to-buffer-same-window abuf))
  3293. ((equal org-agenda-window-setup 'other-window)
  3294. (org-switch-to-buffer-other-window abuf))
  3295. ((equal org-agenda-window-setup 'other-frame)
  3296. (switch-to-buffer-other-frame abuf))
  3297. ((equal org-agenda-window-setup 'reorganize-frame)
  3298. (delete-other-windows)
  3299. (org-switch-to-buffer-other-window abuf)))
  3300. ;; additional test in case agenda is invoked from within agenda
  3301. ;; buffer via elisp link
  3302. (unless (equal (current-buffer) abuf)
  3303. (org-pop-to-buffer-same-window abuf))
  3304. (setq org-agenda-pre-window-conf
  3305. (or org-agenda-pre-window-conf wconf))))
  3306. (defun org-agenda-prepare (&optional name)
  3307. (if (org-agenda-use-sticky-p)
  3308. (progn
  3309. ;; Popup existing buffer
  3310. (org-agenda-prepare-window (get-buffer org-agenda-buffer-name))
  3311. (message "Sticky Agenda buffer, use `r' to refresh")
  3312. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  3313. (throw 'exit "Sticky Agenda buffer, use `r' to refresh"))
  3314. (setq org-todo-keywords-for-agenda nil)
  3315. (setq org-drawers-for-agenda nil)
  3316. (unless org-agenda-persistent-filter
  3317. (setq org-agenda-tag-filter nil
  3318. org-agenda-category-filter nil))
  3319. (put 'org-agenda-tag-filter :preset-filter
  3320. org-agenda-tag-filter-preset)
  3321. (put 'org-agenda-category-filter :preset-filter
  3322. org-agenda-category-filter-preset)
  3323. (if org-agenda-multi
  3324. (progn
  3325. (setq buffer-read-only nil)
  3326. (goto-char (point-max))
  3327. (unless (or (bobp) org-agenda-compact-blocks
  3328. (not org-agenda-block-separator))
  3329. (insert "\n"
  3330. (if (stringp org-agenda-block-separator)
  3331. org-agenda-block-separator
  3332. (make-string (window-width) org-agenda-block-separator))
  3333. "\n"))
  3334. (narrow-to-region (point) (point-max)))
  3335. (setq org-done-keywords-for-agenda nil)
  3336. ;; Setting any org variables that are in org-agenda-local-vars
  3337. ;; list need to be done after the prepare call
  3338. (org-agenda-prepare-window (get-buffer-create org-agenda-buffer-name))
  3339. (setq buffer-read-only nil)
  3340. (org-agenda-reset-markers)
  3341. (let ((inhibit-read-only t)) (erase-buffer))
  3342. (org-agenda-mode)
  3343. (setq org-agenda-buffer (current-buffer))
  3344. (setq org-agenda-contributing-files nil)
  3345. (setq org-agenda-columns-active nil)
  3346. (org-agenda-prepare-buffers (org-agenda-files nil 'ifmode))
  3347. (setq org-todo-keywords-for-agenda
  3348. (org-uniquify org-todo-keywords-for-agenda))
  3349. (setq org-done-keywords-for-agenda
  3350. (org-uniquify org-done-keywords-for-agenda))
  3351. (setq org-drawers-for-agenda (org-uniquify org-drawers-for-agenda))
  3352. (setq org-agenda-last-prefix-arg current-prefix-arg)
  3353. (setq org-agenda-this-buffer-name org-agenda-buffer-name)
  3354. (and name (not org-agenda-name)
  3355. (org-set-local 'org-agenda-name name)))
  3356. (setq buffer-read-only nil)))
  3357. (defvar org-agenda-overriding-columns-format) ; From org-colview.el
  3358. (defun org-agenda-finalize ()
  3359. "Finishing touch for the agenda buffer, called just before displaying it."
  3360. (unless org-agenda-multi
  3361. (save-excursion
  3362. (let ((inhibit-read-only t))
  3363. (goto-char (point-min))
  3364. (save-excursion
  3365. (while (org-activate-bracket-links (point-max))
  3366. (add-text-properties (match-beginning 0) (match-end 0)
  3367. '(face org-link))))
  3368. (save-excursion
  3369. (while (org-activate-plain-links (point-max))
  3370. (add-text-properties (match-beginning 0) (match-end 0)
  3371. '(face org-link))))
  3372. (unless (eq org-agenda-remove-tags t)
  3373. (org-agenda-align-tags))
  3374. (unless org-agenda-with-colors
  3375. (remove-text-properties (point-min) (point-max) '(face nil)))
  3376. (if (and (boundp 'org-agenda-overriding-columns-format)
  3377. org-agenda-overriding-columns-format)
  3378. (org-set-local 'org-agenda-overriding-columns-format
  3379. org-agenda-overriding-columns-format))
  3380. (if (and (boundp 'org-agenda-view-columns-initially)
  3381. org-agenda-view-columns-initially)
  3382. (org-agenda-columns))
  3383. (when org-agenda-fontify-priorities
  3384. (org-agenda-fontify-priorities))
  3385. (when (and org-agenda-dim-blocked-tasks org-blocker-hook)
  3386. (org-agenda-dim-blocked-tasks))
  3387. ;; We need to widen when `org-agenda-finalize' is called from
  3388. ;; `org-agenda-change-all-lines' (e.g. in `org-agenda-clock-in')
  3389. (when org-clock-current-task
  3390. (save-restriction
  3391. (widen)
  3392. (org-agenda-mark-clocking-task)))
  3393. (when org-agenda-entry-text-mode
  3394. (org-agenda-entry-text-hide)
  3395. (org-agenda-entry-text-show))
  3396. (if (and (functionp 'org-habit-insert-consistency-graphs)
  3397. (save-excursion (next-single-property-change (point-min) 'org-habit-p)))
  3398. (org-habit-insert-consistency-graphs))
  3399. (setq org-agenda-type (org-get-at-bol 'org-agenda-type))
  3400. (unless (or (eq org-agenda-show-inherited-tags 'always)
  3401. (and (listp org-agenda-show-inherited-tags)
  3402. (memq org-agenda-type org-agenda-show-inherited-tags))
  3403. (and (eq org-agenda-show-inherited-tags t)
  3404. (or (eq org-agenda-use-tag-inheritance t)
  3405. (and (listp org-agenda-use-tag-inheritance)
  3406. (not (memq org-agenda-type
  3407. org-agenda-use-tag-inheritance))))))
  3408. (let (mrk)
  3409. (save-excursion
  3410. (goto-char (point-min))
  3411. (while (equal (forward-line) 0)
  3412. (when (setq mrk (or (get-text-property (point) 'org-hd-marker)
  3413. (get-text-property (point) 'org-hd-marker)))
  3414. (put-text-property (point-at-bol) (point-at-eol)
  3415. 'tags (org-with-point-at mrk
  3416. (delete-dups
  3417. (mapcar 'downcase (org-get-tags-at))))))))))
  3418. (run-hooks 'org-agenda-finalize-hook)
  3419. (when (or org-agenda-tag-filter (get 'org-agenda-tag-filter :preset-filter))
  3420. (org-agenda-filter-apply org-agenda-tag-filter 'tag))
  3421. (when (or org-agenda-category-filter (get 'org-agenda-category-filter :preset-filter))
  3422. (org-agenda-filter-apply org-agenda-category-filter 'category))
  3423. (org-add-hook 'kill-buffer-hook 'org-agenda-reset-markers 'append 'local)))))
  3424. (defun org-agenda-mark-clocking-task ()
  3425. "Mark the current clock entry in the agenda if it is present."
  3426. (mapc (lambda (o)
  3427. (if (eq (overlay-get o 'type) 'org-agenda-clocking)
  3428. (delete-overlay o)))
  3429. (overlays-in (point-min) (point-max)))
  3430. (when (marker-buffer org-clock-hd-marker)
  3431. (save-excursion
  3432. (goto-char (point-min))
  3433. (let (s ov)
  3434. (while (setq s (next-single-property-change (point) 'org-hd-marker))
  3435. (goto-char s)
  3436. (when (equal (org-get-at-bol 'org-hd-marker)
  3437. org-clock-hd-marker)
  3438. (setq ov (make-overlay (point-at-bol) (1+ (point-at-eol))))
  3439. (overlay-put ov 'type 'org-agenda-clocking)
  3440. (overlay-put ov 'face 'org-agenda-clocking)
  3441. (overlay-put ov 'help-echo
  3442. "The clock is running in this item")))))))
  3443. (defun org-agenda-fontify-priorities ()
  3444. "Make highest priority lines bold, and lowest italic."
  3445. (interactive)
  3446. (mapc (lambda (o) (if (eq (overlay-get o 'org-type) 'org-priority)
  3447. (delete-overlay o)))
  3448. (overlays-in (point-min) (point-max)))
  3449. (save-excursion
  3450. (let (b e p ov h l)
  3451. (goto-char (point-min))
  3452. (while (re-search-forward "\\[#\\(.\\)\\]" nil t)
  3453. (setq h (or (get-char-property (point) 'org-highest-priority)
  3454. org-highest-priority)
  3455. l (or (get-char-property (point) 'org-lowest-priority)
  3456. org-lowest-priority)
  3457. p (string-to-char (match-string 1))
  3458. b (match-beginning 0)
  3459. e (if (eq org-agenda-fontify-priorities 'cookies)
  3460. (match-end 0)
  3461. (point-at-eol))
  3462. ov (make-overlay b e))
  3463. (overlay-put
  3464. ov 'face
  3465. (cons (cond ((org-face-from-face-or-color
  3466. 'priority nil
  3467. (cdr (assoc p org-priority-faces))))
  3468. ((and (listp org-agenda-fontify-priorities)
  3469. (org-face-from-face-or-color
  3470. 'priority nil
  3471. (cdr (assoc p org-agenda-fontify-priorities)))))
  3472. ((equal p l) 'italic)
  3473. ((equal p h) 'bold))
  3474. 'org-priority))
  3475. (overlay-put ov 'org-type 'org-priority)))))
  3476. (defun org-agenda-dim-blocked-tasks (&optional invisible)
  3477. (interactive "P")
  3478. "Dim currently blocked TODO's in the agenda display."
  3479. (message "Dim or hide blocked tasks...")
  3480. (mapc (lambda (o) (if (eq (overlay-get o 'org-type) 'org-blocked-todo)
  3481. (delete-overlay o)))
  3482. (overlays-in (point-min) (point-max)))
  3483. (save-excursion
  3484. (let ((inhibit-read-only t)
  3485. (org-depend-tag-blocked nil)
  3486. (invis (or (not (null invisible))
  3487. (eq org-agenda-dim-blocked-tasks 'invisible)))
  3488. org-blocked-by-checkboxes
  3489. invis1 b e p ov h l)
  3490. (goto-char (point-min))
  3491. (while (let ((pos (next-single-property-change (point) 'todo-state)))
  3492. (and pos (goto-char (1+ pos))))
  3493. (setq org-blocked-by-checkboxes nil invis1 invis)
  3494. (let ((marker (org-get-at-bol 'org-hd-marker)))
  3495. (when (and marker
  3496. (with-current-buffer (marker-buffer marker)
  3497. (save-excursion (goto-char marker)
  3498. (org-entry-blocked-p))))
  3499. (if org-blocked-by-checkboxes (setq invis1 nil))
  3500. (setq b (if invis1
  3501. (max (point-min) (1- (point-at-bol)))
  3502. (point-at-bol))
  3503. e (point-at-eol)
  3504. ov (make-overlay b e))
  3505. (if invis1
  3506. (overlay-put ov 'invisible t)
  3507. (overlay-put ov 'face 'org-agenda-dimmed-todo-face))
  3508. (overlay-put ov 'org-type 'org-blocked-todo))))))
  3509. (message "Dim or hide blocked tasks...done"))
  3510. (defvar org-agenda-skip-function nil
  3511. "Function to be called at each match during agenda construction.
  3512. If this function returns nil, the current match should not be skipped.
  3513. Otherwise, the function must return a position from where the search
  3514. should be continued.
  3515. This may also be a Lisp form, it will be evaluated.
  3516. Never set this variable using `setq' or so, because then it will apply
  3517. to all future agenda commands. If you do want a global skipping condition,
  3518. use the option `org-agenda-skip-function-global' instead.
  3519. The correct usage for `org-agenda-skip-function' is to bind it with
  3520. `let' to scope it dynamically into the agenda-constructing command.
  3521. A good way to set it is through options in `org-agenda-custom-commands'.")
  3522. (defun org-agenda-skip ()
  3523. "Throw to `:skip' in places that should be skipped.
  3524. Also moves point to the end of the skipped region, so that search can
  3525. continue from there."
  3526. (let ((p (point-at-bol)) to)
  3527. (when (or
  3528. (save-excursion (goto-char p) (looking-at comment-start-skip))
  3529. (and org-agenda-skip-archived-trees (not org-agenda-archives-mode)
  3530. (get-text-property p :org-archived)
  3531. (org-end-of-subtree t))
  3532. (and org-agenda-skip-comment-trees
  3533. (get-text-property p :org-comment)
  3534. (org-end-of-subtree t))
  3535. (and (setq to (or (org-agenda-skip-eval org-agenda-skip-function-global)
  3536. (org-agenda-skip-eval org-agenda-skip-function)))
  3537. (goto-char to))
  3538. (org-in-src-block-p t))
  3539. (throw :skip t))))
  3540. (defun org-agenda-skip-eval (form)
  3541. "If FORM is a function or a list, call (or eval) is and return result.
  3542. `save-excursion' and `save-match-data' are wrapped around the call, so point
  3543. and match data are returned to the previous state no matter what these
  3544. functions do."
  3545. (let (fp)
  3546. (and form
  3547. (or (setq fp (functionp form))
  3548. (consp form))
  3549. (save-excursion
  3550. (save-match-data
  3551. (if fp
  3552. (funcall form)
  3553. (eval form)))))))
  3554. (defvar org-agenda-markers nil
  3555. "List of all currently active markers created by `org-agenda'.")
  3556. (defvar org-agenda-last-marker-time (org-float-time)
  3557. "Creation time of the last agenda marker.")
  3558. (defun org-agenda-new-marker (&optional pos)
  3559. "Return a new agenda marker.
  3560. Org-mode keeps a list of these markers and resets them when they are
  3561. no longer in use."
  3562. (let ((m (copy-marker (or pos (point)))))
  3563. (setq org-agenda-last-marker-time (org-float-time))
  3564. (if org-agenda-buffer
  3565. (with-current-buffer org-agenda-buffer
  3566. (push m org-agenda-markers))
  3567. (push m org-agenda-markers))
  3568. m))
  3569. (defun org-agenda-reset-markers ()
  3570. "Reset markers created by `org-agenda'."
  3571. (while org-agenda-markers
  3572. (move-marker (pop org-agenda-markers) nil)))
  3573. (defun org-agenda-save-markers-for-cut-and-paste (beg end)
  3574. "Save relative positions of markers in region.
  3575. This check for agenda markers in all agenda buffers currently active."
  3576. (dolist (buf (buffer-list))
  3577. (with-current-buffer buf
  3578. (when (eq major-mode 'org-agenda-mode)
  3579. (mapc (lambda (m) (org-check-and-save-marker m beg end))
  3580. org-agenda-markers)))))
  3581. ;;; Entry text mode
  3582. (defun org-agenda-entry-text-show-here ()
  3583. "Add some text from the entry as context to the current line."
  3584. (let (m txt o)
  3585. (setq m (org-get-at-bol 'org-hd-marker))
  3586. (unless (marker-buffer m)
  3587. (error "No marker points to an entry here"))
  3588. (setq txt (concat "\n" (org-no-properties
  3589. (org-agenda-get-some-entry-text
  3590. m org-agenda-entry-text-maxlines " > "))))
  3591. (when (string-match "\\S-" txt)
  3592. (setq o (make-overlay (point-at-bol) (point-at-eol)))
  3593. (overlay-put o 'evaporate t)
  3594. (overlay-put o 'org-overlay-type 'agenda-entry-content)
  3595. (overlay-put o 'after-string txt))))
  3596. (defun org-agenda-entry-text-show ()
  3597. "Add entry context for all agenda lines."
  3598. (interactive)
  3599. (save-excursion
  3600. (goto-char (point-max))
  3601. (beginning-of-line 1)
  3602. (while (not (bobp))
  3603. (when (org-get-at-bol 'org-hd-marker)
  3604. (org-agenda-entry-text-show-here))
  3605. (beginning-of-line 0))))
  3606. (defun org-agenda-entry-text-hide ()
  3607. "Remove any shown entry context."
  3608. (delq nil
  3609. (mapcar (lambda (o)
  3610. (if (eq (overlay-get o 'org-overlay-type)
  3611. 'agenda-entry-content)
  3612. (progn (delete-overlay o) t)))
  3613. (overlays-in (point-min) (point-max)))))
  3614. (defun org-agenda-get-day-face (date)
  3615. "Return the face DATE should be displayed with."
  3616. (or (and (functionp org-agenda-day-face-function)
  3617. (funcall org-agenda-day-face-function date))
  3618. (cond ((org-agenda-todayp date)
  3619. 'org-agenda-date-today)
  3620. ((member (calendar-day-of-week date) org-agenda-weekend-days)
  3621. 'org-agenda-date-weekend)
  3622. (t 'org-agenda-date))))
  3623. ;;; Agenda timeline
  3624. (defvar org-agenda-only-exact-dates nil) ; dynamically scoped
  3625. (defun org-timeline (&optional dotodo)
  3626. "Show a time-sorted view of the entries in the current org file.
  3627. Only entries with a time stamp of today or later will be listed. With
  3628. \\[universal-argument] prefix, all unfinished TODO items will also be shown,
  3629. under the current date.
  3630. If the buffer contains an active region, only check the region for
  3631. dates."
  3632. (interactive "P")
  3633. (let* ((dopast t)
  3634. (org-agenda-show-log-scoped org-agenda-show-log)
  3635. (entry (buffer-file-name (or (buffer-base-buffer (current-buffer))
  3636. (current-buffer))))
  3637. (date (calendar-current-date))
  3638. (beg (if (org-region-active-p) (region-beginning) (point-min)))
  3639. (end (if (org-region-active-p) (region-end) (point-max)))
  3640. (day-numbers (org-get-all-dates
  3641. beg end 'no-ranges
  3642. t org-agenda-show-log-scoped ; always include today
  3643. org-timeline-show-empty-dates))
  3644. (org-deadline-warning-days 0)
  3645. (org-agenda-only-exact-dates t)
  3646. (today (org-today))
  3647. (past t)
  3648. args
  3649. s e rtn d emptyp)
  3650. (setq org-agenda-redo-command
  3651. (list 'progn
  3652. (list 'org-switch-to-buffer-other-window (current-buffer))
  3653. (list 'org-timeline (list 'quote dotodo))))
  3654. (if (not dopast)
  3655. ;; Remove past dates from the list of dates.
  3656. (setq day-numbers (delq nil (mapcar (lambda(x)
  3657. (if (>= x today) x nil))
  3658. day-numbers))))
  3659. (org-agenda-prepare (concat "Timeline " (file-name-nondirectory entry)))
  3660. (org-compile-prefix-format 'timeline)
  3661. (org-set-sorting-strategy 'timeline)
  3662. (if org-agenda-show-log-scoped (push :closed args))
  3663. (push :timestamp args)
  3664. (push :deadline args)
  3665. (push :scheduled args)
  3666. (push :sexp args)
  3667. (if dotodo (push :todo args))
  3668. (insert "Timeline of file " entry "\n")
  3669. (add-text-properties (point-min) (point)
  3670. (list 'face 'org-agenda-structure))
  3671. (org-agenda-mark-header-line (point-min))
  3672. (while (setq d (pop day-numbers))
  3673. (if (and (listp d) (eq (car d) :omitted))
  3674. (progn
  3675. (setq s (point))
  3676. (insert (format "\n[... %d empty days omitted]\n\n" (cdr d)))
  3677. (put-text-property s (1- (point)) 'face 'org-agenda-structure))
  3678. (if (listp d) (setq d (car d) emptyp t) (setq emptyp nil))
  3679. (if (and (>= d today)
  3680. dopast
  3681. past)
  3682. (progn
  3683. (setq past nil)
  3684. (insert (make-string 79 ?-) "\n")))
  3685. (setq date (calendar-gregorian-from-absolute d))
  3686. (setq s (point))
  3687. (setq rtn (and (not emptyp)
  3688. (apply 'org-agenda-get-day-entries entry
  3689. date args)))
  3690. (if (or rtn (equal d today) org-timeline-show-empty-dates)
  3691. (progn
  3692. (insert
  3693. (if (stringp org-agenda-format-date)
  3694. (format-time-string org-agenda-format-date
  3695. (org-time-from-absolute date))
  3696. (funcall org-agenda-format-date date))
  3697. "\n")
  3698. (put-text-property s (1- (point)) 'face
  3699. (org-agenda-get-day-face date))
  3700. (put-text-property s (1- (point)) 'org-date-line t)
  3701. (put-text-property s (1- (point)) 'org-agenda-date-header t)
  3702. (if (equal d today)
  3703. (put-text-property s (1- (point)) 'org-today t))
  3704. (and rtn (insert (org-agenda-finalize-entries rtn 'timeline) "\n"))
  3705. (put-text-property s (1- (point)) 'day d)))))
  3706. (goto-char (point-min))
  3707. (goto-char (or (text-property-any (point-min) (point-max) 'org-today t)
  3708. (point-min)))
  3709. (add-text-properties (point-min) (point-max) '(org-agenda-type timeline))
  3710. (org-agenda-finalize)
  3711. (setq buffer-read-only t)))
  3712. (defun org-get-all-dates (beg end &optional no-ranges force-today inactive empty pre-re)
  3713. "Return a list of all relevant day numbers from BEG to END buffer positions.
  3714. If NO-RANGES is non-nil, include only the start and end dates of a range,
  3715. not every single day in the range. If FORCE-TODAY is non-nil, make
  3716. sure that TODAY is included in the list. If INACTIVE is non-nil, also
  3717. inactive time stamps (those in square brackets) are included.
  3718. When EMPTY is non-nil, also include days without any entries."
  3719. (let ((re (concat
  3720. (if pre-re pre-re "")
  3721. (if inactive org-ts-regexp-both org-ts-regexp)))
  3722. dates dates1 date day day1 day2 ts1 ts2 pos)
  3723. (if force-today
  3724. (setq dates (list (org-today))))
  3725. (save-excursion
  3726. (goto-char beg)
  3727. (while (re-search-forward re end t)
  3728. (setq day (time-to-days (org-time-string-to-time
  3729. (substring (match-string 1) 0 10)
  3730. (current-buffer) (match-beginning 0))))
  3731. (or (memq day dates) (push day dates)))
  3732. (unless no-ranges
  3733. (goto-char beg)
  3734. (while (re-search-forward org-tr-regexp end t)
  3735. (setq pos (match-beginning 0))
  3736. (setq ts1 (substring (match-string 1) 0 10)
  3737. ts2 (substring (match-string 2) 0 10)
  3738. day1 (time-to-days (org-time-string-to-time
  3739. ts1 (current-buffer) pos))
  3740. day2 (time-to-days (org-time-string-to-time
  3741. ts2 (current-buffer) pos)))
  3742. (while (< (setq day1 (1+ day1)) day2)
  3743. (or (memq day1 dates) (push day1 dates)))))
  3744. (setq dates (sort dates '<))
  3745. (when empty
  3746. (while (setq day (pop dates))
  3747. (setq day2 (car dates))
  3748. (push day dates1)
  3749. (when (and day2 empty)
  3750. (if (or (eq empty t)
  3751. (and (numberp empty) (<= (- day2 day) empty)))
  3752. (while (< (setq day (1+ day)) day2)
  3753. (push (list day) dates1))
  3754. (push (cons :omitted (- day2 day)) dates1))))
  3755. (setq dates (nreverse dates1)))
  3756. dates)))
  3757. ;;; Agenda Daily/Weekly
  3758. (defvar org-agenda-start-day nil ; dynamically scoped parameter
  3759. "Start day for the agenda view.
  3760. Custom commands can set this variable in the options section.")
  3761. (defvar org-starting-day nil) ; local variable in the agenda buffer
  3762. (defvar org-arg-loc nil) ; local variable
  3763. (defvar org-agenda-entry-types '(:deadline :scheduled :timestamp :sexp)
  3764. "List of types searched for when creating the daily/weekly agenda.
  3765. This variable is a list of symbols that controls the types of
  3766. items that appear in the daily/weekly agenda. Allowed symbols in this
  3767. list are are
  3768. :timestamp List items containing a date stamp or date range matching
  3769. the selected date. This includes sexp entries in
  3770. angular brackets.
  3771. :sexp List entries resulting from plain diary-like sexps.
  3772. :deadline List deadline due on that date. When the date is today,
  3773. also list any deadlines past due, or due within
  3774. `org-deadline-warning-days'. `:deadline' must appear before
  3775. `:scheduled' if the setting of
  3776. `org-agenda-skip-scheduled-if-deadline-is-shown' is to have
  3777. any effect.
  3778. :scheduled List all items which are scheduled for the given date.
  3779. The diary for *today* also contains items which were
  3780. scheduled earlier and are not yet marked DONE.
  3781. By default, all four types are turned on.
  3782. Never set this variable globally using `setq', because then it
  3783. will apply to all future agenda commands. Instead, bind it with
  3784. `let' to scope it dynamically into the agenda-constructing
  3785. command. A good way to set it is through options in
  3786. `org-agenda-custom-commands'. For a more flexible (though
  3787. somewhat less efficient) way of determining what is included in
  3788. the daily/weekly agenda, see `org-agenda-skip-function'.")
  3789. (defvar org-agenda-buffer-tmp-name nil)
  3790. ;;;###autoload
  3791. (defun org-agenda-list (&optional arg start-day span)
  3792. "Produce a daily/weekly view from all files in variable `org-agenda-files'.
  3793. The view will be for the current day or week, but from the overview buffer
  3794. you will be able to go to other days/weeks.
  3795. With a numeric prefix argument in an interactive call, the agenda will
  3796. span ARG days. Lisp programs should instead specify SPAN to change
  3797. the number of days. SPAN defaults to `org-agenda-span'.
  3798. START-DAY defaults to TODAY, or to the most recent match for the weekday
  3799. given in `org-agenda-start-on-weekday'."
  3800. (interactive "P")
  3801. (if org-agenda-overriding-arguments
  3802. (setq arg (car org-agenda-overriding-arguments)
  3803. start-day (nth 1 org-agenda-overriding-arguments)
  3804. span (nth 2 org-agenda-overriding-arguments)))
  3805. (if (and (integerp arg) (> arg 0))
  3806. (setq span arg arg nil))
  3807. (catch 'exit
  3808. (setq org-agenda-buffer-name
  3809. (or org-agenda-buffer-tmp-name
  3810. (if org-agenda-sticky
  3811. (cond ((and org-keys (stringp org-match))
  3812. (format "*Org Agenda(%s:%s)*" org-keys org-match))
  3813. (org-keys
  3814. (format "*Org Agenda(%s)*" org-keys))
  3815. (t "*Org Agenda(a)*")))
  3816. org-agenda-buffer-name))
  3817. (org-agenda-prepare "Day/Week")
  3818. (setq start-day (or start-day org-agenda-start-day))
  3819. (if (stringp start-day)
  3820. ;; Convert to an absolute day number
  3821. (setq start-day (time-to-days (org-read-date nil t start-day))))
  3822. (org-compile-prefix-format 'agenda)
  3823. (org-set-sorting-strategy 'agenda)
  3824. (let* ((span (org-agenda-ndays-to-span
  3825. (or span org-agenda-ndays org-agenda-span)))
  3826. (today (org-today))
  3827. (sd (or start-day today))
  3828. (ndays (org-agenda-span-to-ndays span sd))
  3829. (org-agenda-start-on-weekday
  3830. (if (eq ndays 7)
  3831. org-agenda-start-on-weekday))
  3832. (thefiles (org-agenda-files nil 'ifmode))
  3833. (files thefiles)
  3834. (start (if (or (null org-agenda-start-on-weekday)
  3835. (< ndays 7))
  3836. sd
  3837. (let* ((nt (calendar-day-of-week
  3838. (calendar-gregorian-from-absolute sd)))
  3839. (n1 org-agenda-start-on-weekday)
  3840. (d (- nt n1)))
  3841. (- sd (+ (if (< d 0) 7 0) d)))))
  3842. (day-numbers (list start))
  3843. (day-cnt 0)
  3844. (inhibit-redisplay (not debug-on-error))
  3845. (org-agenda-show-log-scoped org-agenda-show-log)
  3846. s e rtn rtnall file date d start-pos end-pos todayp
  3847. clocktable-start clocktable-end filter)
  3848. (setq org-agenda-redo-command
  3849. (list 'org-agenda-list (list 'quote arg) start-day (list 'quote span)))
  3850. (dotimes (n (1- ndays))
  3851. (push (1+ (car day-numbers)) day-numbers))
  3852. (setq day-numbers (nreverse day-numbers))
  3853. (setq clocktable-start (car day-numbers)
  3854. clocktable-end (1+ (or (org-last day-numbers) 0)))
  3855. (org-set-local 'org-starting-day (car day-numbers))
  3856. (org-set-local 'org-arg-loc arg)
  3857. (org-set-local 'org-agenda-current-span (org-agenda-ndays-to-span span))
  3858. (unless org-agenda-compact-blocks
  3859. (let* ((d1 (car day-numbers))
  3860. (d2 (org-last day-numbers))
  3861. (w1 (org-days-to-iso-week d1))
  3862. (w2 (org-days-to-iso-week d2)))
  3863. (setq s (point))
  3864. (if org-agenda-overriding-header
  3865. (insert (org-add-props (copy-sequence org-agenda-overriding-header)
  3866. nil 'face 'org-agenda-structure) "\n")
  3867. (insert (org-agenda-span-name span)
  3868. "-agenda"
  3869. (if (< (- d2 d1) 350)
  3870. (if (= w1 w2)
  3871. (format " (W%02d)" w1)
  3872. (format " (W%02d-W%02d)" w1 w2))
  3873. "")
  3874. ":\n")))
  3875. (add-text-properties s (1- (point)) (list 'face 'org-agenda-structure
  3876. 'org-date-line t))
  3877. (org-agenda-mark-header-line s))
  3878. (while (setq d (pop day-numbers))
  3879. (setq date (calendar-gregorian-from-absolute d)
  3880. s (point))
  3881. (if (or (setq todayp (= d today))
  3882. (and (not start-pos) (= d sd)))
  3883. (setq start-pos (point))
  3884. (if (and start-pos (not end-pos))
  3885. (setq end-pos (point))))
  3886. (setq files thefiles
  3887. rtnall nil)
  3888. (while (setq file (pop files))
  3889. (catch 'nextfile
  3890. (org-check-agenda-file file)
  3891. (let ((org-agenda-entry-types org-agenda-entry-types))
  3892. (unless org-agenda-include-deadlines
  3893. (setq org-agenda-entry-types
  3894. (delq :deadline org-agenda-entry-types)))
  3895. (cond
  3896. ((memq org-agenda-show-log-scoped '(only clockcheck))
  3897. (setq rtn (org-agenda-get-day-entries
  3898. file date :closed)))
  3899. (org-agenda-show-log-scoped
  3900. (setq rtn (apply 'org-agenda-get-day-entries
  3901. file date
  3902. (append '(:closed) org-agenda-entry-types))))
  3903. (t
  3904. (setq rtn (apply 'org-agenda-get-day-entries
  3905. file date
  3906. org-agenda-entry-types)))))
  3907. (setq rtnall (append rtnall rtn)))) ;; all entries
  3908. (if org-agenda-include-diary
  3909. (let ((org-agenda-search-headline-for-time t))
  3910. (require 'diary-lib)
  3911. (setq rtn (org-get-entries-from-diary date))
  3912. (setq rtnall (append rtnall rtn))))
  3913. (if (or rtnall org-agenda-show-all-dates)
  3914. (progn
  3915. (setq day-cnt (1+ day-cnt))
  3916. (insert
  3917. (if (stringp org-agenda-format-date)
  3918. (format-time-string org-agenda-format-date
  3919. (org-time-from-absolute date))
  3920. (funcall org-agenda-format-date date))
  3921. "\n")
  3922. (put-text-property s (1- (point)) 'face
  3923. (org-agenda-get-day-face date))
  3924. (put-text-property s (1- (point)) 'org-date-line t)
  3925. (put-text-property s (1- (point)) 'org-agenda-date-header t)
  3926. (put-text-property s (1- (point)) 'org-day-cnt day-cnt)
  3927. (when todayp
  3928. (put-text-property s (1- (point)) 'org-today t))
  3929. (setq rtnall
  3930. (org-agenda-add-time-grid-maybe rtnall ndays todayp))
  3931. (if rtnall (insert ;; all entries
  3932. (org-agenda-finalize-entries rtnall 'agenda)
  3933. "\n"))
  3934. (put-text-property s (1- (point)) 'day d)
  3935. (put-text-property s (1- (point)) 'org-day-cnt day-cnt))))
  3936. (when (and org-agenda-clockreport-mode clocktable-start)
  3937. (let ((org-agenda-files (org-agenda-files nil 'ifmode))
  3938. ;; the above line is to ensure the restricted range!
  3939. (p (copy-sequence org-agenda-clockreport-parameter-plist))
  3940. tbl)
  3941. (setq p (org-plist-delete p :block))
  3942. (setq p (plist-put p :tstart clocktable-start))
  3943. (setq p (plist-put p :tend clocktable-end))
  3944. (setq p (plist-put p :scope 'agenda))
  3945. (when (and (eq org-agenda-clockreport-mode 'with-filter)
  3946. (setq filter (or org-agenda-tag-filter-while-redo
  3947. (get 'org-agenda-tag-filter :preset-filter))))
  3948. (setq p (plist-put p :tags (mapconcat (lambda (x)
  3949. (if (string-match "[<>=]" x)
  3950. ""
  3951. x))
  3952. filter ""))))
  3953. (setq tbl (apply 'org-clock-get-clocktable p))
  3954. (insert tbl)))
  3955. (goto-char (point-min))
  3956. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  3957. (unless (and (pos-visible-in-window-p (point-min))
  3958. (pos-visible-in-window-p (point-max)))
  3959. (goto-char (1- (point-max)))
  3960. (recenter -1)
  3961. (if (not (pos-visible-in-window-p (or start-pos 1)))
  3962. (progn
  3963. (goto-char (or start-pos 1))
  3964. (recenter 1))))
  3965. (goto-char (or start-pos 1))
  3966. (add-text-properties (point-min) (point-max)
  3967. `(org-agenda-type agenda
  3968. org-last-args (,arg ,start-day ,span)
  3969. org-redo-cmd ,org-agenda-redo-command
  3970. org-series-cmd ,org-cmd))
  3971. (if (eq org-agenda-show-log-scoped 'clockcheck)
  3972. (org-agenda-show-clocking-issues))
  3973. (org-agenda-finalize)
  3974. (setq buffer-read-only t)
  3975. (message ""))))
  3976. (autoload 'org-agenda-list "org-agenda" "\
  3977. Produce a daily/weekly view from all files in variable `org-agenda-files'.
  3978. The view will be for the current day or week, but from the overview buffer
  3979. you will be able to go to other days/weeks.
  3980. With a numeric prefix argument in an interactive call, the agenda will
  3981. span ARG days. Lisp programs should instead specify SPAN to change
  3982. the number of days. SPAN defaults to `org-agenda-span'.
  3983. START-DAY defaults to TODAY, or to the most recent match for the weekday
  3984. given in `org-agenda-start-on-weekday'.
  3985. \(fn &optional ARG START-DAY SPAN)" t nil)
  3986. (defun org-agenda-ndays-to-span (n)
  3987. "Return a span symbol for a span of N days, or N if none matches."
  3988. (cond ((symbolp n) n)
  3989. ((= n 1) 'day)
  3990. ((= n 7) 'week)
  3991. (t n)))
  3992. (defun org-agenda-span-to-ndays (span &optional start-day)
  3993. "Return ndays from SPAN, possibly starting at START-DAY."
  3994. (cond ((numberp span) span)
  3995. ((eq span 'day) 1)
  3996. ((eq span 'week) 7)
  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 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 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 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. (autoload 'org-search-view "org-agenda" "\
  4294. Show all entries that contain a phrase or words or regular expressions.
  4295. With optional prefix argument TODO-ONLY, only consider entries that are
  4296. TODO entries. The argument STRING can be used to pass a default search
  4297. string into this function. If EDIT-AT is non-nil, it means that the
  4298. user should get a chance to edit this string, with cursor at position
  4299. EDIT-AT.
  4300. The search string can be viewed either as a phrase that should be found as
  4301. is, or it can be broken into a number of snippets, each of which must match
  4302. in a Boolean way to select an entry. The default depends on the variable
  4303. `org-agenda-search-view-always-boolean'.
  4304. Even if this is turned off (the default) you can always switch to
  4305. Boolean search dynamically by preceding the first word with \"+\" or \"-\".
  4306. The default is a direct search of the whole phrase, where each space in
  4307. the search string can expand to an arbitrary amount of whitespace,
  4308. including newlines.
  4309. If using a Boolean search, the search string is split on whitespace and
  4310. each snippet is searched separately, with logical AND to select an entry.
  4311. Words prefixed with a minus must *not* occur in the entry. Words without
  4312. a prefix or prefixed with a plus must occur in the entry. Matching is
  4313. case-insensitive. Words are enclosed by word delimiters (i.e. they must
  4314. match whole words, not parts of a word) if
  4315. `org-agenda-search-view-force-full-words' is set (default is nil).
  4316. Boolean search snippets enclosed by curly braces are interpreted as
  4317. regular expressions that must or (when preceded with \"-\") must not
  4318. match in the entry. Snippets enclosed into double quotes will be taken
  4319. as a whole, to include whitespace.
  4320. - If the search string starts with an asterisk, search only in headlines.
  4321. - If (possibly after the leading star) the search string starts with an
  4322. exclamation mark, this also means to look at TODO entries only, an effect
  4323. that can also be achieved with a prefix argument.
  4324. - If (possibly after star and exclamation mark) the search string starts
  4325. with a colon, this will mean that the (non-regexp) snippets of the
  4326. Boolean search must match as full words.
  4327. This command searches the agenda files, and in addition the files listed
  4328. in `org-agenda-text-search-extra-files'.
  4329. \(fn &optional TODO-ONLY STRING EDIT-AT)" t nil)
  4330. ;;; Agenda TODO list
  4331. (defun org-agenda-propertize-selected-todo-keywords (keywords)
  4332. "Use `org-todo-keyword-faces' for the selected todo KEYWORDS."
  4333. (concat
  4334. (if (or (equal keywords "ALL") (not keywords))
  4335. (propertize "ALL" 'face 'warning)
  4336. (mapconcat
  4337. (lambda (kw)
  4338. (propertize kw 'face (org-get-todo-face kw)))
  4339. (org-split-string keywords "|")
  4340. "|"))
  4341. "\n"))
  4342. (defvar org-select-this-todo-keyword nil)
  4343. (defvar org-last-arg nil)
  4344. ;;;###autoload
  4345. (defun org-todo-list (&optional arg)
  4346. "Show all (not done) TODO entries from all agenda file in a single list.
  4347. The prefix arg can be used to select a specific TODO keyword and limit
  4348. the list to these. When using \\[universal-argument], you will be prompted
  4349. for a keyword. A numeric prefix directly selects the Nth keyword in
  4350. `org-todo-keywords-1'."
  4351. (interactive "P")
  4352. (if org-agenda-overriding-arguments
  4353. (setq arg org-agenda-overriding-arguments))
  4354. (if (and (stringp arg) (not (string-match "\\S-" arg))) (setq arg nil))
  4355. (let* ((today (org-today))
  4356. (date (calendar-gregorian-from-absolute today))
  4357. (kwds org-todo-keywords-for-agenda)
  4358. (completion-ignore-case t)
  4359. (org-select-this-todo-keyword
  4360. (if (stringp arg) arg
  4361. (and arg (integerp arg) (> arg 0)
  4362. (nth (1- arg) kwds))))
  4363. rtn rtnall files file pos)
  4364. (when (equal arg '(4))
  4365. (setq org-select-this-todo-keyword
  4366. (org-icompleting-read "Keyword (or KWD1|K2D2|...): "
  4367. (mapcar 'list kwds) nil nil)))
  4368. (and (equal 0 arg) (setq org-select-this-todo-keyword nil))
  4369. (catch 'exit
  4370. (if org-agenda-sticky
  4371. (setq org-agenda-buffer-name
  4372. (if (stringp org-select-this-todo-keyword)
  4373. (format "*Org Agenda(%s:%s)*" (or org-keys "t")
  4374. org-select-this-todo-keyword)
  4375. (format "*Org Agenda(%s)*" (or org-keys "t")))))
  4376. (org-agenda-prepare "TODO")
  4377. (org-compile-prefix-format 'todo)
  4378. (org-set-sorting-strategy 'todo)
  4379. (setq org-agenda-redo-command
  4380. `(org-todo-list (or (and (numberp current-prefix-arg)
  4381. current-prefix-arg)
  4382. ,org-select-this-todo-keyword
  4383. current-prefix-arg ,arg)))
  4384. (setq files (org-agenda-files nil 'ifmode)
  4385. rtnall nil)
  4386. (while (setq file (pop files))
  4387. (catch 'nextfile
  4388. (org-check-agenda-file file)
  4389. (setq rtn (org-agenda-get-day-entries file date :todo))
  4390. (setq rtnall (append rtnall rtn))))
  4391. (if org-agenda-overriding-header
  4392. (insert (org-add-props (copy-sequence org-agenda-overriding-header)
  4393. nil 'face 'org-agenda-structure) "\n")
  4394. (insert "Global list of TODO items of type: ")
  4395. (add-text-properties (point-min) (1- (point))
  4396. (list 'face 'org-agenda-structure
  4397. 'short-heading
  4398. (concat "ToDo: "
  4399. (or org-select-this-todo-keyword "ALL"))))
  4400. (org-agenda-mark-header-line (point-min))
  4401. (insert (org-agenda-propertize-selected-todo-keywords
  4402. org-select-this-todo-keyword))
  4403. (setq pos (point))
  4404. (unless org-agenda-multi
  4405. (insert "Available with `N r': (0)[ALL]")
  4406. (let ((n 0) s)
  4407. (mapc (lambda (x)
  4408. (setq s (format "(%d)%s" (setq n (1+ n)) x))
  4409. (if (> (+ (current-column) (string-width s) 1) (frame-width))
  4410. (insert "\n "))
  4411. (insert " " s))
  4412. kwds))
  4413. (insert "\n"))
  4414. (add-text-properties pos (1- (point)) (list 'face 'org-agenda-structure)))
  4415. (org-agenda-mark-header-line (point-min))
  4416. (when rtnall
  4417. (insert (org-agenda-finalize-entries rtnall 'todo) "\n"))
  4418. (goto-char (point-min))
  4419. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4420. (add-text-properties (point-min) (point-max)
  4421. `(org-agenda-type todo
  4422. org-last-args ,arg
  4423. org-redo-cmd ,org-agenda-redo-command
  4424. org-series-cmd ,org-cmd))
  4425. (org-agenda-finalize)
  4426. (setq buffer-read-only t))))
  4427. (autoload 'org-todo-list "org-agenda" "\
  4428. Show all (not done) TODO entries from all agenda file in a single list.
  4429. The prefix arg can be used to select a specific TODO keyword and limit
  4430. the list to these. When using \\[universal-argument], you will be prompted
  4431. for a keyword. A numeric prefix directly selects the Nth keyword in
  4432. `org-todo-keywords-1'.
  4433. \(fn &optional ARG)" t nil)
  4434. ;;; Agenda tags match
  4435. ;;;###autoload
  4436. (defun org-tags-view (&optional todo-only match)
  4437. "Show all headlines for all `org-agenda-files' matching a TAGS criterion.
  4438. The prefix arg TODO-ONLY limits the search to TODO entries."
  4439. (interactive "P")
  4440. (if org-agenda-overriding-arguments
  4441. (setq todo-only (car org-agenda-overriding-arguments)
  4442. match (nth 1 org-agenda-overriding-arguments)))
  4443. (let* ((org-tags-match-list-sublevels
  4444. org-tags-match-list-sublevels)
  4445. (completion-ignore-case t)
  4446. rtn rtnall files file pos matcher
  4447. buffer)
  4448. (when (and (stringp match) (not (string-match "\\S-" match)))
  4449. (setq match nil))
  4450. (setq matcher (org-make-tags-matcher match)
  4451. match (car matcher) matcher (cdr matcher))
  4452. (catch 'exit
  4453. (if org-agenda-sticky
  4454. (setq org-agenda-buffer-name
  4455. (if (stringp match)
  4456. (format "*Org Agenda(%s:%s)*"
  4457. (or org-keys (or (and todo-only "M") "m")) match)
  4458. (format "*Org Agenda(%s)*" (or (and todo-only "M") "m")))))
  4459. (org-agenda-prepare (concat "TAGS " match))
  4460. (org-compile-prefix-format 'tags)
  4461. (org-set-sorting-strategy 'tags)
  4462. (setq org-agenda-query-string match)
  4463. (setq org-agenda-redo-command
  4464. (list 'org-tags-view `(quote ,todo-only)
  4465. (list 'if 'current-prefix-arg nil `(quote ,org-agenda-query-string))))
  4466. (setq files (org-agenda-files nil 'ifmode)
  4467. rtnall nil)
  4468. (while (setq file (pop files))
  4469. (catch 'nextfile
  4470. (org-check-agenda-file file)
  4471. (setq buffer (if (file-exists-p file)
  4472. (org-get-agenda-file-buffer file)
  4473. (error "No such file %s" file)))
  4474. (if (not buffer)
  4475. ;; If file does not exist, error message to agenda
  4476. (setq rtn (list
  4477. (format "ORG-AGENDA-ERROR: No such org-file %s" file))
  4478. rtnall (append rtnall rtn))
  4479. (with-current-buffer buffer
  4480. (unless (derived-mode-p 'org-mode)
  4481. (error "Agenda file %s is not in `org-mode'" file))
  4482. (save-excursion
  4483. (save-restriction
  4484. (if org-agenda-restrict
  4485. (narrow-to-region org-agenda-restrict-begin
  4486. org-agenda-restrict-end)
  4487. (widen))
  4488. (setq rtn (org-scan-tags 'agenda matcher todo-only))
  4489. (setq rtnall (append rtnall rtn))))))))
  4490. (if org-agenda-overriding-header
  4491. (insert (org-add-props (copy-sequence org-agenda-overriding-header)
  4492. nil 'face 'org-agenda-structure) "\n")
  4493. (insert "Headlines with TAGS match: ")
  4494. (add-text-properties (point-min) (1- (point))
  4495. (list 'face 'org-agenda-structure
  4496. 'short-heading
  4497. (concat "Match: " match)))
  4498. (setq pos (point))
  4499. (insert match "\n")
  4500. (add-text-properties pos (1- (point)) (list 'face 'org-warning))
  4501. (setq pos (point))
  4502. (unless org-agenda-multi
  4503. (insert "Press `C-u r' to search again with new search string\n"))
  4504. (add-text-properties pos (1- (point)) (list 'face 'org-agenda-structure)))
  4505. (org-agenda-mark-header-line (point-min))
  4506. (when rtnall
  4507. (insert (org-agenda-finalize-entries rtnall 'tags) "\n"))
  4508. (goto-char (point-min))
  4509. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4510. (add-text-properties (point-min) (point-max)
  4511. `(org-agenda-type tags
  4512. org-last-args (,todo-only ,match)
  4513. org-redo-cmd ,org-agenda-redo-command
  4514. org-series-cmd ,org-cmd))
  4515. (org-agenda-finalize)
  4516. (setq buffer-read-only t))))
  4517. (autoload 'org-tags-view "org-agenda" "\
  4518. Show all headlines for all `org-agenda-files' matching a TAGS criterion.
  4519. The prefix arg TODO-ONLY limits the search to TODO entries.
  4520. \(fn &optional TODO-ONLY MATCH)" t nil)
  4521. ;;; Agenda Finding stuck projects
  4522. (defvar org-agenda-skip-regexp nil
  4523. "Regular expression used in skipping subtrees for the agenda.
  4524. This is basically a temporary global variable that can be set and then
  4525. used by user-defined selections using `org-agenda-skip-function'.")
  4526. (defvar org-agenda-overriding-header nil
  4527. "When set during agenda, todo and tags searches it replaces the header.
  4528. This variable should not be set directly, but custom commands can bind it
  4529. in the options section.")
  4530. (defun org-agenda-skip-entry-when-regexp-matches ()
  4531. "Check if the current entry contains match for `org-agenda-skip-regexp'.
  4532. If yes, it returns the end position of this entry, causing agenda commands
  4533. to skip the entry but continuing the search in the subtree. This is a
  4534. function that can be put into `org-agenda-skip-function' for the duration
  4535. of a command."
  4536. (let ((end (save-excursion (org-end-of-subtree t)))
  4537. skip)
  4538. (save-excursion
  4539. (setq skip (re-search-forward org-agenda-skip-regexp end t)))
  4540. (and skip end)))
  4541. (defun org-agenda-skip-subtree-when-regexp-matches ()
  4542. "Check if the current subtree contains match for `org-agenda-skip-regexp'.
  4543. If yes, it returns the end position of this tree, causing agenda commands
  4544. to skip this subtree. This is a function that can be put into
  4545. `org-agenda-skip-function' for the duration of a command."
  4546. (let ((end (save-excursion (org-end-of-subtree t)))
  4547. skip)
  4548. (save-excursion
  4549. (setq skip (re-search-forward org-agenda-skip-regexp end t)))
  4550. (and skip end)))
  4551. (defun org-agenda-skip-entry-when-regexp-matches-in-subtree ()
  4552. "Check if the current subtree contains match for `org-agenda-skip-regexp'.
  4553. If yes, it returns the end position of the current entry (NOT the tree),
  4554. causing agenda commands to skip the entry but continuing the search in
  4555. the subtree. This is a function that can be put into
  4556. `org-agenda-skip-function' for the duration of a command. An important
  4557. use of this function is for the stuck project list."
  4558. (let ((end (save-excursion (org-end-of-subtree t)))
  4559. (entry-end (save-excursion (outline-next-heading) (1- (point))))
  4560. skip)
  4561. (save-excursion
  4562. (setq skip (re-search-forward org-agenda-skip-regexp end t)))
  4563. (and skip entry-end)))
  4564. (defun org-agenda-skip-entry-if (&rest conditions)
  4565. "Skip entry if any of CONDITIONS is true.
  4566. See `org-agenda-skip-if' for details."
  4567. (org-agenda-skip-if nil conditions))
  4568. (defun org-agenda-skip-subtree-if (&rest conditions)
  4569. "Skip entry if any of CONDITIONS is true.
  4570. See `org-agenda-skip-if' for details."
  4571. (org-agenda-skip-if t conditions))
  4572. (defun org-agenda-skip-if (subtree conditions)
  4573. "Checks current entity for CONDITIONS.
  4574. If SUBTREE is non-nil, the entire subtree is checked. Otherwise, only
  4575. the entry (i.e. the text before the next heading) is checked.
  4576. CONDITIONS is a list of symbols, boolean OR is used to combine the results
  4577. from different tests. Valid conditions are:
  4578. scheduled Check if there is a scheduled cookie
  4579. notscheduled Check if there is no scheduled cookie
  4580. deadline Check if there is a deadline
  4581. notdeadline Check if there is no deadline
  4582. timestamp Check if there is a timestamp (also deadline or scheduled)
  4583. nottimestamp Check if there is no timestamp (also deadline or scheduled)
  4584. regexp Check if regexp matches
  4585. notregexp Check if regexp does not match.
  4586. todo Check if TODO keyword matches
  4587. nottodo Check if TODO keyword does not match
  4588. The regexp is taken from the conditions list, it must come right after
  4589. the `regexp' or `notregexp' element.
  4590. `todo' and `nottodo' accept as an argument a list of todo
  4591. keywords, which may include \"*\" to match any todo keyword.
  4592. (org-agenda-skip-entry-if 'todo '(\"TODO\" \"WAITING\"))
  4593. would skip all entries with \"TODO\" or \"WAITING\" keywords.
  4594. Instead of a list, a keyword class may be given. For example:
  4595. (org-agenda-skip-entry-if 'nottodo 'done)
  4596. would skip entries that haven't been marked with any of \"DONE\"
  4597. keywords. Possible classes are: `todo', `done', `any'.
  4598. If any of these conditions is met, this function returns the end point of
  4599. the entity, causing the search to continue from there. This is a function
  4600. that can be put into `org-agenda-skip-function' for the duration of a command."
  4601. (let (beg end m)
  4602. (org-back-to-heading t)
  4603. (setq beg (point)
  4604. end (if subtree
  4605. (progn (org-end-of-subtree t) (point))
  4606. (progn (outline-next-heading) (1- (point)))))
  4607. (goto-char beg)
  4608. (and
  4609. (or
  4610. (and (memq 'scheduled conditions)
  4611. (re-search-forward org-scheduled-time-regexp end t))
  4612. (and (memq 'notscheduled conditions)
  4613. (not (re-search-forward org-scheduled-time-regexp end t)))
  4614. (and (memq 'deadline conditions)
  4615. (re-search-forward org-deadline-time-regexp end t))
  4616. (and (memq 'notdeadline conditions)
  4617. (not (re-search-forward org-deadline-time-regexp end t)))
  4618. (and (memq 'timestamp conditions)
  4619. (re-search-forward org-ts-regexp end t))
  4620. (and (memq 'nottimestamp conditions)
  4621. (not (re-search-forward org-ts-regexp end t)))
  4622. (and (setq m (memq 'regexp conditions))
  4623. (stringp (nth 1 m))
  4624. (re-search-forward (nth 1 m) end t))
  4625. (and (setq m (memq 'notregexp conditions))
  4626. (stringp (nth 1 m))
  4627. (not (re-search-forward (nth 1 m) end t)))
  4628. (and (or
  4629. (setq m (memq 'nottodo conditions))
  4630. (setq m (memq 'todo-unblocked conditions))
  4631. (setq m (memq 'nottodo-unblocked conditions))
  4632. (setq m (memq 'todo conditions)))
  4633. (org-agenda-skip-if-todo m end)))
  4634. end)))
  4635. (defun org-agenda-skip-if-todo (args end)
  4636. "Helper function for `org-agenda-skip-if', do not use it directly.
  4637. ARGS is a list with first element either `todo', `nottodo',
  4638. `todo-unblocked' or `nottodo-unblocked'. The remainder is either
  4639. a list of TODO keywords, or a state symbol `todo' or `done' or
  4640. `any'."
  4641. (let ((kw (car args))
  4642. (arg (cadr args))
  4643. todo-wds todo-re)
  4644. (setq todo-wds
  4645. (org-uniquify
  4646. (cond
  4647. ((listp arg) ;; list of keywords
  4648. (if (member "*" arg)
  4649. (mapcar 'substring-no-properties org-todo-keywords-1)
  4650. arg))
  4651. ((symbolp arg) ;; keyword class name
  4652. (cond
  4653. ((eq arg 'todo)
  4654. (org-delete-all org-done-keywords
  4655. (mapcar 'substring-no-properties
  4656. org-todo-keywords-1)))
  4657. ((eq arg 'done) org-done-keywords)
  4658. ((eq arg 'any)
  4659. (mapcar 'substring-no-properties org-todo-keywords-1)))))))
  4660. (setq todo-re
  4661. (concat "^\\*+[ \t]+\\<\\("
  4662. (mapconcat 'identity todo-wds "\\|")
  4663. "\\)\\>"))
  4664. (cond
  4665. ((eq kw 'todo) (re-search-forward todo-re end t))
  4666. ((eq kw 'nottodo) (not (re-search-forward todo-re end t)))
  4667. ((eq kw 'todo-unblocked)
  4668. (catch 'unblocked
  4669. (while (re-search-forward todo-re end t)
  4670. (or (org-entry-blocked-p) (throw 'unblocked t)))
  4671. nil))
  4672. ((eq kw 'nottodo-unblocked)
  4673. (catch 'unblocked
  4674. (while (re-search-forward todo-re end t)
  4675. (or (org-entry-blocked-p) (throw 'unblocked nil)))
  4676. t))
  4677. )))
  4678. ;;;###autoload
  4679. (defun org-agenda-list-stuck-projects (&rest ignore)
  4680. "Create agenda view for projects that are stuck.
  4681. Stuck projects are project that have no next actions. For the definitions
  4682. of what a project is and how to check if it stuck, customize the variable
  4683. `org-stuck-projects'."
  4684. (interactive)
  4685. (let* ((org-agenda-skip-function
  4686. 'org-agenda-skip-entry-when-regexp-matches-in-subtree)
  4687. ;; We could have used org-agenda-skip-if here.
  4688. (org-agenda-overriding-header
  4689. (or org-agenda-overriding-header "List of stuck projects: "))
  4690. (matcher (nth 0 org-stuck-projects))
  4691. (todo (nth 1 org-stuck-projects))
  4692. (todo-wds (if (member "*" todo)
  4693. (progn
  4694. (org-agenda-prepare-buffers (org-agenda-files
  4695. nil 'ifmode))
  4696. (org-delete-all
  4697. org-done-keywords-for-agenda
  4698. (copy-sequence org-todo-keywords-for-agenda)))
  4699. todo))
  4700. (todo-re (concat "^\\*+[ \t]+\\("
  4701. (mapconcat 'identity todo-wds "\\|")
  4702. "\\)\\>"))
  4703. (tags (nth 2 org-stuck-projects))
  4704. (tags-re (if (member "*" tags)
  4705. (concat org-outline-regexp-bol
  4706. (org-re ".*:[[:alnum:]_@#%]+:[ \t]*$"))
  4707. (if tags
  4708. (concat org-outline-regexp-bol
  4709. ".*:\\("
  4710. (mapconcat 'identity tags "\\|")
  4711. (org-re "\\):[[:alnum:]_@#%:]*[ \t]*$")))))
  4712. (gen-re (nth 3 org-stuck-projects))
  4713. (re-list
  4714. (delq nil
  4715. (list
  4716. (if todo todo-re)
  4717. (if tags tags-re)
  4718. (and gen-re (stringp gen-re) (string-match "\\S-" gen-re)
  4719. gen-re)))))
  4720. (setq org-agenda-skip-regexp
  4721. (if re-list
  4722. (mapconcat 'identity re-list "\\|")
  4723. (error "No information how to identify unstuck projects")))
  4724. (org-tags-view nil matcher)
  4725. (with-current-buffer org-agenda-buffer-name
  4726. (setq org-agenda-redo-command
  4727. `(org-agenda-list-stuck-projects ,current-prefix-arg)))))
  4728. (autoload 'org-agenda-list-stuck-projects "org-agenda" "\
  4729. Create agenda view for projects that are stuck.
  4730. Stuck projects are project that have no next actions. For the definitions
  4731. of what a project is and how to check if it stuck, customize the variable
  4732. `org-stuck-projects'.
  4733. \(fn &rest IGNORE)" t nil)
  4734. ;;; Diary integration
  4735. (defvar org-disable-agenda-to-diary nil) ;Dynamically-scoped param.
  4736. (defvar diary-list-entries-hook)
  4737. (defvar diary-time-regexp)
  4738. (defun org-get-entries-from-diary (date)
  4739. "Get the (Emacs Calendar) diary entries for DATE."
  4740. (require 'diary-lib)
  4741. (let* ((diary-fancy-buffer "*temporary-fancy-diary-buffer*")
  4742. (diary-display-hook '(fancy-diary-display))
  4743. (diary-display-function 'fancy-diary-display)
  4744. (pop-up-frames nil)
  4745. (diary-list-entries-hook
  4746. (cons 'org-diary-default-entry diary-list-entries-hook))
  4747. (diary-file-name-prefix nil) ; turn this feature off
  4748. (diary-modify-entry-list-string-function 'org-modify-diary-entry-string)
  4749. entries
  4750. (org-disable-agenda-to-diary t))
  4751. (save-excursion
  4752. (save-window-excursion
  4753. (funcall (if (fboundp 'diary-list-entries)
  4754. 'diary-list-entries 'list-diary-entries)
  4755. date 1)))
  4756. (if (not (get-buffer diary-fancy-buffer))
  4757. (setq entries nil)
  4758. (with-current-buffer diary-fancy-buffer
  4759. (setq buffer-read-only nil)
  4760. (if (zerop (buffer-size))
  4761. ;; No entries
  4762. (setq entries nil)
  4763. ;; Omit the date and other unnecessary stuff
  4764. (org-agenda-cleanup-fancy-diary)
  4765. ;; Add prefix to each line and extend the text properties
  4766. (if (zerop (buffer-size))
  4767. (setq entries nil)
  4768. (setq entries (buffer-substring (point-min) (- (point-max) 1)))
  4769. (setq entries
  4770. (with-temp-buffer
  4771. (insert entries) (goto-char (point-min))
  4772. (while (re-search-forward "\n[ \t]+\\(.+\\)$" nil t)
  4773. (unless (save-match-data (string-match diary-time-regexp (match-string 1)))
  4774. (replace-match (concat "; " (match-string 1)))))
  4775. (buffer-string)))))
  4776. (set-buffer-modified-p nil)
  4777. (kill-buffer diary-fancy-buffer)))
  4778. (when entries
  4779. (setq entries (org-split-string entries "\n"))
  4780. (setq entries
  4781. (mapcar
  4782. (lambda (x)
  4783. (setq x (org-agenda-format-item "" x nil "Diary" nil 'time))
  4784. ;; Extend the text properties to the beginning of the line
  4785. (org-add-props x (text-properties-at (1- (length x)) x)
  4786. 'type "diary" 'date date 'face 'org-agenda-diary))
  4787. entries)))))
  4788. (defvar org-agenda-cleanup-fancy-diary-hook nil
  4789. "Hook run when the fancy diary buffer is cleaned up.")
  4790. (defun org-agenda-cleanup-fancy-diary ()
  4791. "Remove unwanted stuff in buffer created by `fancy-diary-display'.
  4792. This gets rid of the date, the underline under the date, and
  4793. the dummy entry installed by `org-mode' to ensure non-empty diary for each
  4794. date. It also removes lines that contain only whitespace."
  4795. (goto-char (point-min))
  4796. (if (looking-at ".*?:[ \t]*")
  4797. (progn
  4798. (replace-match "")
  4799. (re-search-forward "\n=+$" nil t)
  4800. (replace-match "")
  4801. (while (re-search-backward "^ +\n?" nil t) (replace-match "")))
  4802. (re-search-forward "\n=+$" nil t)
  4803. (delete-region (point-min) (min (point-max) (1+ (match-end 0)))))
  4804. (goto-char (point-min))
  4805. (while (re-search-forward "^ +\n" nil t)
  4806. (replace-match ""))
  4807. (goto-char (point-min))
  4808. (if (re-search-forward "^Org-mode dummy\n?" nil t)
  4809. (replace-match ""))
  4810. (run-hooks 'org-agenda-cleanup-fancy-diary-hook))
  4811. ;; Make sure entries from the diary have the right text properties.
  4812. (eval-after-load "diary-lib"
  4813. '(if (boundp 'diary-modify-entry-list-string-function)
  4814. ;; We can rely on the hook, nothing to do
  4815. nil
  4816. ;; Hook not available, must use advice to make this work
  4817. (defadvice add-to-diary-list (before org-mark-diary-entry activate)
  4818. "Make the position visible."
  4819. (if (and org-disable-agenda-to-diary ;; called from org-agenda
  4820. (stringp string)
  4821. buffer-file-name)
  4822. (setq string (org-modify-diary-entry-string string))))))
  4823. (defun org-modify-diary-entry-string (string)
  4824. "Add text properties to string, allowing org-mode to act on it."
  4825. (org-add-props string nil
  4826. 'mouse-face 'highlight
  4827. 'help-echo (if buffer-file-name
  4828. (format "mouse-2 or RET jump to diary file %s"
  4829. (abbreviate-file-name buffer-file-name))
  4830. "")
  4831. 'org-agenda-diary-link t
  4832. 'org-marker (org-agenda-new-marker (point-at-bol))))
  4833. (defun org-diary-default-entry ()
  4834. "Add a dummy entry to the diary.
  4835. Needed to avoid empty dates which mess up holiday display."
  4836. ;; Catch the error if dealing with the new add-to-diary-alist
  4837. (when org-disable-agenda-to-diary
  4838. (condition-case nil
  4839. (org-add-to-diary-list original-date "Org-mode dummy" "")
  4840. (error
  4841. (org-add-to-diary-list original-date "Org-mode dummy" "" nil)))))
  4842. (defun org-add-to-diary-list (&rest args)
  4843. (if (fboundp 'diary-add-to-list)
  4844. (apply 'diary-add-to-list args)
  4845. (apply 'add-to-diary-list args)))
  4846. (defvar org-diary-last-run-time nil)
  4847. ;;;###autoload
  4848. (defun org-diary (&rest args)
  4849. "Return diary information from org files.
  4850. This function can be used in a \"sexp\" diary entry in the Emacs calendar.
  4851. It accesses org files and extracts information from those files to be
  4852. listed in the diary. The function accepts arguments specifying what
  4853. items should be listed. For a list of arguments allowed here, see the
  4854. variable `org-agenda-entry-types'.
  4855. The call in the diary file should look like this:
  4856. &%%(org-diary) ~/path/to/some/orgfile.org
  4857. Use a separate line for each org file to check. Or, if you omit the file name,
  4858. all files listed in `org-agenda-files' will be checked automatically:
  4859. &%%(org-diary)
  4860. If you don't give any arguments (as in the example above), the default
  4861. arguments (:deadline :scheduled :timestamp :sexp) are used.
  4862. So the example above may also be written as
  4863. &%%(org-diary :deadline :timestamp :sexp :scheduled)
  4864. The function expects the lisp variables `entry' and `date' to be provided
  4865. by the caller, because this is how the calendar works. Don't use this
  4866. function from a program - use `org-agenda-get-day-entries' instead."
  4867. (when (> (- (org-float-time)
  4868. org-agenda-last-marker-time)
  4869. 5)
  4870. ;; I am not sure if this works with sticky agendas, because the marker
  4871. ;; list is then no longer a global variable.
  4872. (org-agenda-reset-markers))
  4873. (org-compile-prefix-format 'agenda)
  4874. (org-set-sorting-strategy 'agenda)
  4875. (setq args (or args '(:deadline :scheduled :timestamp :sexp)))
  4876. (let* ((files (if (and entry (stringp entry) (string-match "\\S-" entry))
  4877. (list entry)
  4878. (org-agenda-files t)))
  4879. (time (org-float-time))
  4880. file rtn results)
  4881. (when (or (not org-diary-last-run-time)
  4882. (> (- time
  4883. org-diary-last-run-time)
  4884. 3))
  4885. (org-agenda-prepare-buffers files))
  4886. (setq org-diary-last-run-time time)
  4887. ;; If this is called during org-agenda, don't return any entries to
  4888. ;; the calendar. Org Agenda will list these entries itself.
  4889. (if org-disable-agenda-to-diary (setq files nil))
  4890. (while (setq file (pop files))
  4891. (setq rtn (apply 'org-agenda-get-day-entries file date args))
  4892. (setq results (append results rtn)))
  4893. (when results
  4894. (setq results
  4895. (mapcar (lambda (i) (replace-regexp-in-string
  4896. org-bracket-link-regexp "\\3" i)) results))
  4897. (concat (org-agenda-finalize-entries results) "\n"))))
  4898. (autoload 'org-diary "org-agenda" "\
  4899. Return diary information from org files.
  4900. This function can be used in a \"sexp\" diary entry in the Emacs calendar.
  4901. It accesses org files and extracts information from those files to be
  4902. listed in the diary. The function accepts arguments specifying what
  4903. items should be listed. For a list of arguments allowed here, see the
  4904. variable `org-agenda-entry-types'.
  4905. The call in the diary file should look like this:
  4906. &%%(org-diary) ~/path/to/some/orgfile.org
  4907. Use a separate line for each org file to check. Or, if you omit the file name,
  4908. all files listed in `org-agenda-files' will be checked automatically:
  4909. &%%(org-diary)
  4910. If you don't give any arguments (as in the example above), the default
  4911. arguments (:deadline :scheduled :timestamp :sexp) are used.
  4912. So the example above may also be written as
  4913. &%%(org-diary :deadline :timestamp :sexp :scheduled)
  4914. The function expects the lisp variables `entry' and `date' to be provided
  4915. by the caller, because this is how the calendar works. Don't use this
  4916. function from a program - use `org-agenda-get-day-entries' instead.
  4917. \(fn &rest ARGS)" nil nil)
  4918. ;;; Agenda entry finders
  4919. (defun org-agenda-get-day-entries (file date &rest args)
  4920. "Does the work for `org-diary' and `org-agenda'.
  4921. FILE is the path to a file to be checked for entries. DATE is date like
  4922. the one returned by `calendar-current-date'. ARGS are symbols indicating
  4923. which kind of entries should be extracted. For details about these, see
  4924. the documentation of `org-diary'."
  4925. (setq args (or args '(:deadline :scheduled :timestamp :sexp)))
  4926. (let* ((org-startup-folded nil)
  4927. (org-startup-align-all-tables nil)
  4928. (buffer (if (file-exists-p file)
  4929. (org-get-agenda-file-buffer file)
  4930. (error "No such file %s" file)))
  4931. arg results rtn deadline-results)
  4932. (if (not buffer)
  4933. ;; If file does not exist, make sure an error message ends up in diary
  4934. (list (format "ORG-AGENDA-ERROR: No such org-file %s" file))
  4935. (with-current-buffer buffer
  4936. (unless (derived-mode-p 'org-mode)
  4937. (error "Agenda file %s is not in `org-mode'" file))
  4938. (setq org-agenda-buffer (or org-agenda-buffer buffer))
  4939. (let ((case-fold-search nil))
  4940. (save-excursion
  4941. (save-restriction
  4942. (if org-agenda-restrict
  4943. (narrow-to-region org-agenda-restrict-begin
  4944. org-agenda-restrict-end)
  4945. (widen))
  4946. ;; The way we repeatedly append to `results' makes it O(n^2) :-(
  4947. (while (setq arg (pop args))
  4948. (cond
  4949. ((and (eq arg :todo)
  4950. (equal date (calendar-gregorian-from-absolute
  4951. (org-today))))
  4952. (setq rtn (org-agenda-get-todos))
  4953. (setq results (append results rtn)))
  4954. ((eq arg :timestamp)
  4955. (setq rtn (org-agenda-get-blocks))
  4956. (setq results (append results rtn))
  4957. (setq rtn (org-agenda-get-timestamps deadline-results))
  4958. (setq results (append results rtn)))
  4959. ((eq arg :sexp)
  4960. (setq rtn (org-agenda-get-sexps))
  4961. (setq results (append results rtn)))
  4962. ((eq arg :scheduled)
  4963. (setq rtn (org-agenda-get-scheduled deadline-results))
  4964. (setq results (append results rtn)))
  4965. ((eq arg :closed)
  4966. (setq rtn (org-agenda-get-progress))
  4967. (setq results (append results rtn)))
  4968. ((eq arg :deadline)
  4969. (setq rtn (org-agenda-get-deadlines))
  4970. (setq deadline-results (copy-sequence rtn))
  4971. (setq results (append results rtn))))))))
  4972. results))))
  4973. (defsubst org-em (x y list)
  4974. "Is X or Y a member of LIST?"
  4975. (or (memq x list) (memq y list)))
  4976. (defvar org-heading-keyword-regexp-format) ; defined in org.el
  4977. (defvar org-agenda-sorting-strategy-selected nil)
  4978. (defun org-agenda-get-todos ()
  4979. "Return the TODO information for agenda display."
  4980. (let* ((props (list 'face nil
  4981. 'done-face 'org-agenda-done
  4982. 'org-not-done-regexp org-not-done-regexp
  4983. 'org-todo-regexp org-todo-regexp
  4984. 'org-complex-heading-regexp org-complex-heading-regexp
  4985. 'mouse-face 'highlight
  4986. 'help-echo
  4987. (format "mouse-2 or RET jump to org file %s"
  4988. (abbreviate-file-name buffer-file-name))))
  4989. (regexp (format org-heading-keyword-regexp-format
  4990. (cond
  4991. ((and org-select-this-todo-keyword
  4992. (equal org-select-this-todo-keyword "*"))
  4993. org-todo-regexp)
  4994. (org-select-this-todo-keyword
  4995. (concat "\\("
  4996. (mapconcat 'identity
  4997. (org-split-string
  4998. org-select-this-todo-keyword
  4999. "|")
  5000. "\\|") "\\)"))
  5001. (t org-not-done-regexp))))
  5002. marker priority category category-pos level tags todo-state ts-date ts-date-type
  5003. ee txt beg end inherited-tags)
  5004. (goto-char (point-min))
  5005. (while (re-search-forward regexp nil t)
  5006. (catch :skip
  5007. (save-match-data
  5008. (beginning-of-line)
  5009. (org-agenda-skip)
  5010. (setq beg (point) end (save-excursion (outline-next-heading) (point)))
  5011. (when (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item end)
  5012. (goto-char (1+ beg))
  5013. (or org-agenda-todo-list-sublevels (org-end-of-subtree 'invisible))
  5014. (throw :skip nil)))
  5015. (goto-char (match-beginning 2))
  5016. (setq marker (org-agenda-new-marker (match-beginning 0))
  5017. category (org-get-category)
  5018. ts-date (let (ts)
  5019. (save-match-data
  5020. (cond ((org-em 'scheduled-up 'scheduled-down
  5021. org-agenda-sorting-strategy-selected)
  5022. (setq ts (org-entry-get (point) "SCHEDULED")
  5023. ts-date-type " scheduled"))
  5024. ((org-em 'deadline-up 'deadline-down
  5025. org-agenda-sorting-strategy-selected)
  5026. (setq ts (org-entry-get (point) "DEADLINE")
  5027. ts-date-type " deadline"))
  5028. ((org-em 'ts-up 'ts-down
  5029. org-agenda-sorting-strategy-selected)
  5030. (setq ts (org-entry-get (point) "TIMESTAMP")
  5031. ts-date-type " timestamp"))
  5032. ((org-em 'tsia-up 'tsia-down
  5033. org-agenda-sorting-strategy-selected)
  5034. (setq ts (org-entry-get (point) "TIMESTAMP_IA")
  5035. ts-date-type " timestamp_ia"))
  5036. ((org-em 'timestamp-up 'timestamp-down
  5037. org-agenda-sorting-strategy-selected)
  5038. (setq ts (or (org-entry-get (point) "SCHEDULED")
  5039. (org-entry-get (point) "DEADLINE")
  5040. (org-entry-get (point) "TIMESTAMP")
  5041. (org-entry-get (point) "TIMESTAMP_IA"))
  5042. ts-date-type ""))
  5043. (t (setq ts-date-type "")))
  5044. (when ts (ignore-errors (org-time-string-to-absolute ts)))))
  5045. category-pos (get-text-property (point) 'org-category-position)
  5046. txt (org-trim
  5047. (buffer-substring (match-beginning 2) (match-end 0)))
  5048. inherited-tags
  5049. (or (eq org-agenda-show-inherited-tags 'always)
  5050. (and (listp org-agenda-show-inherited-tags)
  5051. (memq 'todo org-agenda-show-inherited-tags))
  5052. (and (eq org-agenda-show-inherited-tags t)
  5053. (or (eq org-agenda-use-tag-inheritance t)
  5054. (memq 'todo org-agenda-use-tag-inheritance))))
  5055. tags (org-get-tags-at nil (not inherited-tags))
  5056. level (make-string (org-reduced-level (org-outline-level)) ? )
  5057. txt (org-agenda-format-item "" txt level category tags t)
  5058. priority (1+ (org-get-priority txt))
  5059. todo-state (org-get-todo-state))
  5060. (org-add-props txt props
  5061. 'org-marker marker 'org-hd-marker marker
  5062. 'priority priority 'org-category category
  5063. 'level level
  5064. 'ts-date ts-date
  5065. 'org-category-position category-pos
  5066. 'type (concat "todo" ts-date-type) 'todo-state todo-state)
  5067. (push txt ee)
  5068. (if org-agenda-todo-list-sublevels
  5069. (goto-char (match-end 2))
  5070. (org-end-of-subtree 'invisible))))
  5071. (nreverse ee)))
  5072. (defun org-agenda-todo-custom-ignore-p (time n)
  5073. "Check whether timestamp is farther away than n number of days.
  5074. This function is invoked if `org-agenda-todo-ignore-deadlines',
  5075. `org-agenda-todo-ignore-scheduled' or
  5076. `org-agenda-todo-ignore-timestamp' is set to an integer."
  5077. (let ((days (org-time-stamp-to-now
  5078. time org-agenda-todo-ignore-time-comparison-use-seconds)))
  5079. (if (>= n 0)
  5080. (>= days n)
  5081. (<= days n))))
  5082. (defun org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item
  5083. (&optional end)
  5084. "Do we have a reason to ignore this TODO entry because it has a time stamp?"
  5085. (when (or org-agenda-todo-ignore-with-date
  5086. org-agenda-todo-ignore-scheduled
  5087. org-agenda-todo-ignore-deadlines
  5088. org-agenda-todo-ignore-timestamp)
  5089. (setq end (or end (save-excursion (outline-next-heading) (point))))
  5090. (save-excursion
  5091. (or (and org-agenda-todo-ignore-with-date
  5092. (re-search-forward org-ts-regexp end t))
  5093. (and org-agenda-todo-ignore-scheduled
  5094. (re-search-forward org-scheduled-time-regexp end t)
  5095. (cond
  5096. ((eq org-agenda-todo-ignore-scheduled 'future)
  5097. (> (org-time-stamp-to-now
  5098. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5099. ((eq org-agenda-todo-ignore-scheduled 'past)
  5100. (<= (org-time-stamp-to-now
  5101. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5102. ((numberp org-agenda-todo-ignore-scheduled)
  5103. (org-agenda-todo-custom-ignore-p
  5104. (match-string 1) org-agenda-todo-ignore-scheduled))
  5105. (t)))
  5106. (and org-agenda-todo-ignore-deadlines
  5107. (re-search-forward org-deadline-time-regexp end t)
  5108. (cond
  5109. ((memq org-agenda-todo-ignore-deadlines '(t all)) t)
  5110. ((eq org-agenda-todo-ignore-deadlines 'far)
  5111. (not (org-deadline-close (match-string 1))))
  5112. ((eq org-agenda-todo-ignore-deadlines 'future)
  5113. (> (org-time-stamp-to-now
  5114. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5115. ((eq org-agenda-todo-ignore-deadlines 'past)
  5116. (<= (org-time-stamp-to-now
  5117. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5118. ((numberp org-agenda-todo-ignore-deadlines)
  5119. (org-agenda-todo-custom-ignore-p
  5120. (match-string 1) org-agenda-todo-ignore-deadlines))
  5121. (t (org-deadline-close (match-string 1)))))
  5122. (and org-agenda-todo-ignore-timestamp
  5123. (let ((buffer (current-buffer))
  5124. (regexp
  5125. (concat
  5126. org-scheduled-time-regexp "\\|" org-deadline-time-regexp))
  5127. (start (point)))
  5128. ;; Copy current buffer into a temporary one
  5129. (with-temp-buffer
  5130. (insert-buffer-substring buffer start end)
  5131. (goto-char (point-min))
  5132. ;; Delete SCHEDULED and DEADLINE items
  5133. (while (re-search-forward regexp end t)
  5134. (delete-region (match-beginning 0) (match-end 0)))
  5135. (goto-char (point-min))
  5136. ;; No search for timestamp left
  5137. (when (re-search-forward org-ts-regexp nil t)
  5138. (cond
  5139. ((eq org-agenda-todo-ignore-timestamp 'future)
  5140. (> (org-time-stamp-to-now
  5141. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5142. ((eq org-agenda-todo-ignore-timestamp 'past)
  5143. (<= (org-time-stamp-to-now
  5144. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5145. ((numberp org-agenda-todo-ignore-timestamp)
  5146. (org-agenda-todo-custom-ignore-p
  5147. (match-string 1) org-agenda-todo-ignore-timestamp))
  5148. (t))))))))))
  5149. (autoload 'org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item "org-agenda" "\
  5150. Do we have a reason to ignore this TODO entry because it has a time stamp?
  5151. \(fn &optional END)" nil nil)
  5152. (defun org-agenda-get-timestamps (&optional deadline-results)
  5153. "Return the date stamp information for agenda display."
  5154. (let* ((props (list 'face 'org-agenda-calendar-event
  5155. 'org-not-done-regexp org-not-done-regexp
  5156. 'org-todo-regexp org-todo-regexp
  5157. 'org-complex-heading-regexp org-complex-heading-regexp
  5158. 'mouse-face 'highlight
  5159. 'help-echo
  5160. (format "mouse-2 or RET jump to org file %s"
  5161. (abbreviate-file-name buffer-file-name))))
  5162. (d1 (calendar-absolute-from-gregorian date))
  5163. mm
  5164. (deadline-position-alist
  5165. (mapcar (lambda (a) (and (setq mm (get-text-property
  5166. 0 'org-hd-marker a))
  5167. (cons (marker-position mm) a)))
  5168. deadline-results))
  5169. (remove-re org-ts-regexp)
  5170. (regexp
  5171. (concat
  5172. (if org-agenda-include-inactive-timestamps "[[<]" "<")
  5173. (regexp-quote
  5174. (substring
  5175. (format-time-string
  5176. (car org-time-stamp-formats)
  5177. (apply 'encode-time ; DATE bound by calendar
  5178. (list 0 0 0 (nth 1 date) (car date) (nth 2 date))))
  5179. 1 11))
  5180. "\\|\\(<[0-9]+-[0-9]+-[0-9]+[^>\n]+?\\+[0-9]+[hdwmy]>\\)"
  5181. "\\|\\(<%%\\(([^>\n]+)\\)>\\)"))
  5182. marker hdmarker deadlinep scheduledp clockp closedp inactivep
  5183. donep tmp priority category category-pos level ee txt timestr tags
  5184. b0 b3 e3 head todo-state end-of-match show-all warntime habitp
  5185. inherited-tags ts-date)
  5186. (goto-char (point-min))
  5187. (while (setq end-of-match (re-search-forward regexp nil t))
  5188. (setq b0 (match-beginning 0)
  5189. b3 (match-beginning 3) e3 (match-end 3)
  5190. todo-state (save-match-data (ignore-errors (org-get-todo-state)))
  5191. habitp (and (functionp 'org-is-habit-p) (save-match-data (org-is-habit-p)))
  5192. show-all (or (eq org-agenda-repeating-timestamp-show-all t)
  5193. (member todo-state
  5194. org-agenda-repeating-timestamp-show-all)))
  5195. (catch :skip
  5196. (and (org-at-date-range-p) (throw :skip nil))
  5197. (org-agenda-skip)
  5198. (if (and (match-end 1)
  5199. (not (= d1 (org-time-string-to-absolute
  5200. (match-string 1) d1 nil show-all
  5201. (current-buffer) b0))))
  5202. (throw :skip nil))
  5203. (if (and e3
  5204. (not (org-diary-sexp-entry (buffer-substring b3 e3) "" date)))
  5205. (throw :skip nil))
  5206. (setq tmp (buffer-substring (max (point-min)
  5207. (- b0 org-ds-keyword-length))
  5208. b0)
  5209. timestr (if b3 "" (buffer-substring b0 (point-at-eol)))
  5210. inactivep (= (char-after b0) ?\[)
  5211. deadlinep (string-match org-deadline-regexp tmp)
  5212. scheduledp (string-match org-scheduled-regexp tmp)
  5213. closedp (and org-agenda-include-inactive-timestamps
  5214. (string-match org-closed-string tmp))
  5215. clockp (and org-agenda-include-inactive-timestamps
  5216. (or (string-match org-clock-string tmp)
  5217. (string-match "]-+\\'" tmp)))
  5218. warntime (get-text-property (point) 'org-appt-warntime)
  5219. donep (member todo-state org-done-keywords))
  5220. (if (or scheduledp deadlinep closedp clockp
  5221. (and donep org-agenda-skip-timestamp-if-done))
  5222. (throw :skip t))
  5223. (if (string-match ">" timestr)
  5224. ;; substring should only run to end of time stamp
  5225. (setq timestr (substring timestr 0 (match-end 0))))
  5226. (setq marker (org-agenda-new-marker b0)
  5227. category (org-get-category b0)
  5228. category-pos (get-text-property b0 'org-category-position))
  5229. (save-excursion
  5230. (if (not (re-search-backward org-outline-regexp-bol nil t))
  5231. (throw :skip nil)
  5232. (goto-char (match-beginning 0))
  5233. (if (and (eq t org-agenda-skip-timestamp-if-deadline-is-shown)
  5234. (assoc (point) deadline-position-alist))
  5235. (throw :skip nil))
  5236. (setq hdmarker (org-agenda-new-marker)
  5237. inherited-tags
  5238. (or (eq org-agenda-show-inherited-tags 'always)
  5239. (and (listp org-agenda-show-inherited-tags)
  5240. (memq 'agenda org-agenda-show-inherited-tags))
  5241. (and (eq org-agenda-show-inherited-tags t)
  5242. (or (eq org-agenda-use-tag-inheritance t)
  5243. (memq 'agenda org-agenda-use-tag-inheritance))))
  5244. tags (org-get-tags-at nil (not inherited-tags))
  5245. level (make-string (org-reduced-level (org-outline-level)) ? ))
  5246. (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
  5247. (setq head (or (match-string 1) ""))
  5248. (setq txt (org-agenda-format-item
  5249. (if inactivep org-agenda-inactive-leader nil)
  5250. head level category tags timestr
  5251. remove-re habitp)))
  5252. (setq priority (org-get-priority txt))
  5253. (org-add-props txt props 'priority priority
  5254. 'org-marker marker 'org-hd-marker hdmarker
  5255. 'org-category category 'date date
  5256. 'level level
  5257. 'ts-date
  5258. (ignore-errors (org-time-string-to-absolute timestr))
  5259. 'org-category-position category-pos
  5260. 'todo-state todo-state
  5261. 'warntime warntime
  5262. 'type "timestamp")
  5263. (push txt ee))
  5264. (if org-agenda-skip-additional-timestamps-same-entry
  5265. (outline-next-heading)
  5266. (goto-char end-of-match))))
  5267. (nreverse ee)))
  5268. (defun org-agenda-get-sexps ()
  5269. "Return the sexp information for agenda display."
  5270. (require 'diary-lib)
  5271. (let* ((props (list 'face 'org-agenda-calendar-sexp
  5272. 'mouse-face 'highlight
  5273. 'help-echo
  5274. (format "mouse-2 or RET jump to org file %s"
  5275. (abbreviate-file-name buffer-file-name))))
  5276. (regexp "^&?%%(")
  5277. marker category extra category-pos level ee txt tags entry
  5278. result beg b sexp sexp-entry todo-state warntime inherited-tags)
  5279. (goto-char (point-min))
  5280. (while (re-search-forward regexp nil t)
  5281. (catch :skip
  5282. (org-agenda-skip)
  5283. (setq beg (match-beginning 0))
  5284. (goto-char (1- (match-end 0)))
  5285. (setq b (point))
  5286. (forward-sexp 1)
  5287. (setq sexp (buffer-substring b (point)))
  5288. (setq sexp-entry (if (looking-at "[ \t]*\\(\\S-.*\\)")
  5289. (org-trim (match-string 1))
  5290. ""))
  5291. (setq result (org-diary-sexp-entry sexp sexp-entry date))
  5292. (when result
  5293. (setq marker (org-agenda-new-marker beg)
  5294. level (make-string (org-reduced-level (org-outline-level)) ? )
  5295. category (org-get-category beg)
  5296. category-pos (get-text-property beg 'org-category-position)
  5297. inherited-tags
  5298. (or (eq org-agenda-show-inherited-tags 'always)
  5299. (and (listp org-agenda-show-inherited-tags)
  5300. (memq 'agenda org-agenda-show-inherited-tags))
  5301. (and (eq org-agenda-show-inherited-tags t)
  5302. (or (eq org-agenda-use-tag-inheritance t)
  5303. (memq 'agenda org-agenda-use-tag-inheritance))))
  5304. tags (org-get-tags-at nil (not inherited-tags))
  5305. todo-state (org-get-todo-state)
  5306. warntime (get-text-property (point) 'org-appt-warntime)
  5307. extra nil)
  5308. (dolist (r (if (stringp result)
  5309. (list result)
  5310. result)) ;; we expect a list here
  5311. (when (and org-agenda-diary-sexp-prefix
  5312. (string-match org-agenda-diary-sexp-prefix r))
  5313. (setq extra (match-string 0 r)
  5314. r (replace-match "" nil nil r)))
  5315. (if (string-match "\\S-" r)
  5316. (setq txt r)
  5317. (setq txt "SEXP entry returned empty string"))
  5318. (setq txt (org-agenda-format-item extra txt level category tags 'time))
  5319. (org-add-props txt props 'org-marker marker
  5320. 'org-category category 'date date 'todo-state todo-state
  5321. 'org-category-position category-pos 'tags tags
  5322. 'level level
  5323. 'type "sexp" 'warntime warntime)
  5324. (push txt ee)))))
  5325. (nreverse ee)))
  5326. ;; Calendar sanity: define some functions that are independent of
  5327. ;; `calendar-date-style'.
  5328. ;; Normally I would like to use ISO format when calling the diary functions,
  5329. ;; but to make sure we still have Emacs 22 compatibility we bind
  5330. ;; also `european-calendar-style' and use european format
  5331. (defun org-anniversary (year month day &optional mark)
  5332. "Like `diary-anniversary', but with fixed (ISO) order of arguments."
  5333. (org-no-warnings
  5334. (let ((calendar-date-style 'european) (european-calendar-style t))
  5335. (diary-anniversary day month year mark))))
  5336. (defun org-cyclic (N year month day &optional mark)
  5337. "Like `diary-cyclic', but with fixed (ISO) order of arguments."
  5338. (org-no-warnings
  5339. (let ((calendar-date-style 'european) (european-calendar-style t))
  5340. (diary-cyclic N day month year mark))))
  5341. (defun org-block (Y1 M1 D1 Y2 M2 D2 &optional mark)
  5342. "Like `diary-block', but with fixed (ISO) order of arguments."
  5343. (org-no-warnings
  5344. (let ((calendar-date-style 'european) (european-calendar-style t))
  5345. (diary-block D1 M1 Y1 D2 M2 Y2 mark))))
  5346. (defun org-date (year month day &optional mark)
  5347. "Like `diary-date', but with fixed (ISO) order of arguments."
  5348. (org-no-warnings
  5349. (let ((calendar-date-style 'european) (european-calendar-style t))
  5350. (diary-date day month year mark))))
  5351. ;; Define the` org-class' function
  5352. (defun org-class (y1 m1 d1 y2 m2 d2 dayname &rest skip-weeks)
  5353. "Entry applies if date is between dates on DAYNAME, but skips SKIP-WEEKS.
  5354. DAYNAME is a number between 0 (Sunday) and 6 (Saturday).
  5355. SKIP-WEEKS is any number of ISO weeks in the block period for which the
  5356. item should be skipped. If any of the SKIP-WEEKS arguments is the symbol
  5357. `holidays', then any date that is known by the Emacs calendar to be a
  5358. holiday will also be skipped. If SKIP-WEEKS arguments are holiday strings,
  5359. then those holidays will be skipped."
  5360. (let* ((date1 (calendar-absolute-from-gregorian (list m1 d1 y1)))
  5361. (date2 (calendar-absolute-from-gregorian (list m2 d2 y2)))
  5362. (d (calendar-absolute-from-gregorian date))
  5363. (h (when skip-weeks (calendar-check-holidays date))))
  5364. (and
  5365. (<= date1 d)
  5366. (<= d date2)
  5367. (= (calendar-day-of-week date) dayname)
  5368. (or (not skip-weeks)
  5369. (progn
  5370. (require 'cal-iso)
  5371. (not (member (car (calendar-iso-from-absolute d)) skip-weeks))))
  5372. (not (or (and h (memq 'holidays skip-weeks))
  5373. (delq nil (mapcar (lambda(g) (member g skip-weeks)) h))))
  5374. entry)))
  5375. (defun org-diary-class (m1 d1 y1 m2 d2 y2 dayname &rest skip-weeks)
  5376. "Like `org-class', but honor `calendar-date-style'.
  5377. The order of the first 2 times 3 arguments depends on the variable
  5378. `calendar-date-style' or, if that is not defined, on `european-calendar-style'.
  5379. So for American calendars, give this as MONTH DAY YEAR, for European as
  5380. DAY MONTH YEAR, and for ISO as YEAR MONTH DAY.
  5381. DAYNAME is a number between 0 (Sunday) and 6 (Saturday). SKIP-WEEKS
  5382. is any number of ISO weeks in the block period for which the item should
  5383. be skipped.
  5384. This function is here only for backward compatibility and it is deprecated,
  5385. please use `org-class' instead."
  5386. (let* ((date1 (org-order-calendar-date-args m1 d1 y1))
  5387. (date2 (org-order-calendar-date-args m2 d2 y2)))
  5388. (org-class
  5389. (nth 2 date1) (car date1) (nth 1 date1)
  5390. (nth 2 date2) (car date2) (nth 1 date2)
  5391. dayname skip-weeks)))
  5392. (make-obsolete 'org-diary-class 'org-class "")
  5393. (defvar org-agenda-show-log-scoped) ;; dynamically scope in `org-timeline' or `org-agenda-list'
  5394. (defalias 'org-get-closed 'org-agenda-get-progress)
  5395. (defun org-agenda-get-progress ()
  5396. "Return the logged TODO entries for agenda display."
  5397. (let* ((props (list 'mouse-face 'highlight
  5398. 'org-not-done-regexp org-not-done-regexp
  5399. 'org-todo-regexp org-todo-regexp
  5400. 'org-complex-heading-regexp org-complex-heading-regexp
  5401. 'help-echo
  5402. (format "mouse-2 or RET jump to org file %s"
  5403. (abbreviate-file-name buffer-file-name))))
  5404. (items (if (consp org-agenda-show-log-scoped)
  5405. org-agenda-show-log-scoped
  5406. (if (eq org-agenda-show-log-scoped 'clockcheck)
  5407. '(clock)
  5408. org-agenda-log-mode-items)))
  5409. (parts
  5410. (delq nil
  5411. (list
  5412. (if (memq 'closed items) (concat "\\<" org-closed-string))
  5413. (if (memq 'clock items) (concat "\\<" org-clock-string))
  5414. (if (memq 'state items) "- State \"\\([a-zA-Z0-9]+\\)\".*?"))))
  5415. (parts-re (if parts (mapconcat 'identity parts "\\|")
  5416. (error "`org-agenda-log-mode-items' is empty")))
  5417. (regexp (concat
  5418. "\\(" parts-re "\\)"
  5419. " *\\["
  5420. (regexp-quote
  5421. (substring
  5422. (format-time-string
  5423. (car org-time-stamp-formats)
  5424. (apply 'encode-time ; DATE bound by calendar
  5425. (list 0 0 0 (nth 1 date) (car date) (nth 2 date))))
  5426. 1 11))))
  5427. (org-agenda-search-headline-for-time nil)
  5428. marker hdmarker priority category category-pos level tags closedp
  5429. statep clockp state ee txt extra timestr rest clocked inherited-tags)
  5430. (goto-char (point-min))
  5431. (while (re-search-forward regexp nil t)
  5432. (catch :skip
  5433. (org-agenda-skip)
  5434. (setq marker (org-agenda-new-marker (match-beginning 0))
  5435. closedp (equal (match-string 1) org-closed-string)
  5436. statep (equal (string-to-char (match-string 1)) ?-)
  5437. clockp (not (or closedp statep))
  5438. state (and statep (match-string 2))
  5439. category (org-get-category (match-beginning 0))
  5440. category-pos (get-text-property (match-beginning 0) 'org-category-position)
  5441. timestr (buffer-substring (match-beginning 0) (point-at-eol)))
  5442. (when (string-match "\\]" timestr)
  5443. ;; substring should only run to end of time stamp
  5444. (setq rest (substring timestr (match-end 0))
  5445. timestr (substring timestr 0 (match-end 0)))
  5446. (if (and (not closedp) (not statep)
  5447. (string-match "\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)\\].*?\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)"
  5448. rest))
  5449. (progn (setq timestr (concat (substring timestr 0 -1)
  5450. "-" (match-string 1 rest) "]"))
  5451. (setq clocked (match-string 2 rest)))
  5452. (setq clocked "-")))
  5453. (save-excursion
  5454. (setq extra
  5455. (cond
  5456. ((not org-agenda-log-mode-add-notes) nil)
  5457. (statep
  5458. (and (looking-at ".*\\\\\n[ \t]*\\([^-\n \t].*?\\)[ \t]*$")
  5459. (match-string 1)))
  5460. (clockp
  5461. (and (looking-at ".*\n[ \t]*-[ \t]+\\([^-\n \t].*?\\)[ \t]*$")
  5462. (match-string 1)))))
  5463. (if (not (re-search-backward org-outline-regexp-bol nil t))
  5464. (throw :skip nil)
  5465. (goto-char (match-beginning 0))
  5466. (setq hdmarker (org-agenda-new-marker)
  5467. inherited-tags
  5468. (or (eq org-agenda-show-inherited-tags 'always)
  5469. (and (listp org-agenda-show-inherited-tags)
  5470. (memq 'todo org-agenda-show-inherited-tags))
  5471. (and (eq org-agenda-show-inherited-tags t)
  5472. (or (eq org-agenda-use-tag-inheritance t)
  5473. (memq 'todo org-agenda-use-tag-inheritance))))
  5474. tags (org-get-tags-at nil (not inherited-tags))
  5475. level (make-string (org-reduced-level (org-outline-level)) ? ))
  5476. (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
  5477. (setq txt (match-string 1))
  5478. (when extra
  5479. (if (string-match "\\([ \t]+\\)\\(:[^ \n\t]*?:\\)[ \t]*$" txt)
  5480. (setq txt (concat (substring txt 0 (match-beginning 1))
  5481. " - " extra " " (match-string 2 txt)))
  5482. (setq txt (concat txt " - " extra))))
  5483. (setq txt (org-agenda-format-item
  5484. (cond
  5485. (closedp "Closed: ")
  5486. (statep (concat "State: (" state ")"))
  5487. (t (concat "Clocked: (" clocked ")")))
  5488. txt level category tags timestr)))
  5489. (setq priority 100000)
  5490. (org-add-props txt props
  5491. 'org-marker marker 'org-hd-marker hdmarker 'face 'org-agenda-done
  5492. 'priority priority 'org-category category
  5493. 'org-category-position category-pos
  5494. 'level level
  5495. 'type "closed" 'date date
  5496. 'undone-face 'org-warning 'done-face 'org-agenda-done)
  5497. (push txt ee))
  5498. (goto-char (point-at-eol))))
  5499. (nreverse ee)))
  5500. (defun org-agenda-show-clocking-issues ()
  5501. "Add overlays, showing issues with clocking.
  5502. See also the user option `org-agenda-clock-consistency-checks'."
  5503. (interactive)
  5504. (let* ((org-time-clocksum-use-effort-durations nil)
  5505. (pl org-agenda-clock-consistency-checks)
  5506. (re (concat "^[ \t]*"
  5507. org-clock-string
  5508. "[ \t]+"
  5509. "\\(\\[.*?\\]\\)" ; group 1 is first stamp
  5510. "\\(-\\{1,3\\}\\(\\[.*?\\]\\)\\)?")) ; group 3 is second
  5511. (tlstart 0.)
  5512. (tlend 0.)
  5513. (maxtime (org-hh:mm-string-to-minutes
  5514. (or (plist-get pl :max-duration) "24:00")))
  5515. (mintime (org-hh:mm-string-to-minutes
  5516. (or (plist-get pl :min-duration) 0)))
  5517. (maxgap (org-hh:mm-string-to-minutes
  5518. ;; default 30:00 means never complain
  5519. (or (plist-get pl :max-gap) "30:00")))
  5520. (gapok (mapcar 'org-hh:mm-string-to-minutes
  5521. (plist-get pl :gap-ok-around)))
  5522. (def-face (or (plist-get pl :default-face)
  5523. '((:background "DarkRed") (:foreground "white"))))
  5524. issue face m te ts dt ov)
  5525. (goto-char (point-min))
  5526. (while (re-search-forward " Clocked: +(-\\|\\([0-9]+:[0-9]+\\))" nil t)
  5527. (setq issue nil face def-face)
  5528. (catch 'next
  5529. (setq m (org-get-at-bol 'org-marker)
  5530. te nil ts nil)
  5531. (unless (and m (markerp m))
  5532. (setq issue "No valid clock line") (throw 'next t))
  5533. (org-with-point-at m
  5534. (save-excursion
  5535. (goto-char (point-at-bol))
  5536. (unless (looking-at re)
  5537. (error "No valid Clock line")
  5538. (throw 'next t))
  5539. (unless (match-end 3)
  5540. (setq issue "No end time"
  5541. face (or (plist-get pl :no-end-time-face) face))
  5542. (throw 'next t))
  5543. (setq ts (match-string 1)
  5544. te (match-string 3)
  5545. ts (org-float-time
  5546. (apply 'encode-time (org-parse-time-string ts)))
  5547. te (org-float-time
  5548. (apply 'encode-time (org-parse-time-string te)))
  5549. dt (- te ts))))
  5550. (cond
  5551. ((> dt (* 60 maxtime))
  5552. ;; a very long clocking chunk
  5553. (setq issue (format "Clocking interval is very long: %s"
  5554. (org-minutes-to-clocksum-string
  5555. (floor (/ (float dt) 60.))))
  5556. face (or (plist-get pl :long-face) face)))
  5557. ((< dt (* 60 mintime))
  5558. ;; a very short clocking chunk
  5559. (setq issue (format "Clocking interval is very short: %s"
  5560. (org-minutes-to-clocksum-string
  5561. (floor (/ (float dt) 60.))))
  5562. face (or (plist-get pl :short-face) face)))
  5563. ((and (> tlend 0) (< ts tlend))
  5564. ;; Two clock entries are overlapping
  5565. (setq issue (format "Clocking overlap: %d minutes"
  5566. (/ (- tlend ts) 60))
  5567. face (or (plist-get pl :overlap-face) face)))
  5568. ((and (> tlend 0) (> ts (+ tlend (* 60 maxgap))))
  5569. ;; There is a gap, lets see if we need to report it
  5570. (unless (org-agenda-check-clock-gap tlend ts gapok)
  5571. (setq issue (format "Clocking gap: %d minutes"
  5572. (/ (- ts tlend) 60))
  5573. face (or (plist-get pl :gap-face) face))))
  5574. (t nil)))
  5575. (setq tlend (or te tlend) tlstart (or ts tlstart))
  5576. (when issue
  5577. ;; OK, there was some issue, add an overlay to show the issue
  5578. (setq ov (make-overlay (point-at-bol) (point-at-eol)))
  5579. (overlay-put ov 'before-string
  5580. (concat
  5581. (org-add-props
  5582. (format "%-43s" (concat " " issue))
  5583. nil
  5584. 'face face)
  5585. "\n"))
  5586. (overlay-put ov 'evaporate t)))))
  5587. (defun org-agenda-check-clock-gap (t1 t2 ok-list)
  5588. "Check if gap T1 -> T2 contains one of the OK-LIST time-of-day values."
  5589. (catch 'exit
  5590. (unless ok-list
  5591. ;; there are no OK times for gaps...
  5592. (throw 'exit nil))
  5593. (if (> (- (/ t2 36000) (/ t1 36000)) 24)
  5594. ;; This is more than 24 hours, so it is OK.
  5595. ;; because we have at least one OK time, that must be in the
  5596. ;; 24 hour interval.
  5597. (throw 'exit t))
  5598. ;; We have a shorter gap.
  5599. ;; Now we have to get the minute of the day when these times are
  5600. (let* ((t1dec (decode-time (seconds-to-time t1)))
  5601. (t2dec (decode-time (seconds-to-time t2)))
  5602. ;; compute the minute on the day
  5603. (min1 (+ (nth 1 t1dec) (* 60 (nth 2 t1dec))))
  5604. (min2 (+ (nth 1 t2dec) (* 60 (nth 2 t2dec)))))
  5605. (when (< min2 min1)
  5606. ;; if min2 is smaller than min1, this means it is on the next day.
  5607. ;; Wrap it to after midnight.
  5608. (setq min2 (+ min2 1440)))
  5609. ;; Now check if any of the OK times is in the gap
  5610. (mapc (lambda (x)
  5611. ;; Wrap the time to after midnight if necessary
  5612. (if (< x min1) (setq x (+ x 1440)))
  5613. ;; Check if in interval
  5614. (and (<= min1 x) (>= min2 x) (throw 'exit t)))
  5615. ok-list)
  5616. ;; Nope, this gap is not OK
  5617. nil)))
  5618. (defun org-agenda-get-deadlines ()
  5619. "Return the deadline information for agenda display."
  5620. (let* ((props (list 'mouse-face 'highlight
  5621. 'org-not-done-regexp org-not-done-regexp
  5622. 'org-todo-regexp org-todo-regexp
  5623. 'org-complex-heading-regexp org-complex-heading-regexp
  5624. 'help-echo
  5625. (format "mouse-2 or RET jump to org file %s"
  5626. (abbreviate-file-name buffer-file-name))))
  5627. (regexp org-deadline-time-regexp)
  5628. (todayp (org-agenda-todayp date)) ; DATE bound by calendar
  5629. (d1 (calendar-absolute-from-gregorian date)) ; DATE bound by calendar
  5630. d2 diff dfrac wdays pos pos1 category category-pos level
  5631. tags suppress-prewarning ee txt head face s todo-state
  5632. show-all upcomingp donep timestr warntime inherited-tags ts-date)
  5633. (goto-char (point-min))
  5634. (while (re-search-forward regexp nil t)
  5635. (catch :skip
  5636. (org-agenda-skip)
  5637. (setq s (match-string 1)
  5638. txt nil
  5639. pos (1- (match-beginning 1))
  5640. todo-state (save-match-data (org-get-todo-state))
  5641. show-all (or (eq org-agenda-repeating-timestamp-show-all t)
  5642. (member todo-state
  5643. org-agenda-repeating-timestamp-show-all))
  5644. d2 (org-time-string-to-absolute
  5645. s d1 'past show-all (current-buffer) pos)
  5646. diff (- d2 d1))
  5647. (setq suppress-prewarning
  5648. (let ((ds (and org-agenda-skip-deadline-prewarning-if-scheduled
  5649. (let ((item (buffer-substring (point-at-bol)
  5650. (point-at-eol))))
  5651. (save-match-data
  5652. (and (string-match
  5653. org-scheduled-time-regexp item)
  5654. (match-string 1 item)))))))
  5655. (cond
  5656. ((not ds) nil)
  5657. ;; The current item has a scheduled date (in ds), so
  5658. ;; evaluate its prewarning lead time.
  5659. ((integerp org-agenda-skip-deadline-prewarning-if-scheduled)
  5660. ;; Use global prewarning-restart lead time.
  5661. org-agenda-skip-deadline-prewarning-if-scheduled)
  5662. ((eq org-agenda-skip-deadline-prewarning-if-scheduled
  5663. 'pre-scheduled)
  5664. ;; Set prewarning to no earlier than scheduled.
  5665. (min (- d2 (org-time-string-to-absolute
  5666. ds d1 'past show-all (current-buffer) pos))
  5667. org-deadline-warning-days))
  5668. ;; Set prewarning to deadline.
  5669. (t 0))))
  5670. (setq wdays (if suppress-prewarning
  5671. (let ((org-deadline-warning-days suppress-prewarning))
  5672. (org-get-wdays s))
  5673. (org-get-wdays s))
  5674. dfrac (- 1 (/ (* 1.0 diff) (max wdays 1)))
  5675. upcomingp (and todayp (> diff 0)))
  5676. ;; When to show a deadline in the calendar:
  5677. ;; If the expiration is within wdays warning time.
  5678. ;; Past-due deadlines are only shown on the current date
  5679. (if (and (or (and (<= diff wdays)
  5680. (and todayp (not org-agenda-only-exact-dates)))
  5681. (= diff 0)))
  5682. (save-excursion
  5683. ;; (setq todo-state (org-get-todo-state))
  5684. (setq donep (member todo-state org-done-keywords))
  5685. (if (and donep
  5686. (or org-agenda-skip-deadline-if-done
  5687. (not (= diff 0))))
  5688. (setq txt nil)
  5689. (setq category (org-get-category)
  5690. warntime (get-text-property (point) 'org-appt-warntime)
  5691. category-pos (get-text-property (point) 'org-category-position))
  5692. (if (not (re-search-backward "^\\*+[ \t]+" nil t))
  5693. (throw :skip nil)
  5694. (goto-char (match-end 0))
  5695. (setq pos1 (match-beginning 0))
  5696. (setq level (make-string (org-reduced-level (org-outline-level)) ? ))
  5697. (setq inherited-tags
  5698. (or (eq org-agenda-show-inherited-tags 'always)
  5699. (and (listp org-agenda-show-inherited-tags)
  5700. (memq 'agenda org-agenda-show-inherited-tags))
  5701. (and (eq org-agenda-show-inherited-tags t)
  5702. (or (eq org-agenda-use-tag-inheritance t)
  5703. (memq 'agenda org-agenda-use-tag-inheritance))))
  5704. tags (org-get-tags-at pos1 (not inherited-tags)))
  5705. (setq head (buffer-substring
  5706. (point)
  5707. (progn (skip-chars-forward "^\r\n")
  5708. (point))))
  5709. (if (string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
  5710. (setq timestr
  5711. (concat (substring s (match-beginning 1)) " "))
  5712. (setq timestr 'time))
  5713. (setq txt (org-agenda-format-item
  5714. (if (= diff 0)
  5715. (car org-agenda-deadline-leaders)
  5716. (if (functionp
  5717. (nth 1 org-agenda-deadline-leaders))
  5718. (funcall
  5719. (nth 1 org-agenda-deadline-leaders)
  5720. diff date)
  5721. (format (nth 1 org-agenda-deadline-leaders)
  5722. diff)))
  5723. head level category tags
  5724. (if (not (= diff 0)) nil timestr)))))
  5725. (when txt
  5726. (setq face (org-agenda-deadline-face dfrac))
  5727. (org-add-props txt props
  5728. 'org-marker (org-agenda-new-marker pos)
  5729. 'warntime warntime
  5730. 'level level
  5731. 'ts-date d2
  5732. 'org-hd-marker (org-agenda-new-marker pos1)
  5733. 'priority (+ (- diff)
  5734. (org-get-priority txt))
  5735. 'org-category category
  5736. 'org-category-position category-pos
  5737. 'todo-state todo-state
  5738. 'type (if upcomingp "upcoming-deadline" "deadline")
  5739. 'date (if upcomingp date d2)
  5740. 'face (if donep 'org-agenda-done face)
  5741. 'undone-face face 'done-face 'org-agenda-done)
  5742. (push txt ee))))))
  5743. (nreverse ee)))
  5744. (defun org-agenda-deadline-face (fraction)
  5745. "Return the face to displaying a deadline item.
  5746. FRACTION is what fraction of the head-warning time has passed."
  5747. (let ((faces org-agenda-deadline-faces) f)
  5748. (catch 'exit
  5749. (while (setq f (pop faces))
  5750. (if (>= fraction (car f)) (throw 'exit (cdr f)))))))
  5751. (defun org-agenda-get-scheduled (&optional deadline-results)
  5752. "Return the scheduled information for agenda display."
  5753. (let* ((props (list 'org-not-done-regexp org-not-done-regexp
  5754. 'org-todo-regexp org-todo-regexp
  5755. 'org-complex-heading-regexp org-complex-heading-regexp
  5756. 'done-face 'org-agenda-done
  5757. 'mouse-face 'highlight
  5758. 'help-echo
  5759. (format "mouse-2 or RET jump to org file %s"
  5760. (abbreviate-file-name buffer-file-name))))
  5761. (regexp org-scheduled-time-regexp)
  5762. (todayp (org-agenda-todayp date)) ; DATE bound by calendar
  5763. (d1 (calendar-absolute-from-gregorian date)) ; DATE bound by calendar
  5764. mm
  5765. (deadline-position-alist
  5766. (mapcar (lambda (a) (and (setq mm (get-text-property
  5767. 0 'org-hd-marker a))
  5768. (cons (marker-position mm) a)))
  5769. deadline-results))
  5770. d2 diff pos pos1 category category-pos level tags donep
  5771. ee txt head pastschedp todo-state face timestr s habitp show-all
  5772. did-habit-check-p warntime inherited-tags ts-date suppress-delay
  5773. ddays)
  5774. (goto-char (point-min))
  5775. (while (re-search-forward regexp nil t)
  5776. (catch :skip
  5777. (org-agenda-skip)
  5778. (setq s (match-string 1)
  5779. txt nil
  5780. pos (1- (match-beginning 1))
  5781. todo-state (save-match-data (org-get-todo-state))
  5782. show-all (or (eq org-agenda-repeating-timestamp-show-all t)
  5783. (member todo-state
  5784. org-agenda-repeating-timestamp-show-all))
  5785. d2 (org-time-string-to-absolute
  5786. s d1 'past show-all (current-buffer) pos)
  5787. diff (- d2 d1)
  5788. warntime (get-text-property (point) 'org-appt-warntime))
  5789. (setq pastschedp (and todayp (< diff 0)))
  5790. (setq did-habit-check-p nil)
  5791. (setq suppress-delay
  5792. (let ((ds (and org-agenda-skip-scheduled-delay-if-deadline
  5793. (let ((item (buffer-substring (point-at-bol) (point-at-eol))))
  5794. (save-match-data
  5795. (and (string-match
  5796. org-deadline-time-regexp item)
  5797. (match-string 1 item)))))))
  5798. (cond
  5799. ((not ds) nil)
  5800. ;; The current item has a deadline date (in ds), so
  5801. ;; evaluate its delay time.
  5802. ((integerp org-agenda-skip-scheduled-delay-if-deadline)
  5803. ;; Use global delay time.
  5804. (- org-agenda-skip-scheduled-delay-if-deadline))
  5805. ((eq org-agenda-skip-scheduled-delay-if-deadline
  5806. 'post-deadline)
  5807. ;; Set delay to no later than deadline.
  5808. (min (- d2 (org-time-string-to-absolute
  5809. ds d1 'past show-all (current-buffer) pos))
  5810. org-scheduled-delay-days))
  5811. (t 0))))
  5812. (setq ddays (if suppress-delay
  5813. (let ((org-scheduled-delay-days suppress-delay))
  5814. (org-get-wdays s t t))
  5815. (org-get-wdays s t)))
  5816. ;; Use a delay of 0 when there is a repeater and the delay is
  5817. ;; of the form --3d
  5818. (when (and (save-match-data (string-match "--[0-9]+[hdwmy]" s))
  5819. (< (org-time-string-to-absolute s)
  5820. (org-time-string-to-absolute
  5821. s d2 'past nil (current-buffer) pos)))
  5822. (setq ddays 0))
  5823. ;; When to show a scheduled item in the calendar:
  5824. ;; If it is on or past the date.
  5825. (when (or (and (> ddays 0) (= diff (- ddays)))
  5826. (and (zerop ddays) (= diff 0))
  5827. (and (< (+ diff ddays) 0)
  5828. (< (abs diff) org-scheduled-past-days)
  5829. (and todayp (not org-agenda-only-exact-dates)))
  5830. ;; org-is-habit-p uses org-entry-get, which is expansive
  5831. ;; so we go extra mile to only call it once
  5832. (and todayp
  5833. (boundp 'org-habit-show-all-today)
  5834. org-habit-show-all-today
  5835. (setq did-habit-check-p t)
  5836. (setq habitp (and (functionp 'org-is-habit-p)
  5837. (org-is-habit-p)))))
  5838. (save-excursion
  5839. (setq donep (member todo-state org-done-keywords))
  5840. (if (and donep
  5841. (or org-agenda-skip-scheduled-if-done
  5842. (not (= diff 0))
  5843. (and (functionp 'org-is-habit-p)
  5844. (org-is-habit-p))))
  5845. (setq txt nil)
  5846. (setq habitp (if did-habit-check-p habitp
  5847. (and (functionp 'org-is-habit-p)
  5848. (org-is-habit-p))))
  5849. (setq category (org-get-category)
  5850. category-pos (get-text-property (point) 'org-category-position))
  5851. (if (not (re-search-backward "^\\*+[ \t]+" nil t))
  5852. (throw :skip nil)
  5853. (goto-char (match-end 0))
  5854. (setq pos1 (match-beginning 0))
  5855. (if habitp
  5856. (if (or (not org-habit-show-habits)
  5857. (and (not todayp)
  5858. (boundp 'org-habit-show-habits-only-for-today)
  5859. org-habit-show-habits-only-for-today))
  5860. (throw :skip nil))
  5861. (if (and
  5862. (or (eq t org-agenda-skip-scheduled-if-deadline-is-shown)
  5863. (and org-agenda-skip-scheduled-if-deadline-is-shown
  5864. pastschedp))
  5865. (setq mm (assoc pos1 deadline-position-alist)))
  5866. (throw :skip nil)))
  5867. (setq inherited-tags
  5868. (or (eq org-agenda-show-inherited-tags 'always)
  5869. (and (listp org-agenda-show-inherited-tags)
  5870. (memq 'agenda org-agenda-show-inherited-tags))
  5871. (and (eq org-agenda-show-inherited-tags t)
  5872. (or (eq org-agenda-use-tag-inheritance t)
  5873. (memq 'agenda org-agenda-use-tag-inheritance))))
  5874. tags (org-get-tags-at nil (not inherited-tags)))
  5875. (setq level (make-string (org-reduced-level (org-outline-level)) ? ))
  5876. (setq head (buffer-substring
  5877. (point)
  5878. (progn (skip-chars-forward "^\r\n") (point))))
  5879. (if (string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
  5880. (setq timestr
  5881. (concat (substring s (match-beginning 1)) " "))
  5882. (setq timestr 'time))
  5883. (setq txt (org-agenda-format-item
  5884. (if (= diff 0)
  5885. (car org-agenda-scheduled-leaders)
  5886. (format (nth 1 org-agenda-scheduled-leaders)
  5887. (- 1 diff)))
  5888. head level category tags
  5889. (if (not (= diff 0)) nil timestr)
  5890. nil habitp))))
  5891. (when txt
  5892. (setq face
  5893. (cond
  5894. ((and (not habitp) pastschedp)
  5895. 'org-scheduled-previously)
  5896. (todayp 'org-scheduled-today)
  5897. (t 'org-scheduled))
  5898. habitp (and habitp (org-habit-parse-todo)))
  5899. (org-add-props txt props
  5900. 'undone-face face
  5901. 'face (if donep 'org-agenda-done face)
  5902. 'org-marker (org-agenda-new-marker pos)
  5903. 'org-hd-marker (org-agenda-new-marker pos1)
  5904. 'type (if pastschedp "past-scheduled" "scheduled")
  5905. 'date (if pastschedp d2 date)
  5906. 'ts-date d2
  5907. 'warntime warntime
  5908. 'level level
  5909. 'priority (if habitp
  5910. (org-habit-get-priority habitp)
  5911. (+ 94 (- 5 diff) (org-get-priority txt)))
  5912. 'org-category category
  5913. 'category-position category-pos
  5914. 'org-habit-p habitp
  5915. 'todo-state todo-state)
  5916. (push txt ee))))))
  5917. (nreverse ee)))
  5918. (defun org-agenda-get-blocks ()
  5919. "Return the date-range information for agenda display."
  5920. (let* ((props (list 'face nil
  5921. 'org-not-done-regexp org-not-done-regexp
  5922. 'org-todo-regexp org-todo-regexp
  5923. 'org-complex-heading-regexp org-complex-heading-regexp
  5924. 'mouse-face 'highlight
  5925. 'help-echo
  5926. (format "mouse-2 or RET jump to org file %s"
  5927. (abbreviate-file-name buffer-file-name))))
  5928. (regexp org-tr-regexp)
  5929. (d0 (calendar-absolute-from-gregorian date))
  5930. marker hdmarker ee txt d1 d2 s1 s2 category category-pos
  5931. level todo-state tags pos head donep inherited-tags)
  5932. (goto-char (point-min))
  5933. (while (re-search-forward regexp nil t)
  5934. (catch :skip
  5935. (org-agenda-skip)
  5936. (setq pos (point))
  5937. (let ((start-time (match-string 1))
  5938. (end-time (match-string 2)))
  5939. (setq s1 (match-string 1)
  5940. s2 (match-string 2)
  5941. d1 (time-to-days (org-time-string-to-time s1 (current-buffer) pos))
  5942. d2 (time-to-days (org-time-string-to-time s2 (current-buffer) pos)))
  5943. (if (and (> (- d0 d1) -1) (> (- d2 d0) -1))
  5944. ;; Only allow days between the limits, because the normal
  5945. ;; date stamps will catch the limits.
  5946. (save-excursion
  5947. (setq todo-state (org-get-todo-state))
  5948. (setq donep (member todo-state org-done-keywords))
  5949. (if (and donep org-agenda-skip-timestamp-if-done)
  5950. (throw :skip t))
  5951. (setq marker (org-agenda-new-marker (point)))
  5952. (setq category (org-get-category)
  5953. category-pos (get-text-property (point) 'org-category-position))
  5954. (if (not (re-search-backward org-outline-regexp-bol nil t))
  5955. (throw :skip nil)
  5956. (goto-char (match-beginning 0))
  5957. (setq hdmarker (org-agenda-new-marker (point))
  5958. inherited-tags
  5959. (or (eq org-agenda-show-inherited-tags 'always)
  5960. (and (listp org-agenda-show-inherited-tags)
  5961. (memq 'agenda org-agenda-show-inherited-tags))
  5962. (and (eq org-agenda-show-inherited-tags t)
  5963. (or (eq org-agenda-use-tag-inheritance t)
  5964. (memq 'agenda org-agenda-use-tag-inheritance))))
  5965. tags (org-get-tags-at nil (not inherited-tags)))
  5966. (setq level (make-string (org-reduced-level (org-outline-level)) ? ))
  5967. (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
  5968. (setq head (match-string 1))
  5969. (let ((remove-re
  5970. (if org-agenda-remove-timeranges-from-blocks
  5971. (concat
  5972. "<" (regexp-quote s1) ".*?>"
  5973. "--"
  5974. "<" (regexp-quote s2) ".*?>")
  5975. nil)))
  5976. (setq txt (org-agenda-format-item
  5977. (format
  5978. (nth (if (= d1 d2) 0 1)
  5979. org-agenda-timerange-leaders)
  5980. (1+ (- d0 d1)) (1+ (- d2 d1)))
  5981. head level category tags
  5982. (cond ((and (= d1 d0) (= d2 d0))
  5983. (concat "<" start-time ">--<" end-time ">"))
  5984. ((= d1 d0)
  5985. (concat "<" start-time ">"))
  5986. ((= d2 d0)
  5987. (concat "<" end-time ">")))
  5988. remove-re))))
  5989. (org-add-props txt props
  5990. 'org-marker marker 'org-hd-marker hdmarker
  5991. 'type "block" 'date date
  5992. 'level level
  5993. 'todo-state todo-state
  5994. 'priority (org-get-priority txt) 'org-category category
  5995. 'org-category-position category-pos)
  5996. (push txt ee))))
  5997. (goto-char pos)))
  5998. ;; Sort the entries by expiration date.
  5999. (nreverse ee)))
  6000. ;;; Agenda presentation and sorting
  6001. (defvar org-prefix-has-time nil
  6002. "A flag, set by `org-compile-prefix-format'.
  6003. The flag is set if the currently compiled format contains a `%t'.")
  6004. (defvar org-prefix-has-tag nil
  6005. "A flag, set by `org-compile-prefix-format'.
  6006. The flag is set if the currently compiled format contains a `%T'.")
  6007. (defvar org-prefix-has-effort nil
  6008. "A flag, set by `org-compile-prefix-format'.
  6009. The flag is set if the currently compiled format contains a `%e'.")
  6010. (defvar org-prefix-has-breadcrumbs nil
  6011. "A flag, set by `org-compile-prefix-format'.
  6012. The flag is set if the currently compiled format contains a `%b'.")
  6013. (defvar org-prefix-category-length nil
  6014. "Used by `org-compile-prefix-format' to remember the category field width.")
  6015. (defvar org-prefix-category-max-length nil
  6016. "Used by `org-compile-prefix-format' to remember the category field width.")
  6017. (defun org-agenda-get-category-icon (category)
  6018. "Return an image for CATEGORY according to `org-agenda-category-icon-alist'."
  6019. (dolist (entry org-agenda-category-icon-alist)
  6020. (when (org-string-match-p (car entry) category)
  6021. (if (listp (cadr entry))
  6022. (return (cadr entry))
  6023. (return (apply 'create-image (cdr entry)))))))
  6024. (defun org-agenda-format-item (extra txt &optional level category tags dotime
  6025. remove-re habitp)
  6026. "Format TXT to be inserted into the agenda buffer.
  6027. In particular, add the prefix and corresponding text properties.
  6028. EXTRA must be a string to replace the `%s' specifier in the prefix format.
  6029. LEVEL may be a string to replace the `%l' specifier.
  6030. CATEGORY (a string, a symbol or nil) may be used to overrule the default
  6031. category taken from local variable or file name. It will replace the `%c'
  6032. specifier in the format.
  6033. DOTIME, when non-nil, indicates that a time-of-day should be extracted from
  6034. TXT for sorting of this entry, and for the `%t' specifier in the format.
  6035. When DOTIME is a string, this string is searched for a time before TXT is.
  6036. TAGS can be the tags of the headline.
  6037. Any match of REMOVE-RE will be removed from TXT."
  6038. ;; We keep the org-prefix-* variable values along with a compiled
  6039. ;; formatter, so that multiple agendas existing at the same time do
  6040. ;; not step on each other toes.
  6041. ;;
  6042. ;; It was inconvenient to make these variables buffer local in
  6043. ;; Agenda buffers, because this function expects to be called with
  6044. ;; the buffer where item comes from being current, and not agenda
  6045. ;; buffer
  6046. (let* ((bindings (car org-prefix-format-compiled))
  6047. (formatter (cadr org-prefix-format-compiled)))
  6048. (loop for (var value) in bindings
  6049. do (set var value))
  6050. (save-match-data
  6051. ;; Diary entries sometimes have extra whitespace at the beginning
  6052. (setq txt (org-trim txt))
  6053. ;; Fix the tags part in txt
  6054. (setq txt (org-agenda-fix-displayed-tags
  6055. txt tags
  6056. org-agenda-show-inherited-tags
  6057. org-agenda-hide-tags-regexp))
  6058. (let* ((category (or category
  6059. (if (stringp org-category)
  6060. org-category
  6061. (and org-category (symbol-name org-category)))
  6062. (if buffer-file-name
  6063. (file-name-sans-extension
  6064. (file-name-nondirectory buffer-file-name))
  6065. "")))
  6066. (category-icon (org-agenda-get-category-icon category))
  6067. (category-icon (if category-icon
  6068. (propertize " " 'display category-icon)
  6069. ""))
  6070. ;; time, tag, effort are needed for the eval of the prefix format
  6071. (tag (if tags (nth (1- (length tags)) tags) ""))
  6072. time effort neffort
  6073. (ts (if dotime (concat
  6074. (if (stringp dotime) dotime "")
  6075. (and org-agenda-search-headline-for-time txt))))
  6076. (time-of-day (and dotime (org-get-time-of-day ts)))
  6077. stamp plain s0 s1 s2 rtn srp l
  6078. duration thecategory)
  6079. (and (derived-mode-p 'org-mode) buffer-file-name
  6080. (add-to-list 'org-agenda-contributing-files buffer-file-name))
  6081. (when (and dotime time-of-day)
  6082. ;; Extract starting and ending time and move them to prefix
  6083. (when (or (setq stamp (string-match org-stamp-time-of-day-regexp ts))
  6084. (setq plain (string-match org-plain-time-of-day-regexp ts)))
  6085. (setq s0 (match-string 0 ts)
  6086. srp (and stamp (match-end 3))
  6087. s1 (match-string (if plain 1 2) ts)
  6088. s2 (match-string (if plain 8 (if srp 4 6)) ts))
  6089. ;; If the times are in TXT (not in DOTIMES), and the prefix will list
  6090. ;; them, we might want to remove them there to avoid duplication.
  6091. ;; The user can turn this off with a variable.
  6092. (if (and org-prefix-has-time
  6093. org-agenda-remove-times-when-in-prefix (or stamp plain)
  6094. (string-match (concat (regexp-quote s0) " *") txt)
  6095. (not (equal ?\] (string-to-char (substring txt (match-end 0)))))
  6096. (if (eq org-agenda-remove-times-when-in-prefix 'beg)
  6097. (= (match-beginning 0) 0)
  6098. t))
  6099. (setq txt (replace-match "" nil nil txt))))
  6100. ;; Normalize the time(s) to 24 hour
  6101. (if s1 (setq s1 (org-get-time-of-day s1 'string t)))
  6102. (if s2 (setq s2 (org-get-time-of-day s2 'string t)))
  6103. ;; Try to set s2 if s1 and `org-agenda-default-appointment-duration' are set
  6104. (let (org-time-clocksum-use-effort-durations)
  6105. (when (and s1 (not s2) org-agenda-default-appointment-duration)
  6106. (setq s2
  6107. (org-minutes-to-clocksum-string
  6108. (+ (org-hh:mm-string-to-minutes s1)
  6109. org-agenda-default-appointment-duration)))))
  6110. ;; Compute the duration
  6111. (when s2
  6112. (setq duration (- (org-hh:mm-string-to-minutes s2)
  6113. (org-hh:mm-string-to-minutes s1)))))
  6114. (when (string-match (org-re "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$")
  6115. txt)
  6116. ;; Tags are in the string
  6117. (if (or (eq org-agenda-remove-tags t)
  6118. (and org-agenda-remove-tags
  6119. org-prefix-has-tag))
  6120. (setq txt (replace-match "" t t txt))
  6121. (setq txt (replace-match
  6122. (concat (make-string (max (- 50 (length txt)) 1) ?\ )
  6123. (match-string 2 txt))
  6124. t t txt))))
  6125. (when (derived-mode-p 'org-mode)
  6126. (setq effort (ignore-errors (get-text-property 0 'org-effort txt)))
  6127. (if effort
  6128. (setq neffort (org-duration-string-to-minutes effort)
  6129. effort (setq effort (concat "[" effort "]")))
  6130. ;; prevent erroring out with %e format when there is no effort
  6131. (setq effort "")))
  6132. (when remove-re
  6133. (while (string-match remove-re txt)
  6134. (setq txt (replace-match "" t t txt))))
  6135. ;; Set org-heading property on `txt' to mark the start of the
  6136. ;; heading.
  6137. (add-text-properties 0 (length txt) '(org-heading t) txt)
  6138. ;; Prepare the variables needed in the eval of the compiled format
  6139. (setq time (cond (s2 (concat
  6140. (org-agenda-time-of-day-to-ampm-maybe s1)
  6141. "-" (org-agenda-time-of-day-to-ampm-maybe s2)
  6142. (if org-agenda-timegrid-use-ampm " ")))
  6143. (s1 (concat
  6144. (org-agenda-time-of-day-to-ampm-maybe s1)
  6145. (if org-agenda-timegrid-use-ampm
  6146. "........ "
  6147. "......")))
  6148. (t ""))
  6149. extra (or (and (not habitp) extra) "")
  6150. breadcrumbs (org-with-point-at (org-get-at-bol 'org-marker)
  6151. (let ((s (org-display-outline-path nil nil "->" t)))
  6152. (if (eq "" s) "" (concat s "->"))))
  6153. category (if (symbolp category) (symbol-name category) category)
  6154. thecategory (copy-sequence category)
  6155. level (or level ""))
  6156. (if (string-match org-bracket-link-regexp category)
  6157. (progn
  6158. (setq l (if (match-end 3)
  6159. (- (match-end 3) (match-beginning 3))
  6160. (- (match-end 1) (match-beginning 1))))
  6161. (when (< l (or org-prefix-category-length 0))
  6162. (setq category (copy-sequence category))
  6163. (org-add-props category nil
  6164. 'extra-space (make-string
  6165. (- org-prefix-category-length l 1) ?\ ))))
  6166. (if (and org-prefix-category-max-length
  6167. (>= (length category) org-prefix-category-max-length))
  6168. (setq category (substring category 0 (1- org-prefix-category-max-length)))))
  6169. ;; Evaluate the compiled format
  6170. (setq rtn (concat (eval formatter) txt))
  6171. ;; And finally add the text properties
  6172. (remove-text-properties 0 (length rtn) '(line-prefix t wrap-prefix t) rtn)
  6173. (org-add-props rtn nil
  6174. 'org-category (if thecategory (downcase thecategory) category)
  6175. 'tags (mapcar 'org-downcase-keep-props tags)
  6176. 'org-highest-priority org-highest-priority
  6177. 'org-lowest-priority org-lowest-priority
  6178. 'time-of-day time-of-day
  6179. 'duration duration
  6180. 'effort effort
  6181. 'effort-minutes neffort
  6182. 'breadcrumbs breadcrumbs
  6183. 'txt txt
  6184. 'level level
  6185. 'time time
  6186. 'extra extra
  6187. 'format org-prefix-format-compiled
  6188. 'dotime dotime)))))
  6189. (defun org-agenda-fix-displayed-tags (txt tags add-inherited hide-re)
  6190. "Remove tags string from TXT, and add a modified list of tags.
  6191. The modified list may contain inherited tags, and tags matched by
  6192. `org-agenda-hide-tags-regexp' will be removed."
  6193. (when (or add-inherited hide-re)
  6194. (if (string-match (org-re "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$") txt)
  6195. (setq txt (substring txt 0 (match-beginning 0))))
  6196. (setq tags
  6197. (delq nil
  6198. (mapcar (lambda (tg)
  6199. (if (or (and hide-re (string-match hide-re tg))
  6200. (and (not add-inherited)
  6201. (get-text-property 0 'inherited tg)))
  6202. nil
  6203. tg))
  6204. tags)))
  6205. (when tags
  6206. (let ((have-i (get-text-property 0 'inherited (car tags)))
  6207. i)
  6208. (setq txt (concat txt " :"
  6209. (mapconcat
  6210. (lambda (x)
  6211. (setq i (get-text-property 0 'inherited x))
  6212. (if (and have-i (not i))
  6213. (progn
  6214. (setq have-i nil)
  6215. (concat ":" x))
  6216. x))
  6217. tags ":")
  6218. (if have-i "::" ":"))))))
  6219. txt)
  6220. (defun org-downcase-keep-props (s)
  6221. (let ((props (text-properties-at 0 s)))
  6222. (setq s (downcase s))
  6223. (add-text-properties 0 (length s) props s)
  6224. s))
  6225. (defvar org-agenda-sorting-strategy) ;; because the def is in a let form
  6226. (defun org-agenda-add-time-grid-maybe (list ndays todayp)
  6227. "Add a time-grid for agenda items which need it.
  6228. LIST is the list of agenda items formatted by `org-agenda-list'.
  6229. NDAYS is the span of the current agenda view.
  6230. TODAYP is `t' when the current agenda view is on today."
  6231. (catch 'exit
  6232. (cond ((not org-agenda-use-time-grid) (throw 'exit list))
  6233. ((and todayp (member 'today (car org-agenda-time-grid))))
  6234. ((and (= ndays 1) (member 'daily (car org-agenda-time-grid))))
  6235. ((member 'weekly (car org-agenda-time-grid)))
  6236. (t (throw 'exit list)))
  6237. (let* ((have (delq nil (mapcar
  6238. (lambda (x) (get-text-property 1 'time-of-day x))
  6239. list)))
  6240. (string (nth 1 org-agenda-time-grid))
  6241. (gridtimes (nth 2 org-agenda-time-grid))
  6242. (req (car org-agenda-time-grid))
  6243. (remove (member 'remove-match req))
  6244. new time)
  6245. (if (and (member 'require-timed req) (not have))
  6246. ;; don't show empty grid
  6247. (throw 'exit list))
  6248. (while (setq time (pop gridtimes))
  6249. (unless (and remove (member time have))
  6250. (setq time (replace-regexp-in-string " " "0" (format "%04s" time)))
  6251. (push (org-agenda-format-item
  6252. nil string nil "" nil
  6253. (concat (substring time 0 -2) ":" (substring time -2)))
  6254. new)
  6255. (put-text-property
  6256. 2 (length (car new)) 'face 'org-time-grid (car new))))
  6257. (when (and todayp org-agenda-show-current-time-in-grid)
  6258. (push (org-agenda-format-item
  6259. nil org-agenda-current-time-string nil "" nil
  6260. (format-time-string "%H:%M "))
  6261. new)
  6262. (put-text-property
  6263. 2 (length (car new)) 'face 'org-agenda-current-time (car new)))
  6264. (if (member 'time-up org-agenda-sorting-strategy-selected)
  6265. (append new list)
  6266. (append list new)))))
  6267. (defun org-compile-prefix-format (key)
  6268. "Compile the prefix format into a Lisp form that can be evaluated.
  6269. The resulting form and associated variable bindings is returned
  6270. and stored in the variable `org-prefix-format-compiled'."
  6271. (setq org-prefix-has-time nil
  6272. org-prefix-has-tag nil
  6273. org-prefix-category-length nil
  6274. org-prefix-has-effort nil
  6275. org-prefix-has-breadcrumbs nil)
  6276. (let ((s (cond
  6277. ((stringp org-agenda-prefix-format)
  6278. org-agenda-prefix-format)
  6279. ((assq key org-agenda-prefix-format)
  6280. (cdr (assq key org-agenda-prefix-format)))
  6281. (t " %-12:c%?-12t% s")))
  6282. (start 0)
  6283. varform vars var e c f opt)
  6284. (while (string-match "%\\(\\?\\)?\\([-+]?[0-9.]*\\)\\([ .;,:!?=|/<>]?\\)\\([cltseib]\\|(.+)\\)"
  6285. s start)
  6286. (setq var (or (cdr (assoc (match-string 4 s)
  6287. '(("c" . category) ("t" . time) ("l" . level) ("s" . extra)
  6288. ("i" . category-icon) ("T" . tag) ("e" . effort) ("b" . breadcrumbs))))
  6289. 'eval)
  6290. c (or (match-string 3 s) "")
  6291. opt (match-beginning 1)
  6292. start (1+ (match-beginning 0)))
  6293. (if (equal var 'time) (setq org-prefix-has-time t))
  6294. (if (equal var 'tag) (setq org-prefix-has-tag t))
  6295. (if (equal var 'effort) (setq org-prefix-has-effort t))
  6296. (if (equal var 'breadcrumbs) (setq org-prefix-has-breadcumbs t))
  6297. (setq f (concat "%" (match-string 2 s) "s"))
  6298. (when (equal var 'category)
  6299. (setq org-prefix-category-length
  6300. (floor (abs (string-to-number (match-string 2 s)))))
  6301. (setq org-prefix-category-max-length
  6302. (let ((x (match-string 2 s)))
  6303. (save-match-data
  6304. (if (string-match "\\.[0-9]+" x)
  6305. (string-to-number (substring (match-string 0 x) 1)))))))
  6306. (if (eq var 'eval)
  6307. (setq varform `(format ,f (org-eval ,(read (match-string 4 s)))))
  6308. (if opt
  6309. (setq varform
  6310. `(if (equal "" ,var)
  6311. ""
  6312. (format ,f (if (equal "" ,var) "" (concat ,var ,c)))))
  6313. (setq varform `(format ,f (if (equal ,var "") "" (concat ,var ,c (get-text-property 0 'extra-space ,var)))))))
  6314. (setq s (replace-match "%s" t nil s))
  6315. (push varform vars))
  6316. (setq vars (nreverse vars))
  6317. (with-current-buffer (or org-agenda-buffer (current-buffer))
  6318. (setq org-prefix-format-compiled
  6319. (list
  6320. `((org-prefix-has-time ,org-prefix-has-time)
  6321. (org-prefix-has-tag ,org-prefix-has-tag)
  6322. (org-prefix-category-length ,org-prefix-category-length)
  6323. (org-prefix-has-effort ,org-prefix-has-effort)
  6324. (org-prefix-has-breadcrumbs ,org-prefix-has-breadcrumbs))
  6325. `(format ,s ,@vars))))))
  6326. (defun org-set-sorting-strategy (key)
  6327. (if (symbolp (car org-agenda-sorting-strategy))
  6328. ;; the old format
  6329. (setq org-agenda-sorting-strategy-selected org-agenda-sorting-strategy)
  6330. (setq org-agenda-sorting-strategy-selected
  6331. (or (cdr (assq key org-agenda-sorting-strategy))
  6332. (cdr (assq 'agenda org-agenda-sorting-strategy))
  6333. '(time-up category-keep priority-down)))))
  6334. (defun org-get-time-of-day (s &optional string mod24)
  6335. "Check string S for a time of day.
  6336. If found, return it as a military time number between 0 and 2400.
  6337. If not found, return nil.
  6338. The optional STRING argument forces conversion into a 5 character wide string
  6339. HH:MM."
  6340. (save-match-data
  6341. (when
  6342. (or (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)\\([AaPp][Mm]\\)?\\> *" s)
  6343. (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?\\([AaPp][Mm]\\)\\> *" s))
  6344. (let* ((h (string-to-number (match-string 1 s)))
  6345. (m (if (match-end 3) (string-to-number (match-string 3 s)) 0))
  6346. (ampm (if (match-end 4) (downcase (match-string 4 s))))
  6347. (am-p (equal ampm "am"))
  6348. (h1 (cond ((not ampm) h)
  6349. ((= h 12) (if am-p 0 12))
  6350. (t (+ h (if am-p 0 12)))))
  6351. (h2 (if (and string mod24 (not (and (= m 0) (= h1 24))))
  6352. (mod h1 24) h1))
  6353. (t0 (+ (* 100 h2) m))
  6354. (t1 (concat (if (>= h1 24) "+" " ")
  6355. (if (and org-agenda-time-leading-zero
  6356. (< t0 1000)) "0" "")
  6357. (if (< t0 100) "0" "")
  6358. (if (< t0 10) "0" "")
  6359. (int-to-string t0))))
  6360. (if string (concat (substring t1 -4 -2) ":" (substring t1 -2)) t0)))))
  6361. (defvar org-agenda-before-sorting-filter-function nil
  6362. "Function to be applied to agenda items prior to sorting.
  6363. Prior to sorting also means just before they are inserted into the agenda.
  6364. To aid sorting, you may revisit the original entries and add more text
  6365. properties which will later be used by the sorting functions.
  6366. The function should take a string argument, an agenda line.
  6367. It has access to the text properties in that line, which contain among
  6368. other things, the property `org-hd-marker' that points to the entry
  6369. where the line comes from. Note that not all lines going into the agenda
  6370. have this property, only most.
  6371. The function should return the modified string. It is probably best
  6372. to ONLY change text properties.
  6373. You can also use this function as a filter, by returning nil for lines
  6374. you don't want to have in the agenda at all. For this application, you
  6375. could bind the variable in the options section of a custom command.")
  6376. (defun org-agenda-finalize-entries (list &optional type)
  6377. "Sort, limit and concatenate the LIST of agenda items.
  6378. The optional argument TYPE tells the agenda type."
  6379. (let ((max-effort (cond ((listp org-agenda-max-effort)
  6380. (cdr (assoc type org-agenda-max-effort)))
  6381. (t org-agenda-max-effort)))
  6382. (max-todo (cond ((listp org-agenda-max-todos)
  6383. (cdr (assoc type org-agenda-max-todos)))
  6384. (t org-agenda-max-todos)))
  6385. (max-tags (cond ((listp org-agenda-max-tags)
  6386. (cdr (assoc type org-agenda-max-tags)))
  6387. (t org-agenda-max-tags)))
  6388. (max-entries (cond ((listp org-agenda-max-entries)
  6389. (cdr (assoc type org-agenda-max-entries)))
  6390. (t org-agenda-max-entries))) l)
  6391. (when org-agenda-before-sorting-filter-function
  6392. (setq list
  6393. (delq nil
  6394. (mapcar
  6395. org-agenda-before-sorting-filter-function list))))
  6396. (setq list (mapcar 'org-agenda-highlight-todo list)
  6397. list (mapcar 'identity (sort list 'org-entries-lessp))
  6398. list (org-agenda-limit-entries
  6399. list 'effort-minutes max-effort 'identity)
  6400. list (org-agenda-limit-entries list 'todo-state max-todo)
  6401. list (org-agenda-limit-entries list 'tags max-tags)
  6402. list (org-agenda-limit-entries list 'org-hd-marker max-entries)
  6403. list (mapconcat 'identity list "\n"))))
  6404. (defun org-agenda-limit-entries (list prop limit &optional fn)
  6405. "Limit the number of agenda entries."
  6406. (if limit
  6407. (let ((f (or fn (lambda (p) (and p 1)))) (lim 0))
  6408. (delq nil
  6409. (mapcar
  6410. (lambda (e)
  6411. (let ((pval (funcall f (get-text-property 1 prop e))))
  6412. (if pval (setq lim (+ lim pval)))
  6413. (if (or (not pval) (<= lim limit)) e)))
  6414. list)))
  6415. list))
  6416. (defun org-agenda-highlight-todo (x)
  6417. (let ((org-done-keywords org-done-keywords-for-agenda)
  6418. (case-fold-search nil)
  6419. re)
  6420. (if (eq x 'line)
  6421. (save-excursion
  6422. (beginning-of-line 1)
  6423. (setq re (org-get-at-bol 'org-todo-regexp))
  6424. (goto-char (or (text-property-any (point-at-bol) (point-at-eol) 'org-heading t) (point)))
  6425. (when (looking-at (concat "[ \t]*\\.*\\(" re "\\) +"))
  6426. (add-text-properties (match-beginning 0) (match-end 1)
  6427. (list 'face (org-get-todo-face 1)))
  6428. (let ((s (buffer-substring (match-beginning 1) (match-end 1))))
  6429. (delete-region (match-beginning 1) (1- (match-end 0)))
  6430. (goto-char (match-beginning 1))
  6431. (insert (format org-agenda-todo-keyword-format s)))))
  6432. (let ((pl (text-property-any 0 (length x) 'org-heading t x)))
  6433. (setq re (get-text-property 0 'org-todo-regexp x))
  6434. (when (and re
  6435. ;; Test `pl' because if there's no heading content,
  6436. ;; there's no point matching to highlight. Note
  6437. ;; that if we didn't test `pl' first, and there
  6438. ;; happened to be no keyword from `org-todo-regexp'
  6439. ;; on this heading line, then the `equal' comparison
  6440. ;; afterwards would spuriously succeed in the case
  6441. ;; where `pl' is nil -- causing an args-out-of-range
  6442. ;; error when we try to add text properties to text
  6443. ;; that isn't there.
  6444. pl
  6445. (equal (string-match (concat "\\(\\.*\\)" re "\\( +\\)")
  6446. x pl) pl))
  6447. (add-text-properties
  6448. (or (match-end 1) (match-end 0)) (match-end 0)
  6449. (list 'face (org-get-todo-face (match-string 2 x)))
  6450. x)
  6451. (when (match-end 1)
  6452. (setq x (concat (substring x 0 (match-end 1))
  6453. (format org-agenda-todo-keyword-format
  6454. (match-string 2 x))
  6455. (org-add-props " " (text-properties-at 0 x))
  6456. (substring x (match-end 3)))))))
  6457. x)))
  6458. (defsubst org-cmp-priority (a b)
  6459. "Compare the priorities of string A and B."
  6460. (let ((pa (or (get-text-property 1 'priority a) 0))
  6461. (pb (or (get-text-property 1 'priority b) 0)))
  6462. (cond ((> pa pb) +1)
  6463. ((< pa pb) -1))))
  6464. (defsubst org-cmp-effort (a b)
  6465. "Compare the effort values of string A and B."
  6466. (let* ((def (if org-sort-agenda-noeffort-is-high 32767 -1))
  6467. (ea (or (get-text-property 1 'effort-minutes a) def))
  6468. (eb (or (get-text-property 1 'effort-minutes b) def)))
  6469. (cond ((> ea eb) +1)
  6470. ((< ea eb) -1))))
  6471. (defsubst org-cmp-category (a b)
  6472. "Compare the string values of categories of strings A and B."
  6473. (let ((ca (or (get-text-property 1 'org-category a) ""))
  6474. (cb (or (get-text-property 1 'org-category b) "")))
  6475. (cond ((string-lessp ca cb) -1)
  6476. ((string-lessp cb ca) +1))))
  6477. (defsubst org-cmp-todo-state (a b)
  6478. "Compare the todo states of strings A and B."
  6479. (let* ((ma (or (get-text-property 1 'org-marker a)
  6480. (get-text-property 1 'org-hd-marker a)))
  6481. (mb (or (get-text-property 1 'org-marker b)
  6482. (get-text-property 1 'org-hd-marker b)))
  6483. (fa (and ma (marker-buffer ma)))
  6484. (fb (and mb (marker-buffer mb)))
  6485. (todo-kwds
  6486. (or (and fa (with-current-buffer fa org-todo-keywords-1))
  6487. (and fb (with-current-buffer fb org-todo-keywords-1))))
  6488. (ta (or (get-text-property 1 'todo-state a) ""))
  6489. (tb (or (get-text-property 1 'todo-state b) ""))
  6490. (la (- (length (member ta todo-kwds))))
  6491. (lb (- (length (member tb todo-kwds))))
  6492. (donepa (member ta org-done-keywords-for-agenda))
  6493. (donepb (member tb org-done-keywords-for-agenda)))
  6494. (cond ((and donepa (not donepb)) -1)
  6495. ((and (not donepa) donepb) +1)
  6496. ((< la lb) -1)
  6497. ((< lb la) +1))))
  6498. (defsubst org-cmp-alpha (a b)
  6499. "Compare the headlines, alphabetically."
  6500. (let* ((pla (text-property-any 0 (length a) 'org-heading t a))
  6501. (plb (text-property-any 0 (length b) 'org-heading t b))
  6502. (ta (and pla (substring a pla)))
  6503. (tb (and plb (substring b plb))))
  6504. (when pla
  6505. (if (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp a) "")
  6506. "\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *") ta)
  6507. (setq ta (substring ta (match-end 0))))
  6508. (setq ta (downcase ta)))
  6509. (when plb
  6510. (if (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp b) "")
  6511. "\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *") tb)
  6512. (setq tb (substring tb (match-end 0))))
  6513. (setq tb (downcase tb)))
  6514. (cond ((not ta) +1)
  6515. ((not tb) -1)
  6516. ((string-lessp ta tb) -1)
  6517. ((string-lessp tb ta) +1))))
  6518. (defsubst org-cmp-tag (a b)
  6519. "Compare the string values of the first tags of A and B."
  6520. (let ((ta (car (last (get-text-property 1 'tags a))))
  6521. (tb (car (last (get-text-property 1 'tags b)))))
  6522. (cond ((not ta) +1)
  6523. ((not tb) -1)
  6524. ((string-lessp ta tb) -1)
  6525. ((string-lessp tb ta) +1))))
  6526. (defsubst org-cmp-time (a b)
  6527. "Compare the time-of-day values of strings A and B."
  6528. (let* ((def (if org-sort-agenda-notime-is-late 9901 -1))
  6529. (ta (or (get-text-property 1 'time-of-day a) def))
  6530. (tb (or (get-text-property 1 'time-of-day b) def)))
  6531. (cond ((< ta tb) -1)
  6532. ((< tb ta) +1))))
  6533. (defsubst org-cmp-ts (a b &optional type)
  6534. "Compare the timestamps values of entries A and B.
  6535. When TYPE is \"scheduled\", \"deadline\", \"timestamp\"
  6536. or \"timestamp_ia\", compare within each of these type.
  6537. When TYPE is the empty string, compare all timestamps
  6538. without respect of their type."
  6539. (let* ((def (if org-sort-agenda-notime-is-late 9901 -1))
  6540. (ta (or (and (string-match type (get-text-property 1 'type a))
  6541. (get-text-property 1 'ts-date a)) def))
  6542. (tb (or (and (string-match type (get-text-property 1 'type b))
  6543. (get-text-property 1 'ts-date b)) def)))
  6544. (cond ((< ta tb) -1)
  6545. ((< tb ta) +1))))
  6546. (defsubst org-cmp-habit-p (a b)
  6547. "Compare the todo states of strings A and B."
  6548. (let ((ha (get-text-property 1 'org-habit-p a))
  6549. (hb (get-text-property 1 'org-habit-p b)))
  6550. (cond ((and ha (not hb)) -1)
  6551. ((and (not ha) hb) +1))))
  6552. (defun org-entries-lessp (a b)
  6553. "Predicate for sorting agenda entries."
  6554. ;; The following variables will be used when the form is evaluated.
  6555. ;; So even though the compiler complains, keep them.
  6556. (let* ((ss org-agenda-sorting-strategy-selected)
  6557. (timestamp-up (and (org-em 'timestamp-up 'timestamp-down ss)
  6558. (org-cmp-ts a b "")))
  6559. (timestamp-down (if timestamp-up (- timestamp-up) nil))
  6560. (scheduled-up (and (org-em 'scheduled-up 'scheduled-down ss)
  6561. (org-cmp-ts a b "scheduled")))
  6562. (scheduled-down (if scheduled-up (- scheduled-up) nil))
  6563. (deadline-up (and (org-em 'deadline-up 'deadline-down ss)
  6564. (org-cmp-ts a b "deadline")))
  6565. (deadline-down (if deadline-up (- deadline-up) nil))
  6566. (tsia-up (and (org-em 'tsia-up 'tsia-down ss)
  6567. (org-cmp-ts a b "iatimestamp_ia")))
  6568. (tsia-down (if tsia-up (- tsia-up) nil))
  6569. (ts-up (and (org-em 'ts-up 'ts-down ss)
  6570. (org-cmp-ts a b "timestamp")))
  6571. (ts-down (if ts-up (- ts-up) nil))
  6572. (time-up (and (org-em 'time-up 'time-down ss)
  6573. (org-cmp-time a b)))
  6574. (time-down (if time-up (- time-up) nil))
  6575. (priority-up (and (org-em 'priority-up 'priority-down ss)
  6576. (org-cmp-priority a b)))
  6577. (priority-down (if priority-up (- priority-up) nil))
  6578. (effort-up (and (org-em 'effort-up 'effort-down ss)
  6579. (org-cmp-effort a b)))
  6580. (effort-down (if effort-up (- effort-up) nil))
  6581. (category-up (and (or (org-em 'category-up 'category-down ss)
  6582. (memq 'category-keep ss))
  6583. (org-cmp-category a b)))
  6584. (category-down (if category-up (- category-up) nil))
  6585. (category-keep (if category-up +1 nil))
  6586. (tag-up (and (org-em 'tag-up 'tag-down ss)
  6587. (org-cmp-tag a b)))
  6588. (tag-down (if tag-up (- tag-up) nil))
  6589. (todo-state-up (and (org-em 'todo-state-up 'todo-state-down ss)
  6590. (org-cmp-todo-state a b)))
  6591. (todo-state-down (if todo-state-up (- todo-state-up) nil))
  6592. (habit-up (and (org-em 'habit-up 'habit-down ss)
  6593. (org-cmp-habit-p a b)))
  6594. (habit-down (if habit-up (- habit-up) nil))
  6595. (alpha-up (and (org-em 'alpha-up 'alpha-down ss)
  6596. (org-cmp-alpha a b)))
  6597. (alpha-down (if alpha-up (- alpha-up) nil))
  6598. (need-user-cmp (org-em 'user-defined-up 'user-defined-down ss))
  6599. user-defined-up user-defined-down)
  6600. (if (and need-user-cmp org-agenda-cmp-user-defined
  6601. (functionp org-agenda-cmp-user-defined))
  6602. (setq user-defined-up
  6603. (funcall org-agenda-cmp-user-defined a b)
  6604. user-defined-down (if user-defined-up (- user-defined-up) nil)))
  6605. (cdr (assoc
  6606. (eval (cons 'or org-agenda-sorting-strategy-selected))
  6607. '((-1 . t) (1 . nil) (nil . nil))))))
  6608. ;;; Agenda restriction lock
  6609. (defvar org-agenda-restriction-lock-overlay (make-overlay 1 1)
  6610. "Overlay to mark the headline to which agenda commands are restricted.")
  6611. (overlay-put org-agenda-restriction-lock-overlay
  6612. 'face 'org-agenda-restriction-lock)
  6613. (overlay-put org-agenda-restriction-lock-overlay
  6614. 'help-echo "Agendas are currently limited to this subtree.")
  6615. (org-detach-overlay org-agenda-restriction-lock-overlay)
  6616. (defun org-agenda-set-restriction-lock (&optional type)
  6617. "Set restriction lock for agenda, to current subtree or file.
  6618. Restriction will be the file if TYPE is `file', or if type is the
  6619. universal prefix '(4), or if the cursor is before the first headline
  6620. in the file. Otherwise, restriction will be to the current subtree."
  6621. (interactive "P")
  6622. (and (equal type '(4)) (setq type 'file))
  6623. (setq type (cond
  6624. (type type)
  6625. ((org-at-heading-p) 'subtree)
  6626. ((condition-case nil (org-back-to-heading t) (error nil))
  6627. 'subtree)
  6628. (t 'file)))
  6629. (if (eq type 'subtree)
  6630. (progn
  6631. (setq org-agenda-restrict t)
  6632. (setq org-agenda-overriding-restriction 'subtree)
  6633. (put 'org-agenda-files 'org-restrict
  6634. (list (buffer-file-name (buffer-base-buffer))))
  6635. (org-back-to-heading t)
  6636. (move-overlay org-agenda-restriction-lock-overlay (point) (point-at-eol))
  6637. (move-marker org-agenda-restrict-begin (point))
  6638. (move-marker org-agenda-restrict-end
  6639. (save-excursion (org-end-of-subtree t)))
  6640. (message "Locking agenda restriction to subtree"))
  6641. (put 'org-agenda-files 'org-restrict
  6642. (list (buffer-file-name (buffer-base-buffer))))
  6643. (setq org-agenda-restrict nil)
  6644. (setq org-agenda-overriding-restriction 'file)
  6645. (move-marker org-agenda-restrict-begin nil)
  6646. (move-marker org-agenda-restrict-end nil)
  6647. (message "Locking agenda restriction to file"))
  6648. (setq current-prefix-arg nil)
  6649. (org-agenda-maybe-redo))
  6650. (defun org-agenda-remove-restriction-lock (&optional noupdate)
  6651. "Remove the agenda restriction lock."
  6652. (interactive "P")
  6653. (org-detach-overlay org-agenda-restriction-lock-overlay)
  6654. (org-detach-overlay org-speedbar-restriction-lock-overlay)
  6655. (setq org-agenda-overriding-restriction nil)
  6656. (setq org-agenda-restrict nil)
  6657. (put 'org-agenda-files 'org-restrict nil)
  6658. (move-marker org-agenda-restrict-begin nil)
  6659. (move-marker org-agenda-restrict-end nil)
  6660. (setq current-prefix-arg nil)
  6661. (message "Agenda restriction lock removed")
  6662. (or noupdate (org-agenda-maybe-redo)))
  6663. (defun org-agenda-maybe-redo ()
  6664. "If there is any window showing the agenda view, update it."
  6665. (let ((w (get-buffer-window org-agenda-buffer-name t))
  6666. (w0 (selected-window)))
  6667. (when w
  6668. (select-window w)
  6669. (org-agenda-redo)
  6670. (select-window w0)
  6671. (if org-agenda-overriding-restriction
  6672. (message "Agenda view shifted to new %s restriction"
  6673. org-agenda-overriding-restriction)
  6674. (message "Agenda restriction lock removed")))))
  6675. ;;; Agenda commands
  6676. (defun org-agenda-check-type (error &rest types)
  6677. "Check if agenda buffer is of allowed type.
  6678. If ERROR is non-nil, throw an error, otherwise just return nil.
  6679. Allowed types are 'agenda 'timeline 'todo 'tags 'search."
  6680. (if (not org-agenda-type)
  6681. (error "No Org agenda currently displayed")
  6682. (if (memq org-agenda-type types)
  6683. t
  6684. (if error
  6685. (error "Not allowed in %s-type agenda buffers" org-agenda-type)
  6686. nil))))
  6687. (defun org-agenda-Quit ()
  6688. "Exit the agenda and kill buffers loaded by `org-agenda'.
  6689. Also restore the window configuration."
  6690. (interactive)
  6691. (if org-agenda-columns-active
  6692. (org-columns-quit)
  6693. (let ((buf (current-buffer)))
  6694. (if (eq org-agenda-window-setup 'other-frame)
  6695. (progn
  6696. (org-agenda-reset-markers)
  6697. (kill-buffer buf)
  6698. (org-columns-remove-overlays)
  6699. (setq org-agenda-archives-mode nil)
  6700. (delete-frame))
  6701. (and (not (eq org-agenda-window-setup 'current-window))
  6702. (not (one-window-p))
  6703. (delete-window))
  6704. (org-agenda-reset-markers)
  6705. (kill-buffer buf)
  6706. (org-columns-remove-overlays)
  6707. (setq org-agenda-archives-mode nil)))
  6708. ;; Maybe restore the pre-agenda window configuration.
  6709. (and org-agenda-restore-windows-after-quit
  6710. (not (eq org-agenda-window-setup 'other-frame))
  6711. org-agenda-pre-window-conf
  6712. (set-window-configuration org-agenda-pre-window-conf)
  6713. (setq org-agenda-pre-window-conf nil))))
  6714. (defun org-agenda-quit ()
  6715. "Exit the agenda and restore the window configuration.
  6716. When `org-agenda-sticky' is non-nil, only bury the agenda."
  6717. (interactive)
  6718. (if (and (eq org-indirect-buffer-display 'other-window)
  6719. org-last-indirect-buffer)
  6720. (let ((org-last-indirect-window
  6721. (get-buffer-window org-last-indirect-buffer)))
  6722. (if org-last-indirect-window
  6723. (delete-window org-last-indirect-window))))
  6724. (if org-agenda-columns-active
  6725. (org-columns-quit)
  6726. (if org-agenda-sticky
  6727. (let ((buf (current-buffer)))
  6728. (if (eq org-agenda-window-setup 'other-frame)
  6729. (progn
  6730. (delete-frame))
  6731. (and (not (eq org-agenda-window-setup 'current-window))
  6732. (not (one-window-p))
  6733. (delete-window)))
  6734. (with-current-buffer buf
  6735. (bury-buffer)
  6736. ;; Maybe restore the pre-agenda window configuration.
  6737. (and org-agenda-restore-windows-after-quit
  6738. (not (eq org-agenda-window-setup 'other-frame))
  6739. org-agenda-pre-window-conf
  6740. (set-window-configuration org-agenda-pre-window-conf)
  6741. (setq org-agenda-pre-window-conf nil))))
  6742. (org-agenda-Quit))))
  6743. (defun org-agenda-exit ()
  6744. "Exit the agenda and restore the window configuration.
  6745. Also kill Org-mode buffers loaded by `org-agenda'. Org-mode
  6746. buffers visited directly by the user will not be touched."
  6747. (interactive)
  6748. (org-release-buffers org-agenda-new-buffers)
  6749. (setq org-agenda-new-buffers nil)
  6750. (org-agenda-Quit))
  6751. (defun org-agenda-kill-all-agenda-buffers ()
  6752. "Kill all buffers in `org-agenda-mode'.
  6753. This is used when toggling sticky agendas.
  6754. You can also explicitly invoke it with `C-c a C-k'."
  6755. (interactive)
  6756. (let (blist)
  6757. (dolist (buf (buffer-list))
  6758. (when (with-current-buffer buf (eq major-mode 'org-agenda-mode))
  6759. (push buf blist)))
  6760. (mapc 'kill-buffer blist)))
  6761. (defun org-agenda-execute (arg)
  6762. "Execute another agenda command, keeping same window.
  6763. So this is just a shortcut for \\<global-map>`\\[org-agenda]', available
  6764. in the agenda."
  6765. (interactive "P")
  6766. (let ((org-agenda-window-setup 'current-window))
  6767. (org-agenda arg)))
  6768. (defun org-agenda-redo (&optional all)
  6769. "Rebuild possibly ALL agenda view(s) in the current buffer."
  6770. (interactive "P")
  6771. (let* ((p (or (and (looking-at "\\'") (1- (point))) (point)))
  6772. (cpa (unless (eq all t) current-prefix-arg))
  6773. (org-agenda-doing-sticky-redo org-agenda-sticky)
  6774. (org-agenda-sticky nil)
  6775. (org-agenda-buffer-name (or org-agenda-this-buffer-name
  6776. org-agenda-buffer-name))
  6777. (org-agenda-keep-modes t)
  6778. (tag-filter org-agenda-tag-filter)
  6779. (tag-preset (get 'org-agenda-tag-filter :preset-filter))
  6780. (top-cat-filter org-agenda-top-category-filter)
  6781. (cat-filter org-agenda-category-filter)
  6782. (cat-preset (get 'org-agenda-category-filter :preset-filter))
  6783. (org-agenda-tag-filter-while-redo (or tag-filter tag-preset))
  6784. (cols org-agenda-columns-active)
  6785. (line (org-current-line))
  6786. (window-line (- line (org-current-line (window-start))))
  6787. (lprops (get 'org-agenda-redo-command 'org-lprops))
  6788. (redo-cmd (get-text-property p 'org-redo-cmd))
  6789. (last-args (get-text-property p 'org-last-args))
  6790. (org-agenda-overriding-cmd (get-text-property p 'org-series-cmd))
  6791. (org-agenda-overriding-cmd-arguments
  6792. (unless (eq all t)
  6793. (cond ((listp last-args)
  6794. (cons (or cpa (car last-args)) (cdr last-args)))
  6795. ((stringp last-args)
  6796. last-args))))
  6797. (series-redo-cmd (get-text-property p 'org-series-redo-cmd)))
  6798. (put 'org-agenda-tag-filter :preset-filter nil)
  6799. (put 'org-agenda-category-filter :preset-filter nil)
  6800. (and cols (org-columns-quit))
  6801. (message "Rebuilding agenda buffer...")
  6802. (if series-redo-cmd
  6803. (eval series-redo-cmd)
  6804. (org-let lprops '(eval redo-cmd)))
  6805. (setq org-agenda-undo-list nil
  6806. org-agenda-pending-undo-list nil)
  6807. (message "Rebuilding agenda buffer...done")
  6808. (put 'org-agenda-tag-filter :preset-filter tag-preset)
  6809. (put 'org-agenda-category-filter :preset-filter cat-preset)
  6810. (and (or tag-filter tag-preset) (org-agenda-filter-apply tag-filter 'tag))
  6811. (and (or cat-filter cat-preset) (org-agenda-filter-apply cat-filter 'category))
  6812. (and top-cat-filter (org-agenda-filter-top-category-apply top-cat-filter))
  6813. (and cols (org-called-interactively-p 'any) (org-agenda-columns))
  6814. (org-goto-line line)
  6815. (recenter window-line)))
  6816. (defvar org-global-tags-completion-table nil)
  6817. (defvar org-agenda-filter-form nil)
  6818. (defvar org-agenda-filtered-by-category nil)
  6819. (defun org-agenda-filter-by-category (strip)
  6820. "Keep only those lines in the agenda buffer that have a specific category.
  6821. The category is that of the current line."
  6822. (interactive "P")
  6823. (if (and org-agenda-filtered-by-category
  6824. org-agenda-category-filter)
  6825. (org-agenda-filter-show-all-cat)
  6826. (let ((cat (org-no-properties (get-text-property (point) 'org-category))))
  6827. (if cat (org-agenda-filter-apply
  6828. (list (concat (if strip "-" "+") cat)) 'category)
  6829. (error "No category at point")))))
  6830. (defun org-find-top-category (&optional pos)
  6831. (save-excursion
  6832. (with-current-buffer (if pos (marker-buffer pos) (current-buffer))
  6833. (if pos (goto-char pos))
  6834. ;; Skip up to the topmost parent
  6835. (while (ignore-errors (outline-up-heading 1) t))
  6836. (ignore-errors
  6837. (nth 4 (org-heading-components))))))
  6838. (defvar org-agenda-filtered-by-top-category nil)
  6839. (defun org-agenda-filter-by-top-category (strip)
  6840. "Keep only those lines in the agenda buffer that have a specific category.
  6841. The category is that of the current line."
  6842. (interactive "P")
  6843. (if org-agenda-filtered-by-top-category
  6844. (progn
  6845. (setq org-agenda-filtered-by-top-category nil
  6846. org-agenda-top-category-filter nil)
  6847. (org-agenda-filter-show-all-cat))
  6848. (let ((cat (org-find-top-category (org-get-at-bol 'org-hd-marker))))
  6849. (if cat (org-agenda-filter-top-category-apply cat strip)
  6850. (error "No top-level category at point")))))
  6851. (defun org-agenda-filter-by-tag (strip &optional char narrow)
  6852. "Keep only those lines in the agenda buffer that have a specific tag.
  6853. The tag is selected with its fast selection letter, as configured.
  6854. With prefix argument STRIP, remove all lines that do have the tag.
  6855. A lisp caller can specify CHAR. NARROW means that the new tag should be
  6856. used to narrow the search - the interactive user can also press `-' or `+'
  6857. to switch to narrowing."
  6858. (interactive "P")
  6859. (let* ((alist org-tag-alist-for-agenda)
  6860. (tag-chars (mapconcat
  6861. (lambda (x) (if (and (not (symbolp (car x)))
  6862. (cdr x))
  6863. (char-to-string (cdr x))
  6864. ""))
  6865. alist ""))
  6866. (efforts (org-split-string
  6867. (or (cdr (assoc (concat org-effort-property "_ALL")
  6868. org-global-properties))
  6869. "0 0:10 0:30 1:00 2:00 3:00 4:00 5:00 6:00 7:00 8:00"
  6870. "")))
  6871. (effort-op org-agenda-filter-effort-default-operator)
  6872. (effort-prompt "")
  6873. (inhibit-read-only t)
  6874. (current org-agenda-tag-filter)
  6875. maybe-refresh a n tag)
  6876. (unless char
  6877. (message
  6878. "%s by tag [%s ], [TAB], %s[/]:off, [+-]:narrow, [>=<?]:effort: "
  6879. (if narrow "Narrow" "Filter") tag-chars
  6880. (if org-agenda-auto-exclude-function "[RET], " ""))
  6881. (setq char (read-char-exclusive)))
  6882. (when (member char '(?+ ?-))
  6883. ;; Narrowing down
  6884. (cond ((equal char ?-) (setq strip t narrow t))
  6885. ((equal char ?+) (setq strip nil narrow t)))
  6886. (message
  6887. "Narrow by tag [%s ], [TAB], [/]:off, [>=<]:effort: " tag-chars)
  6888. (setq char (read-char-exclusive)))
  6889. (when (member char '(?< ?> ?= ??))
  6890. ;; An effort operator
  6891. (setq effort-op (char-to-string char))
  6892. (setq alist nil) ; to make sure it will be interpreted as effort.
  6893. (unless (equal char ??)
  6894. (loop for i from 0 to 9 do
  6895. (setq effort-prompt
  6896. (concat
  6897. effort-prompt " ["
  6898. (if (= i 9) "0" (int-to-string (1+ i)))
  6899. "]" (nth i efforts))))
  6900. (message "Effort%s: %s " effort-op effort-prompt)
  6901. (setq char (read-char-exclusive))
  6902. (when (or (< char ?0) (> char ?9))
  6903. (error "Need 1-9,0 to select effort"))))
  6904. (when (equal char ?\t)
  6905. (unless (local-variable-p 'org-global-tags-completion-table (current-buffer))
  6906. (org-set-local 'org-global-tags-completion-table
  6907. (org-global-tags-completion-table)))
  6908. (let ((completion-ignore-case t))
  6909. (setq tag (org-icompleting-read
  6910. "Tag: " org-global-tags-completion-table))))
  6911. (cond
  6912. ((equal char ?\r)
  6913. (org-agenda-filter-show-all-tag)
  6914. (when org-agenda-auto-exclude-function
  6915. (setq org-agenda-tag-filter '())
  6916. (dolist (tag (org-agenda-get-represented-tags))
  6917. (let ((modifier (funcall org-agenda-auto-exclude-function tag)))
  6918. (if modifier
  6919. (push modifier org-agenda-tag-filter))))
  6920. (if (not (null org-agenda-tag-filter))
  6921. (org-agenda-filter-apply org-agenda-tag-filter 'tag)))
  6922. (setq maybe-refresh t))
  6923. ((equal char ?/)
  6924. (org-agenda-filter-show-all-tag)
  6925. (when (get 'org-agenda-tag-filter :preset-filter)
  6926. (org-agenda-filter-apply org-agenda-tag-filter 'tag))
  6927. (setq maybe-refresh t))
  6928. ((equal char ?. )
  6929. (setq org-agenda-tag-filter
  6930. (mapcar (lambda(tag) (concat "+" tag))
  6931. (org-get-at-bol 'tags)))
  6932. (org-agenda-filter-apply org-agenda-tag-filter 'tag)
  6933. (setq maybe-refresh t))
  6934. ((or (equal char ?\ )
  6935. (setq a (rassoc char alist))
  6936. (and (>= char ?0) (<= char ?9)
  6937. (setq n (if (= char ?0) 9 (- char ?0 1))
  6938. tag (concat effort-op (nth n efforts))
  6939. a (cons tag nil)))
  6940. (and (= char ??)
  6941. (setq tag "?eff")
  6942. a (cons tag nil))
  6943. (and tag (setq a (cons tag nil))))
  6944. (org-agenda-filter-show-all-tag)
  6945. (setq tag (car a))
  6946. (setq org-agenda-tag-filter
  6947. (cons (concat (if strip "-" "+") tag)
  6948. (if narrow current nil)))
  6949. (org-agenda-filter-apply org-agenda-tag-filter 'tag)
  6950. (setq maybe-refresh t))
  6951. (t (error "Invalid tag selection character %c" char)))
  6952. (when (and maybe-refresh
  6953. (eq org-agenda-clockreport-mode 'with-filter))
  6954. (org-agenda-redo))))
  6955. (defun org-agenda-get-represented-tags ()
  6956. "Get a list of all tags currently represented in the agenda."
  6957. (let (p tags)
  6958. (save-excursion
  6959. (goto-char (point-min))
  6960. (while (setq p (next-single-property-change (point) 'tags))
  6961. (goto-char p)
  6962. (mapc (lambda (x) (add-to-list 'tags x))
  6963. (get-text-property (point) 'tags))))
  6964. tags))
  6965. (defun org-agenda-filter-by-tag-refine (strip &optional char)
  6966. "Refine the current filter. See `org-agenda-filter-by-tag'."
  6967. (interactive "P")
  6968. (org-agenda-filter-by-tag strip char 'refine))
  6969. (defun org-agenda-filter-make-matcher ()
  6970. "Create the form that tests a line for agenda filter."
  6971. (let (f f1)
  6972. ;; first compute the tag-filter matcher
  6973. (dolist (x (delete-dups
  6974. (append (get 'org-agenda-tag-filter
  6975. :preset-filter) org-agenda-tag-filter)))
  6976. (if (member x '("-" "+"))
  6977. (setq f1 (if (equal x "-") 'tags '(not tags)))
  6978. (if (string-match "[<=>?]" x)
  6979. (setq f1 (org-agenda-filter-effort-form x))
  6980. (setq f1 (list 'member (downcase (substring x 1)) 'tags)))
  6981. (if (equal (string-to-char x) ?-)
  6982. (setq f1 (list 'not f1))))
  6983. (push f1 f))
  6984. ;; then compute the category-filter matcher
  6985. (dolist (x (delete-dups
  6986. (append (get 'org-agenda-category-filter
  6987. :preset-filter) org-agenda-category-filter)))
  6988. (if (equal "-" (substring x 0 1))
  6989. (setq f1 (list 'not (list 'equal (substring x 1) 'cat)))
  6990. (setq f1 (list 'equal (substring x 1) 'cat)))
  6991. (push f1 f))
  6992. (cons 'and (nreverse f))))
  6993. (defun org-agenda-filter-effort-form (e)
  6994. "Return the form to compare the effort of the current line with what E says.
  6995. E looks like \"+<2:25\"."
  6996. (let (op)
  6997. (setq e (substring e 1))
  6998. (setq op (string-to-char e) e (substring e 1))
  6999. (setq op (cond ((equal op ?<) '<=)
  7000. ((equal op ?>) '>=)
  7001. ((equal op ??) op)
  7002. (t '=)))
  7003. (list 'org-agenda-compare-effort (list 'quote op)
  7004. (org-duration-string-to-minutes e))))
  7005. (defun org-agenda-compare-effort (op value)
  7006. "Compare the effort of the current line with VALUE, using OP.
  7007. If the line does not have an effort defined, return nil."
  7008. (let ((eff (org-get-at-bol 'effort-minutes)))
  7009. (if (equal op ??)
  7010. (not eff)
  7011. (funcall op (or eff (if org-sort-agenda-noeffort-is-high 32767 0))
  7012. value))))
  7013. (defun org-agenda-filter-apply (filter type)
  7014. "Set FILTER as the new agenda filter and apply it."
  7015. (let (tags cat)
  7016. (if (eq type 'tag)
  7017. (setq org-agenda-tag-filter filter)
  7018. (setq org-agenda-category-filter filter))
  7019. (setq org-agenda-filter-form (org-agenda-filter-make-matcher))
  7020. (if (and (eq type 'category)
  7021. (not (equal (substring (car filter) 0 1) "-")))
  7022. ;; Only set `org-agenda-filtered-by-category' to t
  7023. ;; when a unique category is used as the filter
  7024. (setq org-agenda-filtered-by-category t))
  7025. (org-agenda-set-mode-name)
  7026. (save-excursion
  7027. (goto-char (point-min))
  7028. (while (not (eobp))
  7029. (if (org-get-at-bol 'org-marker)
  7030. (progn
  7031. (setq tags (org-get-at-bol 'tags) ; used in eval
  7032. cat (get-text-property (point) 'org-category))
  7033. (if (not (eval org-agenda-filter-form))
  7034. (org-agenda-filter-hide-line type))
  7035. (beginning-of-line 2))
  7036. (beginning-of-line 2))))
  7037. (if (get-char-property (point) 'invisible)
  7038. (ignore-errors (org-agenda-previous-line)))))
  7039. (defun org-agenda-filter-top-category-apply (category &optional negative)
  7040. "Set FILTER as the new agenda filter and apply it."
  7041. (org-agenda-set-mode-name)
  7042. (save-excursion
  7043. (goto-char (point-min))
  7044. (while (not (eobp))
  7045. (let* ((pos (org-get-at-bol 'org-hd-marker))
  7046. (topcat (and pos (org-find-top-category pos))))
  7047. (if (and topcat (funcall (if negative 'identity 'not)
  7048. (string= category topcat)))
  7049. (org-agenda-filter-hide-line 'category)))
  7050. (beginning-of-line 2)))
  7051. (if (get-char-property (point) 'invisible)
  7052. (org-agenda-previous-line))
  7053. (setq org-agenda-top-category-filter category
  7054. org-agenda-filtered-by-top-category t))
  7055. (defun org-agenda-filter-hide-line (type)
  7056. (let (ov)
  7057. (setq ov (make-overlay (max (point-min) (1- (point-at-bol)))
  7058. (point-at-eol)))
  7059. (overlay-put ov 'invisible t)
  7060. (overlay-put ov 'type type)
  7061. (if (eq type 'tag)
  7062. (push ov org-agenda-tag-filter-overlays)
  7063. (push ov org-agenda-cat-filter-overlays))))
  7064. (defun org-agenda-fix-tags-filter-overlays-at (&optional pos)
  7065. (setq pos (or pos (point)))
  7066. (save-excursion
  7067. (dolist (ov (overlays-at pos))
  7068. (when (and (overlay-get ov 'invisible)
  7069. (eq (overlay-get ov 'type) 'tag))
  7070. (goto-char pos)
  7071. (if (< (overlay-start ov) (point-at-eol))
  7072. (move-overlay ov (point-at-eol)
  7073. (overlay-end ov)))))))
  7074. (defun org-agenda-filter-show-all-tag nil
  7075. (mapc 'delete-overlay org-agenda-tag-filter-overlays)
  7076. (setq org-agenda-tag-filter-overlays nil
  7077. org-agenda-tag-filter nil
  7078. org-agenda-filter-form nil)
  7079. (org-agenda-set-mode-name))
  7080. (defun org-agenda-filter-show-all-cat nil
  7081. (mapc 'delete-overlay org-agenda-cat-filter-overlays)
  7082. (setq org-agenda-cat-filter-overlays nil
  7083. org-agenda-filtered-by-category nil
  7084. org-agenda-category-filter nil
  7085. org-agenda-filter-form nil)
  7086. (org-agenda-set-mode-name))
  7087. (defun org-agenda-manipulate-query-add ()
  7088. "Manipulate the query by adding a search term with positive selection.
  7089. Positive selection means the term must be matched for selection of an entry."
  7090. (interactive)
  7091. (org-agenda-manipulate-query ?\[))
  7092. (defun org-agenda-manipulate-query-subtract ()
  7093. "Manipulate the query by adding a search term with negative selection.
  7094. Negative selection means term must not be matched for selection of an entry."
  7095. (interactive)
  7096. (org-agenda-manipulate-query ?\]))
  7097. (defun org-agenda-manipulate-query-add-re ()
  7098. "Manipulate the query by adding a search regexp with positive selection.
  7099. Positive selection means the regexp must match for selection of an entry."
  7100. (interactive)
  7101. (org-agenda-manipulate-query ?\{))
  7102. (defun org-agenda-manipulate-query-subtract-re ()
  7103. "Manipulate the query by adding a search regexp with negative selection.
  7104. Negative selection means regexp must not match for selection of an entry."
  7105. (interactive)
  7106. (org-agenda-manipulate-query ?\}))
  7107. (defun org-agenda-manipulate-query (char)
  7108. (cond
  7109. ((memq org-agenda-type '(timeline agenda))
  7110. (let ((org-agenda-include-inactive-timestamps t))
  7111. (org-agenda-redo))
  7112. (message "Display now includes inactive timestamps as well"))
  7113. ((eq org-agenda-type 'search)
  7114. (org-add-to-string
  7115. 'org-agenda-query-string
  7116. (if org-agenda-last-search-view-search-was-boolean
  7117. (cdr (assoc char '((?\[ . " +") (?\] . " -")
  7118. (?\{ . " +{}") (?\} . " -{}"))))
  7119. " "))
  7120. (setq org-agenda-redo-command
  7121. (list 'org-search-view
  7122. (car (get-text-property (min (1- (point-max)) (point))
  7123. 'org-last-args))
  7124. org-agenda-query-string
  7125. (+ (length org-agenda-query-string)
  7126. (if (member char '(?\{ ?\})) 0 1))))
  7127. (set-register org-agenda-query-register org-agenda-query-string)
  7128. (let ((org-agenda-overriding-arguments
  7129. (cdr org-agenda-redo-command)))
  7130. (org-agenda-redo)))
  7131. (t (error "Cannot manipulate query for %s-type agenda buffers"
  7132. org-agenda-type))))
  7133. (defun org-add-to-string (var string)
  7134. (set var (concat (symbol-value var) string)))
  7135. (defun org-agenda-goto-date (span)
  7136. "Jump to DATE in agenda."
  7137. (interactive "P")
  7138. (let* ((org-read-date-prefer-future
  7139. (eval org-agenda-jump-prefer-future))
  7140. (date (org-read-date))
  7141. (org-agenda-sticky-orig org-agenda-sticky)
  7142. (org-agenda-buffer-tmp-name (buffer-name))
  7143. (args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7144. (0-arg (or current-prefix-arg (car args)))
  7145. (2-arg (nth 2 args))
  7146. (newcmd (list 'org-agenda-list 0-arg date
  7147. (org-agenda-span-to-ndays 2-arg)))
  7148. (newargs (cdr newcmd))
  7149. (inhibit-read-only t)
  7150. org-agenda-sticky)
  7151. (if (not (org-agenda-check-type t 'agenda))
  7152. (error "Not available in non-agenda blocks")
  7153. (add-text-properties (point-min) (point-max)
  7154. `(org-redo-cmd ,newcmd org-last-args ,newargs))
  7155. (org-agenda-redo)
  7156. (setq org-agenda-sticky org-agenda-sticky-orig
  7157. org-agenda-this-buffer-is-sticky org-agenda-sticky))))
  7158. (defun org-agenda-goto-today ()
  7159. "Go to today."
  7160. (interactive)
  7161. (org-agenda-check-type t 'timeline 'agenda)
  7162. (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7163. (curspan (nth 2 args))
  7164. (tdpos (text-property-any (point-min) (point-max) 'org-today t)))
  7165. (cond
  7166. (tdpos (goto-char tdpos))
  7167. ((eq org-agenda-type 'agenda)
  7168. (let* ((sd (org-agenda-compute-starting-span
  7169. (org-today) (or curspan org-agenda-ndays org-agenda-span)))
  7170. (org-agenda-overriding-arguments args))
  7171. (setf (nth 1 org-agenda-overriding-arguments) sd)
  7172. (org-agenda-redo)
  7173. (org-agenda-find-same-or-today-or-agenda)))
  7174. (t (error "Cannot find today")))))
  7175. (defun org-agenda-find-same-or-today-or-agenda (&optional cnt)
  7176. (goto-char
  7177. (or (and cnt (text-property-any (point-min) (point-max) 'org-day-cnt cnt))
  7178. (text-property-any (point-min) (point-max) 'org-today t)
  7179. (text-property-any (point-min) (point-max) 'org-agenda-type 'agenda)
  7180. (and (get-text-property (min (1- (point-max)) (point)) 'org-series)
  7181. (org-agenda-goto-block-beginning))
  7182. (point-min))))
  7183. (defun org-agenda-goto-block-beginning ()
  7184. "Go the agenda block beginning."
  7185. (interactive)
  7186. (if (not (derived-mode-p 'org-agenda-mode))
  7187. (error "Cannot execute this command outside of org-agenda-mode buffers")
  7188. (let (dest)
  7189. (save-excursion
  7190. (unless (looking-at "\\'")
  7191. (forward-char))
  7192. (let* ((prop 'org-agenda-structural-header)
  7193. (p (previous-single-property-change (point) prop))
  7194. (n (next-single-property-change (or (and (looking-at "\\`") 1)
  7195. (1- (point))) prop)))
  7196. (setq dest (cond ((eq n (point-at-eol)) (1- n)) (p (1- p))))))
  7197. (if (not dest)
  7198. (error "Cannot find the beginning of the blog")
  7199. (goto-char dest)
  7200. (move-beginning-of-line 1)))))
  7201. (defun org-agenda-later (arg)
  7202. "Go forward in time by the current span.
  7203. With prefix ARG, go forward that many times the current span."
  7204. (interactive "p")
  7205. (org-agenda-check-type t 'agenda)
  7206. (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7207. (span (or (nth 2 args) org-agenda-current-span))
  7208. (sd (or (nth 1 args) (org-get-at-bol 'day) org-starting-day))
  7209. (greg (calendar-gregorian-from-absolute sd))
  7210. (cnt (org-get-at-bol 'org-day-cnt))
  7211. greg2)
  7212. (cond
  7213. ((numberp span)
  7214. (setq sd (+ (* span arg) sd)))
  7215. ((eq span 'day)
  7216. (setq sd (+ arg sd)))
  7217. ((eq span 'week)
  7218. (setq sd (+ (* 7 arg) sd)))
  7219. ((eq span 'month)
  7220. (setq greg2 (list (+ (car greg) arg) (nth 1 greg) (nth 2 greg))
  7221. sd (calendar-absolute-from-gregorian greg2))
  7222. (setcar greg2 (1+ (car greg2))))
  7223. ((eq span 'year)
  7224. (setq greg2 (list (car greg) (nth 1 greg) (+ arg (nth 2 greg)))
  7225. sd (calendar-absolute-from-gregorian greg2))
  7226. (setcar (nthcdr 2 greg2) (1+ (nth 2 greg2))))
  7227. (t
  7228. (setq sd (+ (* span arg) sd))))
  7229. (let ((org-agenda-overriding-cmd
  7230. ;; `cmd' may have been set by `org-agenda-run-series' which
  7231. ;; uses `org-agenda-overriding-cmd' to decide whether
  7232. ;; overriding is allowed for `cmd'
  7233. (get-text-property (min (1- (point-max)) (point)) 'org-series-cmd))
  7234. (org-agenda-overriding-arguments
  7235. (list (car args) sd span)))
  7236. (org-agenda-redo)
  7237. (org-agenda-find-same-or-today-or-agenda cnt))))
  7238. (defun org-agenda-earlier (arg)
  7239. "Go backward in time by the current span.
  7240. With prefix ARG, go backward that many times the current span."
  7241. (interactive "p")
  7242. (org-agenda-later (- arg)))
  7243. (defun org-agenda-view-mode-dispatch ()
  7244. "Call one of the view mode commands."
  7245. (interactive)
  7246. (message "View: [d]ay [w]eek [m]onth [y]ear [SPC]reset [q]uit/abort
  7247. time[G]rid [[]inactive [f]ollow [l]og [L]og-all [c]lockcheck
  7248. [a]rch-trees [A]rch-files clock[R]eport include[D]iary [E]ntryText")
  7249. (let ((a (read-char-exclusive)))
  7250. (case a
  7251. (?\ (call-interactively 'org-agenda-reset-view))
  7252. (?d (call-interactively 'org-agenda-day-view))
  7253. (?w (call-interactively 'org-agenda-week-view))
  7254. (?m (call-interactively 'org-agenda-month-view))
  7255. (?y (call-interactively 'org-agenda-year-view))
  7256. (?l (call-interactively 'org-agenda-log-mode))
  7257. (?L (org-agenda-log-mode '(4)))
  7258. (?c (org-agenda-log-mode 'clockcheck))
  7259. ((?F ?f) (call-interactively 'org-agenda-follow-mode))
  7260. (?a (call-interactively 'org-agenda-archives-mode))
  7261. (?A (org-agenda-archives-mode 'files))
  7262. ((?R ?r) (call-interactively 'org-agenda-clockreport-mode))
  7263. ((?E ?e) (call-interactively 'org-agenda-entry-text-mode))
  7264. (?G (call-interactively 'org-agenda-toggle-time-grid))
  7265. (?D (call-interactively 'org-agenda-toggle-diary))
  7266. (?\! (call-interactively 'org-agenda-toggle-deadlines))
  7267. (?\[ (let ((org-agenda-include-inactive-timestamps t))
  7268. (org-agenda-check-type t 'timeline 'agenda)
  7269. (org-agenda-redo))
  7270. (message "Display now includes inactive timestamps as well"))
  7271. (?q (message "Abort"))
  7272. (otherwise (error "Invalid key" )))))
  7273. (defun org-agenda-reset-view ()
  7274. "Switch to default view for agenda."
  7275. (interactive)
  7276. (org-agenda-change-time-span (or org-agenda-ndays org-agenda-span)))
  7277. (defun org-agenda-day-view (&optional day-of-year)
  7278. "Switch to daily view for agenda.
  7279. With argument DAY-OF-YEAR, switch to that day of the year."
  7280. (interactive "P")
  7281. (org-agenda-change-time-span 'day day-of-year))
  7282. (defun org-agenda-week-view (&optional iso-week)
  7283. "Switch to daily view for agenda.
  7284. With argument ISO-WEEK, switch to the corresponding ISO week.
  7285. If ISO-WEEK has more then 2 digits, only the last two encode the
  7286. week. Any digits before this encode a year. So 200712 means
  7287. week 12 of year 2007. Years in the range 1938-2037 can also be
  7288. written as 2-digit years."
  7289. (interactive "P")
  7290. (org-agenda-change-time-span 'week iso-week))
  7291. (defun org-agenda-month-view (&optional month)
  7292. "Switch to monthly view for agenda.
  7293. With argument MONTH, switch to that month."
  7294. (interactive "P")
  7295. (org-agenda-change-time-span 'month month))
  7296. (defun org-agenda-year-view (&optional year)
  7297. "Switch to yearly view for agenda.
  7298. With argument YEAR, switch to that year.
  7299. If MONTH has more then 2 digits, only the last two encode the
  7300. month. Any digits before this encode a year. So 200712 means
  7301. December year 2007. Years in the range 1938-2037 can also be
  7302. written as 2-digit years."
  7303. (interactive "P")
  7304. (when year
  7305. (setq year (org-small-year-to-year year)))
  7306. (if (y-or-n-p "Are you sure you want to compute the agenda for an entire year? ")
  7307. (org-agenda-change-time-span 'year year)
  7308. (error "Abort")))
  7309. (defun org-agenda-change-time-span (span &optional n)
  7310. "Change the agenda view to SPAN.
  7311. SPAN may be `day', `week', `month', `year'."
  7312. (org-agenda-check-type t 'agenda)
  7313. (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7314. (curspan (nth 2 args)))
  7315. (if (and (not n) (equal curspan span))
  7316. (error "Viewing span is already \"%s\"" span))
  7317. (let* ((sd (or (org-get-at-bol 'day)
  7318. (nth 1 args)
  7319. org-starting-day))
  7320. (sd (org-agenda-compute-starting-span sd span n))
  7321. (org-agenda-overriding-cmd
  7322. (get-text-property (min (1- (point-max)) (point)) 'org-series-cmd))
  7323. (org-agenda-overriding-arguments
  7324. (list (car args) sd span)))
  7325. (org-agenda-redo)
  7326. (org-agenda-find-same-or-today-or-agenda))
  7327. (org-agenda-set-mode-name)
  7328. (message "Switched to %s view" span)))
  7329. (defun org-agenda-compute-starting-span (sd span &optional n)
  7330. "Compute starting date for agenda.
  7331. SPAN may be `day', `week', `month', `year'. The return value
  7332. is a cons cell with the starting date and the number of days,
  7333. so that the date SD will be in that range."
  7334. (let* ((greg (calendar-gregorian-from-absolute sd))
  7335. (dg (nth 1 greg))
  7336. (mg (car greg))
  7337. (yg (nth 2 greg)))
  7338. (cond
  7339. ((eq span 'day)
  7340. (when n
  7341. (setq sd (+ (calendar-absolute-from-gregorian
  7342. (list mg 1 yg))
  7343. n -1))))
  7344. ((eq span 'week)
  7345. (let* ((nt (calendar-day-of-week
  7346. (calendar-gregorian-from-absolute sd)))
  7347. (d (if org-agenda-start-on-weekday
  7348. (- nt org-agenda-start-on-weekday)
  7349. 0))
  7350. y1)
  7351. (setq sd (- sd (+ (if (< d 0) 7 0) d)))
  7352. (when n
  7353. (require 'cal-iso)
  7354. (when (> n 99)
  7355. (setq y1 (org-small-year-to-year (/ n 100))
  7356. n (mod n 100)))
  7357. (setq sd
  7358. (calendar-absolute-from-iso
  7359. (list n 1
  7360. (or y1 (nth 2 (calendar-iso-from-absolute sd)))))))))
  7361. ((eq span 'month)
  7362. (let (y1)
  7363. (when (and n (> n 99))
  7364. (setq y1 (org-small-year-to-year (/ n 100))
  7365. n (mod n 100)))
  7366. (setq sd (calendar-absolute-from-gregorian
  7367. (list (or n mg) 1 (or y1 yg))))))
  7368. ((eq span 'year)
  7369. (setq sd (calendar-absolute-from-gregorian
  7370. (list 1 1 (or n yg))))))
  7371. sd))
  7372. (defun org-agenda-next-date-line (&optional arg)
  7373. "Jump to the next line indicating a date in agenda buffer."
  7374. (interactive "p")
  7375. (org-agenda-check-type t 'agenda 'timeline)
  7376. (beginning-of-line 1)
  7377. ;; This does not work if user makes date format that starts with a blank
  7378. (if (looking-at "^\\S-") (forward-char 1))
  7379. (if (not (re-search-forward "^\\S-" nil t arg))
  7380. (progn
  7381. (backward-char 1)
  7382. (error "No next date after this line in this buffer")))
  7383. (goto-char (match-beginning 0)))
  7384. (defun org-agenda-previous-date-line (&optional arg)
  7385. "Jump to the previous line indicating a date in agenda buffer."
  7386. (interactive "p")
  7387. (org-agenda-check-type t 'agenda 'timeline)
  7388. (beginning-of-line 1)
  7389. (if (not (re-search-backward "^\\S-" nil t arg))
  7390. (error "No previous date before this line in this buffer")))
  7391. ;; Initialize the highlight
  7392. (defvar org-hl (make-overlay 1 1))
  7393. (overlay-put org-hl 'face 'highlight)
  7394. (defun org-highlight (begin end &optional buffer)
  7395. "Highlight a region with overlay."
  7396. (move-overlay org-hl begin end (or buffer (current-buffer))))
  7397. (defun org-unhighlight ()
  7398. "Detach overlay INDEX."
  7399. (org-detach-overlay org-hl))
  7400. (defun org-unhighlight-once ()
  7401. "Remove the highlight from its position, and this function from the hook."
  7402. (remove-hook 'pre-command-hook 'org-unhighlight-once)
  7403. (org-unhighlight))
  7404. (defvar org-agenda-pre-follow-window-conf nil)
  7405. (defun org-agenda-follow-mode ()
  7406. "Toggle follow mode in an agenda buffer."
  7407. (interactive)
  7408. (unless org-agenda-follow-mode
  7409. (setq org-agenda-pre-follow-window-conf
  7410. (current-window-configuration)))
  7411. (setq org-agenda-follow-mode (not org-agenda-follow-mode))
  7412. (unless org-agenda-follow-mode
  7413. (set-window-configuration org-agenda-pre-follow-window-conf))
  7414. (org-agenda-set-mode-name)
  7415. (org-agenda-do-context-action)
  7416. (message "Follow mode is %s"
  7417. (if org-agenda-follow-mode "on" "off")))
  7418. (defun org-agenda-entry-text-mode (&optional arg)
  7419. "Toggle entry text mode in an agenda buffer."
  7420. (interactive "P")
  7421. (setq org-agenda-entry-text-mode (or (integerp arg)
  7422. (not org-agenda-entry-text-mode)))
  7423. (org-agenda-entry-text-hide)
  7424. (and org-agenda-entry-text-mode
  7425. (let ((org-agenda-entry-text-maxlines
  7426. (if (integerp arg) arg org-agenda-entry-text-maxlines)))
  7427. (org-agenda-entry-text-show)))
  7428. (org-agenda-set-mode-name)
  7429. (message "Entry text mode is %s. Maximum number of lines is %d"
  7430. (if org-agenda-entry-text-mode "on" "off")
  7431. (if (integerp arg) arg org-agenda-entry-text-maxlines)))
  7432. (defun org-agenda-clockreport-mode (&optional with-filter)
  7433. "Toggle clocktable mode in an agenda buffer.
  7434. With prefix arg WITH-FILTER, make the clocktable respect the current
  7435. agenda filter."
  7436. (interactive "P")
  7437. (org-agenda-check-type t 'agenda)
  7438. (if with-filter
  7439. (setq org-agenda-clockreport-mode 'with-filter)
  7440. (setq org-agenda-clockreport-mode (not org-agenda-clockreport-mode)))
  7441. (org-agenda-set-mode-name)
  7442. (org-agenda-redo)
  7443. (message "Clocktable mode is %s"
  7444. (if org-agenda-clockreport-mode "on" "off")))
  7445. (defun org-agenda-log-mode (&optional special)
  7446. "Toggle log mode in an agenda buffer.
  7447. With argument SPECIAL, show all possible log items, not only the ones
  7448. configured in `org-agenda-log-mode-items'.
  7449. With a double `C-u' prefix arg, show *only* log items, nothing else."
  7450. (interactive "P")
  7451. (org-agenda-check-type t 'agenda 'timeline)
  7452. (setq org-agenda-show-log
  7453. (cond
  7454. ((equal special '(16)) 'only)
  7455. ((eq special 'clockcheck)
  7456. (if (eq org-agenda-show-log 'clockcheck)
  7457. nil 'clockcheck))
  7458. (special '(closed clock state))
  7459. (t (not org-agenda-show-log))))
  7460. (org-agenda-set-mode-name)
  7461. (org-agenda-redo)
  7462. (message "Log mode is %s"
  7463. (if org-agenda-show-log "on" "off")))
  7464. (defun org-agenda-archives-mode (&optional with-files)
  7465. "Toggle inclusion of items in trees marked with :ARCHIVE:.
  7466. When called with a prefix argument, include all archive files as well."
  7467. (interactive "P")
  7468. (setq org-agenda-archives-mode
  7469. (if with-files t (if org-agenda-archives-mode nil 'trees)))
  7470. (org-agenda-set-mode-name)
  7471. (org-agenda-redo)
  7472. (message
  7473. "%s"
  7474. (cond
  7475. ((eq org-agenda-archives-mode nil)
  7476. "No archives are included")
  7477. ((eq org-agenda-archives-mode 'trees)
  7478. (format "Trees with :%s: tag are included" org-archive-tag))
  7479. ((eq org-agenda-archives-mode t)
  7480. (format "Trees with :%s: tag and all active archive files are included"
  7481. org-archive-tag)))))
  7482. (defun org-agenda-toggle-diary ()
  7483. "Toggle diary inclusion in an agenda buffer."
  7484. (interactive)
  7485. (org-agenda-check-type t 'agenda)
  7486. (setq org-agenda-include-diary (not org-agenda-include-diary))
  7487. (org-agenda-redo)
  7488. (org-agenda-set-mode-name)
  7489. (message "Diary inclusion turned %s"
  7490. (if org-agenda-include-diary "on" "off")))
  7491. (defun org-agenda-toggle-deadlines ()
  7492. "Toggle inclusion of entries with a deadline in an agenda buffer."
  7493. (interactive)
  7494. (org-agenda-check-type t 'agenda)
  7495. (setq org-agenda-include-deadlines (not org-agenda-include-deadlines))
  7496. (org-agenda-redo)
  7497. (org-agenda-set-mode-name)
  7498. (message "Deadlines inclusion turned %s"
  7499. (if org-agenda-include-deadlines "on" "off")))
  7500. (defun org-agenda-toggle-time-grid ()
  7501. "Toggle time grid in an agenda buffer."
  7502. (interactive)
  7503. (org-agenda-check-type t 'agenda)
  7504. (setq org-agenda-use-time-grid (not org-agenda-use-time-grid))
  7505. (org-agenda-redo)
  7506. (org-agenda-set-mode-name)
  7507. (message "Time-grid turned %s"
  7508. (if org-agenda-use-time-grid "on" "off")))
  7509. (defun org-agenda-set-mode-name ()
  7510. "Set the mode name to indicate all the small mode settings."
  7511. (setq mode-name
  7512. (list "Org-Agenda"
  7513. (if (get 'org-agenda-files 'org-restrict) " []" "")
  7514. " "
  7515. '(:eval (org-agenda-span-name org-agenda-current-span))
  7516. (if org-agenda-follow-mode " Follow" "")
  7517. (if org-agenda-entry-text-mode " ETxt" "")
  7518. (if org-agenda-include-diary " Diary" "")
  7519. (if org-agenda-include-deadlines " Ddl" "")
  7520. (if org-agenda-use-time-grid " Grid" "")
  7521. (if (and (boundp 'org-habit-show-habits)
  7522. org-habit-show-habits) " Habit" "")
  7523. (cond
  7524. ((consp org-agenda-show-log) " LogAll")
  7525. ((eq org-agenda-show-log 'clockcheck) " ClkCk")
  7526. (org-agenda-show-log " Log")
  7527. (t ""))
  7528. (if (or org-agenda-category-filter (get 'org-agenda-category-filter
  7529. :preset-filter))
  7530. '(:eval (org-propertize
  7531. (concat " <"
  7532. (mapconcat
  7533. 'identity
  7534. (append
  7535. (get 'org-agenda-category-filter :preset-filter)
  7536. org-agenda-category-filter)
  7537. "")
  7538. ">")
  7539. 'face 'org-agenda-filter-category
  7540. 'help-echo "Category used in filtering"))
  7541. "")
  7542. (if (or org-agenda-tag-filter (get 'org-agenda-tag-filter
  7543. :preset-filter))
  7544. '(:eval (org-propertize
  7545. (concat " {"
  7546. (mapconcat
  7547. 'identity
  7548. (append
  7549. (get 'org-agenda-tag-filter :preset-filter)
  7550. org-agenda-tag-filter)
  7551. "")
  7552. "}")
  7553. 'face 'org-agenda-filter-tags
  7554. 'help-echo "Tags used in filtering"))
  7555. "")
  7556. (if org-agenda-archives-mode
  7557. (if (eq org-agenda-archives-mode t)
  7558. " Archives"
  7559. (format " :%s:" org-archive-tag))
  7560. "")
  7561. (if org-agenda-clockreport-mode
  7562. (if (eq org-agenda-clockreport-mode 'with-filter)
  7563. " Clock{}" " Clock")
  7564. "")))
  7565. (force-mode-line-update))
  7566. (define-obsolete-function-alias
  7567. 'org-agenda-post-command-hook 'org-agenda-update-agenda-type "24.3")
  7568. (defun org-agenda-update-agenda-type ()
  7569. "Update the agenda type after each command."
  7570. (setq org-agenda-type
  7571. (or (get-text-property (point) 'org-agenda-type)
  7572. (get-text-property (max (point-min) (1- (point))) 'org-agenda-type))))
  7573. (defun org-agenda-next-line ()
  7574. "Move cursor to the next line, and show if follow mode is active."
  7575. (interactive)
  7576. (call-interactively 'next-line)
  7577. (org-agenda-do-context-action))
  7578. (defun org-agenda-previous-line ()
  7579. "Move cursor to the previous line, and show if follow-mode is active."
  7580. (interactive)
  7581. (call-interactively 'previous-line)
  7582. (org-agenda-do-context-action))
  7583. (defun org-agenda-next-item (n)
  7584. "Move cursor to next agenda item."
  7585. (interactive "p")
  7586. (let ((col (current-column)))
  7587. (dotimes (c n)
  7588. (when (next-single-property-change (point-at-eol) 'org-marker)
  7589. (move-end-of-line 1)
  7590. (goto-char (next-single-property-change (point) 'org-marker))))
  7591. (org-move-to-column col))
  7592. (org-agenda-do-context-action))
  7593. (defun org-agenda-previous-item (n)
  7594. "Move cursor to next agenda item."
  7595. (interactive "p")
  7596. (dotimes (c n)
  7597. (let ((col (current-column))
  7598. (goto (save-excursion
  7599. (move-end-of-line 0)
  7600. (previous-single-property-change (point) 'org-marker))))
  7601. (if goto (goto-char goto))
  7602. (org-move-to-column col)))
  7603. (org-agenda-do-context-action))
  7604. (defun org-agenda-do-context-action ()
  7605. "Show outline path and, maybe, follow mode window."
  7606. (let ((m (org-get-at-bol 'org-marker)))
  7607. (when (and (markerp m) (marker-buffer m))
  7608. (and org-agenda-follow-mode
  7609. (if org-agenda-follow-indirect
  7610. (org-agenda-tree-to-indirect-buffer nil)
  7611. (org-agenda-show)))
  7612. (and org-agenda-show-outline-path
  7613. (org-with-point-at m (org-display-outline-path t))))))
  7614. (defun org-agenda-show-tags ()
  7615. "Show the tags applicable to the current item."
  7616. (interactive)
  7617. (let* ((tags (org-get-at-bol 'tags)))
  7618. (if tags
  7619. (message "Tags are :%s:"
  7620. (org-no-properties (mapconcat 'identity tags ":")))
  7621. (message "No tags associated with this line"))))
  7622. (defun org-agenda-goto (&optional highlight)
  7623. "Go to the Org-mode file which contains the item at point."
  7624. (interactive)
  7625. (let* ((marker (or (org-get-at-bol 'org-marker)
  7626. (org-agenda-error)))
  7627. (buffer (marker-buffer marker))
  7628. (pos (marker-position marker)))
  7629. (switch-to-buffer-other-window buffer)
  7630. (widen)
  7631. (push-mark)
  7632. (goto-char pos)
  7633. (when (derived-mode-p 'org-mode)
  7634. (org-show-context 'agenda)
  7635. (save-excursion
  7636. (and (outline-next-heading)
  7637. (org-flag-heading nil)))) ; show the next heading
  7638. (when (outline-invisible-p)
  7639. (show-entry)) ; display invisible text
  7640. (recenter (/ (window-height) 2))
  7641. (run-hooks 'org-agenda-after-show-hook)
  7642. (and highlight (org-highlight (point-at-bol) (point-at-eol)))))
  7643. (defvar org-agenda-after-show-hook nil
  7644. "Normal hook run after an item has been shown from the agenda.
  7645. Point is in the buffer where the item originated.")
  7646. (defun org-agenda-kill ()
  7647. "Kill the entry or subtree belonging to the current agenda entry."
  7648. (interactive)
  7649. (or (eq major-mode 'org-agenda-mode) (error "Not in agenda"))
  7650. (let* ((bufname-orig (buffer-name))
  7651. (marker (or (org-get-at-bol 'org-marker)
  7652. (org-agenda-error)))
  7653. (buffer (marker-buffer marker))
  7654. (pos (marker-position marker))
  7655. (type (org-get-at-bol 'type))
  7656. dbeg dend (n 0) conf)
  7657. (org-with-remote-undo buffer
  7658. (with-current-buffer buffer
  7659. (save-excursion
  7660. (goto-char pos)
  7661. (if (and (derived-mode-p 'org-mode) (not (member type '("sexp"))))
  7662. (setq dbeg (progn (org-back-to-heading t) (point))
  7663. dend (org-end-of-subtree t t))
  7664. (setq dbeg (point-at-bol)
  7665. dend (min (point-max) (1+ (point-at-eol)))))
  7666. (goto-char dbeg)
  7667. (while (re-search-forward "^[ \t]*\\S-" dend t) (setq n (1+ n)))))
  7668. (setq conf (or (eq t org-agenda-confirm-kill)
  7669. (and (numberp org-agenda-confirm-kill)
  7670. (> n org-agenda-confirm-kill))))
  7671. (and conf
  7672. (not (y-or-n-p
  7673. (format "Delete entry with %d lines in buffer \"%s\"? "
  7674. n (buffer-name buffer))))
  7675. (error "Abort"))
  7676. (let ((org-agenda-buffer-name bufname-orig))
  7677. (org-remove-subtree-entries-from-agenda buffer dbeg dend))
  7678. (with-current-buffer buffer (delete-region dbeg dend))
  7679. (message "Agenda item and source killed"))))
  7680. (defvar org-archive-default-command) ; defined in org-archive.el
  7681. (defun org-agenda-archive-default ()
  7682. "Archive the entry or subtree belonging to the current agenda entry."
  7683. (interactive)
  7684. (require 'org-archive)
  7685. (org-agenda-archive-with org-archive-default-command))
  7686. (defun org-agenda-archive-default-with-confirmation ()
  7687. "Archive the entry or subtree belonging to the current agenda entry."
  7688. (interactive)
  7689. (require 'org-archive)
  7690. (org-agenda-archive-with org-archive-default-command 'confirm))
  7691. (defun org-agenda-archive ()
  7692. "Archive the entry or subtree belonging to the current agenda entry."
  7693. (interactive)
  7694. (org-agenda-archive-with 'org-archive-subtree))
  7695. (defun org-agenda-archive-to-archive-sibling ()
  7696. "Move the entry to the archive sibling."
  7697. (interactive)
  7698. (org-agenda-archive-with 'org-archive-to-archive-sibling))
  7699. (defun org-agenda-archive-with (cmd &optional confirm)
  7700. "Move the entry to the archive sibling."
  7701. (interactive)
  7702. (or (eq major-mode 'org-agenda-mode) (error "Not in agenda"))
  7703. (let* ((bufname-orig (buffer-name))
  7704. (marker (or (org-get-at-bol 'org-marker)
  7705. (org-agenda-error)))
  7706. (buffer (marker-buffer marker))
  7707. (pos (marker-position marker)))
  7708. (org-with-remote-undo buffer
  7709. (with-current-buffer buffer
  7710. (if (derived-mode-p 'org-mode)
  7711. (if (and confirm
  7712. (not (y-or-n-p "Archive this subtree or entry? ")))
  7713. (error "Abort")
  7714. (save-excursion
  7715. (goto-char pos)
  7716. (let ((org-agenda-buffer-name bufname-orig))
  7717. (org-remove-subtree-entries-from-agenda))
  7718. (org-back-to-heading t)
  7719. (funcall cmd)))
  7720. (error "Archiving works only in Org-mode files"))))))
  7721. (defun org-remove-subtree-entries-from-agenda (&optional buf beg end)
  7722. "Remove all lines in the agenda that correspond to a given subtree.
  7723. The subtree is the one in buffer BUF, starting at BEG and ending at END.
  7724. If this information is not given, the function uses the tree at point."
  7725. (let ((buf (or buf (current-buffer))) m p)
  7726. (save-excursion
  7727. (unless (and beg end)
  7728. (org-back-to-heading t)
  7729. (setq beg (point))
  7730. (org-end-of-subtree t)
  7731. (setq end (point)))
  7732. (set-buffer (get-buffer org-agenda-buffer-name))
  7733. (save-excursion
  7734. (goto-char (point-max))
  7735. (beginning-of-line 1)
  7736. (while (not (bobp))
  7737. (when (and (setq m (org-get-at-bol 'org-marker))
  7738. (equal buf (marker-buffer m))
  7739. (setq p (marker-position m))
  7740. (>= p beg)
  7741. (< p end))
  7742. (let ((inhibit-read-only t))
  7743. (delete-region (point-at-bol) (1+ (point-at-eol)))))
  7744. (beginning-of-line 0))))))
  7745. (defun org-agenda-refile (&optional goto rfloc no-update)
  7746. "Refile the item at point."
  7747. (interactive "P")
  7748. (if (equal goto '(16))
  7749. (org-refile-goto-last-stored)
  7750. (let* ((buffer-orig (buffer-name))
  7751. (marker (or (org-get-at-bol 'org-hd-marker)
  7752. (org-agenda-error)))
  7753. (buffer (marker-buffer marker))
  7754. (pos (marker-position marker))
  7755. (rfloc (or rfloc
  7756. (org-refile-get-location
  7757. (if goto "Goto" "Refile to") buffer
  7758. org-refile-allow-creating-parent-nodes))))
  7759. (with-current-buffer buffer
  7760. (save-excursion
  7761. (save-restriction
  7762. (widen)
  7763. (goto-char marker)
  7764. (let ((org-agenda-buffer-name buffer-orig))
  7765. (org-remove-subtree-entries-from-agenda))
  7766. (org-refile goto buffer rfloc)))))
  7767. (unless no-update (org-agenda-redo))))
  7768. (defun org-agenda-open-link (&optional arg)
  7769. "Open the link(s) in the current entry, if any.
  7770. This looks for a link in the displayed line in the agenda.
  7771. It also looks at the text of the entry itself."
  7772. (interactive "P")
  7773. (let* ((marker (or (org-get-at-bol 'org-hd-marker)
  7774. (org-get-at-bol 'org-marker)))
  7775. (buffer (and marker (marker-buffer marker)))
  7776. (prefix (buffer-substring (point-at-bol) (point-at-eol)))
  7777. (lkall (org-offer-links-in-entry buffer marker arg prefix))
  7778. (lk0 (car lkall))
  7779. (lk (if (stringp lk0) (list lk0) lk0))
  7780. (lkend (cdr lkall))
  7781. trg)
  7782. (cond
  7783. ((and buffer lk)
  7784. (mapcar (lambda(l)
  7785. (with-current-buffer buffer
  7786. (setq trg (and (string-match org-bracket-link-regexp l)
  7787. (match-string 1 l)))
  7788. (if (or (not trg) (string-match org-any-link-re trg))
  7789. (save-excursion
  7790. (save-restriction
  7791. (widen)
  7792. (goto-char marker)
  7793. (when (search-forward l nil lkend)
  7794. (goto-char (match-beginning 0))
  7795. (org-open-at-point))))
  7796. ;; This is an internal link, widen the buffer
  7797. (switch-to-buffer-other-window buffer)
  7798. (widen)
  7799. (goto-char marker)
  7800. (when (search-forward l nil lkend)
  7801. (goto-char (match-beginning 0))
  7802. (org-open-at-point)))))
  7803. lk))
  7804. ((or (org-in-regexp (concat "\\(" org-bracket-link-regexp "\\)"))
  7805. (save-excursion
  7806. (beginning-of-line 1)
  7807. (looking-at (concat ".*?\\(" org-bracket-link-regexp "\\)"))))
  7808. (org-open-link-from-string (match-string 1)))
  7809. (t (message "No link to open here")))))
  7810. (defun org-agenda-copy-local-variable (var)
  7811. "Get a variable from a referenced buffer and install it here."
  7812. (let ((m (org-get-at-bol 'org-marker)))
  7813. (when (and m (buffer-live-p (marker-buffer m)))
  7814. (org-set-local var (with-current-buffer (marker-buffer m)
  7815. (symbol-value var))))))
  7816. (defun org-agenda-switch-to (&optional delete-other-windows)
  7817. "Go to the Org-mode file which contains the item at point."
  7818. (interactive)
  7819. (if (and org-return-follows-link
  7820. (not (org-get-at-bol 'org-marker))
  7821. (org-in-regexp org-bracket-link-regexp))
  7822. (org-open-link-from-string (match-string 0))
  7823. (let* ((marker (or (org-get-at-bol 'org-marker)
  7824. (org-agenda-error)))
  7825. (buffer (marker-buffer marker))
  7826. (pos (marker-position marker)))
  7827. (org-pop-to-buffer-same-window buffer)
  7828. (and delete-other-windows (delete-other-windows))
  7829. (widen)
  7830. (goto-char pos)
  7831. (when (derived-mode-p 'org-mode)
  7832. (org-show-context 'agenda)
  7833. (save-excursion
  7834. (and (outline-next-heading)
  7835. (org-flag-heading nil))) ; show the next heading
  7836. (when (outline-invisible-p)
  7837. (show-entry)) ; display invisible text
  7838. (run-hooks 'org-agenda-after-show-hook)))))
  7839. (defun org-agenda-goto-mouse (ev)
  7840. "Go to the Org-mode file which contains the item at the mouse click."
  7841. (interactive "e")
  7842. (mouse-set-point ev)
  7843. (org-agenda-goto))
  7844. (defun org-agenda-show (&optional full-entry)
  7845. "Display the Org-mode file which contains the item at point.
  7846. With prefix argument FULL-ENTRY, make the entire entry visible
  7847. if it was hidden in the outline."
  7848. (interactive "P")
  7849. (let ((win (selected-window)))
  7850. (if full-entry
  7851. (let ((org-show-entry-below t))
  7852. (org-agenda-goto t))
  7853. (org-agenda-goto t))
  7854. (select-window win)))
  7855. (defvar org-agenda-show-window nil)
  7856. (defun org-agenda-show-and-scroll-up (&optional arg)
  7857. "Display the Org-mode file which contains the item at point.
  7858. When called repeatedly, scroll the window that is displaying the buffer.
  7859. With a \\[universal-argument] prefix, use `org-show-entry' instead of
  7860. `show-subtree' to display the item, so that drawers and logbooks stay
  7861. folded."
  7862. (interactive "P")
  7863. (let ((win (selected-window)))
  7864. (if (and (window-live-p org-agenda-show-window)
  7865. (eq this-command last-command))
  7866. (progn
  7867. (select-window org-agenda-show-window)
  7868. (ignore-errors (scroll-up)))
  7869. (org-agenda-goto t)
  7870. (if arg (org-show-entry) (show-subtree))
  7871. (setq org-agenda-show-window (selected-window)))
  7872. (select-window win)))
  7873. (defun org-agenda-show-scroll-down ()
  7874. "Scroll down the window showing the agenda."
  7875. (interactive)
  7876. (let ((win (selected-window)))
  7877. (when (window-live-p org-agenda-show-window)
  7878. (select-window org-agenda-show-window)
  7879. (ignore-errors (scroll-down))
  7880. (select-window win))))
  7881. (defun org-agenda-show-1 (&optional more)
  7882. "Display the Org-mode file which contains the item at point.
  7883. The prefix arg selects the amount of information to display:
  7884. 0 hide the subtree
  7885. 1 just show the entry according to defaults.
  7886. 2 show the children view
  7887. 3 show the subtree view
  7888. 4 show the entire subtree and any LOGBOOK drawers
  7889. 5 show the entire subtree and any drawers
  7890. With prefix argument FULL-ENTRY, make the entire entry visible
  7891. if it was hidden in the outline."
  7892. (interactive "p")
  7893. (let ((win (selected-window)))
  7894. (org-agenda-goto t)
  7895. (org-recenter-heading 1)
  7896. (cond
  7897. ((= more 0)
  7898. (hide-subtree)
  7899. (save-excursion
  7900. (org-back-to-heading)
  7901. (run-hook-with-args 'org-cycle-hook 'folded))
  7902. (message "Remote: FOLDED"))
  7903. ((and (org-called-interactively-p 'any) (= more 1))
  7904. (message "Remote: show with default settings"))
  7905. ((= more 2)
  7906. (show-entry)
  7907. (show-children)
  7908. (save-excursion
  7909. (org-back-to-heading)
  7910. (run-hook-with-args 'org-cycle-hook 'children))
  7911. (message "Remote: CHILDREN"))
  7912. ((= more 3)
  7913. (show-subtree)
  7914. (save-excursion
  7915. (org-back-to-heading)
  7916. (run-hook-with-args 'org-cycle-hook 'subtree))
  7917. (message "Remote: SUBTREE"))
  7918. ((= more 4)
  7919. (let* ((org-drawers (delete "LOGBOOK" (copy-sequence org-drawers)))
  7920. (org-drawer-regexp
  7921. (concat "^[ \t]*:\\("
  7922. (mapconcat 'regexp-quote org-drawers "\\|")
  7923. "\\):[ \t]*$")))
  7924. (show-subtree)
  7925. (save-excursion
  7926. (org-back-to-heading)
  7927. (org-cycle-hide-drawers 'subtree)))
  7928. (message "Remote: SUBTREE AND LOGBOOK"))
  7929. ((> more 4)
  7930. (show-subtree)
  7931. (message "Remote: SUBTREE AND ALL DRAWERS")))
  7932. (select-window win)))
  7933. (defun org-recenter-heading (n)
  7934. (save-excursion
  7935. (org-back-to-heading)
  7936. (recenter n)))
  7937. (defvar org-agenda-cycle-counter nil)
  7938. (defun org-agenda-cycle-show (&optional n)
  7939. "Show the current entry in another window, with default settings.
  7940. Default settings are taken from `org-show-hierarchy-above' and siblings.
  7941. When use repeatedly in immediate succession, the remote entry will cycle
  7942. through visibility
  7943. children -> subtree -> folded
  7944. When called with a numeric prefix arg, that arg will be passed through to
  7945. `org-agenda-show-1'. For the interpretation of that argument, see the
  7946. docstring of `org-agenda-show-1'."
  7947. (interactive "P")
  7948. (if (integerp n)
  7949. (setq org-agenda-cycle-counter n)
  7950. (if (not (eq last-command this-command))
  7951. (setq org-agenda-cycle-counter 1)
  7952. (if (equal org-agenda-cycle-counter 0)
  7953. (setq org-agenda-cycle-counter 2)
  7954. (setq org-agenda-cycle-counter (1+ org-agenda-cycle-counter))
  7955. (if (> org-agenda-cycle-counter 3)
  7956. (setq org-agenda-cycle-counter 0)))))
  7957. (org-agenda-show-1 org-agenda-cycle-counter))
  7958. (defun org-agenda-recenter (arg)
  7959. "Display the Org-mode file which contains the item at point and recenter."
  7960. (interactive "P")
  7961. (let ((win (selected-window)))
  7962. (org-agenda-goto t)
  7963. (recenter arg)
  7964. (select-window win)))
  7965. (defun org-agenda-show-mouse (ev)
  7966. "Display the Org-mode file which contains the item at the mouse click."
  7967. (interactive "e")
  7968. (mouse-set-point ev)
  7969. (org-agenda-show))
  7970. (defun org-agenda-check-no-diary ()
  7971. "Check if the entry is a diary link and abort if yes."
  7972. (if (org-get-at-bol 'org-agenda-diary-link)
  7973. (org-agenda-error)))
  7974. (defun org-agenda-error ()
  7975. (error "Command not allowed in this line"))
  7976. (defun org-agenda-tree-to-indirect-buffer (arg)
  7977. "Show the subtree corresponding to the current entry in an indirect buffer.
  7978. This calls the command `org-tree-to-indirect-buffer' from the original buffer.
  7979. With a numerical prefix ARG, go up to this level and then take that tree.
  7980. With a negative numeric ARG, go up by this number of levels.
  7981. With a \\[universal-argument] prefix, make a separate frame for this tree (i.e. don't
  7982. use the dedicated frame)."
  7983. (interactive "P")
  7984. (if current-prefix-arg
  7985. (org-agenda-do-tree-to-indirect-buffer arg)
  7986. (let ((agenda-buffer (buffer-name))
  7987. (agenda-window (selected-window))
  7988. (indirect-window
  7989. (and org-last-indirect-buffer
  7990. (get-buffer-window org-last-indirect-buffer))))
  7991. (save-window-excursion (org-agenda-do-tree-to-indirect-buffer arg))
  7992. (unless (or (eq org-indirect-buffer-display 'new-frame)
  7993. (eq org-indirect-buffer-display 'dedicated-frame))
  7994. (unwind-protect
  7995. (unless (and indirect-window (window-live-p indirect-window))
  7996. (setq indirect-window (split-window agenda-window)))
  7997. (and indirect-window (select-window indirect-window))
  7998. (switch-to-buffer org-last-indirect-buffer :norecord)
  7999. (fit-window-to-buffer indirect-window)))
  8000. (select-window (get-buffer-window agenda-buffer)))))
  8001. (defun org-agenda-do-tree-to-indirect-buffer (arg)
  8002. "Same as `org-agenda-tree-to-indirect-buffer' without saving window."
  8003. (org-agenda-check-no-diary)
  8004. (let* ((marker (or (org-get-at-bol 'org-marker)
  8005. (org-agenda-error)))
  8006. (buffer (marker-buffer marker))
  8007. (pos (marker-position marker)))
  8008. (with-current-buffer buffer
  8009. (save-excursion
  8010. (goto-char pos)
  8011. (funcall 'org-tree-to-indirect-buffer arg)))))
  8012. (defvar org-last-heading-marker (make-marker)
  8013. "Marker pointing to the headline that last changed its TODO state
  8014. by a remote command from the agenda.")
  8015. (defun org-agenda-todo-nextset ()
  8016. "Switch TODO entry to next sequence."
  8017. (interactive)
  8018. (org-agenda-todo 'nextset))
  8019. (defun org-agenda-todo-previousset ()
  8020. "Switch TODO entry to previous sequence."
  8021. (interactive)
  8022. (org-agenda-todo 'previousset))
  8023. (defun org-agenda-todo (&optional arg)
  8024. "Cycle TODO state of line at point, also in Org-mode file.
  8025. This changes the line at point, all other lines in the agenda referring to
  8026. the same tree node, and the headline of the tree node in the Org-mode file."
  8027. (interactive "P")
  8028. (org-agenda-check-no-diary)
  8029. (let* ((col (current-column))
  8030. (marker (or (org-get-at-bol 'org-marker)
  8031. (org-agenda-error)))
  8032. (buffer (marker-buffer marker))
  8033. (pos (marker-position marker))
  8034. (hdmarker (org-get-at-bol 'org-hd-marker))
  8035. (todayp (org-agenda-todayp (org-get-at-bol 'day)))
  8036. (inhibit-read-only t)
  8037. org-agenda-headline-snapshot-before-repeat newhead just-one)
  8038. (org-with-remote-undo buffer
  8039. (with-current-buffer buffer
  8040. (widen)
  8041. (goto-char pos)
  8042. (org-show-context 'agenda)
  8043. (save-excursion
  8044. (and (outline-next-heading)
  8045. (org-flag-heading nil))) ; show the next heading
  8046. (let ((current-prefix-arg arg))
  8047. (call-interactively 'org-todo))
  8048. (and (bolp) (forward-char 1))
  8049. (setq newhead (org-get-heading))
  8050. (when (and (org-bound-and-true-p
  8051. org-agenda-headline-snapshot-before-repeat)
  8052. (not (equal org-agenda-headline-snapshot-before-repeat
  8053. newhead))
  8054. todayp)
  8055. (setq newhead org-agenda-headline-snapshot-before-repeat
  8056. just-one t))
  8057. (save-excursion
  8058. (org-back-to-heading)
  8059. (move-marker org-last-heading-marker (point))))
  8060. (beginning-of-line 1)
  8061. (save-excursion
  8062. (org-agenda-change-all-lines newhead hdmarker 'fixface just-one))
  8063. (org-move-to-column col))))
  8064. (defun org-agenda-add-note (&optional arg)
  8065. "Add a time-stamped note to the entry at point."
  8066. (interactive "P")
  8067. (org-agenda-check-no-diary)
  8068. (let* ((marker (or (org-get-at-bol 'org-marker)
  8069. (org-agenda-error)))
  8070. (buffer (marker-buffer marker))
  8071. (pos (marker-position marker))
  8072. (hdmarker (org-get-at-bol 'org-hd-marker))
  8073. (inhibit-read-only t))
  8074. (with-current-buffer buffer
  8075. (widen)
  8076. (goto-char pos)
  8077. (org-show-context 'agenda)
  8078. (save-excursion
  8079. (and (outline-next-heading)
  8080. (org-flag-heading nil))) ; show the next heading
  8081. (org-add-note))))
  8082. (defun org-agenda-change-all-lines (newhead hdmarker
  8083. &optional fixface just-this)
  8084. "Change all lines in the agenda buffer which match HDMARKER.
  8085. The new content of the line will be NEWHEAD (as modified by
  8086. `org-agenda-format-item'). HDMARKER is checked with
  8087. `equal' against all `org-hd-marker' text properties in the file.
  8088. If FIXFACE is non-nil, the face of each item is modified according to
  8089. the new TODO state.
  8090. If JUST-THIS is non-nil, change just the current line, not all.
  8091. If FORCE-TAGS is non nil, the car of it returns the new tags."
  8092. (let* ((inhibit-read-only t)
  8093. (line (org-current-line))
  8094. (org-agenda-buffer (current-buffer))
  8095. (thetags (with-current-buffer (marker-buffer hdmarker)
  8096. (save-excursion (save-restriction (widen)
  8097. (goto-char hdmarker)
  8098. (org-get-tags-at)))))
  8099. props m pl undone-face done-face finish new dotime level cat tags)
  8100. (save-excursion
  8101. (goto-char (point-max))
  8102. (beginning-of-line 1)
  8103. (while (not finish)
  8104. (setq finish (bobp))
  8105. (when (and (setq m (org-get-at-bol 'org-hd-marker))
  8106. (or (not just-this) (= (org-current-line) line))
  8107. (equal m hdmarker))
  8108. (setq props (text-properties-at (point))
  8109. dotime (org-get-at-bol 'dotime)
  8110. cat (org-get-at-bol 'org-category)
  8111. level (org-get-at-bol 'level)
  8112. tags thetags
  8113. new
  8114. (let ((org-prefix-format-compiled
  8115. (or (get-text-property (min (1- (point-max)) (point)) 'format)
  8116. org-prefix-format-compiled))
  8117. (extra (org-get-at-bol 'extra)))
  8118. (with-current-buffer (marker-buffer hdmarker)
  8119. (save-excursion
  8120. (save-restriction
  8121. (widen)
  8122. (org-agenda-format-item extra newhead level cat tags dotime)))))
  8123. pl (text-property-any (point-at-bol) (point-at-eol) 'org-heading t)
  8124. undone-face (org-get-at-bol 'undone-face)
  8125. done-face (org-get-at-bol 'done-face))
  8126. (beginning-of-line 1)
  8127. (cond
  8128. ((equal new "")
  8129. (and (looking-at ".*\n?") (replace-match "")))
  8130. ((looking-at ".*")
  8131. (replace-match new t t)
  8132. (beginning-of-line 1)
  8133. (add-text-properties (point-at-bol) (point-at-eol) props)
  8134. (when fixface
  8135. (add-text-properties
  8136. (point-at-bol) (point-at-eol)
  8137. (list 'face
  8138. (if org-last-todo-state-is-todo
  8139. undone-face done-face))))
  8140. (org-agenda-highlight-todo 'line)
  8141. (beginning-of-line 1))
  8142. (t (error "Line update did not work")))
  8143. (save-restriction
  8144. (narrow-to-region (point-at-bol) (point-at-eol))
  8145. (org-agenda-finalize)))
  8146. (beginning-of-line 0)))))
  8147. (defun org-agenda-align-tags (&optional line)
  8148. "Align all tags in agenda items to `org-agenda-tags-column'."
  8149. (let ((inhibit-read-only t) l c)
  8150. (save-excursion
  8151. (goto-char (if line (point-at-bol) (point-min)))
  8152. (while (re-search-forward (org-re "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$")
  8153. (if line (point-at-eol) nil) t)
  8154. (add-text-properties
  8155. (match-beginning 2) (match-end 2)
  8156. (list 'face (delq nil (let ((prop (get-text-property
  8157. (match-beginning 2) 'face)))
  8158. (or (listp prop) (setq prop (list prop)))
  8159. (if (memq 'org-tag prop)
  8160. prop
  8161. (cons 'org-tag prop))))))
  8162. (setq l (- (match-end 2) (match-beginning 2))
  8163. c (if (< org-agenda-tags-column 0)
  8164. (- (abs org-agenda-tags-column) l)
  8165. org-agenda-tags-column))
  8166. (delete-region (match-beginning 1) (match-end 1))
  8167. (goto-char (match-beginning 1))
  8168. (insert (org-add-props
  8169. (make-string (max 1 (- c (current-column))) ?\ )
  8170. (plist-put (copy-sequence (text-properties-at (point)))
  8171. 'face nil))))
  8172. (goto-char (point-min))
  8173. (org-font-lock-add-tag-faces (point-max)))))
  8174. (defun org-agenda-priority-up ()
  8175. "Increase the priority of line at point, also in Org-mode file."
  8176. (interactive)
  8177. (org-agenda-priority 'up))
  8178. (defun org-agenda-priority-down ()
  8179. "Decrease the priority of line at point, also in Org-mode file."
  8180. (interactive)
  8181. (org-agenda-priority 'down))
  8182. (defun org-agenda-priority (&optional force-direction)
  8183. "Set the priority of line at point, also in Org-mode file.
  8184. This changes the line at point, all other lines in the agenda referring to
  8185. the same tree node, and the headline of the tree node in the Org-mode file.
  8186. Called with a universal prefix arg, show the priority instead of setting it."
  8187. (interactive "P")
  8188. (if (equal force-direction '(4))
  8189. (org-show-priority)
  8190. (unless org-enable-priority-commands
  8191. (error "Priority commands are disabled"))
  8192. (org-agenda-check-no-diary)
  8193. (let* ((marker (or (org-get-at-bol 'org-marker)
  8194. (org-agenda-error)))
  8195. (hdmarker (org-get-at-bol 'org-hd-marker))
  8196. (buffer (marker-buffer hdmarker))
  8197. (pos (marker-position hdmarker))
  8198. (inhibit-read-only t)
  8199. newhead)
  8200. (org-with-remote-undo buffer
  8201. (with-current-buffer buffer
  8202. (widen)
  8203. (goto-char pos)
  8204. (org-show-context 'agenda)
  8205. (save-excursion
  8206. (and (outline-next-heading)
  8207. (org-flag-heading nil))) ; show the next heading
  8208. (funcall 'org-priority force-direction)
  8209. (end-of-line 1)
  8210. (setq newhead (org-get-heading)))
  8211. (org-agenda-change-all-lines newhead hdmarker)
  8212. (beginning-of-line 1)))))
  8213. ;; FIXME: should fix the tags property of the agenda line.
  8214. (defun org-agenda-set-tags (&optional tag onoff)
  8215. "Set tags for the current headline."
  8216. (interactive)
  8217. (org-agenda-check-no-diary)
  8218. (if (and (org-region-active-p) (org-called-interactively-p 'any))
  8219. (call-interactively 'org-change-tag-in-region)
  8220. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8221. (org-agenda-error)))
  8222. (buffer (marker-buffer hdmarker))
  8223. (pos (marker-position hdmarker))
  8224. (inhibit-read-only t)
  8225. newhead)
  8226. (org-with-remote-undo buffer
  8227. (with-current-buffer buffer
  8228. (widen)
  8229. (goto-char pos)
  8230. (save-excursion
  8231. (org-show-context 'agenda))
  8232. (save-excursion
  8233. (and (outline-next-heading)
  8234. (org-flag-heading nil))) ; show the next heading
  8235. (goto-char pos)
  8236. (if tag
  8237. (org-toggle-tag tag onoff)
  8238. (call-interactively 'org-set-tags))
  8239. (end-of-line 1)
  8240. (setq newhead (org-get-heading)))
  8241. (org-agenda-change-all-lines newhead hdmarker)
  8242. (beginning-of-line 1)))))
  8243. (defun org-agenda-set-property ()
  8244. "Set a property for the current headline."
  8245. (interactive)
  8246. (org-agenda-check-no-diary)
  8247. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8248. (org-agenda-error)))
  8249. (buffer (marker-buffer hdmarker))
  8250. (pos (marker-position hdmarker))
  8251. (inhibit-read-only t)
  8252. newhead)
  8253. (org-with-remote-undo buffer
  8254. (with-current-buffer buffer
  8255. (widen)
  8256. (goto-char pos)
  8257. (save-excursion
  8258. (org-show-context 'agenda))
  8259. (save-excursion
  8260. (and (outline-next-heading)
  8261. (org-flag-heading nil))) ; show the next heading
  8262. (goto-char pos)
  8263. (call-interactively 'org-set-property)))))
  8264. (defun org-agenda-set-effort ()
  8265. "Set the effort property for the current headline."
  8266. (interactive)
  8267. (org-agenda-check-no-diary)
  8268. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8269. (org-agenda-error)))
  8270. (buffer (marker-buffer hdmarker))
  8271. (pos (marker-position hdmarker))
  8272. (inhibit-read-only t)
  8273. newhead)
  8274. (org-with-remote-undo buffer
  8275. (with-current-buffer buffer
  8276. (widen)
  8277. (goto-char pos)
  8278. (save-excursion
  8279. (org-show-context 'agenda))
  8280. (save-excursion
  8281. (and (outline-next-heading)
  8282. (org-flag-heading nil))) ; show the next heading
  8283. (goto-char pos)
  8284. (call-interactively 'org-set-effort)
  8285. (end-of-line 1)
  8286. (setq newhead (org-get-heading)))
  8287. (org-agenda-change-all-lines newhead hdmarker))))
  8288. (defun org-agenda-toggle-archive-tag ()
  8289. "Toggle the archive tag for the current entry."
  8290. (interactive)
  8291. (org-agenda-check-no-diary)
  8292. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8293. (org-agenda-error)))
  8294. (buffer (marker-buffer hdmarker))
  8295. (pos (marker-position hdmarker))
  8296. (inhibit-read-only t)
  8297. newhead)
  8298. (org-with-remote-undo buffer
  8299. (with-current-buffer buffer
  8300. (widen)
  8301. (goto-char pos)
  8302. (org-show-context 'agenda)
  8303. (save-excursion
  8304. (and (outline-next-heading)
  8305. (org-flag-heading nil))) ; show the next heading
  8306. (call-interactively 'org-toggle-archive-tag)
  8307. (end-of-line 1)
  8308. (setq newhead (org-get-heading)))
  8309. (org-agenda-change-all-lines newhead hdmarker)
  8310. (beginning-of-line 1))))
  8311. (defun org-agenda-do-date-later (arg)
  8312. (interactive "P")
  8313. (cond
  8314. ((or (equal arg '(16))
  8315. (memq last-command
  8316. '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
  8317. (setq this-command 'org-agenda-date-later-minutes)
  8318. (org-agenda-date-later-minutes 1))
  8319. ((or (equal arg '(4))
  8320. (memq last-command
  8321. '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
  8322. (setq this-command 'org-agenda-date-later-hours)
  8323. (org-agenda-date-later-hours 1))
  8324. (t
  8325. (org-agenda-date-later (prefix-numeric-value arg)))))
  8326. (defun org-agenda-do-date-earlier (arg)
  8327. (interactive "P")
  8328. (cond
  8329. ((or (equal arg '(16))
  8330. (memq last-command
  8331. '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
  8332. (setq this-command 'org-agenda-date-earlier-minutes)
  8333. (org-agenda-date-earlier-minutes 1))
  8334. ((or (equal arg '(4))
  8335. (memq last-command
  8336. '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
  8337. (setq this-command 'org-agenda-date-earlier-hours)
  8338. (org-agenda-date-earlier-hours 1))
  8339. (t
  8340. (org-agenda-date-earlier (prefix-numeric-value arg)))))
  8341. (defun org-agenda-date-later (arg &optional what)
  8342. "Change the date of this item to ARG day(s) later."
  8343. (interactive "p")
  8344. (org-agenda-check-type t 'agenda 'timeline)
  8345. (org-agenda-check-no-diary)
  8346. (let* ((marker (or (org-get-at-bol 'org-marker)
  8347. (org-agenda-error)))
  8348. (buffer (marker-buffer marker))
  8349. (pos (marker-position marker))
  8350. cdate today)
  8351. (org-with-remote-undo buffer
  8352. (with-current-buffer buffer
  8353. (widen)
  8354. (goto-char pos)
  8355. (if (not (org-at-timestamp-p))
  8356. (error "Cannot find time stamp"))
  8357. (when (and org-agenda-move-date-from-past-immediately-to-today
  8358. (equal arg 1)
  8359. (or (not what) (eq what 'day))
  8360. (not (save-match-data (org-at-date-range-p))))
  8361. (setq cdate (org-parse-time-string (match-string 0) 'nodefault)
  8362. cdate (calendar-absolute-from-gregorian
  8363. (list (nth 4 cdate) (nth 3 cdate) (nth 5 cdate)))
  8364. today (org-today))
  8365. (if (> today cdate)
  8366. ;; immediately shift to today
  8367. (setq arg (- today cdate))))
  8368. (org-timestamp-change arg (or what 'day))
  8369. (when (and (org-at-date-range-p)
  8370. (re-search-backward org-tr-regexp-both (point-at-bol)))
  8371. (let ((end org-last-changed-timestamp))
  8372. (org-timestamp-change arg (or what 'day))
  8373. (setq org-last-changed-timestamp
  8374. (concat org-last-changed-timestamp "--" end)))))
  8375. (org-agenda-show-new-time marker org-last-changed-timestamp))
  8376. (message "Time stamp changed to %s" org-last-changed-timestamp)))
  8377. (defun org-agenda-date-earlier (arg &optional what)
  8378. "Change the date of this item to ARG day(s) earlier."
  8379. (interactive "p")
  8380. (org-agenda-date-later (- arg) what))
  8381. (defun org-agenda-date-later-minutes (arg)
  8382. "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
  8383. (interactive "p")
  8384. (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
  8385. (org-agenda-date-later arg 'minute))
  8386. (defun org-agenda-date-earlier-minutes (arg)
  8387. "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
  8388. (interactive "p")
  8389. (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
  8390. (org-agenda-date-earlier arg 'minute))
  8391. (defun org-agenda-date-later-hours (arg)
  8392. "Change the time of this item, in hour steps."
  8393. (interactive "p")
  8394. (org-agenda-date-later arg 'hour))
  8395. (defun org-agenda-date-earlier-hours (arg)
  8396. "Change the time of this item, in hour steps."
  8397. (interactive "p")
  8398. (org-agenda-date-earlier arg 'hour))
  8399. (defun org-agenda-show-new-time (marker stamp &optional prefix)
  8400. "Show new date stamp via text properties."
  8401. ;; We use text properties to make this undoable
  8402. (let ((inhibit-read-only t))
  8403. (setq stamp (concat prefix " => " stamp " "))
  8404. (save-excursion
  8405. (goto-char (point-max))
  8406. (while (not (bobp))
  8407. (when (equal marker (org-get-at-bol 'org-marker))
  8408. (org-move-to-column (- (window-width) (length stamp)) t)
  8409. (org-agenda-fix-tags-filter-overlays-at (point))
  8410. (if (featurep 'xemacs)
  8411. ;; Use `duplicable' property to trigger undo recording
  8412. (let ((ex (make-extent nil nil))
  8413. (gl (make-glyph stamp)))
  8414. (set-glyph-face gl 'secondary-selection)
  8415. (set-extent-properties
  8416. ex (list 'invisible t 'end-glyph gl 'duplicable t))
  8417. (insert-extent ex (1- (point)) (point-at-eol)))
  8418. (add-text-properties
  8419. (1- (point)) (point-at-eol)
  8420. (list 'display (org-add-props stamp nil
  8421. 'face 'secondary-selection))))
  8422. (beginning-of-line 1))
  8423. (beginning-of-line 0)))))
  8424. (defun org-agenda-date-prompt (arg)
  8425. "Change the date of this item. Date is prompted for, with default today.
  8426. The prefix ARG is passed to the `org-time-stamp' command and can therefore
  8427. be used to request time specification in the time stamp."
  8428. (interactive "P")
  8429. (org-agenda-check-type t 'agenda 'timeline)
  8430. (org-agenda-check-no-diary)
  8431. (let* ((marker (or (org-get-at-bol 'org-marker)
  8432. (org-agenda-error)))
  8433. (buffer (marker-buffer marker))
  8434. (pos (marker-position marker)))
  8435. (org-with-remote-undo buffer
  8436. (with-current-buffer buffer
  8437. (widen)
  8438. (goto-char pos)
  8439. (if (not (org-at-timestamp-p t))
  8440. (error "Cannot find time stamp"))
  8441. (org-time-stamp arg (equal (char-after (match-beginning 0)) ?\[)))
  8442. (org-agenda-show-new-time marker org-last-changed-timestamp))
  8443. (message "Time stamp changed to %s" org-last-changed-timestamp)))
  8444. (defun org-agenda-schedule (arg &optional time)
  8445. "Schedule the item at point.
  8446. ARG is passed through to `org-schedule'."
  8447. (interactive "P")
  8448. (org-agenda-check-type t 'agenda 'timeline 'todo 'tags 'search)
  8449. (org-agenda-check-no-diary)
  8450. (let* ((marker (or (org-get-at-bol 'org-marker)
  8451. (org-agenda-error)))
  8452. (type (marker-insertion-type marker))
  8453. (buffer (marker-buffer marker))
  8454. (pos (marker-position marker))
  8455. (org-insert-labeled-timestamps-at-point nil)
  8456. ts)
  8457. (set-marker-insertion-type marker t)
  8458. (org-with-remote-undo buffer
  8459. (with-current-buffer buffer
  8460. (widen)
  8461. (goto-char pos)
  8462. (setq ts (org-schedule arg time)))
  8463. (org-agenda-show-new-time marker ts " S"))
  8464. (message "%s" ts)))
  8465. (defun org-agenda-deadline (arg &optional time)
  8466. "Schedule the item at point.
  8467. ARG is passed through to `org-deadline'."
  8468. (interactive "P")
  8469. (org-agenda-check-type t 'agenda 'timeline 'todo 'tags 'search)
  8470. (org-agenda-check-no-diary)
  8471. (let* ((marker (or (org-get-at-bol 'org-marker)
  8472. (org-agenda-error)))
  8473. (buffer (marker-buffer marker))
  8474. (pos (marker-position marker))
  8475. (org-insert-labeled-timestamps-at-point nil)
  8476. ts)
  8477. (org-with-remote-undo buffer
  8478. (with-current-buffer buffer
  8479. (widen)
  8480. (goto-char pos)
  8481. (setq ts (org-deadline arg time)))
  8482. (org-agenda-show-new-time marker ts " D"))
  8483. (message "%s" ts)))
  8484. (defun org-agenda-clock-in (&optional arg)
  8485. "Start the clock on the currently selected item."
  8486. (interactive "P")
  8487. (org-agenda-check-no-diary)
  8488. (if (equal arg '(4))
  8489. (org-clock-in arg)
  8490. (let* ((marker (or (org-get-at-bol 'org-marker)
  8491. (org-agenda-error)))
  8492. (hdmarker (or (org-get-at-bol 'org-hd-marker)
  8493. marker))
  8494. (pos (marker-position marker))
  8495. newhead)
  8496. (org-with-remote-undo (marker-buffer marker)
  8497. (with-current-buffer (marker-buffer marker)
  8498. (widen)
  8499. (goto-char pos)
  8500. (org-show-context 'agenda)
  8501. (org-show-entry)
  8502. (org-cycle-hide-drawers 'children)
  8503. (org-clock-in arg)
  8504. (setq newhead (org-get-heading)))
  8505. (org-agenda-change-all-lines newhead hdmarker)))))
  8506. (defun org-agenda-clock-out ()
  8507. "Stop the currently running clock."
  8508. (interactive)
  8509. (unless (marker-buffer org-clock-marker)
  8510. (error "No running clock"))
  8511. (let ((marker (make-marker)) newhead)
  8512. (org-with-remote-undo (marker-buffer org-clock-marker)
  8513. (with-current-buffer (marker-buffer org-clock-marker)
  8514. (save-excursion
  8515. (save-restriction
  8516. (widen)
  8517. (goto-char org-clock-marker)
  8518. (org-back-to-heading t)
  8519. (move-marker marker (point))
  8520. (org-clock-out)
  8521. (setq newhead (org-get-heading))))))
  8522. (org-agenda-change-all-lines newhead marker)
  8523. (move-marker marker nil)))
  8524. (defun org-agenda-clock-cancel (&optional arg)
  8525. "Cancel the currently running clock."
  8526. (interactive "P")
  8527. (unless (marker-buffer org-clock-marker)
  8528. (error "No running clock"))
  8529. (org-with-remote-undo (marker-buffer org-clock-marker)
  8530. (org-clock-cancel)))
  8531. (defun org-agenda-clock-goto ()
  8532. "Jump to the currently clocked in task within the agenda.
  8533. If the currently clocked in task is not listed in the agenda
  8534. buffer, display it in another window."
  8535. (interactive)
  8536. (let (pos)
  8537. (mapc (lambda (o)
  8538. (if (eq (overlay-get o 'type) 'org-agenda-clocking)
  8539. (setq pos (overlay-start o))))
  8540. (overlays-in (point-min) (point-max)))
  8541. (cond (pos (goto-char pos))
  8542. ;; If the currently clocked entry is not in the agenda
  8543. ;; buffer, we visit it in another window:
  8544. (org-clock-current-task
  8545. (org-switch-to-buffer-other-window (org-clock-goto)))
  8546. (t (message "No running clock, use `C-c C-x C-j' to jump to the most recent one")))))
  8547. (defun org-agenda-diary-entry-in-org-file ()
  8548. "Make a diary entry in the file `org-agenda-diary-file'."
  8549. (let (d1 d2 char (text "") dp1 dp2)
  8550. (if (equal (buffer-name) "*Calendar*")
  8551. (setq d1 (calendar-cursor-to-date t)
  8552. d2 (car calendar-mark-ring))
  8553. (setq dp1 (get-text-property (point-at-bol) 'day))
  8554. (unless dp1 (error "No date defined in current line"))
  8555. (setq d1 (calendar-gregorian-from-absolute dp1)
  8556. d2 (and (ignore-errors (mark))
  8557. (save-excursion
  8558. (goto-char (mark))
  8559. (setq dp2 (get-text-property (point-at-bol) 'day)))
  8560. (calendar-gregorian-from-absolute dp2))))
  8561. (message "Diary entry: [d]ay [a]nniversary [b]lock [j]ump to date tree")
  8562. (setq char (read-char-exclusive))
  8563. (cond
  8564. ((equal char ?d)
  8565. (setq text (read-string "Day entry: "))
  8566. (org-agenda-add-entry-to-org-agenda-diary-file 'day text d1)
  8567. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  8568. ((equal char ?a)
  8569. (setq d1 (list (car d1) (nth 1 d1)
  8570. (read-number (format "Reference year [%d]: " (nth 2 d1))
  8571. (nth 2 d1))))
  8572. (setq text (read-string "Anniversary (use %d to show years): "))
  8573. (org-agenda-add-entry-to-org-agenda-diary-file 'anniversary text d1)
  8574. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  8575. ((equal char ?b)
  8576. (setq text (read-string "Block entry: "))
  8577. (unless (and d1 d2 (not (equal d1 d2)))
  8578. (error "No block of days selected"))
  8579. (org-agenda-add-entry-to-org-agenda-diary-file 'block text d1 d2)
  8580. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  8581. ((equal char ?j)
  8582. (org-switch-to-buffer-other-window
  8583. (find-file-noselect org-agenda-diary-file))
  8584. (require 'org-datetree)
  8585. (org-datetree-find-date-create d1)
  8586. (org-reveal t))
  8587. (t (error "Invalid selection character `%c'" char)))))
  8588. (defcustom org-agenda-insert-diary-strategy 'date-tree
  8589. "Where in `org-agenda-diary-file' should new entries be added?
  8590. Valid values:
  8591. date-tree in the date tree, as child of the date
  8592. top-level as top-level entries at the end of the file."
  8593. :group 'org-agenda
  8594. :type '(choice
  8595. (const :tag "in a date tree" date-tree)
  8596. (const :tag "as top level at end of file" top-level)))
  8597. (defcustom org-agenda-insert-diary-extract-time nil
  8598. "Non-nil means extract any time specification from the diary entry."
  8599. :group 'org-agenda
  8600. :version "24.1"
  8601. :type 'boolean)
  8602. (defcustom org-agenda-bulk-mark-char ">"
  8603. "A single-character string to be used as the bulk mark."
  8604. :group 'org-agenda
  8605. :version "24.1"
  8606. :type 'string)
  8607. (defun org-agenda-add-entry-to-org-agenda-diary-file (type text &optional d1 d2)
  8608. "Add a diary entry with TYPE to `org-agenda-diary-file'.
  8609. If TEXT is not empty, it will become the headline of the new entry, and
  8610. the resulting entry will not be shown. When TEXT is empty, switch to
  8611. `org-agenda-diary-file' and let the user finish the entry there."
  8612. (let ((cw (current-window-configuration)))
  8613. (org-switch-to-buffer-other-window
  8614. (find-file-noselect org-agenda-diary-file))
  8615. (widen)
  8616. (goto-char (point-min))
  8617. (cond
  8618. ((eq type 'anniversary)
  8619. (or (re-search-forward "^*[ \t]+Anniversaries" nil t)
  8620. (progn
  8621. (or (org-at-heading-p t)
  8622. (progn
  8623. (outline-next-heading)
  8624. (insert "* Anniversaries\n\n")
  8625. (beginning-of-line -1)))))
  8626. (outline-next-heading)
  8627. (org-back-over-empty-lines)
  8628. (backward-char 1)
  8629. (insert "\n")
  8630. (insert (format "%%%%(org-anniversary %d %2d %2d) %s"
  8631. (nth 2 d1) (car d1) (nth 1 d1) text)))
  8632. ((eq type 'day)
  8633. (let ((org-prefix-has-time t)
  8634. (org-agenda-time-leading-zero t)
  8635. fmt time time2)
  8636. (if org-agenda-insert-diary-extract-time
  8637. ;; Use org-agenda-format-item to parse text for a time-range and
  8638. ;; remove it. FIXME: This is a hack, we should refactor
  8639. ;; that function to make time extraction available separately
  8640. (setq fmt (org-agenda-format-item nil text nil nil nil t)
  8641. time (get-text-property 0 'time fmt)
  8642. time2 (if (> (length time) 0)
  8643. ;; split-string removes trailing ...... if
  8644. ;; no end time given. First space
  8645. ;; separates time from date.
  8646. (concat " " (car (split-string time "\\.")))
  8647. nil)
  8648. text (get-text-property 0 'txt fmt)))
  8649. (if (eq org-agenda-insert-diary-strategy 'top-level)
  8650. (org-agenda-insert-diary-as-top-level text)
  8651. (require 'org-datetree)
  8652. (org-datetree-find-date-create d1)
  8653. (org-agenda-insert-diary-make-new-entry text))
  8654. (org-insert-time-stamp (org-time-from-absolute
  8655. (calendar-absolute-from-gregorian d1))
  8656. nil nil nil nil time2))
  8657. (end-of-line 0))
  8658. ((eq type 'block)
  8659. (if (> (calendar-absolute-from-gregorian d1)
  8660. (calendar-absolute-from-gregorian d2))
  8661. (setq d1 (prog1 d2 (setq d2 d1))))
  8662. (if (eq org-agenda-insert-diary-strategy 'top-level)
  8663. (org-agenda-insert-diary-as-top-level text)
  8664. (require 'org-datetree)
  8665. (org-datetree-find-date-create d1)
  8666. (org-agenda-insert-diary-make-new-entry text))
  8667. (org-insert-time-stamp (org-time-from-absolute
  8668. (calendar-absolute-from-gregorian d1)))
  8669. (insert "--")
  8670. (org-insert-time-stamp (org-time-from-absolute
  8671. (calendar-absolute-from-gregorian d2)))
  8672. (end-of-line 0)))
  8673. (if (string-match "\\S-" text)
  8674. (progn
  8675. (set-window-configuration cw)
  8676. (message "%s entry added to %s"
  8677. (capitalize (symbol-name type))
  8678. (abbreviate-file-name org-agenda-diary-file)))
  8679. (org-reveal t)
  8680. (message "Please finish entry here"))))
  8681. (defun org-agenda-insert-diary-as-top-level (text)
  8682. "Make new entry as a top-level entry at the end of the file.
  8683. Add TEXT as headline, and position the cursor in the second line so that
  8684. a timestamp can be added there."
  8685. (widen)
  8686. (goto-char (point-max))
  8687. (or (bolp) (insert "\n"))
  8688. (insert "* " text "\n")
  8689. (if org-adapt-indentation (org-indent-to-column 2)))
  8690. (defun org-agenda-insert-diary-make-new-entry (text)
  8691. "Make new entry as last child of current entry.
  8692. Add TEXT as headline, and position the cursor in the second line so that
  8693. a timestamp can be added there."
  8694. (let ((org-show-following-heading t)
  8695. (org-show-siblings t)
  8696. (org-show-hierarchy-above t)
  8697. (org-show-entry-below t)
  8698. col)
  8699. (outline-next-heading)
  8700. (org-back-over-empty-lines)
  8701. (or (looking-at "[ \t]*$")
  8702. (progn (insert "\n") (backward-char 1)))
  8703. (org-insert-heading nil t)
  8704. (org-do-demote)
  8705. (setq col (current-column))
  8706. (insert text "\n")
  8707. (if org-adapt-indentation (org-indent-to-column col))
  8708. (let ((org-show-following-heading t)
  8709. (org-show-siblings t)
  8710. (org-show-hierarchy-above t)
  8711. (org-show-entry-below t))
  8712. (org-show-context))))
  8713. (defun org-agenda-diary-entry ()
  8714. "Make a diary entry, like the `i' command from the calendar.
  8715. All the standard commands work: block, weekly etc.
  8716. When `org-agenda-diary-file' points to a file,
  8717. `org-agenda-diary-entry-in-org-file' is called instead to create
  8718. entries in that Org-mode file."
  8719. (interactive)
  8720. (if (not (eq org-agenda-diary-file 'diary-file))
  8721. (org-agenda-diary-entry-in-org-file)
  8722. (require 'diary-lib)
  8723. (let* ((char (progn
  8724. (message "Diary entry: [d]ay [w]eekly [m]onthly [y]early [a]nniversary [b]lock [c]yclic")
  8725. (read-char-exclusive)))
  8726. (cmd (cdr (assoc char
  8727. '((?d . insert-diary-entry)
  8728. (?w . insert-weekly-diary-entry)
  8729. (?m . insert-monthly-diary-entry)
  8730. (?y . insert-yearly-diary-entry)
  8731. (?a . insert-anniversary-diary-entry)
  8732. (?b . insert-block-diary-entry)
  8733. (?c . insert-cyclic-diary-entry)))))
  8734. (oldf (symbol-function 'calendar-cursor-to-date))
  8735. ;; (buf (get-file-buffer (substitute-in-file-name diary-file)))
  8736. (point (point))
  8737. (mark (or (mark t) (point))))
  8738. (unless cmd
  8739. (error "No command associated with <%c>" char))
  8740. (unless (and (get-text-property point 'day)
  8741. (or (not (equal ?b char))
  8742. (get-text-property mark 'day)))
  8743. (error "Don't know which date to use for diary entry"))
  8744. ;; We implement this by hacking the `calendar-cursor-to-date' function
  8745. ;; and the `calendar-mark-ring' variable. Saves a lot of code.
  8746. (let ((calendar-mark-ring
  8747. (list (calendar-gregorian-from-absolute
  8748. (or (get-text-property mark 'day)
  8749. (get-text-property point 'day))))))
  8750. (unwind-protect
  8751. (progn
  8752. (fset 'calendar-cursor-to-date
  8753. (lambda (&optional error dummy)
  8754. (calendar-gregorian-from-absolute
  8755. (get-text-property point 'day))))
  8756. (call-interactively cmd))
  8757. (fset 'calendar-cursor-to-date oldf))))))
  8758. (defun org-agenda-execute-calendar-command (cmd)
  8759. "Execute a calendar command from the agenda with date from cursor."
  8760. (org-agenda-check-type t 'agenda 'timeline)
  8761. (require 'diary-lib)
  8762. (unless (get-text-property (min (1- (point-max)) (point)) 'day)
  8763. (error "Don't know which date to use for the calendar command"))
  8764. (let* ((oldf (symbol-function 'calendar-cursor-to-date))
  8765. (point (point))
  8766. (date (calendar-gregorian-from-absolute
  8767. (get-text-property point 'day)))
  8768. ;; the following 2 vars are needed in the calendar
  8769. (displayed-month (car date))
  8770. (displayed-year (nth 2 date)))
  8771. (unwind-protect
  8772. (progn
  8773. (fset 'calendar-cursor-to-date
  8774. (lambda (&optional error dummy)
  8775. (calendar-gregorian-from-absolute
  8776. (get-text-property point 'day))))
  8777. (call-interactively cmd))
  8778. (fset 'calendar-cursor-to-date oldf))))
  8779. (defun org-agenda-phases-of-moon ()
  8780. "Display the phases of the moon for the 3 months around the cursor date."
  8781. (interactive)
  8782. (org-agenda-execute-calendar-command 'calendar-phases-of-moon))
  8783. (defun org-agenda-holidays ()
  8784. "Display the holidays for the 3 months around the cursor date."
  8785. (interactive)
  8786. (org-agenda-execute-calendar-command 'list-calendar-holidays))
  8787. (defvar calendar-longitude) ; defined in calendar.el
  8788. (defvar calendar-latitude) ; defined in calendar.el
  8789. (defvar calendar-location-name) ; defined in calendar.el
  8790. (defun org-agenda-sunrise-sunset (arg)
  8791. "Display sunrise and sunset for the cursor date.
  8792. Latitude and longitude can be specified with the variables
  8793. `calendar-latitude' and `calendar-longitude'. When called with prefix
  8794. argument, latitude and longitude will be prompted for."
  8795. (interactive "P")
  8796. (require 'solar)
  8797. (let ((calendar-longitude (if arg nil calendar-longitude))
  8798. (calendar-latitude (if arg nil calendar-latitude))
  8799. (calendar-location-name
  8800. (if arg "the given coordinates" calendar-location-name)))
  8801. (org-agenda-execute-calendar-command 'calendar-sunrise-sunset)))
  8802. (defun org-agenda-goto-calendar ()
  8803. "Open the Emacs calendar with the date at the cursor."
  8804. (interactive)
  8805. (org-agenda-check-type t 'agenda 'timeline)
  8806. (let* ((day (or (get-text-property (min (1- (point-max)) (point)) 'day)
  8807. (error "Don't know which date to open in calendar")))
  8808. (date (calendar-gregorian-from-absolute day))
  8809. (calendar-move-hook nil)
  8810. (calendar-view-holidays-initially-flag nil)
  8811. (calendar-view-diary-initially-flag nil))
  8812. (calendar)
  8813. (calendar-goto-date date)))
  8814. ;;;###autoload
  8815. (defun org-calendar-goto-agenda ()
  8816. "Compute the Org-mode agenda for the calendar date displayed at the cursor.
  8817. This is a command that has to be installed in `calendar-mode-map'."
  8818. (interactive)
  8819. (org-agenda-list nil (calendar-absolute-from-gregorian
  8820. (calendar-cursor-to-date))
  8821. nil))
  8822. (autoload 'org-calendar-goto-agenda "org-agenda" "\
  8823. Compute the Org-mode agenda for the calendar date displayed at the cursor.
  8824. This is a command that has to be installed in `calendar-mode-map'.
  8825. \(fn)" t nil)
  8826. (defun org-agenda-convert-date ()
  8827. (interactive)
  8828. (org-agenda-check-type t 'agenda 'timeline)
  8829. (let ((day (get-text-property (min (1- (point-max)) (point)) 'day))
  8830. date s)
  8831. (unless day
  8832. (error "Don't know which date to convert"))
  8833. (setq date (calendar-gregorian-from-absolute day))
  8834. (setq s (concat
  8835. "Gregorian: " (calendar-date-string date) "\n"
  8836. "ISO: " (calendar-iso-date-string date) "\n"
  8837. "Day of Yr: " (calendar-day-of-year-string date) "\n"
  8838. "Julian: " (calendar-julian-date-string date) "\n"
  8839. "Astron. JD: " (calendar-astro-date-string date)
  8840. " (Julian date number at noon UTC)\n"
  8841. "Hebrew: " (calendar-hebrew-date-string date) " (until sunset)\n"
  8842. "Islamic: " (calendar-islamic-date-string date) " (until sunset)\n"
  8843. "French: " (calendar-french-date-string date) "\n"
  8844. "Baha'i: " (calendar-bahai-date-string date) " (until sunset)\n"
  8845. "Mayan: " (calendar-mayan-date-string date) "\n"
  8846. "Coptic: " (calendar-coptic-date-string date) "\n"
  8847. "Ethiopic: " (calendar-ethiopic-date-string date) "\n"
  8848. "Persian: " (calendar-persian-date-string date) "\n"
  8849. "Chinese: " (calendar-chinese-date-string date) "\n"))
  8850. (with-output-to-temp-buffer "*Dates*"
  8851. (princ s))
  8852. (org-fit-window-to-buffer (get-buffer-window "*Dates*"))))
  8853. ;;; Bulk commands
  8854. (defun org-agenda-bulk-marked-p ()
  8855. (eq (get-char-property (point-at-bol) 'type)
  8856. 'org-marked-entry-overlay))
  8857. (defun org-agenda-bulk-mark (&optional arg)
  8858. "Mark the entry at point for future bulk action."
  8859. (interactive "p")
  8860. (dotimes (i (or arg 1))
  8861. (unless (org-get-at-bol 'org-agenda-diary-link)
  8862. (let* ((m (org-get-at-bol 'org-hd-marker))
  8863. ov)
  8864. (unless (org-agenda-bulk-marked-p)
  8865. (unless m (error "Nothing to mark at point"))
  8866. (push m org-agenda-bulk-marked-entries)
  8867. (setq ov (make-overlay (point-at-bol) (+ 2 (point-at-bol))))
  8868. (org-overlay-display ov (concat org-agenda-bulk-mark-char " ")
  8869. (org-get-todo-face "TODO")
  8870. 'evaporate)
  8871. (overlay-put ov 'type 'org-marked-entry-overlay))
  8872. (beginning-of-line 2)
  8873. (while (and (get-char-property (point) 'invisible) (not (eobp)))
  8874. (beginning-of-line 2))
  8875. (message "%d entries marked for bulk action"
  8876. (length org-agenda-bulk-marked-entries))))))
  8877. (defun org-agenda-bulk-mark-all ()
  8878. "Mark all entries for future agenda bulk action."
  8879. (interactive)
  8880. (org-agenda-bulk-mark-regexp "."))
  8881. (defun org-agenda-bulk-mark-regexp (regexp)
  8882. "Mark entries matching REGEXP for future agenda bulk action."
  8883. (interactive "sMark entries matching regexp: ")
  8884. (let ((entries-marked 0))
  8885. (save-excursion
  8886. (goto-char (point-min))
  8887. (goto-char (next-single-property-change (point) 'txt))
  8888. (while (re-search-forward regexp nil t)
  8889. (when (string-match regexp (get-text-property (point) 'txt))
  8890. (setq entries-marked (1+ entries-marked))
  8891. (call-interactively 'org-agenda-bulk-mark))))
  8892. (if (not entries-marked)
  8893. (message "No entry matching this regexp."))))
  8894. (defun org-agenda-bulk-unmark (&optional arg)
  8895. "Unmark the entry at point for future bulk action."
  8896. (interactive "P")
  8897. (if arg
  8898. (org-agenda-bulk-unmark-all)
  8899. (cond ((org-agenda-bulk-marked-p)
  8900. (org-agenda-bulk-remove-overlays
  8901. (point-at-bol) (+ 2 (point-at-bol)))
  8902. (setq org-agenda-bulk-marked-entries
  8903. (delete (org-get-at-bol 'org-hd-marker)
  8904. org-agenda-bulk-marked-entries))
  8905. (beginning-of-line 2)
  8906. (while (and (get-char-property (point) 'invisible) (not (eobp)))
  8907. (beginning-of-line 2))
  8908. (message "%d entries left marked for bulk action"
  8909. (length org-agenda-bulk-marked-entries)))
  8910. (t (message "No entry to unmark here")))))
  8911. (defun org-agenda-bulk-toggle ()
  8912. "Toggle marking the entry at point for bulk action."
  8913. (interactive)
  8914. (if (org-agenda-bulk-marked-p)
  8915. (org-agenda-bulk-unmark)
  8916. (org-agenda-bulk-mark)))
  8917. (defun org-agenda-bulk-remove-overlays (&optional beg end)
  8918. "Remove the mark overlays between BEG and END in the agenda buffer.
  8919. BEG and END default to the buffer limits.
  8920. This only removes the overlays, it does not remove the markers
  8921. from the list in `org-agenda-bulk-marked-entries'."
  8922. (interactive)
  8923. (mapc (lambda (ov)
  8924. (and (eq (overlay-get ov 'type) 'org-marked-entry-overlay)
  8925. (delete-overlay ov)))
  8926. (overlays-in (or beg (point-min)) (or end (point-max)))))
  8927. (defun org-agenda-bulk-unmark-all ()
  8928. "Remove all marks in the agenda buffer.
  8929. This will remove the markers and the overlays."
  8930. (interactive)
  8931. (if (null org-agenda-bulk-marked-entries)
  8932. (message "No entry to unmark")
  8933. (mapc (lambda (m) (move-marker m nil)) org-agenda-bulk-marked-entries)
  8934. (setq org-agenda-bulk-marked-entries nil)
  8935. (org-agenda-bulk-remove-overlays (point-min) (point-max))))
  8936. (defcustom org-agenda-persistent-marks nil
  8937. "Non-nil means marked items will stay marked after a bulk action.
  8938. You can toggle this interactively by typing `p' when prompted for a
  8939. bulk action."
  8940. :group 'org-agenda
  8941. :version "24.1"
  8942. :type 'boolean)
  8943. (defun org-agenda-bulk-action (&optional arg)
  8944. "Execute an remote-editing action on all marked entries.
  8945. The prefix arg is passed through to the command if possible."
  8946. (interactive "P")
  8947. ;; Make sure we have markers, and only valid ones
  8948. (unless org-agenda-bulk-marked-entries (error "No entries are marked"))
  8949. (mapc
  8950. (lambda (m)
  8951. (unless (and (markerp m)
  8952. (marker-buffer m)
  8953. (buffer-live-p (marker-buffer m))
  8954. (marker-position m))
  8955. (error "Marker %s for bulk command is invalid" m)))
  8956. org-agenda-bulk-marked-entries)
  8957. ;; Prompt for the bulk command
  8958. (let* ((msg (if org-agenda-persistent-marks "Bulk (persistent): " "Bulk: ")))
  8959. (message (concat msg "[$]arch [A]rch->sib [t]odo [+/-]tag [s]chd [d]eadline [r]efile "
  8960. "[S]catter [f]unction "
  8961. (when org-agenda-bulk-custom-functions
  8962. (concat " Custom: ["
  8963. (mapconcat (lambda(f) (char-to-string (car f)))
  8964. org-agenda-bulk-custom-functions "")
  8965. "]"))))
  8966. (catch 'exit
  8967. (let* ((action (read-char-exclusive))
  8968. (org-log-refile (if org-log-refile 'time nil))
  8969. (entries (reverse org-agenda-bulk-marked-entries))
  8970. (org-overriding-default-time
  8971. (if (get-text-property (point) 'org-agenda-date-header)
  8972. (org-get-cursor-date)))
  8973. redo-at-end
  8974. cmd rfloc state e tag pos (cnt 0) (cntskip 0))
  8975. (cond
  8976. ((equal action ?p)
  8977. (let ((org-agenda-persistent-marks
  8978. (not org-agenda-persistent-marks)))
  8979. (org-agenda-bulk-action)
  8980. (throw 'exit nil)))
  8981. ((equal action ?$)
  8982. (setq cmd '(org-agenda-archive)))
  8983. ((equal action ?A)
  8984. (setq cmd '(org-agenda-archive-to-archive-sibling)))
  8985. ((member action '(?r ?w))
  8986. (setq rfloc (org-refile-get-location
  8987. "Refile to"
  8988. (marker-buffer (car entries))
  8989. org-refile-allow-creating-parent-nodes))
  8990. (if (nth 3 rfloc)
  8991. (setcar (nthcdr 3 rfloc)
  8992. (move-marker (make-marker) (nth 3 rfloc)
  8993. (or (get-file-buffer (nth 1 rfloc))
  8994. (find-buffer-visiting (nth 1 rfloc))
  8995. (error "This should not happen")))))
  8996. (setq cmd (list 'org-agenda-refile nil (list 'quote rfloc) t)
  8997. redo-at-end t))
  8998. ((equal action ?t)
  8999. (setq state (org-icompleting-read
  9000. "Todo state: "
  9001. (with-current-buffer (marker-buffer (car entries))
  9002. (mapcar 'list org-todo-keywords-1))))
  9003. (setq cmd `(let ((org-inhibit-blocking t)
  9004. (org-inhibit-logging 'note))
  9005. (org-agenda-todo ,state))))
  9006. ((memq action '(?- ?+))
  9007. (setq tag (org-icompleting-read
  9008. (format "Tag to %s: " (if (eq action ?+) "add" "remove"))
  9009. (with-current-buffer (marker-buffer (car entries))
  9010. (delq nil
  9011. (mapcar (lambda (x)
  9012. (if (stringp (car x)) x)) org-tag-alist)))))
  9013. (setq cmd `(org-agenda-set-tags ,tag ,(if (eq action ?+) ''on ''off))))
  9014. ((memq action '(?s ?d))
  9015. (let* ((time
  9016. (unless arg
  9017. (org-read-date
  9018. nil nil nil
  9019. (if (eq action ?s) "(Re)Schedule to" "(Re)Set Deadline to")
  9020. org-overriding-default-time)))
  9021. (c1 (if (eq action ?s) 'org-agenda-schedule 'org-agenda-deadline)))
  9022. (setq cmd `(eval '(,c1 arg ,time)))))
  9023. ((equal action ?S)
  9024. (if (not (org-agenda-check-type nil 'agenda 'timeline 'todo))
  9025. (error "Can't scatter tasks in \"%s\" agenda view" org-agenda-type)
  9026. (let ((days (read-number
  9027. (format "Scatter tasks across how many %sdays: "
  9028. (if arg "week" "")) 7)))
  9029. (setq cmd
  9030. `(let ((distance (1+ (random ,days))))
  9031. (if arg
  9032. (let ((dist distance)
  9033. (day-of-week
  9034. (calendar-day-of-week
  9035. (calendar-gregorian-from-absolute (org-today)))))
  9036. (dotimes (i (1+ dist))
  9037. (while (member day-of-week org-agenda-weekend-days)
  9038. (incf distance)
  9039. (incf day-of-week)
  9040. (if (= day-of-week 7)
  9041. (setq day-of-week 0)))
  9042. (incf day-of-week)
  9043. (if (= day-of-week 7)
  9044. (setq day-of-week 0)))))
  9045. ;; silently fail when try to replan a sexp entry
  9046. (condition-case nil
  9047. (let* ((date (calendar-gregorian-from-absolute
  9048. (+ (org-today) distance)))
  9049. (time (encode-time 0 0 0 (nth 1 date) (nth 0 date)
  9050. (nth 2 date))))
  9051. (org-agenda-schedule nil time))
  9052. (error nil)))))))
  9053. ((assoc action org-agenda-bulk-custom-functions)
  9054. (setq cmd (list (cadr (assoc action org-agenda-bulk-custom-functions)))
  9055. redo-at-end t))
  9056. ((equal action ?f)
  9057. (setq cmd (list (intern
  9058. (org-icompleting-read "Function: "
  9059. obarray 'fboundp t nil nil)))))
  9060. (t (error "Invalid bulk action")))
  9061. ;; Sort the markers, to make sure that parents are handled before children
  9062. (setq entries (sort entries
  9063. (lambda (a b)
  9064. (cond
  9065. ((equal (marker-buffer a) (marker-buffer b))
  9066. (< (marker-position a) (marker-position b)))
  9067. (t
  9068. (string< (buffer-name (marker-buffer a))
  9069. (buffer-name (marker-buffer b))))))))
  9070. ;; Now loop over all markers and apply cmd
  9071. (while (setq e (pop entries))
  9072. (setq pos (text-property-any (point-min) (point-max) 'org-hd-marker e))
  9073. (if (not pos)
  9074. (progn (message "Skipping removed entry at %s" e)
  9075. (setq cntskip (1+ cntskip)))
  9076. (goto-char pos)
  9077. (let (org-loop-over-headlines-in-active-region)
  9078. (eval cmd))
  9079. (setq cnt (1+ cnt))))
  9080. (when redo-at-end (org-agenda-redo))
  9081. (unless org-agenda-persistent-marks
  9082. (org-agenda-bulk-unmark-all))
  9083. (message "Acted on %d entries%s%s"
  9084. cnt
  9085. (if (= cntskip 0)
  9086. ""
  9087. (format ", skipped %d (disappeared before their turn)"
  9088. cntskip))
  9089. (if (not org-agenda-persistent-marks)
  9090. "" " (kept marked)"))))))
  9091. (defun org-agenda-capture (&optional with-time)
  9092. "Call `org-capture' with the date at point.
  9093. With a `C-1' prefix, use the HH:MM value at point (if any) or the
  9094. current HH:MM time."
  9095. (interactive "P")
  9096. (if (not (eq major-mode 'org-agenda-mode))
  9097. (user-error "You cannot do this outside of agenda buffers")
  9098. (let ((org-overriding-default-time
  9099. (org-get-cursor-date (equal with-time 1))))
  9100. (call-interactively 'org-capture))))
  9101. ;;; Flagging notes
  9102. (defun org-agenda-show-the-flagging-note ()
  9103. "Display the flagging note in the other window.
  9104. When called a second time in direct sequence, offer to remove the FLAGGING
  9105. tag and (if present) the flagging note."
  9106. (interactive)
  9107. (let ((hdmarker (org-get-at-bol 'org-hd-marker))
  9108. (win (selected-window))
  9109. note heading newhead)
  9110. (unless hdmarker
  9111. (error "No linked entry at point"))
  9112. (if (and (eq this-command last-command)
  9113. (y-or-n-p "Unflag and remove any flagging note? "))
  9114. (progn
  9115. (org-agenda-remove-flag hdmarker)
  9116. (let ((win (get-buffer-window "*Flagging Note*")))
  9117. (and win (delete-window win)))
  9118. (message "Entry unflagged"))
  9119. (setq note (org-entry-get hdmarker "THEFLAGGINGNOTE"))
  9120. (unless note
  9121. (error "No flagging note"))
  9122. (org-kill-new note)
  9123. (org-switch-to-buffer-other-window "*Flagging Note*")
  9124. (erase-buffer)
  9125. (insert note)
  9126. (goto-char (point-min))
  9127. (while (re-search-forward "\\\\n" nil t)
  9128. (replace-match "\n" t t))
  9129. (goto-char (point-min))
  9130. (select-window win)
  9131. (message "Flagging note pushed to kill ring. Press [?] again to remove tag and note"))))
  9132. (defun org-agenda-remove-flag (marker)
  9133. "Remove the FLAGGED tag and any flagging note in the entry."
  9134. (let (newhead)
  9135. (org-with-point-at marker
  9136. (org-toggle-tag "FLAGGED" 'off)
  9137. (org-entry-delete nil "THEFLAGGINGNOTE")
  9138. (setq newhead (org-get-heading)))
  9139. (org-agenda-change-all-lines newhead marker)
  9140. (message "Entry unflagged")))
  9141. (defun org-agenda-get-any-marker (&optional pos)
  9142. (or (get-text-property (or pos (point-at-bol)) 'org-hd-marker)
  9143. (get-text-property (or pos (point-at-bol)) 'org-marker)))
  9144. ;;; Appointment reminders
  9145. (defvar appt-time-msg-list) ; defined in appt.el
  9146. ;;;###autoload
  9147. (defun org-agenda-to-appt (&optional refresh filter &rest args)
  9148. "Activate appointments found in `org-agenda-files'.
  9149. With a \\[universal-argument] prefix, refresh the list of
  9150. appointments.
  9151. If FILTER is t, interactively prompt the user for a regular
  9152. expression, and filter out entries that don't match it.
  9153. If FILTER is a string, use this string as a regular expression
  9154. for filtering entries out.
  9155. If FILTER is a function, filter out entries against which
  9156. calling the function returns nil. This function takes one
  9157. argument: an entry from `org-agenda-get-day-entries'.
  9158. FILTER can also be an alist with the car of each cell being
  9159. either 'headline or 'category. For example:
  9160. '((headline \"IMPORTANT\")
  9161. (category \"Work\"))
  9162. will only add headlines containing IMPORTANT or headlines
  9163. belonging to the \"Work\" category.
  9164. ARGS are symbols indicating what kind of entries to consider.
  9165. By default `org-agenda-to-appt' will use :deadline, :scheduled
  9166. and :timestamp entries. See the docstring of `org-diary' for
  9167. details and examples.
  9168. If an entry as a APPT_WARNTIME property, its value will be used
  9169. to override `appt-message-warning-time'."
  9170. (interactive "P")
  9171. (if refresh (setq appt-time-msg-list nil))
  9172. (if (eq filter t)
  9173. (setq filter (read-from-minibuffer "Regexp filter: ")))
  9174. (let* ((cnt 0) ; count added events
  9175. (scope (or args '(:deadline :scheduled :timestamp)))
  9176. (org-agenda-new-buffers nil)
  9177. (org-deadline-warning-days 0)
  9178. ;; Do not use `org-today' here because appt only takes
  9179. ;; time and without date as argument, so it may pass wrong
  9180. ;; information otherwise
  9181. (today (org-date-to-gregorian
  9182. (time-to-days (current-time))))
  9183. (org-agenda-restrict nil)
  9184. (files (org-agenda-files 'unrestricted)) entries file
  9185. (org-agenda-buffer nil))
  9186. ;; Get all entries which may contain an appt
  9187. (org-agenda-prepare-buffers files)
  9188. (while (setq file (pop files))
  9189. (setq entries
  9190. (delq nil
  9191. (append entries
  9192. (apply 'org-agenda-get-day-entries
  9193. file today scope)))))
  9194. ;; Map thru entries and find if we should filter them out
  9195. (mapc
  9196. (lambda(x)
  9197. (let* ((evt (org-trim (or (get-text-property 1 'txt x) "")))
  9198. (cat (get-text-property 1 'org-category x))
  9199. (tod (get-text-property 1 'time-of-day x))
  9200. (ok (or (null filter)
  9201. (and (stringp filter) (string-match filter evt))
  9202. (and (functionp filter) (funcall filter x))
  9203. (and (listp filter)
  9204. (let ((cat-filter (cadr (assoc 'category filter)))
  9205. (evt-filter (cadr (assoc 'headline filter))))
  9206. (or (and (stringp cat-filter)
  9207. (string-match cat-filter cat))
  9208. (and (stringp evt-filter)
  9209. (string-match evt-filter evt)))))))
  9210. (wrn (get-text-property 1 'warntime x)))
  9211. ;; FIXME: Shall we remove text-properties for the appt text?
  9212. ;; (setq evt (set-text-properties 0 (length evt) nil evt))
  9213. (when (and ok tod)
  9214. (setq tod (concat "00" (number-to-string tod))
  9215. tod (when (string-match
  9216. "\\([0-9]\\{1,2\\}\\)\\([0-9]\\{2\\}\\)\\'" tod)
  9217. (concat (match-string 1 tod) ":"
  9218. (match-string 2 tod))))
  9219. (if (version< emacs-version "23.3")
  9220. (appt-add tod evt)
  9221. (appt-add tod evt wrn))
  9222. (setq cnt (1+ cnt))))) entries)
  9223. (org-release-buffers org-agenda-new-buffers)
  9224. (if (eq cnt 0)
  9225. (message "No event to add")
  9226. (message "Added %d event%s for today" cnt (if (> cnt 1) "s" "")))))
  9227. (autoload 'org-agenda-to-appt "org-agenda" "\
  9228. Activate appointments found in `org-agenda-files'.
  9229. With a \\[universal-argument] prefix, refresh the list of
  9230. appointments.
  9231. If FILTER is t, interactively prompt the user for a regular
  9232. expression, and filter out entries that don't match it.
  9233. If FILTER is a string, use this string as a regular expression
  9234. for filtering entries out.
  9235. If FILTER is a function, filter out entries against which
  9236. calling the function returns nil. This function takes one
  9237. argument: an entry from `org-agenda-get-day-entries'.
  9238. FILTER can also be an alist with the car of each cell being
  9239. either 'headline or 'category. For example:
  9240. '((headline \"IMPORTANT\")
  9241. (category \"Work\"))
  9242. will only add headlines containing IMPORTANT or headlines
  9243. belonging to the \"Work\" category.
  9244. ARGS are symbols indicating what kind of entries to consider.
  9245. By default `org-agenda-to-appt' will use :deadline, :scheduled
  9246. and :timestamp entries. See the docstring of `org-diary' for
  9247. details and examples.
  9248. If an entry as a APPT_WARNTIME property, its value will be used
  9249. to override `appt-message-warning-time'.
  9250. \(fn &optional REFRESH FILTER &rest ARGS)" t nil)
  9251. (defun org-agenda-todayp (date)
  9252. "Does DATE mean today, when considering `org-extend-today-until'?"
  9253. (let ((today (org-today))
  9254. (date (if (and date (listp date)) (calendar-absolute-from-gregorian date)
  9255. date)))
  9256. (eq date today)))
  9257. (defun org-agenda-todo-yesterday (&optional arg)
  9258. "Like `org-agenda-todo' but the time of change will be 23:59 of yesterday."
  9259. (interactive "P")
  9260. (let* ((hour (third (decode-time
  9261. (org-current-time))))
  9262. (org-extend-today-until (1+ hour)))
  9263. (org-agenda-todo arg)))
  9264. (provide 'org-agenda)
  9265. ;;; org-agenda.el ends here