org-agenda.el 349 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084
  1. ;;; org-agenda.el --- Dynamic task and appointment lists for Org
  2. ;; Copyright (C) 2004-2012 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. (defvar calendar-mode-map)
  78. (defvar org-clock-current-task) ; defined in org-clock.el
  79. (defvar org-mobile-force-id-on-agenda-items) ; defined in org-mobile.el
  80. (defvar org-habit-show-habits)
  81. (defvar org-habit-show-habits-only-for-today)
  82. (defvar org-habit-show-all-today nil)
  83. ;; Defined somewhere in this file, but used before definition.
  84. (defvar org-agenda-buffer-name)
  85. (defvar org-agenda-overriding-header)
  86. (defvar org-agenda-title-append nil)
  87. (org-no-warnings (defvar entry)) ;; unprefixed, from calendar.el
  88. (org-no-warnings (defvar date)) ;; unprefixed, from calendar.el
  89. (defvar org-agenda-undo-list)
  90. (defvar org-agenda-pending-undo-list)
  91. (defvar original-date) ; dynamically scoped, calendar.el does scope this
  92. (defcustom org-agenda-confirm-kill 1
  93. "When set, remote killing from the agenda buffer needs confirmation.
  94. When t, a confirmation is always needed. When a number N, confirmation is
  95. only needed when the text to be killed contains more than N non-white lines."
  96. :group 'org-agenda
  97. :type '(choice
  98. (const :tag "Never" nil)
  99. (const :tag "Always" t)
  100. (integer :tag "When more than N lines")))
  101. (defcustom org-agenda-compact-blocks nil
  102. "Non-nil means make the block agenda more compact.
  103. This is done globally by leaving out lines like the agenda span
  104. name and week number or the separator lines."
  105. :group 'org-agenda
  106. :type 'boolean)
  107. (defcustom org-agenda-block-separator ?=
  108. "The separator between blocks in the agenda.
  109. If this is a string, it will be used as the separator, with a newline added.
  110. If it is a character, it will be repeated to fill the window width.
  111. If nil the separator is disabled. In `org-agenda-custom-commands' this
  112. addresses the separator between the current and the previous block."
  113. :group 'org-agenda
  114. :type '(choice
  115. (const :tag "Disabled" nil)
  116. (character)
  117. (string)))
  118. (defgroup org-agenda-export nil
  119. "Options concerning exporting agenda views in Org-mode."
  120. :tag "Org Agenda Export"
  121. :group 'org-agenda)
  122. (defcustom org-agenda-with-colors t
  123. "Non-nil means use colors in agenda views."
  124. :group 'org-agenda-export
  125. :type 'boolean)
  126. (defcustom org-agenda-exporter-settings nil
  127. "Alist of variable/value pairs that should be active during agenda export.
  128. This is a good place to set options for ps-print and for htmlize.
  129. Note that the way this is implemented, the values will be evaluated
  130. before assigned to the variables. So make sure to quote values you do
  131. *not* want evaluated, for example
  132. (setq org-agenda-exporter-settings
  133. '((ps-print-color-p 'black-white)))"
  134. :group 'org-agenda-export
  135. :type '(repeat
  136. (list
  137. (variable)
  138. (sexp :tag "Value"))))
  139. (defcustom org-agenda-before-write-hook '(org-agenda-add-entry-text)
  140. "Hook run in temporary buffer before writing it to an export file.
  141. A useful function is `org-agenda-add-entry-text'."
  142. :group 'org-agenda-export
  143. :type 'hook
  144. :options '(org-agenda-add-entry-text))
  145. (defcustom org-agenda-add-entry-text-maxlines 0
  146. "Maximum number of entry text lines to be added to agenda.
  147. This is only relevant when `org-agenda-add-entry-text' is part of
  148. `org-agenda-before-write-hook', which it is by default.
  149. When this is 0, nothing will happen. When it is greater than 0, it
  150. specifies the maximum number of lines that will be added for each entry
  151. that is listed in the agenda view.
  152. Note that this variable is not used during display, only when exporting
  153. the agenda. For agenda display, see the variables `org-agenda-entry-text-mode'
  154. and `org-agenda-entry-text-maxlines'."
  155. :group 'org-agenda
  156. :type 'integer)
  157. (defcustom org-agenda-add-entry-text-descriptive-links t
  158. "Non-nil means export org-links as descriptive links in agenda added text.
  159. This variable applies to the text added to the agenda when
  160. `org-agenda-add-entry-text-maxlines' is larger than 0.
  161. When this variable nil, the URL will (also) be shown."
  162. :group 'org-agenda
  163. :type 'boolean)
  164. (defcustom org-agenda-export-html-style ""
  165. "The style specification for exported HTML Agenda files.
  166. If this variable contains a string, it will replace the default <style>
  167. section as produced by `htmlize'.
  168. Since there are different ways of setting style information, this variable
  169. needs to contain the full HTML structure to provide a style, including the
  170. surrounding HTML tags. The style specifications should include definitions
  171. the fonts used by the agenda, here is an example:
  172. <style type=\"text/css\">
  173. p { font-weight: normal; color: gray; }
  174. .org-agenda-structure {
  175. font-size: 110%;
  176. color: #003399;
  177. font-weight: 600;
  178. }
  179. .org-todo {
  180. color: #cc6666;
  181. font-weight: bold;
  182. }
  183. .org-agenda-done {
  184. color: #339933;
  185. }
  186. .org-done {
  187. color: #339933;
  188. }
  189. .title { text-align: center; }
  190. .todo, .deadline { color: red; }
  191. .done { color: green; }
  192. </style>
  193. or, if you want to keep the style in a file,
  194. <link rel=\"stylesheet\" type=\"text/css\" href=\"mystyles.css\">
  195. As the value of this option simply gets inserted into the HTML <head> header,
  196. you can \"misuse\" it to also add other text to the header. However,
  197. <style>...</style> is required, if not present the variable will be ignored."
  198. :group 'org-agenda-export
  199. :group 'org-export-html
  200. :type 'string)
  201. (defcustom org-agenda-persistent-filter nil
  202. "When set, keep filters from one agenda view to the next."
  203. :group 'org-agenda
  204. :type 'boolean)
  205. (defgroup org-agenda-custom-commands nil
  206. "Options concerning agenda views in Org-mode."
  207. :tag "Org Agenda Custom Commands"
  208. :group 'org-agenda)
  209. (defconst org-sorting-choice
  210. '(choice
  211. (const time-up) (const time-down)
  212. (const category-keep) (const category-up) (const category-down)
  213. (const tag-down) (const tag-up)
  214. (const priority-up) (const priority-down)
  215. (const todo-state-up) (const todo-state-down)
  216. (const effort-up) (const effort-down)
  217. (const habit-up) (const habit-down)
  218. (const alpha-up) (const alpha-down)
  219. (const user-defined-up) (const user-defined-down))
  220. "Sorting choices.")
  221. ;; Keep custom values for `org-agenda-filter-preset' compatible with
  222. ;; the new variable `org-agenda-tag-filter-preset'.
  223. (if (fboundp 'defvaralias)
  224. (defvaralias 'org-agenda-filter-preset 'org-agenda-tag-filter-preset)
  225. (defvaralias 'org-agenda-filter 'org-agenda-tag-filter))
  226. (defconst org-agenda-custom-commands-local-options
  227. `(repeat :tag "Local settings for this command. Remember to quote values"
  228. (choice :tag "Setting"
  229. (list :tag "Heading for this block"
  230. (const org-agenda-overriding-header)
  231. (string :tag "Headline"))
  232. (list :tag "Files to be searched"
  233. (const org-agenda-files)
  234. (list
  235. (const :format "" quote)
  236. (repeat (file))))
  237. (list :tag "Sorting strategy"
  238. (const org-agenda-sorting-strategy)
  239. (list
  240. (const :format "" quote)
  241. (repeat
  242. ,org-sorting-choice)))
  243. (list :tag "Prefix format"
  244. (const org-agenda-prefix-format :value " %-12:c%?-12t% s")
  245. (string))
  246. (list :tag "Number of days in agenda"
  247. (const org-agenda-span)
  248. (choice (const :tag "Day" 'day)
  249. (const :tag "Week" 'week)
  250. (const :tag "Month" 'month)
  251. (const :tag "Year" 'year)
  252. (integer :tag "Custom")))
  253. (list :tag "Fixed starting date"
  254. (const org-agenda-start-day)
  255. (string :value "2007-11-01"))
  256. (list :tag "Start on day of week"
  257. (const org-agenda-start-on-weekday)
  258. (choice :value 1
  259. (const :tag "Today" nil)
  260. (integer :tag "Weekday No.")))
  261. (list :tag "Include data from diary"
  262. (const org-agenda-include-diary)
  263. (boolean))
  264. (list :tag "Deadline Warning days"
  265. (const org-deadline-warning-days)
  266. (integer :value 1))
  267. (list :tag "Category filter preset"
  268. (const org-agenda-category-filter-preset)
  269. (list
  270. (const :format "" quote)
  271. (repeat
  272. (string :tag "+category or -category"))))
  273. (list :tag "Tags filter preset"
  274. (const org-agenda-tag-filter-preset)
  275. (list
  276. (const :format "" quote)
  277. (repeat
  278. (string :tag "+tag or -tag"))))
  279. (list :tag "Set daily/weekly entry types"
  280. (const org-agenda-entry-types)
  281. (list
  282. (const :format "" quote)
  283. (set :greedy t :value (:deadline :scheduled :timestamp :sexp)
  284. (const :deadline)
  285. (const :scheduled)
  286. (const :timestamp)
  287. (const :sexp))))
  288. (list :tag "Standard skipping condition"
  289. :value (org-agenda-skip-function '(org-agenda-skip-entry-if))
  290. (const org-agenda-skip-function)
  291. (list
  292. (const :format "" quote)
  293. (list
  294. (choice
  295. :tag "Skipping range"
  296. (const :tag "Skip entry" org-agenda-skip-entry-if)
  297. (const :tag "Skip subtree" org-agenda-skip-subtree-if))
  298. (repeat :inline t :tag "Conditions for skipping"
  299. (choice
  300. :tag "Condition type"
  301. (list :tag "Regexp matches" :inline t (const :format "" 'regexp) (regexp))
  302. (list :tag "Regexp does not match" :inline t (const :format "" 'notregexp) (regexp))
  303. (list :tag "TODO state is" :inline t
  304. (const 'todo)
  305. (choice
  306. (const :tag "any not-done state" 'todo)
  307. (const :tag "any done state" 'done)
  308. (const :tag "any state" 'any)
  309. (list :tag "Keyword list"
  310. (const :format "" quote)
  311. (repeat (string :tag "Keyword")))))
  312. (list :tag "TODO state is not" :inline t
  313. (const 'nottodo)
  314. (choice
  315. (const :tag "any not-done state" 'todo)
  316. (const :tag "any done state" 'done)
  317. (const :tag "any state" 'any)
  318. (list :tag "Keyword list"
  319. (const :format "" quote)
  320. (repeat (string :tag "Keyword")))))
  321. (const :tag "scheduled" 'scheduled)
  322. (const :tag "not scheduled" 'notscheduled)
  323. (const :tag "deadline" 'deadline)
  324. (const :tag "no deadline" 'notdeadline)
  325. (const :tag "timestamp" 'timestamp)
  326. (const :tag "no timestamp" 'nottimestamp))))))
  327. (list :tag "Non-standard skipping condition"
  328. :value (org-agenda-skip-function)
  329. (const org-agenda-skip-function)
  330. (sexp :tag "Function or form (quoted!)"))
  331. (list :tag "Any variable"
  332. (variable :tag "Variable")
  333. (sexp :tag "Value (sexp)"))))
  334. "Selection of examples for agenda command settings.
  335. This will be spliced into the custom type of
  336. `org-agenda-custom-commands'.")
  337. (defcustom org-agenda-custom-commands '(("n" "Agenda and all TODO's"
  338. ((agenda "") (alltodo))))
  339. "Custom commands for the agenda.
  340. These commands will be offered on the splash screen displayed by the
  341. agenda dispatcher \\[org-agenda]. Each entry is a list like this:
  342. (key desc type match settings files)
  343. key The key (one or more characters as a string) to be associated
  344. with the command.
  345. desc A description of the command, when omitted or nil, a default
  346. description is built using MATCH.
  347. type The command type, any of the following symbols:
  348. agenda The daily/weekly agenda.
  349. todo Entries with a specific TODO keyword, in all agenda files.
  350. search Entries containing search words entry or headline.
  351. tags Tags/Property/TODO match in all agenda files.
  352. tags-todo Tags/P/T match in all agenda files, TODO entries only.
  353. todo-tree Sparse tree of specific TODO keyword in *current* file.
  354. tags-tree Sparse tree with all tags matches in *current* file.
  355. occur-tree Occur sparse tree for *current* file.
  356. ... A user-defined function.
  357. match What to search for:
  358. - a single keyword for TODO keyword searches
  359. - a tags match expression for tags searches
  360. - a word search expression for text searches.
  361. - a regular expression for occur searches
  362. For all other commands, this should be the empty string.
  363. settings A list of option settings, similar to that in a let form, so like
  364. this: ((opt1 val1) (opt2 val2) ...). The values will be
  365. evaluated at the moment of execution, so quote them when needed.
  366. files A list of files file to write the produced agenda buffer to
  367. with the command `org-store-agenda-views'.
  368. If a file name ends in \".html\", an HTML version of the buffer
  369. is written out. If it ends in \".ps\", a postscript version is
  370. produced. Otherwise, only the plain text is written to the file.
  371. You can also define a set of commands, to create a composite agenda buffer.
  372. In this case, an entry looks like this:
  373. (key desc (cmd1 cmd2 ...) general-settings-for-whole-set files)
  374. where
  375. desc A description string to be displayed in the dispatcher menu.
  376. cmd An agenda command, similar to the above. However, tree commands
  377. are not allowed, but instead you can get agenda and global todo list.
  378. So valid commands for a set are:
  379. (agenda \"\" settings)
  380. (alltodo \"\" settings)
  381. (stuck \"\" settings)
  382. (todo \"match\" settings files)
  383. (search \"match\" settings files)
  384. (tags \"match\" settings files)
  385. (tags-todo \"match\" settings files)
  386. Each command can carry a list of options, and another set of options can be
  387. given for the whole set of commands. Individual command options take
  388. precedence over the general options.
  389. When using several characters as key to a command, the first characters
  390. are prefix commands. For the dispatcher to display useful information, you
  391. should provide a description for the prefix, like
  392. (setq org-agenda-custom-commands
  393. '((\"h\" . \"HOME + Name tag searches\") ; describe prefix \"h\"
  394. (\"hl\" tags \"+HOME+Lisa\")
  395. (\"hp\" tags \"+HOME+Peter\")
  396. (\"hk\" tags \"+HOME+Kim\")))"
  397. :group 'org-agenda-custom-commands
  398. :type `(repeat
  399. (choice :value ("x" "Describe command here" tags "" nil)
  400. (list :tag "Single command"
  401. (string :tag "Access Key(s) ")
  402. (option (string :tag "Description"))
  403. (choice
  404. (const :tag "Agenda" agenda)
  405. (const :tag "TODO list" alltodo)
  406. (const :tag "Search words" search)
  407. (const :tag "Stuck projects" stuck)
  408. (const :tag "Tags/Property match (all agenda files)" tags)
  409. (const :tag "Tags/Property match of TODO entries (all agenda files)" tags-todo)
  410. (const :tag "TODO keyword search (all agenda files)" todo)
  411. (const :tag "Tags sparse tree (current buffer)" tags-tree)
  412. (const :tag "TODO keyword tree (current buffer)" todo-tree)
  413. (const :tag "Occur tree (current buffer)" occur-tree)
  414. (sexp :tag "Other, user-defined function"))
  415. (string :tag "Match (only for some commands)")
  416. ,org-agenda-custom-commands-local-options
  417. (option (repeat :tag "Export" (file :tag "Export to"))))
  418. (list :tag "Command series, all agenda files"
  419. (string :tag "Access Key(s)")
  420. (string :tag "Description ")
  421. (repeat :tag "Component"
  422. (choice
  423. (list :tag "Agenda"
  424. (const :format "" agenda)
  425. (const :tag "" :format "" "")
  426. ,org-agenda-custom-commands-local-options)
  427. (list :tag "TODO list (all keywords)"
  428. (const :format "" alltodo)
  429. (const :tag "" :format "" "")
  430. ,org-agenda-custom-commands-local-options)
  431. (list :tag "Search words"
  432. (const :format "" search)
  433. (string :tag "Match")
  434. ,org-agenda-custom-commands-local-options)
  435. (list :tag "Stuck projects"
  436. (const :format "" stuck)
  437. (const :tag "" :format "" "")
  438. ,org-agenda-custom-commands-local-options)
  439. (list :tag "Tags search"
  440. (const :format "" tags)
  441. (string :tag "Match")
  442. ,org-agenda-custom-commands-local-options)
  443. (list :tag "Tags search, TODO entries only"
  444. (const :format "" tags-todo)
  445. (string :tag "Match")
  446. ,org-agenda-custom-commands-local-options)
  447. (list :tag "TODO keyword search"
  448. (const :format "" todo)
  449. (string :tag "Match")
  450. ,org-agenda-custom-commands-local-options)
  451. (list :tag "Other, user-defined function"
  452. (symbol :tag "function")
  453. (string :tag "Match")
  454. ,org-agenda-custom-commands-local-options)))
  455. (repeat :tag "Settings for entire command set"
  456. (list (variable :tag "Any variable")
  457. (sexp :tag "Value")))
  458. (option (repeat :tag "Export" (file :tag "Export to"))))
  459. (cons :tag "Prefix key documentation"
  460. (string :tag "Access Key(s)")
  461. (string :tag "Description ")))))
  462. (defcustom org-agenda-query-register ?o
  463. "The register holding the current query string.
  464. The purpose of this is that if you construct a query string interactively,
  465. you can then use it to define a custom command."
  466. :group 'org-agenda-custom-commands
  467. :type 'character)
  468. (defcustom org-stuck-projects
  469. '("+LEVEL=2/-DONE" ("TODO" "NEXT" "NEXTACTION") nil "")
  470. "How to identify stuck projects.
  471. This is a list of four items:
  472. 1. A tags/todo/property matcher string that is used to identify a project.
  473. See the manual for a description of tag and property searches.
  474. The entire tree below a headline matched by this is considered one project.
  475. 2. A list of TODO keywords identifying non-stuck projects.
  476. If the project subtree contains any headline with one of these todo
  477. keywords, the project is considered to be not stuck. If you specify
  478. \"*\" as a keyword, any TODO keyword will mark the project unstuck.
  479. 3. A list of tags identifying non-stuck projects.
  480. If the project subtree contains any headline with one of these tags,
  481. the project is considered to be not stuck. If you specify \"*\" as
  482. a tag, any tag will mark the project unstuck. Note that this is about
  483. the explicit presence of a tag somewhere in the subtree, inherited
  484. tags to not count here. If inherited tags make a project not stuck,
  485. use \"-TAG\" in the tags part of the matcher under (1.) above.
  486. 4. An arbitrary regular expression matching non-stuck projects.
  487. If the project turns out to be not stuck, search continues also in the
  488. subtree to see if any of the subtasks have project status.
  489. See also the variable `org-tags-match-list-sublevels' which applies
  490. to projects matched by this search as well.
  491. After defining this variable, you may use \\[org-agenda-list-stuck-projects]
  492. or `C-c a #' to produce the list."
  493. :group 'org-agenda-custom-commands
  494. :type '(list
  495. (string :tag "Tags/TODO match to identify a project")
  496. (repeat :tag "Projects are *not* stuck if they have an entry with TODO keyword any of" (string))
  497. (repeat :tag "Projects are *not* stuck if they have an entry with TAG being any of" (string))
  498. (regexp :tag "Projects are *not* stuck if this regexp matches inside the subtree")))
  499. (defcustom org-agenda-filter-effort-default-operator "<"
  500. "The default operator for effort estimate filtering.
  501. If you select an effort estimate limit without first pressing an operator,
  502. this one will be used."
  503. :group 'org-agenda-custom-commands
  504. :type '(choice (const :tag "less or equal" "<")
  505. (const :tag "greater or equal"">")
  506. (const :tag "equal" "=")))
  507. (defgroup org-agenda-skip nil
  508. "Options concerning skipping parts of agenda files."
  509. :tag "Org Agenda Skip"
  510. :group 'org-agenda)
  511. (defcustom org-agenda-skip-function-global nil
  512. "Function to be called at each match during agenda construction.
  513. If this function returns nil, the current match should not be skipped.
  514. If the function decided to skip an agenda match, is must return the
  515. buffer position from which the search should be continued.
  516. This may also be a Lisp form, which will be evaluated.
  517. This variable will be applied to every agenda match, including
  518. tags/property searches and TODO lists. So try to make the test function
  519. do its checking as efficiently as possible. To implement a skipping
  520. condition just for specific agenda commands, use the variable
  521. `org-agenda-skip-function' which can be set in the options section
  522. of custom agenda commands."
  523. :group 'org-agenda-skip
  524. :type 'sexp)
  525. (defgroup org-agenda-daily/weekly nil
  526. "Options concerning the daily/weekly agenda."
  527. :tag "Org Agenda Daily/Weekly"
  528. :group 'org-agenda)
  529. (defgroup org-agenda-todo-list nil
  530. "Options concerning the global todo list agenda view."
  531. :tag "Org Agenda Todo List"
  532. :group 'org-agenda)
  533. (defgroup org-agenda-match-view nil
  534. "Options concerning the general tags/property/todo match agenda view."
  535. :tag "Org Agenda Match View"
  536. :group 'org-agenda)
  537. (defgroup org-agenda-search-view nil
  538. "Options concerning the general tags/property/todo match agenda view."
  539. :tag "Org Agenda Match View"
  540. :group 'org-agenda)
  541. (defvar org-agenda-archives-mode nil
  542. "Non-nil means the agenda will include archived items.
  543. If this is the symbol `trees', trees in the selected agenda scope
  544. that are marked with the ARCHIVE tag will be included anyway. When this is
  545. t, also all archive files associated with the current selection of agenda
  546. files will be included.")
  547. (defcustom org-agenda-skip-comment-trees t
  548. "Non-nil means skip trees that start with the COMMENT keyword.
  549. When nil, these trees are also scanned by agenda commands."
  550. :group 'org-agenda-skip
  551. :type 'boolean)
  552. (defcustom org-agenda-todo-list-sublevels t
  553. "Non-nil means check also the sublevels of a TODO entry for TODO entries.
  554. When nil, the sublevels of a TODO entry are not checked, resulting in
  555. potentially much shorter TODO lists."
  556. :group 'org-agenda-skip
  557. :group 'org-agenda-todo-list
  558. :type 'boolean)
  559. (defcustom org-agenda-todo-ignore-with-date nil
  560. "Non-nil means don't show entries with a date in the global todo list.
  561. You can use this if you prefer to mark mere appointments with a TODO keyword,
  562. but don't want them to show up in the TODO list.
  563. When this is set, it also covers deadlines and scheduled items, the settings
  564. of `org-agenda-todo-ignore-scheduled' and `org-agenda-todo-ignore-deadlines'
  565. will be ignored.
  566. See also the variable `org-agenda-tags-todo-honor-ignore-options'."
  567. :group 'org-agenda-skip
  568. :group 'org-agenda-todo-list
  569. :type 'boolean)
  570. (defcustom org-agenda-todo-ignore-timestamp nil
  571. "Non-nil means don't show entries with a timestamp.
  572. This applies when creating the global todo list.
  573. Valid values are:
  574. past Don't show entries for today or in the past.
  575. future Don't show entries with a timestamp in the future.
  576. The idea behind this is that if it has a future
  577. timestamp, you don't want to think about it until the
  578. date.
  579. all Don't show any entries with a timestamp in the global todo list.
  580. The idea behind this is that by setting a timestamp, you
  581. have already \"taken care\" of this item.
  582. This variable can also have an integer as a value. If positive (N),
  583. todos with a timestamp N or more days in the future will be ignored. If
  584. negative (-N), todos with a timestamp N or more days in the past will be
  585. ignored. If 0, todos with a timestamp either today or in the future will
  586. be ignored. For example, a value of -1 will exclude todos with a
  587. timestamp in the past (yesterday or earlier), while a value of 7 will
  588. exclude todos with a timestamp a week or more in the future.
  589. See also `org-agenda-todo-ignore-with-date'.
  590. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  591. to make his option also apply to the tags-todo list."
  592. :group 'org-agenda-skip
  593. :group 'org-agenda-todo-list
  594. :version "24.1"
  595. :type '(choice
  596. (const :tag "Ignore future timestamp todos" future)
  597. (const :tag "Ignore past or present timestamp todos" past)
  598. (const :tag "Ignore all timestamp todos" all)
  599. (const :tag "Show timestamp todos" nil)
  600. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  601. (defcustom org-agenda-todo-ignore-scheduled nil
  602. "Non-nil means, ignore some scheduled TODO items when making TODO list.
  603. This applies when creating the global todo list.
  604. Valid values are:
  605. past Don't show entries scheduled today or in the past.
  606. future Don't show entries scheduled in the future.
  607. The idea behind this is that by scheduling it, you don't want to
  608. think about it until the scheduled date.
  609. all Don't show any scheduled entries in the global todo list.
  610. The idea behind this is that by scheduling it, you have already
  611. \"taken care\" of this item.
  612. t Same as `all', for backward compatibility.
  613. This variable can also have an integer as a value. See
  614. `org-agenda-todo-ignore-timestamp' for more details.
  615. See also `org-agenda-todo-ignore-with-date'.
  616. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  617. to make his option also apply to the tags-todo list."
  618. :group 'org-agenda-skip
  619. :group 'org-agenda-todo-list
  620. :type '(choice
  621. (const :tag "Ignore future-scheduled todos" future)
  622. (const :tag "Ignore past- or present-scheduled todos" past)
  623. (const :tag "Ignore all scheduled todos" all)
  624. (const :tag "Ignore all scheduled todos (compatibility)" t)
  625. (const :tag "Show scheduled todos" nil)
  626. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  627. (defcustom org-agenda-todo-ignore-deadlines nil
  628. "Non-nil means ignore some deadlined TODO items when making TODO list.
  629. There are different motivations for using different values, please think
  630. carefully when configuring this variable.
  631. This applies when creating the global todo list.
  632. Valid values are:
  633. near Don't show near deadline entries. A deadline is near when it is
  634. closer than `org-deadline-warning-days' days. The idea behind this
  635. is that such items will appear in the agenda anyway.
  636. far Don't show TODO entries where a deadline has been defined, but
  637. the deadline is not near. This is useful if you don't want to
  638. use the todo list to figure out what to do now.
  639. past Don't show entries with a deadline timestamp for today or in the past.
  640. future Don't show entries with a deadline timestamp in the future, not even
  641. when they become `near' ones. Use it with caution.
  642. all Ignore all TODO entries that do have a deadline.
  643. t Same as `near', for backward compatibility.
  644. This variable can also have an integer as a value. See
  645. `org-agenda-todo-ignore-timestamp' for more details.
  646. See also `org-agenda-todo-ignore-with-date'.
  647. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  648. to make his option also apply to the tags-todo list."
  649. :group 'org-agenda-skip
  650. :group 'org-agenda-todo-list
  651. :type '(choice
  652. (const :tag "Ignore near deadlines" near)
  653. (const :tag "Ignore near deadlines (compatibility)" t)
  654. (const :tag "Ignore far deadlines" far)
  655. (const :tag "Ignore all TODOs with a deadlines" all)
  656. (const :tag "Show all TODOs, even if they have a deadline" nil)
  657. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  658. (defcustom org-agenda-tags-todo-honor-ignore-options nil
  659. "Non-nil means honor todo-list ...ignore options also in tags-todo search.
  660. The variables
  661. `org-agenda-todo-ignore-with-date',
  662. `org-agenda-todo-ignore-timestamp',
  663. `org-agenda-todo-ignore-scheduled',
  664. `org-agenda-todo-ignore-deadlines'
  665. make the global TODO list skip entries that have time stamps of certain
  666. kinds. If this option is set, the same options will also apply for the
  667. tags-todo search, which is the general tags/property matcher
  668. restricted to unfinished TODO entries only."
  669. :group 'org-agenda-skip
  670. :group 'org-agenda-todo-list
  671. :group 'org-agenda-match-view
  672. :type 'boolean)
  673. (defcustom org-agenda-skip-scheduled-if-done nil
  674. "Non-nil means don't show scheduled items in agenda when they are done.
  675. This is relevant for the daily/weekly agenda, not for the TODO list. And
  676. it applies only to the actual date of the scheduling. Warnings about
  677. an item with a past scheduling dates are always turned off when the item
  678. is DONE."
  679. :group 'org-agenda-skip
  680. :group 'org-agenda-daily/weekly
  681. :type 'boolean)
  682. (defcustom org-agenda-skip-scheduled-if-deadline-is-shown nil
  683. "Non-nil means skip scheduling line if same entry shows because of deadline.
  684. In the agenda of today, an entry can show up multiple times because
  685. it is both scheduled and has a nearby deadline, and maybe a plain time
  686. stamp as well.
  687. When this variable is t, then only the deadline is shown and the fact that
  688. the entry is scheduled today or was scheduled previously is not shown.
  689. When this variable is nil, the entry will be shown several times. When
  690. the variable is the symbol `not-today', then skip scheduled previously,
  691. but not scheduled today."
  692. :group 'org-agenda-skip
  693. :group 'org-agenda-daily/weekly
  694. :type '(choice
  695. (const :tag "Never" nil)
  696. (const :tag "Always" t)
  697. (const :tag "Not when scheduled today" not-today)))
  698. (defcustom org-agenda-skip-timestamp-if-deadline-is-shown nil
  699. "Non-nil means skip timestamp line if same entry shows because of deadline.
  700. In the agenda of today, an entry can show up multiple times
  701. because it has both a plain timestamp and has a nearby deadline.
  702. When this variable is t, then only the deadline is shown and the
  703. fact that the entry has a timestamp for or including today is not
  704. shown. When this variable is nil, the entry will be shown
  705. several times."
  706. :group 'org-agenda-skip
  707. :group 'org-agenda-daily/weekly
  708. :version "24.1"
  709. :type '(choice
  710. (const :tag "Never" nil)
  711. (const :tag "Always" t)))
  712. (defcustom org-agenda-skip-deadline-if-done nil
  713. "Non-nil means don't show deadlines when the corresponding item is done.
  714. When nil, the deadline is still shown and should give you a happy feeling.
  715. This is relevant for the daily/weekly agenda. And it applied only to the
  716. actually date of the deadline. Warnings about approaching and past-due
  717. deadlines are always turned off when the item is DONE."
  718. :group 'org-agenda-skip
  719. :group 'org-agenda-daily/weekly
  720. :type 'boolean)
  721. (defcustom org-agenda-skip-deadline-prewarning-if-scheduled nil
  722. "Non-nil means skip deadline prewarning when entry is also scheduled.
  723. This will apply on all days where a prewarning for the deadline would
  724. be shown, but not at the day when the entry is actually due. On that day,
  725. the deadline will be shown anyway.
  726. This variable may be set to nil, t, or a number which will then give
  727. the number of days before the actual deadline when the prewarnings
  728. should resume.
  729. This can be used in a workflow where the first showing of the deadline will
  730. trigger you to schedule it, and then you don't want to be reminded of it
  731. because you will take care of it on the day when scheduled."
  732. :group 'org-agenda-skip
  733. :group 'org-agenda-daily/weekly
  734. :version "24.1"
  735. :type '(choice
  736. (const :tag "Alwas show prewarning" nil)
  737. (const :tag "Remove prewarning if entry is scheduled" t)
  738. (integer :tag "Restart prewarning N days before deadline")))
  739. (defcustom org-agenda-skip-additional-timestamps-same-entry nil
  740. "When nil, multiple same-day timestamps in entry make multiple agenda lines.
  741. When non-nil, after the search for timestamps has matched once in an
  742. entry, the rest of the entry will not be searched."
  743. :group 'org-agenda-skip
  744. :type 'boolean)
  745. (defcustom org-agenda-skip-timestamp-if-done nil
  746. "Non-nil means don't select item by timestamp or -range if it is DONE."
  747. :group 'org-agenda-skip
  748. :group 'org-agenda-daily/weekly
  749. :type 'boolean)
  750. (defcustom org-agenda-dim-blocked-tasks t
  751. "Non-nil means dim blocked tasks in the agenda display.
  752. This causes some overhead during agenda construction, but if you
  753. have turned on `org-enforce-todo-dependencies',
  754. `org-enforce-todo-checkbox-dependencies', or any other blocking
  755. mechanism, this will create useful feedback in the agenda.
  756. Instead of t, this variable can also have the value `invisible'.
  757. Then blocked tasks will be invisible and only become visible when
  758. they become unblocked. An exemption to this behavior is when a task is
  759. blocked because of unchecked checkboxes below it. Since checkboxes do
  760. not show up in the agenda views, making this task invisible you remove any
  761. trace from agenda views that there is something to do. Therefore, a task
  762. that is blocked because of checkboxes will never be made invisible, it
  763. will only be dimmed."
  764. :group 'org-agenda-daily/weekly
  765. :group 'org-agenda-todo-list
  766. :type '(choice
  767. (const :tag "Do not dim" nil)
  768. (const :tag "Dim to a gray face" t)
  769. (const :tag "Make invisible" invisible)))
  770. (defcustom org-timeline-show-empty-dates 3
  771. "Non-nil means `org-timeline' also shows dates without an entry.
  772. When nil, only the days which actually have entries are shown.
  773. When t, all days between the first and the last date are shown.
  774. When an integer, show also empty dates, but if there is a gap of more than
  775. N days, just insert a special line indicating the size of the gap."
  776. :group 'org-agenda-skip
  777. :type '(choice
  778. (const :tag "None" nil)
  779. (const :tag "All" t)
  780. (integer :tag "at most")))
  781. (defgroup org-agenda-startup nil
  782. "Options concerning initial settings in the Agenda in Org Mode."
  783. :tag "Org Agenda Startup"
  784. :group 'org-agenda)
  785. (defcustom org-agenda-menu-show-matcher t
  786. "Non-nil means show the match string in the agenda dispatcher menu.
  787. When nil, the matcher string is not shown, but is put into the help-echo
  788. property so than moving the mouse over the command shows it.
  789. Setting it to nil is good if matcher strings are very long and/or if
  790. you want to use two-columns display (see `org-agenda-menu-two-columns')."
  791. :group 'org-agenda
  792. :version "24.1"
  793. :type 'boolean)
  794. (make-obsolete-variable 'org-agenda-menu-two-column 'org-agenda-menu-two-columns "24.3")
  795. (defcustom org-agenda-menu-two-columns nil
  796. "Non-nil means, use two columns to show custom commands in the dispatcher.
  797. If you use this, you probably want to set `org-agenda-menu-show-matcher'
  798. to nil."
  799. :group 'org-agenda
  800. :version "24.1"
  801. :type 'boolean)
  802. (defcustom org-finalize-agenda-hook nil
  803. "Hook run just before displaying an agenda buffer."
  804. :group 'org-agenda-startup
  805. :type 'hook)
  806. (defcustom org-agenda-mouse-1-follows-link nil
  807. "Non-nil means mouse-1 on a link will follow the link in the agenda.
  808. A longer mouse click will still set point. Does not work on XEmacs.
  809. Needs to be set before org.el is loaded."
  810. :group 'org-agenda-startup
  811. :type 'boolean)
  812. (defcustom org-agenda-start-with-follow-mode nil
  813. "The initial value of follow mode in a newly created agenda window."
  814. :group 'org-agenda-startup
  815. :type 'boolean)
  816. (defcustom org-agenda-follow-indirect nil
  817. "Non-nil means `org-agenda-follow-mode' displays only the
  818. current item's tree, in an indirect buffer."
  819. :group 'org-agenda
  820. :version "24.1"
  821. :type 'boolean)
  822. (defcustom org-agenda-show-outline-path t
  823. "Non-nil means show outline path in echo area after line motion."
  824. :group 'org-agenda-startup
  825. :type 'boolean)
  826. (defcustom org-agenda-start-with-entry-text-mode nil
  827. "The initial value of entry-text-mode in a newly created agenda window."
  828. :group 'org-agenda-startup
  829. :type 'boolean)
  830. (defcustom org-agenda-entry-text-maxlines 5
  831. "Number of text lines to be added when `E' is pressed in the agenda.
  832. Note that this variable only used during agenda display. Add add entry text
  833. when exporting the agenda, configure the variable
  834. `org-agenda-add-entry-ext-maxlines'."
  835. :group 'org-agenda
  836. :type 'integer)
  837. (defcustom org-agenda-entry-text-exclude-regexps nil
  838. "List of regular expressions to clean up entry text.
  839. The complete matches of all regular expressions in this list will be
  840. removed from entry text before it is shown in the agenda."
  841. :group 'org-agenda
  842. :type '(repeat (regexp)))
  843. (defvar org-agenda-entry-text-cleanup-hook nil
  844. "Hook that is run after basic cleanup of entry text to be shown in agenda.
  845. This cleanup is done in a temporary buffer, so the function may inspect and
  846. change the entire buffer.
  847. Some default stuff like drawers and scheduling/deadline dates will already
  848. have been removed when this is called, as will any matches for regular
  849. expressions listed in `org-agenda-entry-text-exclude-regexps'.")
  850. (defvar org-agenda-include-inactive-timestamps nil
  851. "Non-nil means include inactive time stamps in agenda and timeline.
  852. Dynamically scoped.")
  853. (defgroup org-agenda-windows nil
  854. "Options concerning the windows used by the Agenda in Org Mode."
  855. :tag "Org Agenda Windows"
  856. :group 'org-agenda)
  857. (defcustom org-agenda-window-setup 'reorganize-frame
  858. "How the agenda buffer should be displayed.
  859. Possible values for this option are:
  860. current-window Show agenda in the current window, keeping all other windows.
  861. other-window Use `switch-to-buffer-other-window' to display agenda.
  862. reorganize-frame Show only two windows on the current frame, the current
  863. window and the agenda.
  864. other-frame Use `switch-to-buffer-other-frame' to display agenda.
  865. Also, when exiting the agenda, kill that frame.
  866. See also the variable `org-agenda-restore-windows-after-quit'."
  867. :group 'org-agenda-windows
  868. :type '(choice
  869. (const current-window)
  870. (const other-frame)
  871. (const other-window)
  872. (const reorganize-frame)))
  873. (defcustom org-agenda-window-frame-fractions '(0.5 . 0.75)
  874. "The min and max height of the agenda window as a fraction of frame height.
  875. The value of the variable is a cons cell with two numbers between 0 and 1.
  876. It only matters if `org-agenda-window-setup' is `reorganize-frame'."
  877. :group 'org-agenda-windows
  878. :type '(cons (number :tag "Minimum") (number :tag "Maximum")))
  879. (defcustom org-agenda-restore-windows-after-quit nil
  880. "Non-nil means restore window configuration upon exiting agenda.
  881. Before the window configuration is changed for displaying the agenda,
  882. the current status is recorded. When the agenda is exited with
  883. `q' or `x' and this option is set, the old state is restored. If
  884. `org-agenda-window-setup' is `other-frame', the value of this
  885. option will be ignored."
  886. :group 'org-agenda-windows
  887. :type 'boolean)
  888. (defcustom org-agenda-ndays nil
  889. "Number of days to include in overview display.
  890. Should be 1 or 7.
  891. Obsolete, see `org-agenda-span'."
  892. :group 'org-agenda-daily/weekly
  893. :type 'integer)
  894. (make-obsolete-variable 'org-agenda-ndays 'org-agenda-span "24.1")
  895. (defcustom org-agenda-span 'week
  896. "Number of days to include in overview display.
  897. Can be day, week, month, year, or any number of days.
  898. Custom commands can set this variable in the options section."
  899. :group 'org-agenda-daily/weekly
  900. :type '(choice (const :tag "Day" day)
  901. (const :tag "Week" week)
  902. (const :tag "Month" month)
  903. (const :tag "Year" year)
  904. (integer :tag "Custom")))
  905. (defcustom org-agenda-start-on-weekday 1
  906. "Non-nil means start the overview always on the specified weekday.
  907. 0 denotes Sunday, 1 denotes Monday etc.
  908. When nil, always start on the current day.
  909. Custom commands can set this variable in the options section."
  910. :group 'org-agenda-daily/weekly
  911. :type '(choice (const :tag "Today" nil)
  912. (integer :tag "Weekday No.")))
  913. (defcustom org-agenda-show-all-dates t
  914. "Non-nil means `org-agenda' shows every day in the selected range.
  915. When nil, only the days which actually have entries are shown."
  916. :group 'org-agenda-daily/weekly
  917. :type 'boolean)
  918. (defcustom org-agenda-format-date 'org-agenda-format-date-aligned
  919. "Format string for displaying dates in the agenda.
  920. Used by the daily/weekly agenda and by the timeline. This should be
  921. a format string understood by `format-time-string', or a function returning
  922. the formatted date as a string. The function must take a single argument,
  923. a calendar-style date list like (month day year)."
  924. :group 'org-agenda-daily/weekly
  925. :type '(choice
  926. (string :tag "Format string")
  927. (function :tag "Function")))
  928. (defun org-agenda-format-date-aligned (date)
  929. "Format a date string for display in the daily/weekly agenda, or timeline.
  930. This function makes sure that dates are aligned for easy reading."
  931. (require 'cal-iso)
  932. (let* ((dayname (calendar-day-name date))
  933. (day (cadr date))
  934. (day-of-week (calendar-day-of-week date))
  935. (month (car date))
  936. (monthname (calendar-month-name month))
  937. (year (nth 2 date))
  938. (iso-week (org-days-to-iso-week
  939. (calendar-absolute-from-gregorian date)))
  940. (weekyear (cond ((and (= month 1) (>= iso-week 52))
  941. (1- year))
  942. ((and (= month 12) (<= iso-week 1))
  943. (1+ year))
  944. (t year)))
  945. (weekstring (if (= day-of-week 1)
  946. (format " W%02d" iso-week)
  947. "")))
  948. (format "%-10s %2d %s %4d%s"
  949. dayname day monthname year weekstring)))
  950. (defcustom org-agenda-time-leading-zero nil
  951. "Non-nil means use leading zero for military times in agenda.
  952. For example, 9:30am would become 09:30 rather than 9:30."
  953. :group 'org-agenda-daily/weekly
  954. :version "24.1"
  955. :type 'boolean)
  956. (defcustom org-agenda-timegrid-use-ampm nil
  957. "When set, show AM/PM style timestamps on the timegrid."
  958. :group 'org-agenda
  959. :version "24.1"
  960. :type 'boolean)
  961. (defun org-agenda-time-of-day-to-ampm (time)
  962. "Convert TIME of a string like '13:45' to an AM/PM style time string."
  963. (let* ((hour-number (string-to-number (substring time 0 -3)))
  964. (minute (substring time -2))
  965. (ampm "am"))
  966. (cond
  967. ((equal hour-number 12)
  968. (setq ampm "pm"))
  969. ((> hour-number 12)
  970. (setq ampm "pm")
  971. (setq hour-number (- hour-number 12))))
  972. (concat
  973. (if org-agenda-time-leading-zero
  974. (format "%02d" hour-number)
  975. (format "%02s" (number-to-string hour-number)))
  976. ":" minute ampm)))
  977. (defun org-agenda-time-of-day-to-ampm-maybe (time)
  978. "Conditionally convert TIME to AM/PM format
  979. based on `org-agenda-timegrid-use-ampm'"
  980. (if org-agenda-timegrid-use-ampm
  981. (org-agenda-time-of-day-to-ampm time)
  982. time))
  983. (defcustom org-agenda-weekend-days '(6 0)
  984. "Which days are weekend?
  985. These days get the special face `org-agenda-date-weekend' in the agenda
  986. and timeline buffers."
  987. :group 'org-agenda-daily/weekly
  988. :type '(set :greedy t
  989. (const :tag "Monday" 1)
  990. (const :tag "Tuesday" 2)
  991. (const :tag "Wednesday" 3)
  992. (const :tag "Thursday" 4)
  993. (const :tag "Friday" 5)
  994. (const :tag "Saturday" 6)
  995. (const :tag "Sunday" 0)))
  996. (defcustom org-agenda-move-date-from-past-immediately-to-today t
  997. "Non-nil means jump to today when moving a past date forward in time.
  998. When using S-right in the agenda to move a a date forward, and the date
  999. stamp currently points to the past, the first key press will move it
  1000. to today. WHen nil, just move one day forward even if the date stays
  1001. in the past."
  1002. :group 'org-agenda-daily/weekly
  1003. :version "24.1"
  1004. :type 'boolean)
  1005. (defcustom org-agenda-include-diary nil
  1006. "If non-nil, include in the agenda entries from the Emacs Calendar's diary.
  1007. Custom commands can set this variable in the options section."
  1008. :group 'org-agenda-daily/weekly
  1009. :type 'boolean)
  1010. (defcustom org-agenda-include-deadlines t
  1011. "If non-nil, include entries within their deadline warning period.
  1012. Custom commands can set this variable in the options section."
  1013. :group 'org-agenda-daily/weekly
  1014. :version "24.1"
  1015. :type 'boolean)
  1016. (defcustom org-agenda-repeating-timestamp-show-all t
  1017. "Non-nil means show all occurrences of a repeating stamp in the agenda.
  1018. When set to a list of strings, only show occurrences of repeating
  1019. stamps for these TODO keywords. When nil, only one occurrence is
  1020. shown, either today or the nearest into the future."
  1021. :group 'org-agenda-daily/weekly
  1022. :type '(choice
  1023. (const :tag "Show repeating stamps" t)
  1024. (repeat :tag "Show repeating stamps for these TODO keywords"
  1025. (string :tag "TODO Keyword"))
  1026. (const :tag "Don't show repeating stamps" nil)))
  1027. (defcustom org-scheduled-past-days 10000
  1028. "No. of days to continue listing scheduled items that are not marked DONE.
  1029. When an item is scheduled on a date, it shows up in the agenda on this
  1030. day and will be listed until it is marked done for the number of days
  1031. given here."
  1032. :group 'org-agenda-daily/weekly
  1033. :type 'integer)
  1034. (defcustom org-agenda-log-mode-items '(closed clock)
  1035. "List of items that should be shown in agenda log mode.
  1036. This list may contain the following symbols:
  1037. closed Show entries that have been closed on that day.
  1038. clock Show entries that have received clocked time on that day.
  1039. state Show all logged state changes.
  1040. Note that instead of changing this variable, you can also press `C-u l' in
  1041. the agenda to display all available LOG items temporarily."
  1042. :group 'org-agenda-daily/weekly
  1043. :type '(set :greedy t (const closed) (const clock) (const state)))
  1044. (defcustom org-agenda-clock-consistency-checks
  1045. '(:max-duration "10:00" :min-duration 0 :max-gap "0:05"
  1046. :gap-ok-around ("4:00")
  1047. :default-face ((:background "DarkRed") (:foreground "white"))
  1048. :overlap-face nil :gap-face nil :no-end-time-face nil
  1049. :long-face nil :short-face nil)
  1050. "This is a property list, with the following keys:
  1051. :max-duration Mark clocking chunks that are longer than this time.
  1052. This is a time string like \"HH:MM\", or the number
  1053. of minutes as an integer.
  1054. :min-duration Mark clocking chunks that are shorter that this.
  1055. This is a time string like \"HH:MM\", or the number
  1056. of minutes as an integer.
  1057. :max-gap Mark gaps between clocking chunks that are longer than
  1058. this duration. A number of minutes, or a string
  1059. like \"HH:MM\".
  1060. :gap-ok-around List of times during the day which are usually not working
  1061. times. When a gap is detected, but the gap contains any
  1062. of these times, the gap is *not* reported. For example,
  1063. if this is (\"4:00\" \"13:00\") then gaps that contain
  1064. 4:00 in the morning (i.e. the night) and 13:00
  1065. (i.e. a typical lunch time) do not cause a warning.
  1066. You should have at least one time during the night in this
  1067. list, or otherwise the first task each morning will trigger
  1068. a warning because it follows a long gap.
  1069. Furthermore, the following properties can be used to define faces for
  1070. issue display.
  1071. :default-face the default face, if the specific face is undefined
  1072. :overlap-face face for overlapping clocks
  1073. :gap-face face for gaps between clocks
  1074. :no-end-time-face face for incomplete clocks
  1075. :long-face face for clock intervals that are too long
  1076. :short-face face for clock intervals that are too short"
  1077. :group 'org-agenda-daily/weekly
  1078. :group 'org-clock
  1079. :version "24.1"
  1080. :type 'plist)
  1081. (defcustom org-agenda-log-mode-add-notes t
  1082. "Non-nil means add first line of notes to log entries in agenda views.
  1083. If a log item like a state change or a clock entry is associated with
  1084. notes, the first line of these notes will be added to the entry in the
  1085. agenda display."
  1086. :group 'org-agenda-daily/weekly
  1087. :type 'boolean)
  1088. (defcustom org-agenda-start-with-log-mode nil
  1089. "The initial value of log-mode in a newly created agenda window.
  1090. See `org-agenda-log-mode' and `org-agenda-log-mode-items' for further
  1091. explanations on the possible values."
  1092. :group 'org-agenda-startup
  1093. :group 'org-agenda-daily/weekly
  1094. :type '(choice (const :tag "Don't show log items" nil)
  1095. (const :tag "Show only log items" 'only)
  1096. (const :tag "Show all possible log items" 'clockcheck)
  1097. (repeat :tag "Choose among possible values for `org-agenda-log-mode-items'"
  1098. (choice (const :tag "Show closed log items" 'closed)
  1099. (const :tag "Show clocked log items" 'clock)
  1100. (const :tag "Show all logged state changes" 'state)))))
  1101. (defcustom org-agenda-start-with-clockreport-mode nil
  1102. "The initial value of clockreport-mode in a newly created agenda window."
  1103. :group 'org-agenda-startup
  1104. :group 'org-agenda-daily/weekly
  1105. :type 'boolean)
  1106. (defcustom org-agenda-clockreport-parameter-plist '(:link t :maxlevel 2)
  1107. "Property list with parameters for the clocktable in clockreport mode.
  1108. This is the display mode that shows a clock table in the daily/weekly
  1109. agenda, the properties for this dynamic block can be set here.
  1110. The usual clocktable parameters are allowed here, but you cannot set
  1111. the properties :name, :tstart, :tend, :block, and :scope - these will
  1112. be overwritten to make sure the content accurately reflects the
  1113. current display in the agenda."
  1114. :group 'org-agenda-daily/weekly
  1115. :type 'plist)
  1116. (defcustom org-agenda-search-view-always-boolean nil
  1117. "Non-nil means the search string is interpreted as individual parts.
  1118. The search string for search view can either be interpreted as a phrase,
  1119. or as a list of snippets that define a boolean search for a number of
  1120. strings.
  1121. When this is non-nil, the string will be split on whitespace, and each
  1122. snippet will be searched individually, and all must match in order to
  1123. select an entry. A snippet is then a single string of non-white
  1124. characters, or a string in double quotes, or a regexp in {} braces.
  1125. If a snippet is preceded by \"-\", the snippet must *not* match.
  1126. \"+\" is syntactic sugar for positive selection. Each snippet may
  1127. be found as a full word or a partial word, but see the variable
  1128. `org-agenda-search-view-force-full-words'.
  1129. When this is nil, search will look for the entire search phrase as one,
  1130. with each space character matching any amount of whitespace, including
  1131. line breaks.
  1132. Even when this is nil, you can still switch to Boolean search dynamically
  1133. by preceding the first snippet with \"+\" or \"-\". If the first snippet
  1134. is a regexp marked with braces like \"{abc}\", this will also switch to
  1135. boolean search."
  1136. :group 'org-agenda-search-view
  1137. :version "24.1"
  1138. :type 'boolean)
  1139. (if (fboundp 'defvaralias)
  1140. (defvaralias 'org-agenda-search-view-search-words-only
  1141. 'org-agenda-search-view-always-boolean))
  1142. (defcustom org-agenda-search-view-force-full-words nil
  1143. "Non-nil means, search words must be matches as complete words.
  1144. When nil, they may also match part of a word."
  1145. :group 'org-agenda-search-view
  1146. :version "24.1"
  1147. :type 'boolean)
  1148. (defgroup org-agenda-time-grid nil
  1149. "Options concerning the time grid in the Org-mode Agenda."
  1150. :tag "Org Agenda Time Grid"
  1151. :group 'org-agenda)
  1152. (defcustom org-agenda-search-headline-for-time t
  1153. "Non-nil means search headline for a time-of-day.
  1154. If the headline contains a time-of-day in one format or another, it will
  1155. be used to sort the entry into the time sequence of items for a day.
  1156. Some people have time stamps in the headline that refer to the creation
  1157. time or so, and then this produces an unwanted side effect. If this is
  1158. the case for your, use this variable to turn off searching the headline
  1159. for a time."
  1160. :group 'org-agenda-time-grid
  1161. :type 'boolean)
  1162. (defcustom org-agenda-use-time-grid t
  1163. "Non-nil means show a time grid in the agenda schedule.
  1164. A time grid is a set of lines for specific times (like every two hours between
  1165. 8:00 and 20:00). The items scheduled for a day at specific times are
  1166. sorted in between these lines.
  1167. For details about when the grid will be shown, and what it will look like, see
  1168. the variable `org-agenda-time-grid'."
  1169. :group 'org-agenda-time-grid
  1170. :type 'boolean)
  1171. (defcustom org-agenda-time-grid
  1172. '((daily today require-timed)
  1173. "----------------"
  1174. (800 1000 1200 1400 1600 1800 2000))
  1175. "The settings for time grid for agenda display.
  1176. This is a list of three items. The first item is again a list. It contains
  1177. symbols specifying conditions when the grid should be displayed:
  1178. daily if the agenda shows a single day
  1179. weekly if the agenda shows an entire week
  1180. today show grid on current date, independent of daily/weekly display
  1181. require-timed show grid only if at least one item has a time specification
  1182. The second item is a string which will be placed behind the grid time.
  1183. The third item is a list of integers, indicating the times that should have
  1184. a grid line."
  1185. :group 'org-agenda-time-grid
  1186. :type
  1187. '(list
  1188. (set :greedy t :tag "Grid Display Options"
  1189. (const :tag "Show grid in single day agenda display" daily)
  1190. (const :tag "Show grid in weekly agenda display" weekly)
  1191. (const :tag "Always show grid for today" today)
  1192. (const :tag "Show grid only if any timed entries are present"
  1193. require-timed)
  1194. (const :tag "Skip grid times already present in an entry"
  1195. remove-match))
  1196. (string :tag "Grid String")
  1197. (repeat :tag "Grid Times" (integer :tag "Time"))))
  1198. (defcustom org-agenda-show-current-time-in-grid t
  1199. "Non-nil means show the current time in the time grid."
  1200. :group 'org-agenda-time-grid
  1201. :version "24.1"
  1202. :type 'boolean)
  1203. (defcustom org-agenda-current-time-string
  1204. "now - - - - - - - - - - - - - - - - - - - - - - - - -"
  1205. "The string for the current time marker in the agenda."
  1206. :group 'org-agenda-time-grid
  1207. :version "24.1"
  1208. :type 'string)
  1209. (defgroup org-agenda-sorting nil
  1210. "Options concerning sorting in the Org-mode Agenda."
  1211. :tag "Org Agenda Sorting"
  1212. :group 'org-agenda)
  1213. (defcustom org-agenda-sorting-strategy
  1214. '((agenda habit-down time-up priority-down category-keep)
  1215. (todo priority-down category-keep)
  1216. (tags priority-down category-keep)
  1217. (search category-keep))
  1218. "Sorting structure for the agenda items of a single day.
  1219. This is a list of symbols which will be used in sequence to determine
  1220. if an entry should be listed before another entry. The following
  1221. symbols are recognized:
  1222. time-up Put entries with time-of-day indications first, early first
  1223. time-down Put entries with time-of-day indications first, late first
  1224. category-keep Keep the default order of categories, corresponding to the
  1225. sequence in `org-agenda-files'.
  1226. category-up Sort alphabetically by category, A-Z.
  1227. category-down Sort alphabetically by category, Z-A.
  1228. tag-up Sort alphabetically by last tag, A-Z.
  1229. tag-down Sort alphabetically by last tag, Z-A.
  1230. priority-up Sort numerically by priority, high priority last.
  1231. priority-down Sort numerically by priority, high priority first.
  1232. todo-state-up Sort by todo state, tasks that are done last.
  1233. todo-state-down Sort by todo state, tasks that are done first.
  1234. effort-up Sort numerically by estimated effort, high effort last.
  1235. effort-down Sort numerically by estimated effort, high effort first.
  1236. user-defined-up Sort according to `org-agenda-cmp-user-defined', high last.
  1237. user-defined-down Sort according to `org-agenda-cmp-user-defined', high first.
  1238. habit-up Put entries that are habits first
  1239. habit-down Put entries that are habits last
  1240. alpha-up Sort headlines alphabetically
  1241. alpha-down Sort headlines alphabetically, reversed
  1242. The different possibilities will be tried in sequence, and testing stops
  1243. if one comparison returns a \"not-equal\". For example, the default
  1244. '(time-up category-keep priority-down)
  1245. means: Pull out all entries having a specified time of day and sort them,
  1246. in order to make a time schedule for the current day the first thing in the
  1247. agenda listing for the day. Of the entries without a time indication, keep
  1248. the grouped in categories, don't sort the categories, but keep them in
  1249. the sequence given in `org-agenda-files'. Within each category sort by
  1250. priority.
  1251. Leaving out `category-keep' would mean that items will be sorted across
  1252. categories by priority.
  1253. Instead of a single list, this can also be a set of list for specific
  1254. contents, with a context symbol in the car of the list, any of
  1255. `agenda', `todo', `tags', `search' for the corresponding agenda views.
  1256. Custom commands can bind this variable in the options section."
  1257. :group 'org-agenda-sorting
  1258. :type `(choice
  1259. (repeat :tag "General" ,org-sorting-choice)
  1260. (list :tag "Individually"
  1261. (cons (const :tag "Strategy for Weekly/Daily agenda" agenda)
  1262. (repeat ,org-sorting-choice))
  1263. (cons (const :tag "Strategy for TODO lists" todo)
  1264. (repeat ,org-sorting-choice))
  1265. (cons (const :tag "Strategy for Tags matches" tags)
  1266. (repeat ,org-sorting-choice))
  1267. (cons (const :tag "Strategy for search matches" search)
  1268. (repeat ,org-sorting-choice)))))
  1269. (defcustom org-agenda-cmp-user-defined nil
  1270. "A function to define the comparison `user-defined'.
  1271. This function must receive two arguments, agenda entry a and b.
  1272. If a>b, return +1. If a<b, return -1. If they are equal as seen by
  1273. the user comparison, return nil.
  1274. When this is defined, you can make `user-defined-up' and `user-defined-down'
  1275. part of an agenda sorting strategy."
  1276. :group 'org-agenda-sorting
  1277. :type 'symbol)
  1278. (defcustom org-sort-agenda-notime-is-late t
  1279. "Non-nil means items without time are considered late.
  1280. This is only relevant for sorting. When t, items which have no explicit
  1281. time like 15:30 will be considered as 99:01, i.e. later than any items which
  1282. do have a time. When nil, the default time is before 0:00. You can use this
  1283. option to decide if the schedule for today should come before or after timeless
  1284. agenda entries."
  1285. :group 'org-agenda-sorting
  1286. :type 'boolean)
  1287. (defcustom org-sort-agenda-noeffort-is-high t
  1288. "Non-nil means items without effort estimate are sorted as high effort.
  1289. This also applies when filtering an agenda view with respect to the
  1290. < or > effort operator. Then, tasks with no effort defined will be treated
  1291. as tasks with high effort.
  1292. When nil, such items are sorted as 0 minutes effort."
  1293. :group 'org-agenda-sorting
  1294. :type 'boolean)
  1295. (defgroup org-agenda-line-format nil
  1296. "Options concerning the entry prefix in the Org-mode agenda display."
  1297. :tag "Org Agenda Line Format"
  1298. :group 'org-agenda)
  1299. (defcustom org-agenda-prefix-format
  1300. '((agenda . " %i %-12:c%?-12t% s")
  1301. (timeline . " % s")
  1302. (todo . " %i %-12:c")
  1303. (tags . " %i %-12:c")
  1304. (search . " %i %-12:c"))
  1305. "Format specifications for the prefix of items in the agenda views.
  1306. An alist with five entries, each for the different agenda types. The
  1307. keys of the sublists are `agenda', `timeline', `todo', `search' and `tags'.
  1308. The values are format strings.
  1309. This format works similar to a printf format, with the following meaning:
  1310. %c the category of the item, \"Diary\" for entries from the diary,
  1311. or as given by the CATEGORY keyword or derived from the file name
  1312. %e the effort required by the item
  1313. %i the icon category of the item, see `org-agenda-category-icon-alist'
  1314. %T the last tag of the item (ignore inherited tags, which come first)
  1315. %t the HH:MM time-of-day specification if one applies to the entry
  1316. %s Scheduling/Deadline information, a short string
  1317. %(expression) Eval EXPRESSION and replace the control string
  1318. by the result
  1319. All specifiers work basically like the standard `%s' of printf, but may
  1320. contain two additional characters: a question mark just after the `%'
  1321. and a whitespace/punctuation character just before the final letter.
  1322. If the first character after `%' is a question mark, the entire field
  1323. will only be included if the corresponding value applies to the current
  1324. entry. This is useful for fields which should have fixed width when
  1325. present, but zero width when absent. For example, \"%?-12t\" will
  1326. result in a 12 character time field if a time of the day is specified,
  1327. but will completely disappear in entries which do not contain a time.
  1328. If there is punctuation or whitespace character just before the final
  1329. format letter, this character will be appended to the field value if
  1330. the value is not empty. For example, the format \"%-12:c\" leads to
  1331. \"Diary: \" if the category is \"Diary\". If the category were be
  1332. empty, no additional colon would be inserted.
  1333. The default value for the agenda sublist is \" %-12:c%?-12t% s\",
  1334. which means:
  1335. - Indent the line with two space characters
  1336. - Give the category a 12 chars wide field, padded with whitespace on
  1337. the right (because of `-'). Append a colon if there is a category
  1338. (because of `:').
  1339. - If there is a time-of-day, put it into a 12 chars wide field. If no
  1340. time, don't put in an empty field, just skip it (because of '?').
  1341. - Finally, put the scheduling information.
  1342. See also the variables `org-agenda-remove-times-when-in-prefix' and
  1343. `org-agenda-remove-tags'.
  1344. Custom commands can set this variable in the options section."
  1345. :type '(choice
  1346. (string :tag "General format")
  1347. (list :greedy t :tag "View dependent"
  1348. (cons (const agenda) (string :tag "Format"))
  1349. (cons (const timeline) (string :tag "Format"))
  1350. (cons (const todo) (string :tag "Format"))
  1351. (cons (const tags) (string :tag "Format"))
  1352. (cons (const search) (string :tag "Format"))))
  1353. :group 'org-agenda-line-format)
  1354. (defvar org-prefix-format-compiled nil
  1355. "The compiled prefix format and associated variables.
  1356. This is a list where first element is a list of variable bindings, and second
  1357. element is the compiled format expression. See the variable
  1358. `org-agenda-prefix-format'.")
  1359. (defcustom org-agenda-todo-keyword-format "%-1s"
  1360. "Format for the TODO keyword in agenda lines.
  1361. Set this to something like \"%-12s\" if you want all TODO keywords
  1362. to occupy a fixed space in the agenda display."
  1363. :group 'org-agenda-line-format
  1364. :type 'string)
  1365. (defcustom org-agenda-diary-sexp-prefix nil
  1366. "A regexp that matches part of a diary sexp entry
  1367. which should be treated as scheduling/deadline information in
  1368. `org-agenda'.
  1369. For example, you can use this to extract the `diary-remind-message' from
  1370. `diary-remind' entries."
  1371. :group 'org-agenda-line-format
  1372. :type '(choice (const :tag "None" nil) (regexp :tag "Regexp")))
  1373. (defcustom org-agenda-timerange-leaders '("" "(%d/%d): ")
  1374. "Text preceding timerange entries in the agenda view.
  1375. This is a list with two strings. The first applies when the range
  1376. is entirely on one day. The second applies if the range spans several days.
  1377. The strings may have two \"%d\" format specifiers which will be filled
  1378. with the sequence number of the days, and the total number of days in the
  1379. range, respectively."
  1380. :group 'org-agenda-line-format
  1381. :type '(list
  1382. (string :tag "Deadline today ")
  1383. (choice :tag "Deadline relative"
  1384. (string :tag "Format string")
  1385. (function))))
  1386. (defcustom org-agenda-scheduled-leaders '("Scheduled: " "Sched.%2dx: ")
  1387. "Text preceding scheduled items in the agenda view.
  1388. This is a list with two strings. The first applies when the item is
  1389. scheduled on the current day. The second applies when it has been scheduled
  1390. previously, it may contain a %d indicating that this is the nth time that
  1391. this item is scheduled, due to automatic rescheduling of unfinished items
  1392. for the following day. So this number is one larger than the number of days
  1393. that passed since this item was scheduled first."
  1394. :group 'org-agenda-line-format
  1395. :type '(list
  1396. (string :tag "Scheduled today ")
  1397. (string :tag "Scheduled previously")))
  1398. (defcustom org-agenda-inactive-leader "["
  1399. "Text preceding item pulled into the agenda by inactive time stamps.
  1400. These entries are added to the agenda when pressing \"[\"."
  1401. :group 'org-agenda-line-format
  1402. :version "24.1"
  1403. :type '(list
  1404. (string :tag "Scheduled today ")
  1405. (string :tag "Scheduled previously")))
  1406. (defcustom org-agenda-deadline-leaders '("Deadline: " "In %3d d.: ")
  1407. "Text preceding deadline items in the agenda view.
  1408. This is a list with two strings. The first applies when the item has its
  1409. deadline on the current day. The second applies when it is in the past or
  1410. in the future, it may contain %d to capture how many days away the deadline
  1411. is (was)."
  1412. :group 'org-agenda-line-format
  1413. :type '(list
  1414. (string :tag "Deadline today ")
  1415. (choice :tag "Deadline relative"
  1416. (string :tag "Format string")
  1417. (function))))
  1418. (defcustom org-agenda-remove-times-when-in-prefix t
  1419. "Non-nil means remove duplicate time specifications in agenda items.
  1420. When the format `org-agenda-prefix-format' contains a `%t' specifier, a
  1421. time-of-day specification in a headline or diary entry is extracted and
  1422. placed into the prefix. If this option is non-nil, the original specification
  1423. \(a timestamp or -range, or just a plain time(range) specification like
  1424. 11:30-4pm) will be removed for agenda display. This makes the agenda less
  1425. cluttered.
  1426. The option can be t or nil. It may also be the symbol `beg', indicating
  1427. that the time should only be removed when it is located at the beginning of
  1428. the headline/diary entry."
  1429. :group 'org-agenda-line-format
  1430. :type '(choice
  1431. (const :tag "Always" t)
  1432. (const :tag "Never" nil)
  1433. (const :tag "When at beginning of entry" beg)))
  1434. (defcustom org-agenda-remove-timeranges-from-blocks nil
  1435. "Non-nil means remove time ranges specifications in agenda
  1436. items that span on several days."
  1437. :group 'org-agenda-line-format
  1438. :version "24.1"
  1439. :type 'boolean)
  1440. (defcustom org-agenda-default-appointment-duration nil
  1441. "Default duration for appointments that only have a starting time.
  1442. When nil, no duration is specified in such cases.
  1443. When non-nil, this must be the number of minutes, e.g. 60 for one hour."
  1444. :group 'org-agenda-line-format
  1445. :type '(choice
  1446. (integer :tag "Minutes")
  1447. (const :tag "No default duration")))
  1448. (defcustom org-agenda-show-inherited-tags t
  1449. "Non-nil means show inherited tags in each agenda line."
  1450. :group 'org-agenda-line-format
  1451. :type 'boolean)
  1452. (defcustom org-agenda-hide-tags-regexp nil
  1453. "Regular expression used to filter away specific tags in agenda views.
  1454. This means that these tags will be present, but not be shown in the agenda
  1455. line. Secondary filtering will still work on the hidden tags.
  1456. Nil means don't hide any tags."
  1457. :group 'org-agenda-line-format
  1458. :type '(choice
  1459. (const :tag "Hide none" nil)
  1460. (string :tag "Regexp ")))
  1461. (defcustom org-agenda-remove-tags nil
  1462. "Non-nil means remove the tags from the headline copy in the agenda.
  1463. When this is the symbol `prefix', only remove tags when
  1464. `org-agenda-prefix-format' contains a `%T' specifier."
  1465. :group 'org-agenda-line-format
  1466. :type '(choice
  1467. (const :tag "Always" t)
  1468. (const :tag "Never" nil)
  1469. (const :tag "When prefix format contains %T" prefix)))
  1470. (if (fboundp 'defvaralias)
  1471. (defvaralias 'org-agenda-remove-tags-when-in-prefix
  1472. 'org-agenda-remove-tags))
  1473. (defcustom org-agenda-tags-column (if (featurep 'xemacs) -79 -80)
  1474. "Shift tags in agenda items to this column.
  1475. If this number is positive, it specifies the column. If it is negative,
  1476. it means that the tags should be flushright to that column. For example,
  1477. -80 works well for a normal 80 character screen."
  1478. :group 'org-agenda-line-format
  1479. :type 'integer)
  1480. (if (fboundp 'defvaralias)
  1481. (defvaralias 'org-agenda-align-tags-to-column 'org-agenda-tags-column))
  1482. (defcustom org-agenda-fontify-priorities 'cookies
  1483. "Non-nil means highlight low and high priorities in agenda.
  1484. When t, the highest priority entries are bold, lowest priority italic.
  1485. However, settings in `org-priority-faces' will overrule these faces.
  1486. When this variable is the symbol `cookies', only fontify the
  1487. cookies, not the entire task.
  1488. This may also be an association list of priority faces, whose
  1489. keys are the character values of `org-highest-priority',
  1490. `org-default-priority', and `org-lowest-priority' (the default values
  1491. are ?A, ?B, and ?C, respectively). The face may be a named face, a
  1492. color as a string, or a list like `(:background \"Red\")'.
  1493. If it is a color, the variable `org-faces-easy-properties'
  1494. determines if it is a foreground or a background color."
  1495. :group 'org-agenda-line-format
  1496. :type '(choice
  1497. (const :tag "Never" nil)
  1498. (const :tag "Defaults" t)
  1499. (const :tag "Cookies only" cookies)
  1500. (repeat :tag "Specify"
  1501. (list (character :tag "Priority" :value ?A)
  1502. (choice :tag "Face "
  1503. (string :tag "Color")
  1504. (sexp :tag "Face"))))))
  1505. (defcustom org-agenda-day-face-function nil
  1506. "Function called to determine what face should be used to display a day.
  1507. The only argument passed to that function is the day. It should
  1508. returns a face, or nil if does not want to specify a face and let
  1509. the normal rules apply."
  1510. :group 'org-agenda-line-format
  1511. :version "24.1"
  1512. :type 'function)
  1513. (defcustom org-agenda-category-icon-alist nil
  1514. "Alist of category icon to be displayed in agenda views.
  1515. Each entry should have the following format:
  1516. (CATEGORY-REGEXP FILE-OR-DATA TYPE DATA-P PROPS)
  1517. Where CATEGORY-REGEXP is a regexp matching the categories where
  1518. the icon should be displayed.
  1519. FILE-OR-DATA either a file path or a string containing image data.
  1520. The other fields can be omitted safely if not needed:
  1521. TYPE indicates the image type.
  1522. DATA-P is a boolean indicating whether the FILE-OR-DATA string is
  1523. image data.
  1524. PROPS are additional image attributes to assign to the image,
  1525. like, e.g. `:ascent center'.
  1526. (\"Org\" \"/path/to/icon.png\" nil nil :ascent center)
  1527. If you want to set the display properties yourself, just put a
  1528. list as second element:
  1529. (CATEGORY-REGEXP (MY PROPERTY LIST))
  1530. For example, to display a 16px horizontal space for Emacs
  1531. category, you can use:
  1532. (\"Emacs\" '(space . (:width (16))))"
  1533. :group 'org-agenda-line-format
  1534. :version "24.1"
  1535. :type '(alist :key-type (string :tag "Regexp matching category")
  1536. :value-type (choice (list :tag "Icon"
  1537. (string :tag "File or data")
  1538. (symbol :tag "Type")
  1539. (boolean :tag "Data?")
  1540. (repeat :tag "Extra image properties" :inline t symbol))
  1541. (list :tag "Display properties" sexp))))
  1542. (defgroup org-agenda-column-view nil
  1543. "Options concerning column view in the agenda."
  1544. :tag "Org Agenda Column View"
  1545. :group 'org-agenda)
  1546. (defcustom org-agenda-columns-show-summaries t
  1547. "Non-nil means show summaries for columns displayed in the agenda view."
  1548. :group 'org-agenda-column-view
  1549. :type 'boolean)
  1550. (defcustom org-agenda-columns-compute-summary-properties t
  1551. "Non-nil means recompute all summary properties before column view.
  1552. When column view in the agenda is listing properties that have a summary
  1553. operator, it can go to all relevant buffers and recompute the summaries
  1554. there. This can mean overhead for the agenda column view, but is necessary
  1555. to have thing up to date.
  1556. As a special case, a CLOCKSUM property also makes sure that the clock
  1557. computations are current."
  1558. :group 'org-agenda-column-view
  1559. :type 'boolean)
  1560. (defcustom org-agenda-columns-add-appointments-to-effort-sum nil
  1561. "Non-nil means the duration of an appointment will add to day effort.
  1562. The property to which appointment durations will be added is the one given
  1563. in the option `org-effort-property'. If an appointment does not have
  1564. an end time, `org-agenda-default-appointment-duration' will be used. If that
  1565. is not set, an appointment without end time will not contribute to the time
  1566. estimate."
  1567. :group 'org-agenda-column-view
  1568. :type 'boolean)
  1569. (defcustom org-agenda-auto-exclude-function nil
  1570. "A function called with a tag to decide if it is filtered on '/ RET'.
  1571. The sole argument to the function, which is called once for each
  1572. possible tag, is a string giving the name of the tag. The
  1573. function should return either nil if the tag should be included
  1574. as normal, or \"-<TAG>\" to exclude the tag.
  1575. Note that for the purpose of tag filtering, only the lower-case version of
  1576. all tags will be considered, so that this function will only ever see
  1577. the lower-case version of all tags."
  1578. :group 'org-agenda
  1579. :type 'function)
  1580. (defcustom org-agenda-bulk-custom-functions nil
  1581. "Alist of characters and custom functions for bulk actions.
  1582. For example, this value makes those two functions available:
  1583. '((?R set-category)
  1584. (?C bulk-cut))
  1585. With selected entries in an agenda buffer, `B R' will call
  1586. the custom function `set-category' on the selected entries.
  1587. Note that functions in this alist don't need to be quoted."
  1588. :type 'alist
  1589. :version "24.1"
  1590. :group 'org-agenda)
  1591. (defmacro org-agenda-with-point-at-orig-entry (string &rest body)
  1592. "Execute BODY with point at location given by `org-hd-marker' property.
  1593. If STRING is non-nil, the text property will be fetched from position 0
  1594. in that string. If STRING is nil, it will be fetched from the beginning
  1595. of the current line."
  1596. (org-with-gensyms (marker)
  1597. `(let ((,marker (get-text-property (if string 0 (point-at-bol))
  1598. 'org-hd-marker ,string)))
  1599. (with-current-buffer (marker-buffer ,marker)
  1600. (save-excursion
  1601. (goto-char ,marker)
  1602. ,@body)))))
  1603. (def-edebug-spec org-agenda-with-point-at-orig-entry (form body))
  1604. (defun org-add-agenda-custom-command (entry)
  1605. "Replace or add a command in `org-agenda-custom-commands'.
  1606. This is mostly for hacking and trying a new command - once the command
  1607. works you probably want to add it to `org-agenda-custom-commands' for good."
  1608. (let ((ass (assoc (car entry) org-agenda-custom-commands)))
  1609. (if ass
  1610. (setcdr ass (cdr entry))
  1611. (push entry org-agenda-custom-commands))))
  1612. ;;; Define the org-agenda-mode
  1613. (defvar org-agenda-mode-map (make-sparse-keymap)
  1614. "Keymap for `org-agenda-mode'.")
  1615. (if (fboundp 'defvaralias)
  1616. (defvaralias 'org-agenda-keymap 'org-agenda-mode-map))
  1617. (defvar org-agenda-menu) ; defined later in this file.
  1618. (defvar org-agenda-restrict) ; defined later in this file.
  1619. (defvar org-agenda-follow-mode nil)
  1620. (defvar org-agenda-entry-text-mode nil)
  1621. (defvar org-agenda-clockreport-mode nil)
  1622. (defvar org-agenda-show-log nil)
  1623. (defvar org-agenda-redo-command nil)
  1624. (defvar org-agenda-query-string nil)
  1625. (defvar org-agenda-mode-hook nil
  1626. "Hook for `org-agenda-mode', run after the mode is turned on.")
  1627. (defvar org-agenda-type nil)
  1628. (defvar org-agenda-force-single-file nil)
  1629. (defvar org-agenda-bulk-marked-entries) ;; Defined further down in this file
  1630. ;;; Multiple agenda buffers support
  1631. (defcustom org-agenda-sticky nil
  1632. "Non-nil means agenda q key will bury agenda buffers.
  1633. Agenda commands will then show existing buffer instead of generating new ones.
  1634. When nil, `q' will kill the single agenda buffer."
  1635. :group 'org-agenda
  1636. :type 'boolean
  1637. :set (lambda (var val)
  1638. (if (boundp var)
  1639. (org-toggle-sticky-agenda (if val 1 0))
  1640. (set var val))))
  1641. (defun org-toggle-sticky-agenda (&optional arg)
  1642. "Toggle `org-agenda-sticky'."
  1643. (interactive "P")
  1644. (let ((new-value (if arg
  1645. (> (prefix-numeric-value arg) 0)
  1646. (not org-agenda-sticky))))
  1647. (if (equal new-value org-agenda-sticky)
  1648. (and (org-called-interactively-p 'interactive)
  1649. (message "Sticky agenda was already %s"
  1650. (if org-agenda-sticky "enabled" "disabled")))
  1651. (setq org-agenda-sticky new-value)
  1652. (org-agenda-kill-all-agenda-buffers)
  1653. (and (org-called-interactively-p 'interactive)
  1654. (message "Sticky agenda was %s"
  1655. (if org-agenda-sticky "enabled" "disabled"))))))
  1656. (defvar org-agenda-buffer nil
  1657. "Agenda buffer currently being generated.")
  1658. (defvar org-agenda-last-prefix-arg nil)
  1659. (defvar org-agenda-this-buffer-name nil)
  1660. (defvar org-agenda-doing-sticky-redo nil)
  1661. (defvar org-agenda-this-buffer-is-sticky nil)
  1662. (defconst org-agenda-local-vars
  1663. '(org-agenda-this-buffer-name
  1664. org-agenda-undo-list
  1665. org-agenda-pending-undo-list
  1666. org-agenda-follow-mode
  1667. org-agenda-entry-text-mode
  1668. org-agenda-clockreport-mode
  1669. org-agenda-show-log
  1670. org-agenda-redo-command
  1671. org-agenda-query-string
  1672. org-agenda-type
  1673. org-agenda-bulk-marked-entries
  1674. org-agenda-undo-has-started-in
  1675. org-agenda-last-arguments
  1676. org-agenda-info
  1677. org-agenda-tag-filter-overlays
  1678. org-agenda-cat-filter-overlays
  1679. org-pre-agenda-window-conf
  1680. org-agenda-columns-active
  1681. org-agenda-tag-filter
  1682. org-agenda-category-filter
  1683. org-agenda-markers
  1684. org-agenda-last-search-view-search-was-boolean
  1685. org-agenda-filtered-by-category
  1686. org-agenda-filter-form
  1687. org-agenda-show-window
  1688. org-agenda-cycle-counter
  1689. org-agenda-last-prefix-arg)
  1690. "Variables that must be local in agenda buffers to allow multiple buffers.")
  1691. (defun org-agenda-mode ()
  1692. "Mode for time-sorted view on action items in Org-mode files.
  1693. The following commands are available:
  1694. \\{org-agenda-mode-map}"
  1695. (interactive)
  1696. (cond (org-agenda-doing-sticky-redo
  1697. ;; Refreshing sticky agenda-buffer
  1698. ;;
  1699. ;; Preserve the value of `org-agenda-local-vars' variables,
  1700. ;; while letting `kill-all-local-variables' kill the rest
  1701. (let ((save (buffer-local-variables)))
  1702. (kill-all-local-variables)
  1703. (mapc 'make-local-variable org-agenda-local-vars)
  1704. (dolist (elem save)
  1705. (let ((var (car elem))
  1706. (val (cdr elem)))
  1707. (when (and val
  1708. (member var org-agenda-local-vars))
  1709. (set var val)))))
  1710. (set (make-local-variable 'org-agenda-this-buffer-is-sticky) t))
  1711. (org-agenda-sticky
  1712. ;; Creating a sticky Agenda buffer for the first time
  1713. (kill-all-local-variables)
  1714. (mapc 'make-local-variable org-agenda-local-vars)
  1715. (set (make-local-variable 'org-agenda-this-buffer-is-sticky) t))
  1716. (t
  1717. ;; Creating a non-sticky agenda buffer
  1718. (kill-all-local-variables)
  1719. (set (make-local-variable 'org-agenda-this-buffer-is-sticky) nil)))
  1720. (setq org-agenda-undo-list nil
  1721. org-agenda-pending-undo-list nil
  1722. org-agenda-bulk-marked-entries nil)
  1723. (setq major-mode 'org-agenda-mode)
  1724. ;; Keep global-font-lock-mode from turning on font-lock-mode
  1725. (org-set-local 'font-lock-global-modes (list 'not major-mode))
  1726. (setq mode-name "Org-Agenda")
  1727. (use-local-map org-agenda-mode-map)
  1728. (easy-menu-add org-agenda-menu)
  1729. (if org-startup-truncated (setq truncate-lines t))
  1730. (org-set-local 'line-move-visual nil)
  1731. (org-add-hook 'post-command-hook 'org-agenda-post-command-hook nil 'local)
  1732. (org-add-hook 'pre-command-hook 'org-unhighlight nil 'local)
  1733. ;; Make sure properties are removed when copying text
  1734. (make-local-variable 'filter-buffer-substring-functions)
  1735. (add-hook 'filter-buffer-substring-functions
  1736. (lambda (fun start end delete)
  1737. (substring-no-properties (funcall fun start end delete))))
  1738. (unless org-agenda-keep-modes
  1739. (setq org-agenda-follow-mode org-agenda-start-with-follow-mode
  1740. org-agenda-entry-text-mode org-agenda-start-with-entry-text-mode
  1741. org-agenda-clockreport-mode org-agenda-start-with-clockreport-mode
  1742. org-agenda-show-log org-agenda-start-with-log-mode))
  1743. (easy-menu-change
  1744. '("Agenda") "Agenda Files"
  1745. (append
  1746. (list
  1747. (vector
  1748. (if (get 'org-agenda-files 'org-restrict)
  1749. "Restricted to single file"
  1750. "Edit File List")
  1751. '(org-edit-agenda-file-list)
  1752. (not (get 'org-agenda-files 'org-restrict)))
  1753. "--")
  1754. (mapcar 'org-file-menu-entry (org-agenda-files))))
  1755. (org-agenda-set-mode-name)
  1756. (apply
  1757. (if (fboundp 'run-mode-hooks) 'run-mode-hooks 'run-hooks)
  1758. (list 'org-agenda-mode-hook)))
  1759. (substitute-key-definition 'undo 'org-agenda-undo
  1760. org-agenda-mode-map global-map)
  1761. (org-defkey org-agenda-mode-map "\C-i" 'org-agenda-goto)
  1762. (org-defkey org-agenda-mode-map [(tab)] 'org-agenda-goto)
  1763. (org-defkey org-agenda-mode-map "\C-m" 'org-agenda-switch-to)
  1764. (org-defkey org-agenda-mode-map "\C-k" 'org-agenda-kill)
  1765. (org-defkey org-agenda-mode-map "\C-c\C-w" 'org-agenda-refile)
  1766. (org-defkey org-agenda-mode-map "m" 'org-agenda-bulk-mark)
  1767. (org-defkey org-agenda-mode-map "*" 'org-agenda-bulk-mark-all)
  1768. (org-defkey org-agenda-mode-map "%" 'org-agenda-bulk-mark-regexp)
  1769. (org-defkey org-agenda-mode-map "u" 'org-agenda-bulk-unmark)
  1770. (org-defkey org-agenda-mode-map "U" 'org-agenda-bulk-unmark-all)
  1771. (org-defkey org-agenda-mode-map "A" 'org-agenda-append-agenda)
  1772. (org-defkey org-agenda-mode-map "B" 'org-agenda-bulk-action)
  1773. (org-defkey org-agenda-mode-map "\C-c\C-x!" 'org-reload)
  1774. (org-defkey org-agenda-mode-map "\C-c\C-x\C-a" 'org-agenda-archive-default)
  1775. (org-defkey org-agenda-mode-map "\C-c\C-xa" 'org-agenda-toggle-archive-tag)
  1776. (org-defkey org-agenda-mode-map "\C-c\C-xA" 'org-agenda-archive-to-archive-sibling)
  1777. (org-defkey org-agenda-mode-map "\C-c\C-x\C-s" 'org-agenda-archive)
  1778. (org-defkey org-agenda-mode-map "\C-c$" 'org-agenda-archive)
  1779. (org-defkey org-agenda-mode-map "$" 'org-agenda-archive)
  1780. (org-defkey org-agenda-mode-map "\C-c\C-o" 'org-agenda-open-link)
  1781. (org-defkey org-agenda-mode-map " " 'org-agenda-show-and-scroll-up)
  1782. (org-defkey org-agenda-mode-map [backspace] 'org-agenda-show-scroll-down)
  1783. (org-defkey org-agenda-mode-map "\d" 'org-agenda-show-scroll-down)
  1784. (org-defkey org-agenda-mode-map [(control shift right)] 'org-agenda-todo-nextset)
  1785. (org-defkey org-agenda-mode-map [(control shift left)] 'org-agenda-todo-previousset)
  1786. (org-defkey org-agenda-mode-map "\C-c\C-xb" 'org-agenda-tree-to-indirect-buffer)
  1787. (org-defkey org-agenda-mode-map "o" 'delete-other-windows)
  1788. (org-defkey org-agenda-mode-map "L" 'org-agenda-recenter)
  1789. (org-defkey org-agenda-mode-map "\C-c\C-t" 'org-agenda-todo)
  1790. (org-defkey org-agenda-mode-map "t" 'org-agenda-todo)
  1791. (org-defkey org-agenda-mode-map "a" 'org-agenda-archive-default-with-confirmation)
  1792. (org-defkey org-agenda-mode-map ":" 'org-agenda-set-tags)
  1793. (org-defkey org-agenda-mode-map "\C-c\C-q" 'org-agenda-set-tags)
  1794. (org-defkey org-agenda-mode-map "." 'org-agenda-goto-today)
  1795. (org-defkey org-agenda-mode-map "j" 'org-agenda-goto-date)
  1796. (org-defkey org-agenda-mode-map "d" 'org-agenda-day-view)
  1797. (org-defkey org-agenda-mode-map "w" 'org-agenda-week-view)
  1798. (org-defkey org-agenda-mode-map "y" 'org-agenda-year-view)
  1799. (org-defkey org-agenda-mode-map "\C-c\C-z" 'org-agenda-add-note)
  1800. (org-defkey org-agenda-mode-map "z" 'org-agenda-add-note)
  1801. (org-defkey org-agenda-mode-map "k" 'org-agenda-action)
  1802. (org-defkey org-agenda-mode-map "\C-c\C-x\C-k" 'org-agenda-action)
  1803. (org-defkey org-agenda-mode-map [(shift right)] 'org-agenda-do-date-later)
  1804. (org-defkey org-agenda-mode-map [(shift left)] 'org-agenda-do-date-earlier)
  1805. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (right)] 'org-agenda-do-date-later)
  1806. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (left)] 'org-agenda-do-date-earlier)
  1807. (org-defkey org-agenda-mode-map ">" 'org-agenda-date-prompt)
  1808. (org-defkey org-agenda-mode-map "\C-c\C-s" 'org-agenda-schedule)
  1809. (org-defkey org-agenda-mode-map "\C-c\C-d" 'org-agenda-deadline)
  1810. (let ((l '(1 2 3 4 5 6 7 8 9 0)))
  1811. (while l (org-defkey org-agenda-mode-map
  1812. (int-to-string (pop l)) 'digit-argument)))
  1813. (org-defkey org-agenda-mode-map "F" 'org-agenda-follow-mode)
  1814. (org-defkey org-agenda-mode-map "R" 'org-agenda-clockreport-mode)
  1815. (org-defkey org-agenda-mode-map "E" 'org-agenda-entry-text-mode)
  1816. (org-defkey org-agenda-mode-map "l" 'org-agenda-log-mode)
  1817. (org-defkey org-agenda-mode-map "v" 'org-agenda-view-mode-dispatch)
  1818. (org-defkey org-agenda-mode-map "D" 'org-agenda-toggle-diary)
  1819. (org-defkey org-agenda-mode-map "!" 'org-agenda-toggle-deadlines)
  1820. (org-defkey org-agenda-mode-map "G" 'org-agenda-toggle-time-grid)
  1821. (org-defkey org-agenda-mode-map "r" 'org-agenda-redo)
  1822. (org-defkey org-agenda-mode-map "g" 'org-agenda-redo)
  1823. (org-defkey org-agenda-mode-map "e" 'org-agenda-set-effort)
  1824. (org-defkey org-agenda-mode-map "\C-c\C-xe" 'org-agenda-set-effort)
  1825. (org-defkey org-agenda-mode-map "\C-c\C-x\C-e"
  1826. 'org-clock-modify-effort-estimate)
  1827. (org-defkey org-agenda-mode-map "\C-c\C-xp" 'org-agenda-set-property)
  1828. (org-defkey org-agenda-mode-map "q" 'org-agenda-quit)
  1829. (org-defkey org-agenda-mode-map "Q" 'org-agenda-Quit)
  1830. (org-defkey org-agenda-mode-map "x" 'org-agenda-exit)
  1831. (org-defkey org-agenda-mode-map "\C-x\C-w" 'org-agenda-write)
  1832. (org-defkey org-agenda-mode-map "\C-x\C-s" 'org-save-all-org-buffers)
  1833. (org-defkey org-agenda-mode-map "s" 'org-save-all-org-buffers)
  1834. (org-defkey org-agenda-mode-map "T" 'org-agenda-show-tags)
  1835. (org-defkey org-agenda-mode-map "n" 'org-agenda-next-line)
  1836. (org-defkey org-agenda-mode-map "p" 'org-agenda-previous-line)
  1837. (org-defkey org-agenda-mode-map "N" 'org-agenda-next-item)
  1838. (org-defkey org-agenda-mode-map "P" 'org-agenda-previous-item)
  1839. (substitute-key-definition 'next-line 'org-agenda-next-line
  1840. org-agenda-mode-map global-map)
  1841. (substitute-key-definition 'previous-line 'org-agenda-previous-line
  1842. org-agenda-mode-map global-map)
  1843. (org-defkey org-agenda-mode-map "\C-c\C-a" 'org-attach)
  1844. (org-defkey org-agenda-mode-map "\C-c\C-n" 'org-agenda-next-date-line)
  1845. (org-defkey org-agenda-mode-map "\C-c\C-p" 'org-agenda-previous-date-line)
  1846. (org-defkey org-agenda-mode-map "," 'org-agenda-priority)
  1847. (org-defkey org-agenda-mode-map "\C-c," 'org-agenda-show-priority)
  1848. (org-defkey org-agenda-mode-map "i" 'org-agenda-diary-entry)
  1849. (org-defkey org-agenda-mode-map "c" 'org-agenda-goto-calendar)
  1850. (org-defkey org-agenda-mode-map "C" 'org-agenda-convert-date)
  1851. (org-defkey org-agenda-mode-map "M" 'org-agenda-phases-of-moon)
  1852. (org-defkey org-agenda-mode-map "S" 'org-agenda-sunrise-sunset)
  1853. (org-defkey org-agenda-mode-map "h" 'org-agenda-holidays)
  1854. (org-defkey org-agenda-mode-map "H" 'org-agenda-holidays)
  1855. (org-defkey org-agenda-mode-map "\C-c\C-x\C-i" 'org-agenda-clock-in)
  1856. (org-defkey org-agenda-mode-map "I" 'org-agenda-clock-in)
  1857. (org-defkey org-agenda-mode-map "\C-c\C-x\C-o" 'org-agenda-clock-out)
  1858. (org-defkey org-agenda-mode-map "O" 'org-agenda-clock-out)
  1859. (org-defkey org-agenda-mode-map "\C-c\C-x\C-x" 'org-agenda-clock-cancel)
  1860. (org-defkey org-agenda-mode-map "X" 'org-agenda-clock-cancel)
  1861. (org-defkey org-agenda-mode-map "\C-c\C-x\C-j" 'org-clock-goto)
  1862. (org-defkey org-agenda-mode-map "J" 'org-agenda-clock-goto)
  1863. (org-defkey org-agenda-mode-map "+" 'org-agenda-priority-up)
  1864. (org-defkey org-agenda-mode-map "-" 'org-agenda-priority-down)
  1865. (org-defkey org-agenda-mode-map [(shift up)] 'org-agenda-priority-up)
  1866. (org-defkey org-agenda-mode-map [(shift down)] 'org-agenda-priority-down)
  1867. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (up)] 'org-agenda-priority-up)
  1868. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (down)] 'org-agenda-priority-down)
  1869. (org-defkey org-agenda-mode-map "f" 'org-agenda-later)
  1870. (org-defkey org-agenda-mode-map "b" 'org-agenda-earlier)
  1871. (org-defkey org-agenda-mode-map "\C-c\C-x\C-c" 'org-agenda-columns)
  1872. (org-defkey org-agenda-mode-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
  1873. (org-defkey org-agenda-mode-map "[" 'org-agenda-manipulate-query-add)
  1874. (org-defkey org-agenda-mode-map "]" 'org-agenda-manipulate-query-subtract)
  1875. (org-defkey org-agenda-mode-map "{" 'org-agenda-manipulate-query-add-re)
  1876. (org-defkey org-agenda-mode-map "}" 'org-agenda-manipulate-query-subtract-re)
  1877. (org-defkey org-agenda-mode-map "/" 'org-agenda-filter-by-tag)
  1878. (org-defkey org-agenda-mode-map "\\" 'org-agenda-filter-by-tag-refine)
  1879. (org-defkey org-agenda-mode-map "<" 'org-agenda-filter-by-category)
  1880. (org-defkey org-agenda-mode-map "^" 'org-agenda-filter-by-top-category)
  1881. (org-defkey org-agenda-mode-map ";" 'org-timer-set-timer)
  1882. (define-key org-agenda-mode-map "?" 'org-agenda-show-the-flagging-note)
  1883. (org-defkey org-agenda-mode-map "\C-c\C-x\C-mg" 'org-mobile-pull)
  1884. (org-defkey org-agenda-mode-map "\C-c\C-x\C-mp" 'org-mobile-push)
  1885. (org-defkey org-agenda-mode-map [mouse-2] 'org-agenda-goto-mouse)
  1886. (org-defkey org-agenda-mode-map [mouse-3] 'org-agenda-show-mouse)
  1887. (when org-agenda-mouse-1-follows-link
  1888. (org-defkey org-agenda-mode-map [follow-link] 'mouse-face))
  1889. (easy-menu-define org-agenda-menu org-agenda-mode-map "Agenda menu"
  1890. '("Agenda"
  1891. ("Agenda Files")
  1892. "--"
  1893. ("Agenda Dates"
  1894. ["Goto Today" org-agenda-goto-today (org-agenda-check-type nil 'agenda 'timeline)]
  1895. ["Next Dates" org-agenda-later (org-agenda-check-type nil 'agenda)]
  1896. ["Previous Dates" org-agenda-earlier (org-agenda-check-type nil 'agenda)]
  1897. ["Jump to date" org-agenda-goto-date (org-agenda-check-type nil 'agenda)])
  1898. "--"
  1899. ("View"
  1900. ["Day View" org-agenda-day-view
  1901. :active (org-agenda-check-type nil 'agenda)
  1902. :style radio :selected (eq org-agenda-current-span 'day)
  1903. :keys "v d (or just d)"]
  1904. ["Week View" org-agenda-week-view
  1905. :active (org-agenda-check-type nil 'agenda)
  1906. :style radio :selected (eq org-agenda-current-span 'week)
  1907. :keys "v w (or just w)"]
  1908. ["Month View" org-agenda-month-view
  1909. :active (org-agenda-check-type nil 'agenda)
  1910. :style radio :selected (eq org-agenda-current-span 'month)
  1911. :keys "v m"]
  1912. ["Year View" org-agenda-year-view
  1913. :active (org-agenda-check-type nil 'agenda)
  1914. :style radio :selected (eq org-agenda-current-span 'year)
  1915. :keys "v y"]
  1916. "--"
  1917. ["Include Diary" org-agenda-toggle-diary
  1918. :style toggle :selected org-agenda-include-diary
  1919. :active (org-agenda-check-type nil 'agenda)]
  1920. ["Include Deadlines" org-agenda-toggle-deadlines
  1921. :style toggle :selected org-agenda-include-deadlines
  1922. :active (org-agenda-check-type nil 'agenda)]
  1923. ["Use Time Grid" org-agenda-toggle-time-grid
  1924. :style toggle :selected org-agenda-use-time-grid
  1925. :active (org-agenda-check-type nil 'agenda)]
  1926. "--"
  1927. ["Show clock report" org-agenda-clockreport-mode
  1928. :style toggle :selected org-agenda-clockreport-mode
  1929. :active (org-agenda-check-type nil 'agenda)]
  1930. ["Show some entry text" org-agenda-entry-text-mode
  1931. :style toggle :selected org-agenda-entry-text-mode
  1932. :active t]
  1933. "--"
  1934. ["Show Logbook entries" org-agenda-log-mode
  1935. :style toggle :selected org-agenda-show-log
  1936. :active (org-agenda-check-type nil 'agenda 'timeline)
  1937. :keys "v l (or just l)"]
  1938. ["Include archived trees" org-agenda-archives-mode
  1939. :style toggle :selected org-agenda-archives-mode :active t
  1940. :keys "v a"]
  1941. ["Include archive files" (org-agenda-archives-mode t)
  1942. :style toggle :selected (eq org-agenda-archives-mode t) :active t
  1943. :keys "v A"]
  1944. "--"
  1945. ["Remove Restriction" org-agenda-remove-restriction-lock org-agenda-restrict])
  1946. ["Write view to file" org-agenda-write t]
  1947. ["Rebuild buffer" org-agenda-redo t]
  1948. ["Save all Org-mode Buffers" org-save-all-org-buffers t]
  1949. "--"
  1950. ["Show original entry" org-agenda-show t]
  1951. ["Go To (other window)" org-agenda-goto t]
  1952. ["Go To (this window)" org-agenda-switch-to t]
  1953. ["Follow Mode" org-agenda-follow-mode
  1954. :style toggle :selected org-agenda-follow-mode :active t]
  1955. ; ["Tree to indirect frame" org-agenda-tree-to-indirect-buffer t]
  1956. "--"
  1957. ("TODO"
  1958. ["Cycle TODO" org-agenda-todo t]
  1959. ["Next TODO set" org-agenda-todo-nextset t]
  1960. ["Previous TODO set" org-agenda-todo-previousset t]
  1961. ["Add note" org-agenda-add-note t])
  1962. ("Archive/Refile/Delete"
  1963. ["Archive default" org-agenda-archive-default t]
  1964. ["Archive default" org-agenda-archive-default-with-confirmation t]
  1965. ["Toggle ARCHIVE tag" org-agenda-toggle-archive-tag t]
  1966. ["Move to archive sibling" org-agenda-archive-to-archive-sibling t]
  1967. ["Archive subtree" org-agenda-archive t]
  1968. "--"
  1969. ["Refile" org-agenda-refile t]
  1970. "--"
  1971. ["Delete subtree" org-agenda-kill t])
  1972. ("Bulk action"
  1973. ["Mark entry" org-agenda-bulk-mark t]
  1974. ["Mark all" org-agenda-bulk-mark-all t]
  1975. ["Mark matching regexp" org-agenda-bulk-mark-regexp t]
  1976. ["Unmark entry" org-agenda-bulk-unmark t]
  1977. ["Unmark all entries" org-agenda-bulk-unmark-all :active t :keys "C-u s"])
  1978. ["Act on all marked" org-agenda-bulk-action t]
  1979. "--"
  1980. ("Tags and Properties"
  1981. ["Show all Tags" org-agenda-show-tags t]
  1982. ["Set Tags current line" org-agenda-set-tags (not (org-region-active-p))]
  1983. ["Change tag in region" org-agenda-set-tags (org-region-active-p)]
  1984. "--"
  1985. ["Column View" org-columns t])
  1986. ("Deadline/Schedule"
  1987. ["Schedule" org-agenda-schedule t]
  1988. ["Set Deadline" org-agenda-deadline t]
  1989. "--"
  1990. ["Mark item" org-agenda-action :active t :keys "k m"]
  1991. ["Show mark item" org-agenda-action :active t :keys "k v"]
  1992. ["Schedule marked item" org-agenda-action :active t :keys "k s"]
  1993. ["Set Deadline for marked item" org-agenda-action :active t :keys "k d"]
  1994. "--"
  1995. ["Change Date +1 day" org-agenda-date-later (org-agenda-check-type nil 'agenda 'timeline)]
  1996. ["Change Date -1 day" org-agenda-date-earlier (org-agenda-check-type nil 'agenda 'timeline)]
  1997. ["Change Time +1 hour" org-agenda-do-date-later :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u S-right"]
  1998. ["Change Time -1 hour" org-agenda-do-date-earlier :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u S-left"]
  1999. ["Change Time + min" org-agenda-date-later :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u C-u S-right"]
  2000. ["Change Time - min" org-agenda-date-earlier :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u C-u S-left"]
  2001. ["Change Date to ..." org-agenda-date-prompt (org-agenda-check-type nil 'agenda 'timeline)])
  2002. ("Clock and Effort"
  2003. ["Clock in" org-agenda-clock-in t]
  2004. ["Clock out" org-agenda-clock-out t]
  2005. ["Clock cancel" org-agenda-clock-cancel t]
  2006. ["Goto running clock" org-clock-goto t]
  2007. "--"
  2008. ["Set Effort" org-agenda-set-effort t]
  2009. ["Change clocked effort" org-clock-modify-effort-estimate
  2010. (org-clock-is-active)])
  2011. ("Priority"
  2012. ["Set Priority" org-agenda-priority t]
  2013. ["Increase Priority" org-agenda-priority-up t]
  2014. ["Decrease Priority" org-agenda-priority-down t]
  2015. ["Show Priority" org-agenda-show-priority t])
  2016. ("Calendar/Diary"
  2017. ["New Diary Entry" org-agenda-diary-entry (org-agenda-check-type nil 'agenda 'timeline)]
  2018. ["Goto Calendar" org-agenda-goto-calendar (org-agenda-check-type nil 'agenda 'timeline)]
  2019. ["Phases of the Moon" org-agenda-phases-of-moon (org-agenda-check-type nil 'agenda 'timeline)]
  2020. ["Sunrise/Sunset" org-agenda-sunrise-sunset (org-agenda-check-type nil 'agenda 'timeline)]
  2021. ["Holidays" org-agenda-holidays (org-agenda-check-type nil 'agenda 'timeline)]
  2022. ["Convert" org-agenda-convert-date (org-agenda-check-type nil 'agenda 'timeline)]
  2023. "--"
  2024. ["Create iCalendar File" org-export-icalendar-combine-agenda-files t])
  2025. "--"
  2026. ["Undo Remote Editing" org-agenda-undo org-agenda-undo-list]
  2027. "--"
  2028. ("MobileOrg"
  2029. ["Push Files and Views" org-mobile-push t]
  2030. ["Get Captured and Flagged" org-mobile-pull t]
  2031. ["Find FLAGGED Tasks" (org-agenda nil "?") :active t :keys "C-c a ?"]
  2032. ["Show note / unflag" org-agenda-show-the-flagging-note t]
  2033. "--"
  2034. ["Setup" (progn (require 'org-mobile) (customize-group 'org-mobile)) t])
  2035. "--"
  2036. ["Quit" org-agenda-quit t]
  2037. ["Exit and Release Buffers" org-agenda-exit t]
  2038. ))
  2039. ;;; Agenda undo
  2040. (defvar org-agenda-allow-remote-undo t
  2041. "Non-nil means allow remote undo from the agenda buffer.")
  2042. (defvar org-agenda-undo-list nil
  2043. "List of undoable operations in the agenda since last refresh.")
  2044. (defvar org-agenda-undo-has-started-in nil
  2045. "Buffers that have already seen `undo-start' in the current undo sequence.")
  2046. (defvar org-agenda-pending-undo-list nil
  2047. "In a series of undo commands, this is the list of remaining undo items.")
  2048. (defun org-agenda-undo ()
  2049. "Undo a remote editing step in the agenda.
  2050. This undoes changes both in the agenda buffer and in the remote buffer
  2051. that have been changed along."
  2052. (interactive)
  2053. (or org-agenda-allow-remote-undo
  2054. (error "Check the variable `org-agenda-allow-remote-undo' to activate remote undo"))
  2055. (if (not (eq this-command last-command))
  2056. (setq org-agenda-undo-has-started-in nil
  2057. org-agenda-pending-undo-list org-agenda-undo-list))
  2058. (if (not org-agenda-pending-undo-list)
  2059. (error "No further undo information"))
  2060. (let* ((entry (pop org-agenda-pending-undo-list))
  2061. buf line cmd rembuf)
  2062. (setq cmd (pop entry) line (pop entry))
  2063. (setq rembuf (nth 2 entry))
  2064. (org-with-remote-undo rembuf
  2065. (while (bufferp (setq buf (pop entry)))
  2066. (if (pop entry)
  2067. (with-current-buffer buf
  2068. (let ((last-undo-buffer buf)
  2069. (inhibit-read-only t))
  2070. (unless (memq buf org-agenda-undo-has-started-in)
  2071. (push buf org-agenda-undo-has-started-in)
  2072. (make-local-variable 'pending-undo-list)
  2073. (undo-start))
  2074. (while (and pending-undo-list
  2075. (listp pending-undo-list)
  2076. (not (car pending-undo-list)))
  2077. (pop pending-undo-list))
  2078. (undo-more 1))))))
  2079. (org-goto-line line)
  2080. (message "`%s' undone (buffer %s)" cmd (buffer-name rembuf))))
  2081. (defun org-verify-change-for-undo (l1 l2)
  2082. "Verify that a real change occurred between the undo lists L1 and L2."
  2083. (while (and l1 (listp l1) (null (car l1))) (pop l1))
  2084. (while (and l2 (listp l2) (null (car l2))) (pop l2))
  2085. (not (eq l1 l2)))
  2086. ;;; Agenda dispatch
  2087. (defvar org-agenda-restrict nil)
  2088. (defvar org-agenda-restrict-begin (make-marker))
  2089. (defvar org-agenda-restrict-end (make-marker))
  2090. (defvar org-agenda-last-dispatch-buffer nil)
  2091. (defvar org-agenda-overriding-restriction nil)
  2092. ;;;###autoload
  2093. (defun org-agenda (&optional arg keys restriction)
  2094. "Dispatch agenda commands to collect entries to the agenda buffer.
  2095. Prompts for a command to execute. Any prefix arg will be passed
  2096. on to the selected command. The default selections are:
  2097. a Call `org-agenda-list' to display the agenda for current day or week.
  2098. t Call `org-todo-list' to display the global todo list.
  2099. T Call `org-todo-list' to display the global todo list, select only
  2100. entries with a specific TODO keyword (the user gets a prompt).
  2101. m Call `org-tags-view' to display headlines with tags matching
  2102. a condition (the user is prompted for the condition).
  2103. M Like `m', but select only TODO entries, no ordinary headlines.
  2104. L Create a timeline for the current buffer.
  2105. e Export views to associated files.
  2106. s Search entries for keywords.
  2107. / Multi occur across all agenda files and also files listed
  2108. in `org-agenda-text-search-extra-files'.
  2109. < Restrict agenda commands to buffer, subtree, or region.
  2110. Press several times to get the desired effect.
  2111. > Remove a previous restriction.
  2112. # List \"stuck\" projects.
  2113. ! Configure what \"stuck\" means.
  2114. C Configure custom agenda commands.
  2115. More commands can be added by configuring the variable
  2116. `org-agenda-custom-commands'. In particular, specific tags and TODO keyword
  2117. searches can be pre-defined in this way.
  2118. If the current buffer is in Org-mode and visiting a file, you can also
  2119. first press `<' once to indicate that the agenda should be temporarily
  2120. \(until the next use of \\[org-agenda]) restricted to the current file.
  2121. Pressing `<' twice means to restrict to the current subtree or region
  2122. \(if active)."
  2123. (interactive "P")
  2124. (catch 'exit
  2125. (let* ((prefix-descriptions nil)
  2126. (org-agenda-buffer-name org-agenda-buffer-name)
  2127. (org-agenda-window-setup (if (equal (buffer-name)
  2128. org-agenda-buffer-name)
  2129. 'current-window
  2130. org-agenda-window-setup))
  2131. (org-agenda-custom-commands-orig org-agenda-custom-commands)
  2132. (org-agenda-custom-commands
  2133. ;; normalize different versions
  2134. (delq nil
  2135. (mapcar
  2136. (lambda (x)
  2137. (cond ((stringp (cdr x))
  2138. (push x prefix-descriptions)
  2139. nil)
  2140. ((stringp (nth 1 x)) x)
  2141. ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
  2142. (t (cons (car x) (cons "" (cdr x))))))
  2143. org-agenda-custom-commands)))
  2144. (buf (current-buffer))
  2145. (bfn (buffer-file-name (buffer-base-buffer)))
  2146. entry key type match lprops ans)
  2147. ;; Turn off restriction unless there is an overriding one,
  2148. (unless org-agenda-overriding-restriction
  2149. (unless (org-bound-and-true-p org-agenda-keep-restricted-file-list)
  2150. ;; There is a request to keep the file list in place
  2151. (put 'org-agenda-files 'org-restrict nil))
  2152. (setq org-agenda-restrict nil)
  2153. (move-marker org-agenda-restrict-begin nil)
  2154. (move-marker org-agenda-restrict-end nil))
  2155. ;; Delete old local properties
  2156. (put 'org-agenda-redo-command 'org-lprops nil)
  2157. ;; Delete previously set last-arguments
  2158. (put 'org-agenda-redo-command 'last-args nil)
  2159. ;; Remember where this call originated
  2160. (setq org-agenda-last-dispatch-buffer (current-buffer))
  2161. (unless keys
  2162. (setq ans (org-agenda-get-restriction-and-command prefix-descriptions)
  2163. keys (car ans)
  2164. restriction (cdr ans)))
  2165. ;; If we have sticky agenda buffers, set a name for the buffer,
  2166. ;; depending on the invoking keys. The user may still set this
  2167. ;; as a command option, which will overwrite what we do here.
  2168. (if org-agenda-sticky
  2169. (setq org-agenda-buffer-name (format "*Org Agenda(%s)*" keys)))
  2170. ;; Establish the restriction, if any
  2171. (when (and (not org-agenda-overriding-restriction) restriction)
  2172. (put 'org-agenda-files 'org-restrict (list bfn))
  2173. (cond
  2174. ((eq restriction 'region)
  2175. (setq org-agenda-restrict t)
  2176. (move-marker org-agenda-restrict-begin (region-beginning))
  2177. (move-marker org-agenda-restrict-end (region-end)))
  2178. ((eq restriction 'subtree)
  2179. (save-excursion
  2180. (setq org-agenda-restrict t)
  2181. (org-back-to-heading t)
  2182. (move-marker org-agenda-restrict-begin (point))
  2183. (move-marker org-agenda-restrict-end
  2184. (progn (org-end-of-subtree t)))))))
  2185. ;; For example the todo list should not need it (but does...)
  2186. (cond
  2187. ((setq entry (assoc keys org-agenda-custom-commands))
  2188. (if (or (symbolp (nth 2 entry)) (functionp (nth 2 entry)))
  2189. (progn
  2190. (setq type (nth 2 entry) match (eval (nth 3 entry))
  2191. lprops (nth 4 entry))
  2192. (put 'org-agenda-redo-command 'org-lprops lprops)
  2193. (cond
  2194. ((eq type 'agenda)
  2195. (org-let lprops '(org-agenda-list current-prefix-arg)))
  2196. ((eq type 'alltodo)
  2197. (org-let lprops '(org-todo-list current-prefix-arg)))
  2198. ((eq type 'search)
  2199. (org-let lprops '(org-search-view current-prefix-arg match nil)))
  2200. ((eq type 'stuck)
  2201. (org-let lprops '(org-agenda-list-stuck-projects
  2202. current-prefix-arg)))
  2203. ((eq type 'tags)
  2204. (org-let lprops '(org-tags-view current-prefix-arg match)))
  2205. ((eq type 'tags-todo)
  2206. (org-let lprops '(org-tags-view '(4) match)))
  2207. ((eq type 'todo)
  2208. (org-let lprops '(org-todo-list match)))
  2209. ((eq type 'tags-tree)
  2210. (org-check-for-org-mode)
  2211. (org-let lprops '(org-match-sparse-tree current-prefix-arg match)))
  2212. ((eq type 'todo-tree)
  2213. (org-check-for-org-mode)
  2214. (org-let lprops
  2215. '(org-occur (concat "^" org-outline-regexp "[ \t]*"
  2216. (regexp-quote match) "\\>"))))
  2217. ((eq type 'occur-tree)
  2218. (org-check-for-org-mode)
  2219. (org-let lprops '(org-occur match)))
  2220. ((functionp type)
  2221. (org-let lprops '(funcall type match)))
  2222. ((fboundp type)
  2223. (org-let lprops '(funcall type match)))
  2224. (t (error "Invalid custom agenda command type %s" type))))
  2225. (org-agenda-run-series (nth 1 entry) (cddr entry))))
  2226. ((equal keys "C")
  2227. (setq org-agenda-custom-commands org-agenda-custom-commands-orig)
  2228. (customize-variable 'org-agenda-custom-commands))
  2229. ((equal keys "a") (call-interactively 'org-agenda-list))
  2230. ((equal keys "s") (call-interactively 'org-search-view))
  2231. ((equal keys "t") (call-interactively 'org-todo-list))
  2232. ((equal keys "T") (org-call-with-arg 'org-todo-list (or arg '(4))))
  2233. ((equal keys "m") (call-interactively 'org-tags-view))
  2234. ((equal keys "M") (org-call-with-arg 'org-tags-view (or arg '(4))))
  2235. ((equal keys "e") (call-interactively 'org-store-agenda-views))
  2236. ((equal keys "?") (org-tags-view nil "+FLAGGED")
  2237. (org-add-hook
  2238. 'post-command-hook
  2239. (lambda ()
  2240. (unless (current-message)
  2241. (let* ((m (org-agenda-get-any-marker))
  2242. (note (and m (org-entry-get m "THEFLAGGINGNOTE"))))
  2243. (when note
  2244. (message (concat
  2245. "FLAGGING-NOTE ([?] for more info): "
  2246. (org-add-props
  2247. (replace-regexp-in-string
  2248. "\\\\n" "//"
  2249. (copy-sequence note))
  2250. nil 'face 'org-warning)))))))
  2251. t t))
  2252. ((equal keys "L")
  2253. (unless (derived-mode-p 'org-mode)
  2254. (error "This is not an Org-mode file"))
  2255. (unless restriction
  2256. (put 'org-agenda-files 'org-restrict (list bfn))
  2257. (org-call-with-arg 'org-timeline arg)))
  2258. ((equal keys "#") (call-interactively 'org-agenda-list-stuck-projects))
  2259. ((equal keys "/") (call-interactively 'org-occur-in-agenda-files))
  2260. ((equal keys "!") (customize-variable 'org-stuck-projects))
  2261. (t (error "Invalid agenda key"))))))
  2262. (defun org-agenda-append-agenda ()
  2263. "Append another agenda view to the current one.
  2264. This function allows interactive building of block agendas.
  2265. Agenda views are separated by `org-agenda-block-separator'."
  2266. (interactive)
  2267. (unless (string= (buffer-name) org-agenda-buffer-name)
  2268. (error "Can only append from within agenda buffer"))
  2269. (let ((org-agenda-multi t))
  2270. (org-agenda)
  2271. (widen)))
  2272. (defun org-agenda-normalize-custom-commands (cmds)
  2273. (delq nil
  2274. (mapcar
  2275. (lambda (x)
  2276. (cond ((stringp (cdr x)) nil)
  2277. ((stringp (nth 1 x)) x)
  2278. ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
  2279. (t (cons (car x) (cons "" (cdr x))))))
  2280. cmds)))
  2281. (defun org-agenda-get-restriction-and-command (prefix-descriptions)
  2282. "The user interface for selecting an agenda command."
  2283. (catch 'exit
  2284. (let* ((bfn (buffer-file-name (buffer-base-buffer)))
  2285. (restrict-ok (and bfn (derived-mode-p 'org-mode)))
  2286. (region-p (org-region-active-p))
  2287. (custom org-agenda-custom-commands)
  2288. (selstring "")
  2289. restriction second-time
  2290. c entry key type match prefixes rmheader header-end custom1 desc
  2291. line lines left right n n1)
  2292. (save-window-excursion
  2293. (delete-other-windows)
  2294. (org-switch-to-buffer-other-window " *Agenda Commands*")
  2295. (erase-buffer)
  2296. (insert (eval-when-compile
  2297. (let ((header
  2298. "Press key for an agenda command: < Buffer, subtree/region restriction
  2299. -------------------------------- > Remove restriction
  2300. a Agenda for current week or day e Export agenda views
  2301. t List of all TODO entries T Entries with special TODO kwd
  2302. m Match a TAGS/PROP/TODO query M Like m, but only TODO entries
  2303. L Timeline for current buffer # List stuck projects (!=configure)
  2304. s Search for keywords * Toggle sticky agenda views
  2305. / Multi-occur ? Find :FLAGGED: entries
  2306. C Configure custom agenda commands
  2307. ")
  2308. (start 0))
  2309. (while (string-match
  2310. "\\(^\\| \\|(\\)\\(\\S-\\)\\( \\|=\\)"
  2311. header start)
  2312. (setq start (match-end 0))
  2313. (add-text-properties (match-beginning 2) (match-end 2)
  2314. '(face bold) header))
  2315. header)))
  2316. (setq header-end (move-marker (make-marker) (point)))
  2317. (while t
  2318. (setq custom1 custom)
  2319. (when (eq rmheader t)
  2320. (org-goto-line 1)
  2321. (re-search-forward ":" nil t)
  2322. (delete-region (match-end 0) (point-at-eol))
  2323. (forward-char 1)
  2324. (looking-at "-+")
  2325. (delete-region (match-end 0) (point-at-eol))
  2326. (move-marker header-end (match-end 0)))
  2327. (goto-char header-end)
  2328. (delete-region (point) (point-max))
  2329. ;; Produce all the lines that describe custom commands and prefixes
  2330. (setq lines nil)
  2331. (while (setq entry (pop custom1))
  2332. (setq key (car entry) desc (nth 1 entry)
  2333. type (nth 2 entry)
  2334. match (nth 3 entry))
  2335. (if (> (length key) 1)
  2336. (add-to-list 'prefixes (string-to-char key))
  2337. (setq line
  2338. (format
  2339. "%-4s%-14s"
  2340. (org-add-props (copy-sequence key)
  2341. '(face bold))
  2342. (cond
  2343. ((string-match "\\S-" desc) desc)
  2344. ((eq type 'agenda) "Agenda for current week or day")
  2345. ((eq type 'alltodo) "List of all TODO entries")
  2346. ((eq type 'search) "Word search")
  2347. ((eq type 'stuck) "List of stuck projects")
  2348. ((eq type 'todo) "TODO keyword")
  2349. ((eq type 'tags) "Tags query")
  2350. ((eq type 'tags-todo) "Tags (TODO)")
  2351. ((eq type 'tags-tree) "Tags tree")
  2352. ((eq type 'todo-tree) "TODO kwd tree")
  2353. ((eq type 'occur-tree) "Occur tree")
  2354. ((functionp type) (if (symbolp type)
  2355. (symbol-name type)
  2356. "Lambda expression"))
  2357. (t "???"))))
  2358. (if org-agenda-menu-show-matcher
  2359. (setq line
  2360. (concat line ": "
  2361. (cond
  2362. ((stringp match)
  2363. (setq match (copy-sequence match))
  2364. (org-add-props match nil 'face 'org-warning))
  2365. (match
  2366. (format "set of %d commands" (length match)))
  2367. (t ""))))
  2368. (if (org-string-nw-p match)
  2369. (add-text-properties
  2370. 0 (length line) (list 'help-echo
  2371. (concat "Matcher: "match)) line)))
  2372. (push line lines)))
  2373. (setq lines (nreverse lines))
  2374. (when prefixes
  2375. (mapc (lambda (x)
  2376. (push
  2377. (format "%s %s"
  2378. (org-add-props (char-to-string x)
  2379. nil 'face 'bold)
  2380. (or (cdr (assoc (concat selstring
  2381. (char-to-string x))
  2382. prefix-descriptions))
  2383. "Prefix key"))
  2384. lines))
  2385. prefixes))
  2386. ;; Check if we should display in two columns
  2387. (if org-agenda-menu-two-columns
  2388. (progn
  2389. (setq n (length lines)
  2390. n1 (+ (/ n 2) (mod n 2))
  2391. right (nthcdr n1 lines)
  2392. left (copy-sequence lines))
  2393. (setcdr (nthcdr (1- n1) left) nil))
  2394. (setq left lines right nil))
  2395. (while left
  2396. (insert "\n" (pop left))
  2397. (when right
  2398. (if (< (current-column) 40)
  2399. (move-to-column 40 t)
  2400. (insert " "))
  2401. (insert (pop right))))
  2402. ;; Make the window the right size
  2403. (goto-char (point-min))
  2404. (if second-time
  2405. (if (not (pos-visible-in-window-p (point-max)))
  2406. (org-fit-window-to-buffer))
  2407. (setq second-time t)
  2408. (org-fit-window-to-buffer))
  2409. ;; Ask for selection
  2410. (message "Press key for agenda command%s:"
  2411. (if (or restrict-ok org-agenda-overriding-restriction)
  2412. (if org-agenda-overriding-restriction
  2413. " (restriction lock active)"
  2414. (if restriction
  2415. (format " (restricted to %s)" restriction)
  2416. " (unrestricted)"))
  2417. ""))
  2418. (setq c (read-char-exclusive))
  2419. (message "")
  2420. (cond
  2421. ((assoc (char-to-string c) custom)
  2422. (setq selstring (concat selstring (char-to-string c)))
  2423. (throw 'exit (cons selstring restriction)))
  2424. ((memq c prefixes)
  2425. (setq selstring (concat selstring (char-to-string c))
  2426. prefixes nil
  2427. rmheader (or rmheader t)
  2428. custom (delq nil (mapcar
  2429. (lambda (x)
  2430. (if (or (= (length (car x)) 1)
  2431. (/= (string-to-char (car x)) c))
  2432. nil
  2433. (cons (substring (car x) 1) (cdr x))))
  2434. custom))))
  2435. ((eq c ?*)
  2436. (call-interactively 'org-toggle-sticky-agenda)
  2437. (sit-for 2))
  2438. ((and (not restrict-ok) (memq c '(?1 ?0 ?<)))
  2439. (message "Restriction is only possible in Org-mode buffers")
  2440. (ding) (sit-for 1))
  2441. ((eq c ?1)
  2442. (org-agenda-remove-restriction-lock 'noupdate)
  2443. (setq restriction 'buffer))
  2444. ((eq c ?0)
  2445. (org-agenda-remove-restriction-lock 'noupdate)
  2446. (setq restriction (if region-p 'region 'subtree)))
  2447. ((eq c ?<)
  2448. (org-agenda-remove-restriction-lock 'noupdate)
  2449. (setq restriction
  2450. (cond
  2451. ((eq restriction 'buffer)
  2452. (if region-p 'region 'subtree))
  2453. ((memq restriction '(subtree region))
  2454. nil)
  2455. (t 'buffer))))
  2456. ((eq c ?>)
  2457. (org-agenda-remove-restriction-lock 'noupdate)
  2458. (setq restriction nil))
  2459. ((and (equal selstring "") (memq c '(?s ?a ?t ?m ?L ?C ?e ?T ?M ?# ?! ?/ ??)))
  2460. (throw 'exit (cons (setq selstring (char-to-string c)) restriction)))
  2461. ((and (> (length selstring) 0) (eq c ?\d))
  2462. (delete-window)
  2463. (org-agenda-get-restriction-and-command prefix-descriptions))
  2464. ((equal c ?q) (error "Abort"))
  2465. (t (error "Invalid key %c" c))))))))
  2466. (defvar org-agenda-overriding-arguments nil) ; dynamically scoped parameter
  2467. (defvar org-agenda-last-arguments nil
  2468. "The arguments of the previous call to `org-agenda'.")
  2469. (defun org-agenda-run-series (name series)
  2470. (org-let (nth 1 series) '(org-prepare-agenda name))
  2471. ;; We need to reset agenda markers here, because when constructing a
  2472. ;; block agenda, the individual blocks do not do that.
  2473. (org-agenda-reset-markers)
  2474. (let* ((org-agenda-multi t)
  2475. (redo (list 'org-agenda-run-series name (list 'quote series)))
  2476. (org-agenda-overriding-arguments
  2477. (or org-agenda-overriding-arguments
  2478. (unless (null (delq nil (get 'org-agenda-redo-command 'last-args)))
  2479. (get 'org-agenda-redo-command 'last-args))))
  2480. (cmds (car series))
  2481. (gprops (nth 1 series))
  2482. match ;; The byte compiler incorrectly complains about this. Keep it!
  2483. cmd type lprops)
  2484. (while (setq cmd (pop cmds))
  2485. (setq type (car cmd) match (eval (nth 1 cmd)) lprops (nth 2 cmd))
  2486. (cond
  2487. ((eq type 'agenda)
  2488. (org-let2 gprops lprops
  2489. '(call-interactively 'org-agenda-list)))
  2490. ((eq type 'alltodo)
  2491. (org-let2 gprops lprops
  2492. '(call-interactively 'org-todo-list)))
  2493. ((eq type 'search)
  2494. (org-let2 gprops lprops
  2495. '(org-search-view current-prefix-arg match nil)))
  2496. ((eq type 'stuck)
  2497. (org-let2 gprops lprops
  2498. '(call-interactively 'org-agenda-list-stuck-projects)))
  2499. ((eq type 'tags)
  2500. (org-let2 gprops lprops
  2501. '(org-tags-view current-prefix-arg match)))
  2502. ((eq type 'tags-todo)
  2503. (org-let2 gprops lprops
  2504. '(org-tags-view '(4) match)))
  2505. ((eq type 'todo)
  2506. (org-let2 gprops lprops
  2507. '(org-todo-list match)))
  2508. ((fboundp type)
  2509. (org-let2 gprops lprops
  2510. '(funcall type match)))
  2511. (t (error "Invalid type in command series"))))
  2512. (widen)
  2513. (setq org-agenda-redo-command redo)
  2514. (put 'org-agenda-redo-command 'last-args org-agenda-last-arguments)
  2515. (goto-char (point-min)))
  2516. (org-fit-agenda-window)
  2517. (org-let (nth 1 series) '(org-finalize-agenda)))
  2518. ;;;###autoload
  2519. (defmacro org-batch-agenda (cmd-key &rest parameters)
  2520. "Run an agenda command in batch mode and send the result to STDOUT.
  2521. If CMD-KEY is a string of length 1, it is used as a key in
  2522. `org-agenda-custom-commands' and triggers this command. If it is a
  2523. longer string it is used as a tags/todo match string.
  2524. Parameters are alternating variable names and values that will be bound
  2525. before running the agenda command."
  2526. (org-eval-in-environment (org-make-parameter-alist parameters)
  2527. (if (> (length cmd-key) 2)
  2528. (org-tags-view nil cmd-key)
  2529. (org-agenda nil cmd-key)))
  2530. (set-buffer org-agenda-buffer-name)
  2531. (princ (buffer-string)))
  2532. (def-edebug-spec org-batch-agenda (form &rest sexp))
  2533. (defvar org-agenda-info nil)
  2534. ;;;###autoload
  2535. (defmacro org-batch-agenda-csv (cmd-key &rest parameters)
  2536. "Run an agenda command in batch mode and send the result to STDOUT.
  2537. If CMD-KEY is a string of length 1, it is used as a key in
  2538. `org-agenda-custom-commands' and triggers this command. If it is a
  2539. longer string it is used as a tags/todo match string.
  2540. Parameters are alternating variable names and values that will be bound
  2541. before running the agenda command.
  2542. The output gives a line for each selected agenda item. Each
  2543. item is a list of comma-separated values, like this:
  2544. category,head,type,todo,tags,date,time,extra,priority-l,priority-n
  2545. category The category of the item
  2546. head The headline, without TODO kwd, TAGS and PRIORITY
  2547. type The type of the agenda entry, can be
  2548. todo selected in TODO match
  2549. tagsmatch selected in tags match
  2550. diary imported from diary
  2551. deadline a deadline on given date
  2552. scheduled scheduled on given date
  2553. timestamp entry has timestamp on given date
  2554. closed entry was closed on given date
  2555. upcoming-deadline warning about deadline
  2556. past-scheduled forwarded scheduled item
  2557. block entry has date block including g. date
  2558. todo The todo keyword, if any
  2559. tags All tags including inherited ones, separated by colons
  2560. date The relevant date, like 2007-2-14
  2561. time The time, like 15:00-16:50
  2562. extra Sting with extra planning info
  2563. priority-l The priority letter if any was given
  2564. priority-n The computed numerical priority
  2565. agenda-day The day in the agenda where this is listed"
  2566. (org-eval-in-environment (append '((org-agenda-remove-tags t))
  2567. (org-make-parameter-alist parameters))
  2568. (if (> (length cmd-key) 2)
  2569. (org-tags-view nil cmd-key)
  2570. (org-agenda nil cmd-key)))
  2571. (set-buffer org-agenda-buffer-name)
  2572. (let* ((lines (org-split-string (buffer-string) "\n"))
  2573. line)
  2574. (while (setq line (pop lines))
  2575. (catch 'next
  2576. (if (not (get-text-property 0 'org-category line)) (throw 'next nil))
  2577. (setq org-agenda-info
  2578. (org-fix-agenda-info (text-properties-at 0 line)))
  2579. (princ
  2580. (mapconcat 'org-agenda-export-csv-mapper
  2581. '(org-category txt type todo tags date time extra
  2582. priority-letter priority agenda-day)
  2583. ","))
  2584. (princ "\n")))))
  2585. (def-edebug-spec org-batch-agenda-csv (form &rest sexp))
  2586. (defun org-fix-agenda-info (props)
  2587. "Make sure all properties on an agenda item have a canonical form.
  2588. This ensures the export commands can easily use it."
  2589. (let (tmp re)
  2590. (when (setq tmp (plist-get props 'tags))
  2591. (setq props (plist-put props 'tags (mapconcat 'identity tmp ":"))))
  2592. (when (setq tmp (plist-get props 'date))
  2593. (if (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
  2594. (let ((calendar-date-display-form '(year "-" month "-" day)))
  2595. '((format "%4d, %9s %2s, %4s" dayname monthname day year))
  2596. (setq tmp (calendar-date-string tmp)))
  2597. (setq props (plist-put props 'date tmp)))
  2598. (when (setq tmp (plist-get props 'day))
  2599. (if (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
  2600. (let ((calendar-date-display-form '(year "-" month "-" day)))
  2601. (setq tmp (calendar-date-string tmp)))
  2602. (setq props (plist-put props 'day tmp))
  2603. (setq props (plist-put props 'agenda-day tmp)))
  2604. (when (setq tmp (plist-get props 'txt))
  2605. (when (string-match "\\[#\\([A-Z0-9]\\)\\] ?" tmp)
  2606. (plist-put props 'priority-letter (match-string 1 tmp))
  2607. (setq tmp (replace-match "" t t tmp)))
  2608. (when (and (setq re (plist-get props 'org-todo-regexp))
  2609. (setq re (concat "\\`\\.*" re " ?"))
  2610. (string-match re tmp))
  2611. (plist-put props 'todo (match-string 1 tmp))
  2612. (setq tmp (replace-match "" t t tmp)))
  2613. (plist-put props 'txt tmp)))
  2614. props)
  2615. (defun org-agenda-export-csv-mapper (prop)
  2616. (let ((res (plist-get org-agenda-info prop)))
  2617. (setq res
  2618. (cond
  2619. ((not res) "")
  2620. ((stringp res) res)
  2621. (t (prin1-to-string res))))
  2622. (while (string-match "," res)
  2623. (setq res (replace-match ";" t t res)))
  2624. (org-trim res)))
  2625. ;;;###autoload
  2626. (defun org-store-agenda-views (&rest parameters)
  2627. (interactive)
  2628. (eval (list 'org-batch-store-agenda-views)))
  2629. ;;;###autoload
  2630. (defmacro org-batch-store-agenda-views (&rest parameters)
  2631. "Run all custom agenda commands that have a file argument."
  2632. (let ((cmds (org-agenda-normalize-custom-commands org-agenda-custom-commands))
  2633. (pop-up-frames nil)
  2634. (dir default-directory)
  2635. (pars (org-make-parameter-alist parameters))
  2636. cmd thiscmdkey files opts cmd-or-set bufname)
  2637. (save-window-excursion
  2638. (while cmds
  2639. (setq cmd (pop cmds)
  2640. thiscmdkey (car cmd)
  2641. bufname (if org-agenda-sticky (format "*Org Agenda(%s)*" thiscmdkey)
  2642. org-agenda-buffer-name)
  2643. cmd-or-set (nth 2 cmd)
  2644. opts (nth (if (listp cmd-or-set) 3 4) cmd)
  2645. files (nth (if (listp cmd-or-set) 4 5) cmd))
  2646. (if (stringp files) (setq files (list files)))
  2647. (when files
  2648. (org-eval-in-environment (append org-agenda-exporter-settings
  2649. opts pars)
  2650. (org-agenda nil thiscmdkey))
  2651. (set-buffer bufname)
  2652. (while files
  2653. (org-eval-in-environment (append org-agenda-exporter-settings
  2654. opts pars)
  2655. (org-agenda-write (expand-file-name (pop files) dir) nil t bufname)))
  2656. (and (get-buffer bufname)
  2657. (kill-buffer bufname)))))))
  2658. (def-edebug-spec org-batch-store-agenda-views (&rest sexp))
  2659. (defun org-agenda-mark-header-line (pos)
  2660. "Mark the line at POS as an agenda structure header."
  2661. (save-excursion
  2662. (goto-char pos)
  2663. (put-text-property (point-at-bol) (point-at-eol)
  2664. 'org-agenda-structural-header t)
  2665. (when org-agenda-title-append
  2666. (put-text-property (point-at-bol) (point-at-eol)
  2667. 'org-agenda-title-append org-agenda-title-append))))
  2668. (defvar org-mobile-creating-agendas)
  2669. (defvar org-agenda-write-buffer-name "Agenda View")
  2670. (defun org-agenda-write (file &optional open nosettings agenda-bufname)
  2671. "Write the current buffer (an agenda view) as a file.
  2672. Depending on the extension of the file name, plain text (.txt),
  2673. HTML (.html or .htm) or Postscript (.ps) is produced.
  2674. If the extension is .ics, run icalendar export over all files used
  2675. to construct the agenda and limit the export to entries listed in the
  2676. agenda now.
  2677. With prefix argument OPEN, open the new file immediately.
  2678. If NOSETTINGS is given, do not scope the settings of
  2679. `org-agenda-exporter-settings' into the export commands. This is used when
  2680. the settings have already been scoped and we do not wish to overrule other,
  2681. higher priority settings.
  2682. If AGENDA-BUFFER-NAME, use this as the buffer name for the agenda to write."
  2683. (interactive "FWrite agenda to file: \nP")
  2684. (if (not (file-writable-p file))
  2685. (error "Cannot write agenda to file %s" file))
  2686. (org-let (if nosettings nil org-agenda-exporter-settings)
  2687. '(save-excursion
  2688. (save-window-excursion
  2689. (org-agenda-mark-filtered-text)
  2690. (let ((bs (copy-sequence (buffer-string))) beg)
  2691. (org-agenda-unmark-filtered-text)
  2692. (with-temp-buffer
  2693. (rename-buffer org-agenda-write-buffer-name t)
  2694. (set-buffer-modified-p nil)
  2695. (insert bs)
  2696. (org-agenda-remove-marked-text 'org-filtered)
  2697. (while (setq beg (text-property-any (point-min) (point-max)
  2698. 'org-filtered t))
  2699. (delete-region
  2700. beg (or (next-single-property-change beg 'org-filtered)
  2701. (point-max))))
  2702. (run-hooks 'org-agenda-before-write-hook)
  2703. (cond
  2704. ((org-bound-and-true-p org-mobile-creating-agendas)
  2705. (org-mobile-write-agenda-for-mobile file))
  2706. ((string-match "\\.html?\\'" file)
  2707. (require 'htmlize)
  2708. (set-buffer (htmlize-buffer (current-buffer)))
  2709. (when (and org-agenda-export-html-style
  2710. (string-match "<style>" org-agenda-export-html-style))
  2711. ;; replace <style> section with org-agenda-export-html-style
  2712. (goto-char (point-min))
  2713. (kill-region (- (search-forward "<style") 6)
  2714. (search-forward "</style>"))
  2715. (insert org-agenda-export-html-style))
  2716. (write-file file)
  2717. (kill-buffer (current-buffer))
  2718. (message "HTML written to %s" file))
  2719. ((string-match "\\.ps\\'" file)
  2720. (require 'ps-print)
  2721. (ps-print-buffer-with-faces file)
  2722. (message "Postscript written to %s" file))
  2723. ((string-match "\\.pdf\\'" file)
  2724. (require 'ps-print)
  2725. (ps-print-buffer-with-faces
  2726. (concat (file-name-sans-extension file) ".ps"))
  2727. (call-process "ps2pdf" nil nil nil
  2728. (expand-file-name
  2729. (concat (file-name-sans-extension file) ".ps"))
  2730. (expand-file-name file))
  2731. (delete-file (concat (file-name-sans-extension file) ".ps"))
  2732. (message "PDF written to %s" file))
  2733. ((string-match "\\.ics\\'" file)
  2734. (require 'org-icalendar)
  2735. (let ((org-agenda-marker-table
  2736. (org-create-marker-find-array
  2737. (org-agenda-collect-markers)))
  2738. (org-icalendar-verify-function 'org-check-agenda-marker-table)
  2739. (org-combined-agenda-icalendar-file file))
  2740. (apply 'org-export-icalendar 'combine
  2741. (org-agenda-files nil 'ifmode))))
  2742. (t
  2743. (let ((bs (buffer-string)))
  2744. (find-file file)
  2745. (erase-buffer)
  2746. (insert bs)
  2747. (save-buffer 0)
  2748. (kill-buffer (current-buffer))
  2749. (message "Plain text written to %s" file))))))))
  2750. (set-buffer (or agenda-bufname
  2751. (and (called-interactively-p 'any) (buffer-name))
  2752. org-agenda-buffer-name)))
  2753. (when open (org-open-file file)))
  2754. (defvar org-agenda-tag-filter-overlays nil)
  2755. (defvar org-agenda-cat-filter-overlays nil)
  2756. (defun org-agenda-mark-filtered-text ()
  2757. "Mark all text hidden by filtering with a text property."
  2758. (let ((inhibit-read-only t))
  2759. (mapc
  2760. (lambda (o)
  2761. (when (equal (overlay-buffer o) (current-buffer))
  2762. (put-text-property
  2763. (overlay-start o) (overlay-end o)
  2764. 'org-filtered t)))
  2765. (append org-agenda-tag-filter-overlays
  2766. org-agenda-cat-filter-overlays))))
  2767. (defun org-agenda-unmark-filtered-text ()
  2768. "Remove the filtering text property."
  2769. (let ((inhibit-read-only t))
  2770. (remove-text-properties (point-min) (point-max) '(org-filtered t))))
  2771. (defun org-agenda-remove-marked-text (property &optional value)
  2772. "Delete all text marked with VALUE of PROPERTY.
  2773. VALUE defaults to t."
  2774. (let (beg)
  2775. (setq value (or value t))
  2776. (while (setq beg (text-property-any (point-min) (point-max)
  2777. property value))
  2778. (delete-region
  2779. beg (or (next-single-property-change beg 'org-filtered)
  2780. (point-max))))))
  2781. (defun org-agenda-add-entry-text ()
  2782. "Add entry text to agenda lines.
  2783. This will add a maximum of `org-agenda-add-entry-text-maxlines' lines of the
  2784. entry text following headings shown in the agenda.
  2785. Drawers will be excluded, also the line with scheduling/deadline info."
  2786. (when (and (> org-agenda-add-entry-text-maxlines 0)
  2787. (not (org-bound-and-true-p org-mobile-creating-agendas)))
  2788. (let (m txt)
  2789. (goto-char (point-min))
  2790. (while (not (eobp))
  2791. (if (not (setq m (org-get-at-bol 'org-hd-marker)))
  2792. (beginning-of-line 2)
  2793. (setq txt (org-agenda-get-some-entry-text
  2794. m org-agenda-add-entry-text-maxlines " > "))
  2795. (end-of-line 1)
  2796. (if (string-match "\\S-" txt)
  2797. (insert "\n" txt)
  2798. (or (eobp) (forward-char 1))))))))
  2799. (defun org-agenda-get-some-entry-text (marker n-lines &optional indent
  2800. &rest keep)
  2801. "Extract entry text from MARKER, at most N-LINES lines.
  2802. This will ignore drawers etc, just get the text.
  2803. If INDENT is given, prefix every line with this string. If KEEP is
  2804. given, it is a list of symbols, defining stuff that should not be
  2805. removed from the entry content. Currently only `planning' is allowed here."
  2806. (let (txt drawer-re kwd-time-re ind)
  2807. (save-excursion
  2808. (with-current-buffer (marker-buffer marker)
  2809. (if (not (derived-mode-p 'org-mode))
  2810. (setq txt "")
  2811. (save-excursion
  2812. (save-restriction
  2813. (widen)
  2814. (goto-char marker)
  2815. (end-of-line 1)
  2816. (setq txt (buffer-substring
  2817. (min (1+ (point)) (point-max))
  2818. (progn (outline-next-heading) (point)))
  2819. drawer-re org-drawer-regexp
  2820. kwd-time-re (concat "^[ \t]*" org-keyword-time-regexp
  2821. ".*\n?"))
  2822. (with-temp-buffer
  2823. (insert txt)
  2824. (when org-agenda-add-entry-text-descriptive-links
  2825. (goto-char (point-min))
  2826. (while (org-activate-bracket-links (point-max))
  2827. (add-text-properties (match-beginning 0) (match-end 0)
  2828. '(face org-link))))
  2829. (goto-char (point-min))
  2830. (while (re-search-forward org-bracket-link-regexp (point-max) t)
  2831. (set-text-properties (match-beginning 0) (match-end 0)
  2832. nil))
  2833. (goto-char (point-min))
  2834. (while (re-search-forward drawer-re nil t)
  2835. (delete-region
  2836. (match-beginning 0)
  2837. (progn (re-search-forward
  2838. "^[ \t]*:END:.*\n?" nil 'move)
  2839. (point))))
  2840. (unless (member 'planning keep)
  2841. (goto-char (point-min))
  2842. (while (re-search-forward kwd-time-re nil t)
  2843. (replace-match "")))
  2844. (goto-char (point-min))
  2845. (when org-agenda-entry-text-exclude-regexps
  2846. (let ((re-list org-agenda-entry-text-exclude-regexps) re)
  2847. (while (setq re (pop re-list))
  2848. (goto-char (point-min))
  2849. (while (re-search-forward re nil t)
  2850. (replace-match "")))))
  2851. (goto-char (point-max))
  2852. (skip-chars-backward " \t\n")
  2853. (if (looking-at "[ \t\n]+\\'") (replace-match ""))
  2854. ;; find and remove min common indentation
  2855. (goto-char (point-min))
  2856. (untabify (point-min) (point-max))
  2857. (setq ind (org-get-indentation))
  2858. (while (not (eobp))
  2859. (unless (looking-at "[ \t]*$")
  2860. (setq ind (min ind (org-get-indentation))))
  2861. (beginning-of-line 2))
  2862. (goto-char (point-min))
  2863. (while (not (eobp))
  2864. (unless (looking-at "[ \t]*$")
  2865. (move-to-column ind)
  2866. (delete-region (point-at-bol) (point)))
  2867. (beginning-of-line 2))
  2868. (run-hooks 'org-agenda-entry-text-cleanup-hook)
  2869. (goto-char (point-min))
  2870. (when indent
  2871. (while (and (not (eobp)) (re-search-forward "^" nil t))
  2872. (replace-match indent t t)))
  2873. (goto-char (point-min))
  2874. (while (looking-at "[ \t]*\n") (replace-match ""))
  2875. (goto-char (point-max))
  2876. (when (> (org-current-line)
  2877. n-lines)
  2878. (org-goto-line (1+ n-lines))
  2879. (backward-char 1))
  2880. (setq txt (buffer-substring (point-min) (point)))))))))
  2881. txt))
  2882. (defun org-agenda-collect-markers ()
  2883. "Collect the markers pointing to entries in the agenda buffer."
  2884. (let (m markers)
  2885. (save-excursion
  2886. (goto-char (point-min))
  2887. (while (not (eobp))
  2888. (when (setq m (or (org-get-at-bol 'org-hd-marker)
  2889. (org-get-at-bol 'org-marker)))
  2890. (push m markers))
  2891. (beginning-of-line 2)))
  2892. (nreverse markers)))
  2893. (defun org-create-marker-find-array (marker-list)
  2894. "Create a alist of files names with all marker positions in that file."
  2895. (let (f tbl m a p)
  2896. (while (setq m (pop marker-list))
  2897. (setq p (marker-position m)
  2898. f (buffer-file-name (or (buffer-base-buffer
  2899. (marker-buffer m))
  2900. (marker-buffer m))))
  2901. (if (setq a (assoc f tbl))
  2902. (push (marker-position m) (cdr a))
  2903. (push (list f p) tbl)))
  2904. (mapcar (lambda (x) (setcdr x (sort (copy-sequence (cdr x)) '<)) x)
  2905. tbl)))
  2906. (defvar org-agenda-marker-table nil) ; dynamically scoped parameter
  2907. (defun org-check-agenda-marker-table ()
  2908. "Check of the current entry is on the marker list."
  2909. (let ((file (buffer-file-name (or (buffer-base-buffer) (current-buffer))))
  2910. a)
  2911. (and (setq a (assoc file org-agenda-marker-table))
  2912. (save-match-data
  2913. (save-excursion
  2914. (org-back-to-heading t)
  2915. (member (point) (cdr a)))))))
  2916. (defun org-check-for-org-mode ()
  2917. "Make sure current buffer is in org-mode. Error if not."
  2918. (or (derived-mode-p 'org-mode)
  2919. (error "Cannot execute org-mode agenda command on buffer in %s"
  2920. major-mode)))
  2921. (defun org-fit-agenda-window ()
  2922. "Fit the window to the buffer size."
  2923. (and (memq org-agenda-window-setup '(reorganize-frame))
  2924. (fboundp 'fit-window-to-buffer)
  2925. (org-fit-window-to-buffer
  2926. nil
  2927. (floor (* (frame-height) (cdr org-agenda-window-frame-fractions)))
  2928. (floor (* (frame-height) (car org-agenda-window-frame-fractions))))))
  2929. ;;; Agenda prepare and finalize
  2930. (defvar org-agenda-multi nil) ; dynamically scoped
  2931. (defvar org-agenda-buffer-name "*Org Agenda*")
  2932. (defvar org-pre-agenda-window-conf nil)
  2933. (defvar org-agenda-columns-active nil)
  2934. (defvar org-agenda-name nil)
  2935. (defvar org-agenda-tag-filter nil)
  2936. (defvar org-agenda-category-filter nil)
  2937. (defvar org-agenda-top-category-filter nil)
  2938. (defvar org-agenda-tag-filter-while-redo nil)
  2939. (defvar org-agenda-tag-filter-preset nil
  2940. "A preset of the tags filter used for secondary agenda filtering.
  2941. This must be a list of strings, each string must be a single tag preceded
  2942. by \"+\" or \"-\".
  2943. This variable should not be set directly, but agenda custom commands can
  2944. bind it in the options section. The preset filter is a global property of
  2945. the entire agenda view. In a block agenda, it will not work reliably to
  2946. define a filter for one of the individual blocks. You need to set it in
  2947. the global options and expect it to be applied to the entire view.")
  2948. (defvar org-agenda-category-filter-preset nil
  2949. "A preset of the category filter used for secondary agenda filtering.
  2950. This must be a list of strings, each string must be a single category
  2951. preceded by \"+\" or \"-\".
  2952. This variable should not be set directly, but agenda custom commands can
  2953. bind it in the options section. The preset filter is a global property of
  2954. the entire agenda view. In a block agenda, it will not work reliably to
  2955. define a filter for one of the individual blocks. You need to set it in
  2956. the global options and expect it to be applied to the entire view.")
  2957. (defun org-agenda-use-sticky-p ()
  2958. "Return non-nil if an agenda buffer named
  2959. `org-agenda-buffer-name' exists and should be shown instead of
  2960. generating a new one."
  2961. (and
  2962. ;; turned off by user
  2963. org-agenda-sticky
  2964. ;; For multi-agenda buffer already exists
  2965. (not org-agenda-multi)
  2966. ;; buffer found
  2967. (get-buffer org-agenda-buffer-name)
  2968. ;; C-u parameter is same as last call
  2969. (with-current-buffer (get-buffer org-agenda-buffer-name)
  2970. (and
  2971. (equal current-prefix-arg
  2972. org-agenda-last-prefix-arg)
  2973. ;; In case user turned stickiness on, while having existing
  2974. ;; Agenda buffer active, don't reuse that buffer, because it
  2975. ;; does not have org variables local
  2976. org-agenda-this-buffer-is-sticky))))
  2977. (defun org-prepare-agenda-window (abuf)
  2978. "Setup agenda buffer in the window."
  2979. (let* ((awin (get-buffer-window abuf))
  2980. wconf)
  2981. (cond
  2982. ((equal (current-buffer) abuf) nil)
  2983. (awin (select-window awin))
  2984. ((not (setq wconf (current-window-configuration))))
  2985. ((equal org-agenda-window-setup 'current-window)
  2986. (org-pop-to-buffer-same-window abuf))
  2987. ((equal org-agenda-window-setup 'other-window)
  2988. (org-switch-to-buffer-other-window abuf))
  2989. ((equal org-agenda-window-setup 'other-frame)
  2990. (switch-to-buffer-other-frame abuf))
  2991. ((equal org-agenda-window-setup 'reorganize-frame)
  2992. (delete-other-windows)
  2993. (org-switch-to-buffer-other-window abuf)))
  2994. ;; additional test in case agenda is invoked from within agenda
  2995. ;; buffer via elisp link
  2996. (unless (equal (current-buffer) abuf)
  2997. (org-pop-to-buffer-same-window abuf))
  2998. (setq org-pre-agenda-window-conf wconf)))
  2999. (defun org-prepare-agenda (&optional name)
  3000. (if (org-agenda-use-sticky-p)
  3001. (progn
  3002. ;; Popup existing buffer
  3003. (org-prepare-agenda-window (get-buffer org-agenda-buffer-name))
  3004. (message "Sticky Agenda buffer, use `r' to refresh")
  3005. (throw 'exit nil))
  3006. (setq org-todo-keywords-for-agenda nil)
  3007. (setq org-drawers-for-agenda nil)
  3008. (unless org-agenda-persistent-filter
  3009. (setq org-agenda-tag-filter nil
  3010. org-agenda-category-filter nil))
  3011. (put 'org-agenda-tag-filter :preset-filter org-agenda-tag-filter-preset)
  3012. (put 'org-agenda-category-filter :preset-filter
  3013. org-agenda-category-filter-preset)
  3014. (if org-agenda-multi
  3015. (progn
  3016. (setq buffer-read-only nil)
  3017. (goto-char (point-max))
  3018. (unless (or (bobp) org-agenda-compact-blocks
  3019. (not org-agenda-block-separator))
  3020. (insert "\n"
  3021. (if (stringp org-agenda-block-separator)
  3022. org-agenda-block-separator
  3023. (make-string (window-width) org-agenda-block-separator))
  3024. "\n"))
  3025. (narrow-to-region (point) (point-max)))
  3026. (setq org-done-keywords-for-agenda nil)
  3027. ;; Setting any org variables that are in org-agenda-local-vars
  3028. ;; list need to be done after the prepare call
  3029. (org-prepare-agenda-window (get-buffer-create org-agenda-buffer-name))
  3030. (setq buffer-read-only nil)
  3031. (org-agenda-reset-markers)
  3032. (let ((inhibit-read-only t)) (erase-buffer))
  3033. (org-agenda-mode)
  3034. (setq org-agenda-buffer (current-buffer))
  3035. (setq org-agenda-contributing-files nil)
  3036. (setq org-agenda-columns-active nil)
  3037. (org-prepare-agenda-buffers (org-agenda-files nil 'ifmode))
  3038. (setq org-todo-keywords-for-agenda
  3039. (org-uniquify org-todo-keywords-for-agenda))
  3040. (setq org-done-keywords-for-agenda
  3041. (org-uniquify org-done-keywords-for-agenda))
  3042. (setq org-drawers-for-agenda (org-uniquify org-drawers-for-agenda))
  3043. (setq org-agenda-last-prefix-arg current-prefix-arg)
  3044. (setq org-agenda-this-buffer-name org-agenda-buffer-name)
  3045. (and name (not org-agenda-name)
  3046. (org-set-local 'org-agenda-name name)))
  3047. (setq buffer-read-only nil)))
  3048. (defvar org-agenda-overriding-columns-format) ; From org-colview.el
  3049. (defun org-finalize-agenda ()
  3050. "Finishing touch for the agenda buffer, called just before displaying it."
  3051. (unless org-agenda-multi
  3052. (save-excursion
  3053. (let ((inhibit-read-only t))
  3054. (goto-char (point-min))
  3055. (while (org-activate-bracket-links (point-max))
  3056. (add-text-properties (match-beginning 0) (match-end 0)
  3057. '(face org-link)))
  3058. (org-agenda-align-tags)
  3059. (unless org-agenda-with-colors
  3060. (remove-text-properties (point-min) (point-max) '(face nil))))
  3061. (if (and (boundp 'org-agenda-overriding-columns-format)
  3062. org-agenda-overriding-columns-format)
  3063. (org-set-local 'org-agenda-overriding-columns-format
  3064. org-agenda-overriding-columns-format))
  3065. (if (and (boundp 'org-agenda-view-columns-initially)
  3066. org-agenda-view-columns-initially)
  3067. (org-agenda-columns))
  3068. (when org-agenda-fontify-priorities
  3069. (org-agenda-fontify-priorities))
  3070. (when (and org-agenda-dim-blocked-tasks org-blocker-hook)
  3071. (org-agenda-dim-blocked-tasks))
  3072. (org-agenda-mark-clocking-task)
  3073. (when org-agenda-entry-text-mode
  3074. (org-agenda-entry-text-hide)
  3075. (org-agenda-entry-text-show))
  3076. (if (functionp 'org-habit-insert-consistency-graphs)
  3077. (org-habit-insert-consistency-graphs))
  3078. (run-hooks 'org-finalize-agenda-hook)
  3079. (setq org-agenda-type (org-get-at-bol 'org-agenda-type))
  3080. (when (or org-agenda-tag-filter (get 'org-agenda-tag-filter :preset-filter))
  3081. (org-agenda-filter-apply org-agenda-tag-filter 'tag))
  3082. (when (or org-agenda-category-filter (get 'org-agenda-category-filter :preset-filter))
  3083. (org-agenda-filter-apply org-agenda-category-filter 'category))
  3084. (org-add-hook 'kill-buffer-hook 'org-agenda-reset-markers 'append 'local)
  3085. )))
  3086. (defun org-agenda-mark-clocking-task ()
  3087. "Mark the current clock entry in the agenda if it is present."
  3088. (mapc (lambda (o)
  3089. (if (eq (overlay-get o 'type) 'org-agenda-clocking)
  3090. (delete-overlay o)))
  3091. (overlays-in (point-min) (point-max)))
  3092. (when (marker-buffer org-clock-hd-marker)
  3093. (save-excursion
  3094. (goto-char (point-min))
  3095. (let (s ov)
  3096. (while (setq s (next-single-property-change (point) 'org-hd-marker))
  3097. (goto-char s)
  3098. (when (equal (org-get-at-bol 'org-hd-marker)
  3099. org-clock-hd-marker)
  3100. (setq ov (make-overlay (point-at-bol) (1+ (point-at-eol))))
  3101. (overlay-put ov 'type 'org-agenda-clocking)
  3102. (overlay-put ov 'face 'org-agenda-clocking)
  3103. (overlay-put ov 'help-echo
  3104. "The clock is running in this item")))))))
  3105. (defun org-agenda-fontify-priorities ()
  3106. "Make highest priority lines bold, and lowest italic."
  3107. (interactive)
  3108. (mapc (lambda (o) (if (eq (overlay-get o 'org-type) 'org-priority)
  3109. (delete-overlay o)))
  3110. (overlays-in (point-min) (point-max)))
  3111. (save-excursion
  3112. (let ((inhibit-read-only t)
  3113. b e p ov h l)
  3114. (goto-char (point-min))
  3115. (while (re-search-forward "\\[#\\(.\\)\\]" nil t)
  3116. (setq h (or (get-char-property (point) 'org-highest-priority)
  3117. org-highest-priority)
  3118. l (or (get-char-property (point) 'org-lowest-priority)
  3119. org-lowest-priority)
  3120. p (string-to-char (match-string 1))
  3121. b (match-beginning 0)
  3122. e (if (eq org-agenda-fontify-priorities 'cookies)
  3123. (match-end 0)
  3124. (point-at-eol))
  3125. ov (make-overlay b e))
  3126. (overlay-put
  3127. ov 'face
  3128. (cond ((org-face-from-face-or-color
  3129. 'priority nil
  3130. (cdr (assoc p org-priority-faces))))
  3131. ((and (listp org-agenda-fontify-priorities)
  3132. (org-face-from-face-or-color
  3133. 'priority nil
  3134. (cdr (assoc p org-agenda-fontify-priorities)))))
  3135. ((equal p l) 'italic)
  3136. ((equal p h) 'bold)))
  3137. (overlay-put ov 'org-type 'org-priority)))))
  3138. (defun org-agenda-dim-blocked-tasks ()
  3139. "Dim currently blocked TODO's in the agenda display."
  3140. (mapc (lambda (o) (if (eq (overlay-get o 'org-type) 'org-blocked-todo)
  3141. (delete-overlay o)))
  3142. (overlays-in (point-min) (point-max)))
  3143. (save-excursion
  3144. (let ((inhibit-read-only t)
  3145. (org-depend-tag-blocked nil)
  3146. (invis (eq org-agenda-dim-blocked-tasks 'invisible))
  3147. org-blocked-by-checkboxes
  3148. invis1 b e p ov h l)
  3149. (goto-char (point-min))
  3150. (while (let ((pos (next-single-property-change (point) 'todo-state)))
  3151. (and pos (goto-char (1+ pos))))
  3152. (setq org-blocked-by-checkboxes nil invis1 invis)
  3153. (let ((marker (org-get-at-bol 'org-hd-marker)))
  3154. (when (and marker
  3155. (with-current-buffer (marker-buffer marker)
  3156. (save-excursion (goto-char marker)
  3157. (org-entry-blocked-p))))
  3158. (if org-blocked-by-checkboxes (setq invis1 nil))
  3159. (setq b (if invis1
  3160. (max (point-min) (1- (point-at-bol)))
  3161. (point-at-bol))
  3162. e (point-at-eol)
  3163. ov (make-overlay b e))
  3164. (if invis1
  3165. (overlay-put ov 'invisible t)
  3166. (overlay-put ov 'face 'org-agenda-dimmed-todo-face))
  3167. (overlay-put ov 'org-type 'org-blocked-todo)))))))
  3168. (defvar org-agenda-skip-function nil
  3169. "Function to be called at each match during agenda construction.
  3170. If this function returns nil, the current match should not be skipped.
  3171. Otherwise, the function must return a position from where the search
  3172. should be continued.
  3173. This may also be a Lisp form, it will be evaluated.
  3174. Never set this variable using `setq' or so, because then it will apply
  3175. to all future agenda commands. If you do want a global skipping condition,
  3176. use the option `org-agenda-skip-function-global' instead.
  3177. The correct usage for `org-agenda-skip-function' is to bind it with
  3178. `let' to scope it dynamically into the agenda-constructing command.
  3179. A good way to set it is through options in `org-agenda-custom-commands'.")
  3180. (defun org-agenda-skip ()
  3181. "Throw to `:skip' in places that should be skipped.
  3182. Also moves point to the end of the skipped region, so that search can
  3183. continue from there."
  3184. (let ((p (point-at-bol)) to)
  3185. (and org-agenda-skip-archived-trees (not org-agenda-archives-mode)
  3186. (get-text-property p :org-archived)
  3187. (org-end-of-subtree t)
  3188. (throw :skip t))
  3189. (and org-agenda-skip-comment-trees
  3190. (get-text-property p :org-comment)
  3191. (org-end-of-subtree t)
  3192. (throw :skip t))
  3193. (if (equal (char-after p) ?#) (throw :skip t))
  3194. (when (setq to (or (org-agenda-skip-eval org-agenda-skip-function-global)
  3195. (org-agenda-skip-eval org-agenda-skip-function)))
  3196. (goto-char to)
  3197. (throw :skip t))))
  3198. (defun org-agenda-skip-eval (form)
  3199. "If FORM is a function or a list, call (or eval) is and return result.
  3200. `save-excursion' and `save-match-data' are wrapped around the call, so point
  3201. and match data are returned to the previous state no matter what these
  3202. functions do."
  3203. (let (fp)
  3204. (and form
  3205. (or (setq fp (functionp form))
  3206. (consp form))
  3207. (save-excursion
  3208. (save-match-data
  3209. (if fp
  3210. (funcall form)
  3211. (eval form)))))))
  3212. (defvar org-agenda-markers nil
  3213. "List of all currently active markers created by `org-agenda'.")
  3214. (defvar org-agenda-last-marker-time (org-float-time)
  3215. "Creation time of the last agenda marker.")
  3216. (defun org-agenda-new-marker (&optional pos)
  3217. "Return a new agenda marker.
  3218. Org-mode keeps a list of these markers and resets them when they are
  3219. no longer in use."
  3220. (let ((m (copy-marker (or pos (point)))))
  3221. (setq org-agenda-last-marker-time (org-float-time))
  3222. (if org-agenda-buffer
  3223. (with-current-buffer org-agenda-buffer
  3224. (push m org-agenda-markers))
  3225. (push m org-agenda-markers))
  3226. m))
  3227. (defun org-agenda-reset-markers ()
  3228. "Reset markers created by `org-agenda'."
  3229. (while org-agenda-markers
  3230. (move-marker (pop org-agenda-markers) nil)))
  3231. (defun org-agenda-save-markers-for-cut-and-paste (beg end)
  3232. "Save relative positions of markers in region.
  3233. This check for agenda markers in all agenda buffers currently active."
  3234. (dolist (buf (buffer-list))
  3235. (with-current-buffer buf
  3236. (when (eq major-mode 'org-agenda-mode)
  3237. (mapc (lambda (m) (org-check-and-save-marker m beg end))
  3238. org-agenda-markers)))))
  3239. ;;; Entry text mode
  3240. (defun org-agenda-entry-text-show-here ()
  3241. "Add some text from the entry as context to the current line."
  3242. (let (m txt o)
  3243. (setq m (org-get-at-bol 'org-hd-marker))
  3244. (unless (marker-buffer m)
  3245. (error "No marker points to an entry here"))
  3246. (setq txt (concat "\n" (org-no-properties
  3247. (org-agenda-get-some-entry-text
  3248. m org-agenda-entry-text-maxlines " > "))))
  3249. (when (string-match "\\S-" txt)
  3250. (setq o (make-overlay (point-at-bol) (point-at-eol)))
  3251. (overlay-put o 'evaporate t)
  3252. (overlay-put o 'org-overlay-type 'agenda-entry-content)
  3253. (overlay-put o 'after-string txt))))
  3254. (defun org-agenda-entry-text-show ()
  3255. "Add entry context for all agenda lines."
  3256. (interactive)
  3257. (save-excursion
  3258. (goto-char (point-max))
  3259. (beginning-of-line 1)
  3260. (while (not (bobp))
  3261. (when (org-get-at-bol 'org-hd-marker)
  3262. (org-agenda-entry-text-show-here))
  3263. (beginning-of-line 0))))
  3264. (defun org-agenda-entry-text-hide ()
  3265. "Remove any shown entry context."
  3266. (delq nil
  3267. (mapcar (lambda (o)
  3268. (if (eq (overlay-get o 'org-overlay-type)
  3269. 'agenda-entry-content)
  3270. (progn (delete-overlay o) t)))
  3271. (overlays-in (point-min) (point-max)))))
  3272. (defun org-agenda-get-day-face (date)
  3273. "Return the face DATE should be displayed with."
  3274. (or (and (functionp org-agenda-day-face-function)
  3275. (funcall org-agenda-day-face-function date))
  3276. (cond ((org-agenda-todayp date)
  3277. 'org-agenda-date-today)
  3278. ((member (calendar-day-of-week date) org-agenda-weekend-days)
  3279. 'org-agenda-date-weekend)
  3280. (t 'org-agenda-date))))
  3281. ;;; Agenda timeline
  3282. (defvar org-agenda-only-exact-dates nil) ; dynamically scoped
  3283. (defun org-timeline (&optional dotodo)
  3284. "Show a time-sorted view of the entries in the current org file.
  3285. Only entries with a time stamp of today or later will be listed. With
  3286. \\[universal-argument] prefix, all unfinished TODO items will also be shown,
  3287. under the current date.
  3288. If the buffer contains an active region, only check the region for
  3289. dates."
  3290. (interactive "P")
  3291. (let* ((dopast t)
  3292. (org-agenda-show-log-scoped org-agenda-show-log)
  3293. (entry (buffer-file-name (or (buffer-base-buffer (current-buffer))
  3294. (current-buffer))))
  3295. (date (calendar-current-date))
  3296. (beg (if (org-region-active-p) (region-beginning) (point-min)))
  3297. (end (if (org-region-active-p) (region-end) (point-max)))
  3298. (day-numbers (org-get-all-dates
  3299. beg end 'no-ranges
  3300. t org-agenda-show-log-scoped ; always include today
  3301. org-timeline-show-empty-dates))
  3302. (org-deadline-warning-days 0)
  3303. (org-agenda-only-exact-dates t)
  3304. (today (org-today))
  3305. (past t)
  3306. args
  3307. s e rtn d emptyp)
  3308. (setq org-agenda-redo-command
  3309. (list 'progn
  3310. (list 'org-switch-to-buffer-other-window (current-buffer))
  3311. (list 'org-timeline (list 'quote dotodo))))
  3312. (if (not dopast)
  3313. ;; Remove past dates from the list of dates.
  3314. (setq day-numbers (delq nil (mapcar (lambda(x)
  3315. (if (>= x today) x nil))
  3316. day-numbers))))
  3317. (org-prepare-agenda (concat "Timeline " (file-name-nondirectory entry)))
  3318. (org-compile-prefix-format 'timeline)
  3319. (org-set-sorting-strategy 'timeline)
  3320. (if org-agenda-show-log-scoped (push :closed args))
  3321. (push :timestamp args)
  3322. (push :deadline args)
  3323. (push :scheduled args)
  3324. (push :sexp args)
  3325. (if dotodo (push :todo args))
  3326. (insert "Timeline of file " entry "\n")
  3327. (add-text-properties (point-min) (point)
  3328. (list 'face 'org-agenda-structure))
  3329. (org-agenda-mark-header-line (point-min))
  3330. (while (setq d (pop day-numbers))
  3331. (if (and (listp d) (eq (car d) :omitted))
  3332. (progn
  3333. (setq s (point))
  3334. (insert (format "\n[... %d empty days omitted]\n\n" (cdr d)))
  3335. (put-text-property s (1- (point)) 'face 'org-agenda-structure))
  3336. (if (listp d) (setq d (car d) emptyp t) (setq emptyp nil))
  3337. (if (and (>= d today)
  3338. dopast
  3339. past)
  3340. (progn
  3341. (setq past nil)
  3342. (insert (make-string 79 ?-) "\n")))
  3343. (setq date (calendar-gregorian-from-absolute d))
  3344. (setq s (point))
  3345. (setq rtn (and (not emptyp)
  3346. (apply 'org-agenda-get-day-entries entry
  3347. date args)))
  3348. (if (or rtn (equal d today) org-timeline-show-empty-dates)
  3349. (progn
  3350. (insert
  3351. (if (stringp org-agenda-format-date)
  3352. (format-time-string org-agenda-format-date
  3353. (org-time-from-absolute date))
  3354. (funcall org-agenda-format-date date))
  3355. "\n")
  3356. (put-text-property s (1- (point)) 'face
  3357. (org-agenda-get-day-face date))
  3358. (put-text-property s (1- (point)) 'org-date-line t)
  3359. (put-text-property s (1- (point)) 'org-agenda-date-header t)
  3360. (if (equal d today)
  3361. (put-text-property s (1- (point)) 'org-today t))
  3362. (and rtn (insert (org-finalize-agenda-entries rtn) "\n"))
  3363. (put-text-property s (1- (point)) 'day d)))))
  3364. (goto-char (point-min))
  3365. (goto-char (or (text-property-any (point-min) (point-max) 'org-today t)
  3366. (point-min)))
  3367. (add-text-properties (point-min) (point-max) '(org-agenda-type timeline))
  3368. (org-finalize-agenda)
  3369. (setq buffer-read-only t)))
  3370. (defun org-get-all-dates (beg end &optional no-ranges force-today inactive empty pre-re)
  3371. "Return a list of all relevant day numbers from BEG to END buffer positions.
  3372. If NO-RANGES is non-nil, include only the start and end dates of a range,
  3373. not every single day in the range. If FORCE-TODAY is non-nil, make
  3374. sure that TODAY is included in the list. If INACTIVE is non-nil, also
  3375. inactive time stamps (those in square brackets) are included.
  3376. When EMPTY is non-nil, also include days without any entries."
  3377. (let ((re (concat
  3378. (if pre-re pre-re "")
  3379. (if inactive org-ts-regexp-both org-ts-regexp)))
  3380. dates dates1 date day day1 day2 ts1 ts2 pos)
  3381. (if force-today
  3382. (setq dates (list (org-today))))
  3383. (save-excursion
  3384. (goto-char beg)
  3385. (while (re-search-forward re end t)
  3386. (setq day (time-to-days (org-time-string-to-time
  3387. (substring (match-string 1) 0 10)
  3388. (current-buffer) (match-beginning 0))))
  3389. (or (memq day dates) (push day dates)))
  3390. (unless no-ranges
  3391. (goto-char beg)
  3392. (while (re-search-forward org-tr-regexp end t)
  3393. (setq pos (match-beginning 0))
  3394. (setq ts1 (substring (match-string 1) 0 10)
  3395. ts2 (substring (match-string 2) 0 10)
  3396. day1 (time-to-days (org-time-string-to-time
  3397. ts1 (current-buffer) pos))
  3398. day2 (time-to-days (org-time-string-to-time
  3399. ts2 (current-buffer) pos)))
  3400. (while (< (setq day1 (1+ day1)) day2)
  3401. (or (memq day1 dates) (push day1 dates)))))
  3402. (setq dates (sort dates '<))
  3403. (when empty
  3404. (while (setq day (pop dates))
  3405. (setq day2 (car dates))
  3406. (push day dates1)
  3407. (when (and day2 empty)
  3408. (if (or (eq empty t)
  3409. (and (numberp empty) (<= (- day2 day) empty)))
  3410. (while (< (setq day (1+ day)) day2)
  3411. (push (list day) dates1))
  3412. (push (cons :omitted (- day2 day)) dates1))))
  3413. (setq dates (nreverse dates1)))
  3414. dates)))
  3415. ;;; Agenda Daily/Weekly
  3416. (defvar org-agenda-start-day nil ; dynamically scoped parameter
  3417. "Start day for the agenda view.
  3418. Custom commands can set this variable in the options section.")
  3419. (defvar org-starting-day nil) ; local variable in the agenda buffer
  3420. (defvar org-agenda-current-span nil
  3421. "The current span used in the agenda view.") ; local variable in the agenda buffer
  3422. (defvar org-arg-loc nil) ; local variable
  3423. (defvar org-agenda-entry-types '(:deadline :scheduled :timestamp :sexp)
  3424. "List of types searched for when creating the daily/weekly agenda.
  3425. This variable is a list of symbols that controls the types of
  3426. items that appear in the daily/weekly agenda. Allowed symbols in this
  3427. list are are
  3428. :timestamp List items containing a date stamp or date range matching
  3429. the selected date. This includes sexp entries in
  3430. angular brackets.
  3431. :sexp List entries resulting from plain diary-like sexps.
  3432. :deadline List deadline due on that date. When the date is today,
  3433. also list any deadlines past due, or due within
  3434. `org-deadline-warning-days'. `:deadline' must appear before
  3435. `:scheduled' if the setting of
  3436. `org-agenda-skip-scheduled-if-deadline-is-shown' is to have
  3437. any effect.
  3438. :scheduled List all items which are scheduled for the given date.
  3439. The diary for *today* also contains items which were
  3440. scheduled earlier and are not yet marked DONE.
  3441. By default, all four types are turned on.
  3442. Never set this variable globally using `setq', because then it
  3443. will apply to all future agenda commands. Instead, bind it with
  3444. `let' to scope it dynamically into the agenda-constructing
  3445. command. A good way to set it is through options in
  3446. `org-agenda-custom-commands'. For a more flexible (though
  3447. somewhat less efficient) way of determining what is included in
  3448. the daily/weekly agenda, see `org-agenda-skip-function'.")
  3449. ;;;###autoload
  3450. (defun org-agenda-list (&optional arg start-day span)
  3451. "Produce a daily/weekly view from all files in variable `org-agenda-files'.
  3452. The view will be for the current day or week, but from the overview buffer
  3453. you will be able to go to other days/weeks.
  3454. With a numeric prefix argument in an interactive call, the agenda will
  3455. span ARG days. Lisp programs should instead specify SPAN to change
  3456. the number of days. SPAN defaults to `org-agenda-span'.
  3457. START-DAY defaults to TODAY, or to the most recent match for the weekday
  3458. given in `org-agenda-start-on-weekday'."
  3459. (interactive "P")
  3460. (if (and (integerp arg) (> arg 0))
  3461. (setq span arg arg nil))
  3462. (org-prepare-agenda "Day/Week")
  3463. (setq start-day (or start-day org-agenda-start-day))
  3464. (if org-agenda-overriding-arguments
  3465. (setq arg (car org-agenda-overriding-arguments)
  3466. start-day (nth 1 org-agenda-overriding-arguments)
  3467. span (nth 2 org-agenda-overriding-arguments)))
  3468. (if (stringp start-day)
  3469. ;; Convert to an absolute day number
  3470. (setq start-day (time-to-days (org-read-date nil t start-day))))
  3471. (setq org-agenda-last-arguments (list arg start-day span))
  3472. (org-compile-prefix-format 'agenda)
  3473. (org-set-sorting-strategy 'agenda)
  3474. (let* ((span (org-agenda-ndays-to-span
  3475. (or span org-agenda-ndays org-agenda-span)))
  3476. (today (org-today))
  3477. (sd (or start-day today))
  3478. (ndays (org-agenda-span-to-ndays span sd))
  3479. (org-agenda-start-on-weekday
  3480. (if (eq ndays 7)
  3481. org-agenda-start-on-weekday))
  3482. (thefiles (org-agenda-files nil 'ifmode))
  3483. (files thefiles)
  3484. (start (if (or (null org-agenda-start-on-weekday)
  3485. (< ndays 7))
  3486. sd
  3487. (let* ((nt (calendar-day-of-week
  3488. (calendar-gregorian-from-absolute sd)))
  3489. (n1 org-agenda-start-on-weekday)
  3490. (d (- nt n1)))
  3491. (- sd (+ (if (< d 0) 7 0) d)))))
  3492. (day-numbers (list start))
  3493. (day-cnt 0)
  3494. (inhibit-redisplay (not debug-on-error))
  3495. (org-agenda-show-log-scoped org-agenda-show-log)
  3496. s e rtn rtnall file date d start-pos end-pos todayp
  3497. clocktable-start clocktable-end filter)
  3498. (setq org-agenda-redo-command
  3499. (list 'org-agenda-list (list 'quote arg) start-day (list 'quote span)))
  3500. (dotimes (n (1- ndays))
  3501. (push (1+ (car day-numbers)) day-numbers))
  3502. (setq day-numbers (nreverse day-numbers))
  3503. (setq clocktable-start (car day-numbers)
  3504. clocktable-end (1+ (or (org-last day-numbers) 0)))
  3505. (org-set-local 'org-starting-day (car day-numbers))
  3506. (org-set-local 'org-arg-loc arg)
  3507. (org-set-local 'org-agenda-current-span (org-agenda-ndays-to-span span))
  3508. (unless org-agenda-compact-blocks
  3509. (let* ((d1 (car day-numbers))
  3510. (d2 (org-last day-numbers))
  3511. (w1 (org-days-to-iso-week d1))
  3512. (w2 (org-days-to-iso-week d2)))
  3513. (setq s (point))
  3514. (if org-agenda-overriding-header
  3515. (insert (org-add-props (copy-sequence org-agenda-overriding-header)
  3516. nil 'face 'org-agenda-structure) "\n")
  3517. (insert (org-agenda-span-name span)
  3518. "-agenda"
  3519. (if (< (- d2 d1) 350)
  3520. (if (= w1 w2)
  3521. (format " (W%02d)" w1)
  3522. (format " (W%02d-W%02d)" w1 w2))
  3523. "")
  3524. ":\n")))
  3525. (add-text-properties s (1- (point)) (list 'face 'org-agenda-structure
  3526. 'org-date-line t))
  3527. (org-agenda-mark-header-line s))
  3528. (while (setq d (pop day-numbers))
  3529. (setq date (calendar-gregorian-from-absolute d)
  3530. s (point))
  3531. (if (or (setq todayp (= d today))
  3532. (and (not start-pos) (= d sd)))
  3533. (setq start-pos (point))
  3534. (if (and start-pos (not end-pos))
  3535. (setq end-pos (point))))
  3536. (setq files thefiles
  3537. rtnall nil)
  3538. (while (setq file (pop files))
  3539. (catch 'nextfile
  3540. (org-check-agenda-file file)
  3541. (let ((org-agenda-entry-types org-agenda-entry-types))
  3542. (unless org-agenda-include-deadlines
  3543. (setq org-agenda-entry-types
  3544. (delq :deadline org-agenda-entry-types)))
  3545. (cond
  3546. ((memq org-agenda-show-log-scoped '(only clockcheck))
  3547. (setq rtn (org-agenda-get-day-entries
  3548. file date :closed)))
  3549. (org-agenda-show-log-scoped
  3550. (setq rtn (apply 'org-agenda-get-day-entries
  3551. file date
  3552. (append '(:closed) org-agenda-entry-types))))
  3553. (t
  3554. (setq rtn (apply 'org-agenda-get-day-entries
  3555. file date
  3556. org-agenda-entry-types)))))
  3557. (setq rtnall (append rtnall rtn)))) ;; all entries
  3558. (if org-agenda-include-diary
  3559. (let ((org-agenda-search-headline-for-time t))
  3560. (require 'diary-lib)
  3561. (setq rtn (org-get-entries-from-diary date))
  3562. (setq rtnall (append rtnall rtn))))
  3563. (if (or rtnall org-agenda-show-all-dates)
  3564. (progn
  3565. (setq day-cnt (1+ day-cnt))
  3566. (insert
  3567. (if (stringp org-agenda-format-date)
  3568. (format-time-string org-agenda-format-date
  3569. (org-time-from-absolute date))
  3570. (funcall org-agenda-format-date date))
  3571. "\n")
  3572. (put-text-property s (1- (point)) 'face
  3573. (org-agenda-get-day-face date))
  3574. (put-text-property s (1- (point)) 'org-date-line t)
  3575. (put-text-property s (1- (point)) 'org-agenda-date-header t)
  3576. (put-text-property s (1- (point)) 'org-day-cnt day-cnt)
  3577. (when todayp
  3578. (put-text-property s (1- (point)) 'org-today t))
  3579. (setq rtnall
  3580. (org-agenda-add-time-grid-maybe rtnall ndays todayp))
  3581. (if rtnall (insert ;; all entries
  3582. (org-finalize-agenda-entries rtnall)
  3583. "\n"))
  3584. (put-text-property s (1- (point)) 'day d)
  3585. (put-text-property s (1- (point)) 'org-day-cnt day-cnt))))
  3586. (when (and org-agenda-clockreport-mode clocktable-start)
  3587. (let ((org-agenda-files (org-agenda-files nil 'ifmode))
  3588. ;; the above line is to ensure the restricted range!
  3589. (p (copy-sequence org-agenda-clockreport-parameter-plist))
  3590. tbl)
  3591. (setq p (org-plist-delete p :block))
  3592. (setq p (plist-put p :tstart clocktable-start))
  3593. (setq p (plist-put p :tend clocktable-end))
  3594. (setq p (plist-put p :scope 'agenda))
  3595. (when (and (eq org-agenda-clockreport-mode 'with-filter)
  3596. (setq filter (or org-agenda-tag-filter-while-redo
  3597. (get 'org-agenda-tag-filter :preset-filter))))
  3598. (setq p (plist-put p :tags (mapconcat (lambda (x)
  3599. (if (string-match "[<>=]" x)
  3600. ""
  3601. x))
  3602. filter ""))))
  3603. (setq tbl (apply 'org-get-clocktable p))
  3604. (insert tbl)))
  3605. (goto-char (point-min))
  3606. (or org-agenda-multi (org-fit-agenda-window))
  3607. (unless (and (pos-visible-in-window-p (point-min))
  3608. (pos-visible-in-window-p (point-max)))
  3609. (goto-char (1- (point-max)))
  3610. (recenter -1)
  3611. (if (not (pos-visible-in-window-p (or start-pos 1)))
  3612. (progn
  3613. (goto-char (or start-pos 1))
  3614. (recenter 1))))
  3615. (goto-char (or start-pos 1))
  3616. (add-text-properties (point-min) (point-max) '(org-agenda-type agenda))
  3617. (if (eq org-agenda-show-log-scoped 'clockcheck)
  3618. (org-agenda-show-clocking-issues))
  3619. (org-finalize-agenda)
  3620. (setq buffer-read-only t)
  3621. (message "")))
  3622. (defun org-agenda-ndays-to-span (n)
  3623. "Return a span symbol for a span of N days, or N if none matches."
  3624. (cond ((symbolp n) n)
  3625. ((= n 1) 'day)
  3626. ((= n 7) 'week)
  3627. (t n)))
  3628. (defun org-agenda-span-to-ndays (span start-day)
  3629. "Return ndays from SPAN starting at START-DAY."
  3630. (cond ((numberp span) span)
  3631. ((eq span 'day) 1)
  3632. ((eq span 'week) 7)
  3633. ((eq span 'month)
  3634. (let ((date (calendar-gregorian-from-absolute start-day)))
  3635. (calendar-last-day-of-month (car date) (caddr date))))
  3636. ((eq span 'year)
  3637. (let ((date (calendar-gregorian-from-absolute start-day)))
  3638. (if (calendar-leap-year-p (caddr date)) 366 365)))))
  3639. (defun org-agenda-span-name (span)
  3640. "Return a SPAN name."
  3641. (if (null span)
  3642. ""
  3643. (if (symbolp span)
  3644. (capitalize (symbol-name span))
  3645. (format "%d days" span))))
  3646. ;;; Agenda word search
  3647. (defvar org-agenda-search-history nil)
  3648. (defvar org-todo-only nil)
  3649. (defvar org-search-syntax-table nil
  3650. "Special syntax table for org-mode search.
  3651. In this table, we have single quotes not as word constituents, to
  3652. that when \"+Ameli\" is searched as a work, it will also match \"Ameli's\"")
  3653. (defvar org-mode-syntax-table) ; From org.el
  3654. (defun org-search-syntax-table ()
  3655. (unless org-search-syntax-table
  3656. (setq org-search-syntax-table (copy-syntax-table org-mode-syntax-table))
  3657. (modify-syntax-entry ?' "." org-search-syntax-table)
  3658. (modify-syntax-entry ?` "." org-search-syntax-table))
  3659. org-search-syntax-table)
  3660. (defvar org-agenda-last-search-view-search-was-boolean nil)
  3661. ;;;###autoload
  3662. (defun org-search-view (&optional todo-only string edit-at)
  3663. "Show all entries that contain a phrase or words or regular expressions.
  3664. With optional prefix argument TODO-ONLY, only consider entries that are
  3665. TODO entries. The argument STRING can be used to pass a default search
  3666. string into this function. If EDIT-AT is non-nil, it means that the
  3667. user should get a chance to edit this string, with cursor at position
  3668. EDIT-AT.
  3669. The search string can be viewed either as a phrase that should be found as
  3670. is, or it can be broken into a number of snippets, each of which must match
  3671. in a Boolean way to select an entry. The default depends on the variable
  3672. `org-agenda-search-view-always-boolean'.
  3673. Even if this is turned off (the default) you can always switch to
  3674. Boolean search dynamically by preceding the first word with \"+\" or \"-\".
  3675. The default is a direct search of the whole phrase, where each space in
  3676. the search string can expand to an arbitrary amount of whitespace,
  3677. including newlines.
  3678. If using a Boolean search, the search string is split on whitespace and
  3679. each snippet is searched separately, with logical AND to select an entry.
  3680. Words prefixed with a minus must *not* occur in the entry. Words without
  3681. a prefix or prefixed with a plus must occur in the entry. Matching is
  3682. case-insensitive. Words are enclosed by word delimiters (i.e. they must
  3683. match whole words, not parts of a word) if
  3684. `org-agenda-search-view-force-full-words' is set (default is nil).
  3685. Boolean search snippets enclosed by curly braces are interpreted as
  3686. regular expressions that must or (when preceded with \"-\") must not
  3687. match in the entry. Snippets enclosed into double quotes will be taken
  3688. as a whole, to include whitespace.
  3689. - If the search string starts with an asterisk, search only in headlines.
  3690. - If (possibly after the leading star) the search string starts with an
  3691. exclamation mark, this also means to look at TODO entries only, an effect
  3692. that can also be achieved with a prefix argument.
  3693. - If (possibly after star and exclamation mark) the search string starts
  3694. with a colon, this will mean that the (non-regexp) snippets of the
  3695. Boolean search must match as full words.
  3696. This command searches the agenda files, and in addition the files listed
  3697. in `org-agenda-text-search-extra-files'."
  3698. (interactive "P")
  3699. (org-prepare-agenda "SEARCH")
  3700. (org-compile-prefix-format 'search)
  3701. (org-set-sorting-strategy 'search)
  3702. (let* ((props (list 'face nil
  3703. 'done-face 'org-agenda-done
  3704. 'org-not-done-regexp org-not-done-regexp
  3705. 'org-todo-regexp org-todo-regexp
  3706. 'org-complex-heading-regexp org-complex-heading-regexp
  3707. 'mouse-face 'highlight
  3708. 'help-echo (format "mouse-2 or RET jump to location")))
  3709. (full-words org-agenda-search-view-force-full-words)
  3710. (org-agenda-text-search-extra-files org-agenda-text-search-extra-files)
  3711. regexp rtn rtnall files file pos
  3712. marker category org-category-pos tags c neg re boolean
  3713. ee txt beg end words regexps+ regexps- hdl-only buffer beg1 str)
  3714. (unless (and (not edit-at)
  3715. (stringp string)
  3716. (string-match "\\S-" string))
  3717. (setq string (read-string
  3718. (if org-agenda-search-view-always-boolean
  3719. "[+-]Word/{Regexp} ...: "
  3720. "Phrase, or [+-]Word/{Regexp} ...: ")
  3721. (cond
  3722. ((integerp edit-at) (cons string edit-at))
  3723. (edit-at string))
  3724. 'org-agenda-search-history)))
  3725. (org-set-local 'org-todo-only todo-only)
  3726. (setq org-agenda-redo-command
  3727. (list 'org-search-view (if todo-only t nil) string
  3728. '(if current-prefix-arg 1 nil)))
  3729. (setq org-agenda-query-string string)
  3730. (if (equal (string-to-char string) ?*)
  3731. (setq hdl-only t
  3732. words (substring string 1))
  3733. (setq words string))
  3734. (when (equal (string-to-char words) ?!)
  3735. (setq todo-only t
  3736. words (substring words 1)))
  3737. (when (equal (string-to-char words) ?:)
  3738. (setq full-words t
  3739. words (substring words 1)))
  3740. (if (or org-agenda-search-view-always-boolean
  3741. (member (string-to-char words) '(?- ?+ ?\{)))
  3742. (setq boolean t))
  3743. (setq words (org-split-string words))
  3744. (let (www w)
  3745. (while (setq w (pop words))
  3746. (while (and (string-match "\\\\\\'" w) words)
  3747. (setq w (concat (substring w 0 -1) " " (pop words))))
  3748. (push w www))
  3749. (setq words (nreverse www) www nil)
  3750. (while (setq w (pop words))
  3751. (when (and (string-match "\\`[-+]?{" w)
  3752. (not (string-match "}\\'" w)))
  3753. (while (and words (not (string-match "}\\'" (car words))))
  3754. (setq w (concat w " " (pop words))))
  3755. (setq w (concat w " " (pop words))))
  3756. (push w www))
  3757. (setq words (nreverse www)))
  3758. (setq org-agenda-last-search-view-search-was-boolean boolean)
  3759. (when boolean
  3760. (let (wds w)
  3761. (while (setq w (pop words))
  3762. (if (or (equal (substring w 0 1) "\"")
  3763. (and (> (length w) 1)
  3764. (member (substring w 0 1) '("+" "-"))
  3765. (equal (substring w 1 2) "\"")))
  3766. (while (and words (not (equal (substring w -1) "\"")))
  3767. (setq w (concat w " " (pop words)))))
  3768. (and (string-match "\\`\\([-+]?\\)\"" w)
  3769. (setq w (replace-match "\\1" nil nil w)))
  3770. (and (equal (substring w -1) "\"") (setq w (substring w 0 -1)))
  3771. (push w wds))
  3772. (setq words (nreverse wds))))
  3773. (if boolean
  3774. (mapc (lambda (w)
  3775. (setq c (string-to-char w))
  3776. (if (equal c ?-)
  3777. (setq neg t w (substring w 1))
  3778. (if (equal c ?+)
  3779. (setq neg nil w (substring w 1))
  3780. (setq neg nil)))
  3781. (if (string-match "\\`{.*}\\'" w)
  3782. (setq re (substring w 1 -1))
  3783. (if full-words
  3784. (setq re (concat "\\<" (regexp-quote (downcase w)) "\\>"))
  3785. (setq re (regexp-quote (downcase w)))))
  3786. (if neg (push re regexps-) (push re regexps+)))
  3787. words)
  3788. (push (mapconcat (lambda (w) (regexp-quote w)) words "\\s-+")
  3789. regexps+))
  3790. (setq regexps+ (sort regexps+ (lambda (a b) (> (length a) (length b)))))
  3791. (if (not regexps+)
  3792. (setq regexp org-outline-regexp-bol)
  3793. (setq regexp (pop regexps+))
  3794. (if hdl-only (setq regexp (concat org-outline-regexp-bol ".*?"
  3795. regexp))))
  3796. (setq files (org-agenda-files nil 'ifmode))
  3797. (when (eq (car org-agenda-text-search-extra-files) 'agenda-archives)
  3798. (pop org-agenda-text-search-extra-files)
  3799. (setq files (org-add-archive-files files)))
  3800. (setq files (append files org-agenda-text-search-extra-files)
  3801. rtnall nil)
  3802. (while (setq file (pop files))
  3803. (setq ee nil)
  3804. (catch 'nextfile
  3805. (org-check-agenda-file file)
  3806. (setq buffer (if (file-exists-p file)
  3807. (org-get-agenda-file-buffer file)
  3808. (error "No such file %s" file)))
  3809. (if (not buffer)
  3810. ;; If file does not exist, make sure an error message is sent
  3811. (setq rtn (list (format "ORG-AGENDA-ERROR: No such org-file %s"
  3812. file))))
  3813. (with-current-buffer buffer
  3814. (with-syntax-table (org-search-syntax-table)
  3815. (unless (derived-mode-p 'org-mode)
  3816. (error "Agenda file %s is not in `org-mode'" file))
  3817. (let ((case-fold-search t))
  3818. (save-excursion
  3819. (save-restriction
  3820. (if org-agenda-restrict
  3821. (narrow-to-region org-agenda-restrict-begin
  3822. org-agenda-restrict-end)
  3823. (widen))
  3824. (goto-char (point-min))
  3825. (unless (or (org-at-heading-p)
  3826. (outline-next-heading))
  3827. (throw 'nextfile t))
  3828. (goto-char (max (point-min) (1- (point))))
  3829. (while (re-search-forward regexp nil t)
  3830. (org-back-to-heading t)
  3831. (skip-chars-forward "* ")
  3832. (setq beg (point-at-bol)
  3833. beg1 (point)
  3834. end (progn (outline-next-heading) (point)))
  3835. (catch :skip
  3836. (goto-char beg)
  3837. (org-agenda-skip)
  3838. (setq str (buffer-substring-no-properties
  3839. (point-at-bol)
  3840. (if hdl-only (point-at-eol) end)))
  3841. (mapc (lambda (wr) (when (string-match wr str)
  3842. (goto-char (1- end))
  3843. (throw :skip t)))
  3844. regexps-)
  3845. (mapc (lambda (wr) (unless (string-match wr str)
  3846. (goto-char (1- end))
  3847. (throw :skip t)))
  3848. (if todo-only
  3849. (cons (concat "^\*+[ \t]+" org-not-done-regexp)
  3850. regexps+)
  3851. regexps+))
  3852. (goto-char beg)
  3853. (setq marker (org-agenda-new-marker (point))
  3854. category (org-get-category)
  3855. org-category-pos (get-text-property (point) 'org-category-position)
  3856. tags (org-get-tags-at (point))
  3857. txt (org-agenda-format-item
  3858. ""
  3859. (buffer-substring-no-properties
  3860. beg1 (point-at-eol))
  3861. category tags))
  3862. (org-add-props txt props
  3863. 'org-marker marker 'org-hd-marker marker
  3864. 'org-todo-regexp org-todo-regexp
  3865. 'org-complex-heading-regexp org-complex-heading-regexp
  3866. 'priority 1000 'org-category category
  3867. 'org-category-position org-category-pos
  3868. 'type "search")
  3869. (push txt ee)
  3870. (goto-char (1- end))))))))))
  3871. (setq rtn (nreverse ee))
  3872. (setq rtnall (append rtnall rtn)))
  3873. (if org-agenda-overriding-header
  3874. (insert (org-add-props (copy-sequence org-agenda-overriding-header)
  3875. nil 'face 'org-agenda-structure) "\n")
  3876. (insert "Search words: ")
  3877. (add-text-properties (point-min) (1- (point))
  3878. (list 'face 'org-agenda-structure))
  3879. (setq pos (point))
  3880. (insert string "\n")
  3881. (add-text-properties pos (1- (point)) (list 'face 'org-warning))
  3882. (setq pos (point))
  3883. (unless org-agenda-multi
  3884. (insert "Press `[', `]' to add/sub word, `{', `}' to add/sub regexp, `C-u r' to edit\n")
  3885. (add-text-properties pos (1- (point))
  3886. (list 'face 'org-agenda-structure))))
  3887. (org-agenda-mark-header-line (point-min))
  3888. (when rtnall
  3889. (insert (org-finalize-agenda-entries rtnall) "\n"))
  3890. (goto-char (point-min))
  3891. (or org-agenda-multi (org-fit-agenda-window))
  3892. (add-text-properties (point-min) (point-max) '(org-agenda-type search))
  3893. (org-finalize-agenda)
  3894. (setq buffer-read-only t)))
  3895. ;;; Agenda TODO list
  3896. (defvar org-select-this-todo-keyword nil)
  3897. (defvar org-last-arg nil)
  3898. ;;;###autoload
  3899. (defun org-todo-list (arg)
  3900. "Show all (not done) TODO entries from all agenda file in a single list.
  3901. The prefix arg can be used to select a specific TODO keyword and limit
  3902. the list to these. When using \\[universal-argument], you will be prompted
  3903. for a keyword. A numeric prefix directly selects the Nth keyword in
  3904. `org-todo-keywords-1'."
  3905. (interactive "P")
  3906. (org-prepare-agenda "TODO")
  3907. (org-compile-prefix-format 'todo)
  3908. (org-set-sorting-strategy 'todo)
  3909. (if (and (stringp arg) (not (string-match "\\S-" arg))) (setq arg nil))
  3910. (let* ((today (org-today))
  3911. (date (calendar-gregorian-from-absolute today))
  3912. (kwds org-todo-keywords-for-agenda)
  3913. (completion-ignore-case t)
  3914. (org-select-this-todo-keyword
  3915. (if (stringp arg) arg
  3916. (and arg (integerp arg) (> arg 0)
  3917. (nth (1- arg) kwds))))
  3918. rtn rtnall files file pos)
  3919. (when (equal arg '(4))
  3920. (setq org-select-this-todo-keyword
  3921. (org-icompleting-read "Keyword (or KWD1|K2D2|...): "
  3922. (mapcar 'list kwds) nil nil)))
  3923. (and (equal 0 arg) (setq org-select-this-todo-keyword nil))
  3924. (org-set-local 'org-last-arg arg)
  3925. (setq org-agenda-redo-command
  3926. '(org-todo-list (or current-prefix-arg org-last-arg)))
  3927. (setq files (org-agenda-files nil 'ifmode)
  3928. rtnall nil)
  3929. (while (setq file (pop files))
  3930. (catch 'nextfile
  3931. (org-check-agenda-file file)
  3932. (setq rtn (org-agenda-get-day-entries file date :todo))
  3933. (setq rtnall (append rtnall rtn))))
  3934. (if org-agenda-overriding-header
  3935. (insert (org-add-props (copy-sequence org-agenda-overriding-header)
  3936. nil 'face 'org-agenda-structure) "\n")
  3937. (insert "Global list of TODO items of type: ")
  3938. (add-text-properties (point-min) (1- (point))
  3939. (list 'face 'org-agenda-structure
  3940. 'short-heading
  3941. (concat "ToDo: "
  3942. (or org-select-this-todo-keyword "ALL"))))
  3943. (org-agenda-mark-header-line (point-min))
  3944. (setq pos (point))
  3945. (insert (or org-select-this-todo-keyword "ALL") "\n")
  3946. (add-text-properties pos (1- (point)) (list 'face 'org-warning))
  3947. (setq pos (point))
  3948. (unless org-agenda-multi
  3949. (insert "Available with `N r': (0)ALL")
  3950. (let ((n 0) s)
  3951. (mapc (lambda (x)
  3952. (setq s (format "(%d)%s" (setq n (1+ n)) x))
  3953. (if (> (+ (current-column) (string-width s) 1) (frame-width))
  3954. (insert "\n "))
  3955. (insert " " s))
  3956. kwds))
  3957. (insert "\n"))
  3958. (add-text-properties pos (1- (point)) (list 'face 'org-agenda-structure)))
  3959. (org-agenda-mark-header-line (point-min))
  3960. (when rtnall
  3961. (insert (org-finalize-agenda-entries rtnall) "\n"))
  3962. (goto-char (point-min))
  3963. (or org-agenda-multi (org-fit-agenda-window))
  3964. (add-text-properties (point-min) (point-max) '(org-agenda-type todo))
  3965. (org-finalize-agenda)
  3966. (setq buffer-read-only t)))
  3967. ;;; Agenda tags match
  3968. ;;;###autoload
  3969. (defun org-tags-view (&optional todo-only match)
  3970. "Show all headlines for all `org-agenda-files' matching a TAGS criterion.
  3971. The prefix arg TODO-ONLY limits the search to TODO entries."
  3972. (interactive "P")
  3973. (let* ((org-tags-match-list-sublevels
  3974. org-tags-match-list-sublevels)
  3975. (completion-ignore-case t)
  3976. rtn rtnall files file pos matcher
  3977. buffer)
  3978. (when (and (stringp match) (not (string-match "\\S-" match)))
  3979. (setq match nil))
  3980. (setq matcher (org-make-tags-matcher match)
  3981. match (car matcher) matcher (cdr matcher))
  3982. (org-prepare-agenda (concat "TAGS " match))
  3983. (org-compile-prefix-format 'tags)
  3984. (org-set-sorting-strategy 'tags)
  3985. (setq org-agenda-query-string match)
  3986. (setq org-agenda-redo-command
  3987. (list 'org-tags-view (list 'quote todo-only)
  3988. (list 'if 'current-prefix-arg nil 'org-agenda-query-string)))
  3989. (setq files (org-agenda-files nil 'ifmode)
  3990. rtnall nil)
  3991. (while (setq file (pop files))
  3992. (catch 'nextfile
  3993. (org-check-agenda-file file)
  3994. (setq buffer (if (file-exists-p file)
  3995. (org-get-agenda-file-buffer file)
  3996. (error "No such file %s" file)))
  3997. (if (not buffer)
  3998. ;; If file does not exist, error message to agenda
  3999. (setq rtn (list
  4000. (format "ORG-AGENDA-ERROR: No such org-file %s" file))
  4001. rtnall (append rtnall rtn))
  4002. (with-current-buffer buffer
  4003. (unless (derived-mode-p 'org-mode)
  4004. (error "Agenda file %s is not in `org-mode'" file))
  4005. (save-excursion
  4006. (save-restriction
  4007. (if org-agenda-restrict
  4008. (narrow-to-region org-agenda-restrict-begin
  4009. org-agenda-restrict-end)
  4010. (widen))
  4011. (setq rtn (org-scan-tags 'agenda matcher todo-only))
  4012. (setq rtnall (append rtnall rtn))))))))
  4013. (if org-agenda-overriding-header
  4014. (insert (org-add-props (copy-sequence org-agenda-overriding-header)
  4015. nil 'face 'org-agenda-structure) "\n")
  4016. (insert "Headlines with TAGS match: ")
  4017. (add-text-properties (point-min) (1- (point))
  4018. (list 'face 'org-agenda-structure
  4019. 'short-heading
  4020. (concat "Match: " match)))
  4021. (setq pos (point))
  4022. (insert match "\n")
  4023. (add-text-properties pos (1- (point)) (list 'face 'org-warning))
  4024. (setq pos (point))
  4025. (unless org-agenda-multi
  4026. (insert "Press `C-u r' to search again with new search string\n"))
  4027. (add-text-properties pos (1- (point)) (list 'face 'org-agenda-structure)))
  4028. (org-agenda-mark-header-line (point-min))
  4029. (when rtnall
  4030. (insert (org-finalize-agenda-entries rtnall) "\n"))
  4031. (goto-char (point-min))
  4032. (or org-agenda-multi (org-fit-agenda-window))
  4033. (add-text-properties (point-min) (point-max) '(org-agenda-type tags))
  4034. (org-finalize-agenda)
  4035. (setq buffer-read-only t)))
  4036. ;;; Agenda Finding stuck projects
  4037. (defvar org-agenda-skip-regexp nil
  4038. "Regular expression used in skipping subtrees for the agenda.
  4039. This is basically a temporary global variable that can be set and then
  4040. used by user-defined selections using `org-agenda-skip-function'.")
  4041. (defvar org-agenda-overriding-header nil
  4042. "When set during agenda, todo and tags searches it replaces the header.
  4043. This variable should not be set directly, but custom commands can bind it
  4044. in the options section.")
  4045. (defun org-agenda-skip-entry-when-regexp-matches ()
  4046. "Check if the current entry contains match for `org-agenda-skip-regexp'.
  4047. If yes, it returns the end position of this entry, causing agenda commands
  4048. to skip the entry but continuing the search in the subtree. This is a
  4049. function that can be put into `org-agenda-skip-function' for the duration
  4050. of a command."
  4051. (let ((end (save-excursion (org-end-of-subtree t)))
  4052. skip)
  4053. (save-excursion
  4054. (setq skip (re-search-forward org-agenda-skip-regexp end t)))
  4055. (and skip end)))
  4056. (defun org-agenda-skip-subtree-when-regexp-matches ()
  4057. "Check if the current subtree contains match for `org-agenda-skip-regexp'.
  4058. If yes, it returns the end position of this tree, causing agenda commands
  4059. to skip this subtree. This is a function that can be put into
  4060. `org-agenda-skip-function' for the duration of a command."
  4061. (let ((end (save-excursion (org-end-of-subtree t)))
  4062. skip)
  4063. (save-excursion
  4064. (setq skip (re-search-forward org-agenda-skip-regexp end t)))
  4065. (and skip end)))
  4066. (defun org-agenda-skip-entry-when-regexp-matches-in-subtree ()
  4067. "Check if the current subtree contains match for `org-agenda-skip-regexp'.
  4068. If yes, it returns the end position of the current entry (NOT the tree),
  4069. causing agenda commands to skip the entry but continuing the search in
  4070. the subtree. This is a function that can be put into
  4071. `org-agenda-skip-function' for the duration of a command. An important
  4072. use of this function is for the stuck project list."
  4073. (let ((end (save-excursion (org-end-of-subtree t)))
  4074. (entry-end (save-excursion (outline-next-heading) (1- (point))))
  4075. skip)
  4076. (save-excursion
  4077. (setq skip (re-search-forward org-agenda-skip-regexp end t)))
  4078. (and skip entry-end)))
  4079. (defun org-agenda-skip-entry-if (&rest conditions)
  4080. "Skip entry if any of CONDITIONS is true.
  4081. See `org-agenda-skip-if' for details."
  4082. (org-agenda-skip-if nil conditions))
  4083. (defun org-agenda-skip-subtree-if (&rest conditions)
  4084. "Skip entry if any of CONDITIONS is true.
  4085. See `org-agenda-skip-if' for details."
  4086. (org-agenda-skip-if t conditions))
  4087. (defun org-agenda-skip-if (subtree conditions)
  4088. "Checks current entity for CONDITIONS.
  4089. If SUBTREE is non-nil, the entire subtree is checked. Otherwise, only
  4090. the entry (i.e. the text before the next heading) is checked.
  4091. CONDITIONS is a list of symbols, boolean OR is used to combine the results
  4092. from different tests. Valid conditions are:
  4093. scheduled Check if there is a scheduled cookie
  4094. notscheduled Check if there is no scheduled cookie
  4095. deadline Check if there is a deadline
  4096. notdeadline Check if there is no deadline
  4097. timestamp Check if there is a timestamp (also deadline or scheduled)
  4098. nottimestamp Check if there is no timestamp (also deadline or scheduled)
  4099. regexp Check if regexp matches
  4100. notregexp Check if regexp does not match.
  4101. todo Check if TODO keyword matches
  4102. nottodo Check if TODO keyword does not match
  4103. The regexp is taken from the conditions list, it must come right after
  4104. the `regexp' or `notregexp' element.
  4105. `todo' and `nottodo' accept as an argument a list of todo
  4106. keywords, which may include \"*\" to match any todo keyword.
  4107. (org-agenda-skip-entry-if 'todo '(\"TODO\" \"WAITING\"))
  4108. would skip all entries with \"TODO\" or \"WAITING\" keywords.
  4109. Instead of a list, a keyword class may be given. For example:
  4110. (org-agenda-skip-entry-if 'nottodo 'done)
  4111. would skip entries that haven't been marked with any of \"DONE\"
  4112. keywords. Possible classes are: `todo', `done', `any'.
  4113. If any of these conditions is met, this function returns the end point of
  4114. the entity, causing the search to continue from there. This is a function
  4115. that can be put into `org-agenda-skip-function' for the duration of a command."
  4116. (let (beg end m)
  4117. (org-back-to-heading t)
  4118. (setq beg (point)
  4119. end (if subtree
  4120. (progn (org-end-of-subtree t) (point))
  4121. (progn (outline-next-heading) (1- (point)))))
  4122. (goto-char beg)
  4123. (and
  4124. (or
  4125. (and (memq 'scheduled conditions)
  4126. (re-search-forward org-scheduled-time-regexp end t))
  4127. (and (memq 'notscheduled conditions)
  4128. (not (re-search-forward org-scheduled-time-regexp end t)))
  4129. (and (memq 'deadline conditions)
  4130. (re-search-forward org-deadline-time-regexp end t))
  4131. (and (memq 'notdeadline conditions)
  4132. (not (re-search-forward org-deadline-time-regexp end t)))
  4133. (and (memq 'timestamp conditions)
  4134. (re-search-forward org-ts-regexp end t))
  4135. (and (memq 'nottimestamp conditions)
  4136. (not (re-search-forward org-ts-regexp end t)))
  4137. (and (setq m (memq 'regexp conditions))
  4138. (stringp (nth 1 m))
  4139. (re-search-forward (nth 1 m) end t))
  4140. (and (setq m (memq 'notregexp conditions))
  4141. (stringp (nth 1 m))
  4142. (not (re-search-forward (nth 1 m) end t)))
  4143. (and (or
  4144. (setq m (memq 'nottodo conditions))
  4145. (setq m (memq 'todo-unblocked conditions))
  4146. (setq m (memq 'nottodo-unblocked conditions))
  4147. (setq m (memq 'todo conditions)))
  4148. (org-agenda-skip-if-todo m end)))
  4149. end)))
  4150. (defun org-agenda-skip-if-todo (args end)
  4151. "Helper function for `org-agenda-skip-if', do not use it directly.
  4152. ARGS is a list with first element either `todo', `nottodo',
  4153. `todo-unblocked' or `nottodo-unblocked'. The remainder is either
  4154. a list of TODO keywords, or a state symbol `todo' or `done' or
  4155. `any'."
  4156. (let ((kw (car args))
  4157. (arg (cadr args))
  4158. todo-wds todo-re)
  4159. (setq todo-wds
  4160. (org-uniquify
  4161. (cond
  4162. ((listp arg) ;; list of keywords
  4163. (if (member "*" arg)
  4164. (mapcar 'substring-no-properties org-todo-keywords-1)
  4165. arg))
  4166. ((symbolp arg) ;; keyword class name
  4167. (cond
  4168. ((eq arg 'todo)
  4169. (org-delete-all org-done-keywords
  4170. (mapcar 'substring-no-properties
  4171. org-todo-keywords-1)))
  4172. ((eq arg 'done) org-done-keywords)
  4173. ((eq arg 'any)
  4174. (mapcar 'substring-no-properties org-todo-keywords-1)))))))
  4175. (setq todo-re
  4176. (concat "^\\*+[ \t]+\\<\\("
  4177. (mapconcat 'identity todo-wds "\\|")
  4178. "\\)\\>"))
  4179. (cond
  4180. ((eq kw 'todo) (re-search-forward todo-re end t))
  4181. ((eq kw 'nottodo) (not (re-search-forward todo-re end t)))
  4182. ((eq kw 'todo-unblocked)
  4183. (catch 'unblocked
  4184. (while (re-search-forward todo-re end t)
  4185. (or (org-entry-blocked-p) (throw 'unblocked t)))
  4186. nil))
  4187. ((eq kw 'nottodo-unblocked)
  4188. (catch 'unblocked
  4189. (while (re-search-forward todo-re end t)
  4190. (or (org-entry-blocked-p) (throw 'unblocked nil)))
  4191. t))
  4192. )))
  4193. ;;;###autoload
  4194. (defun org-agenda-list-stuck-projects (&rest ignore)
  4195. "Create agenda view for projects that are stuck.
  4196. Stuck projects are project that have no next actions. For the definitions
  4197. of what a project is and how to check if it stuck, customize the variable
  4198. `org-stuck-projects'."
  4199. (interactive)
  4200. (let* ((org-agenda-skip-function
  4201. 'org-agenda-skip-entry-when-regexp-matches-in-subtree)
  4202. ;; We could have used org-agenda-skip-if here.
  4203. (org-agenda-overriding-header
  4204. (or org-agenda-overriding-header "List of stuck projects: "))
  4205. (matcher (nth 0 org-stuck-projects))
  4206. (todo (nth 1 org-stuck-projects))
  4207. (todo-wds (if (member "*" todo)
  4208. (progn
  4209. (org-prepare-agenda-buffers (org-agenda-files
  4210. nil 'ifmode))
  4211. (org-delete-all
  4212. org-done-keywords-for-agenda
  4213. (copy-sequence org-todo-keywords-for-agenda)))
  4214. todo))
  4215. (todo-re (concat "^\\*+[ \t]+\\("
  4216. (mapconcat 'identity todo-wds "\\|")
  4217. "\\)\\>"))
  4218. (tags (nth 2 org-stuck-projects))
  4219. (tags-re (if (member "*" tags)
  4220. (concat org-outline-regexp-bol
  4221. (org-re ".*:[[:alnum:]_@#%]+:[ \t]*$"))
  4222. (if tags
  4223. (concat org-outline-regexp-bol
  4224. ".*:\\("
  4225. (mapconcat 'identity tags "\\|")
  4226. (org-re "\\):[[:alnum:]_@#%:]*[ \t]*$")))))
  4227. (gen-re (nth 3 org-stuck-projects))
  4228. (re-list
  4229. (delq nil
  4230. (list
  4231. (if todo todo-re)
  4232. (if tags tags-re)
  4233. (and gen-re (stringp gen-re) (string-match "\\S-" gen-re)
  4234. gen-re)))))
  4235. (setq org-agenda-skip-regexp
  4236. (if re-list
  4237. (mapconcat 'identity re-list "\\|")
  4238. (error "No information how to identify unstuck projects")))
  4239. (org-tags-view nil matcher)
  4240. (with-current-buffer org-agenda-buffer-name
  4241. (setq org-agenda-redo-command
  4242. '(org-agenda-list-stuck-projects
  4243. (or current-prefix-arg org-last-arg))))))
  4244. ;;; Diary integration
  4245. (defvar org-disable-agenda-to-diary nil) ;Dynamically-scoped param.
  4246. (defvar diary-list-entries-hook)
  4247. (defvar diary-time-regexp)
  4248. (defun org-get-entries-from-diary (date)
  4249. "Get the (Emacs Calendar) diary entries for DATE."
  4250. (require 'diary-lib)
  4251. (let* ((diary-fancy-buffer "*temporary-fancy-diary-buffer*")
  4252. (diary-display-hook '(fancy-diary-display))
  4253. (diary-display-function 'fancy-diary-display)
  4254. (pop-up-frames nil)
  4255. (diary-list-entries-hook
  4256. (cons 'org-diary-default-entry diary-list-entries-hook))
  4257. (diary-file-name-prefix-function nil) ; turn this feature off
  4258. (diary-modify-entry-list-string-function 'org-modify-diary-entry-string)
  4259. entries
  4260. (org-disable-agenda-to-diary t))
  4261. (save-excursion
  4262. (save-window-excursion
  4263. (funcall (if (fboundp 'diary-list-entries)
  4264. 'diary-list-entries 'list-diary-entries)
  4265. date 1)))
  4266. (if (not (get-buffer diary-fancy-buffer))
  4267. (setq entries nil)
  4268. (with-current-buffer diary-fancy-buffer
  4269. (setq buffer-read-only nil)
  4270. (if (zerop (buffer-size))
  4271. ;; No entries
  4272. (setq entries nil)
  4273. ;; Omit the date and other unnecessary stuff
  4274. (org-agenda-cleanup-fancy-diary)
  4275. ;; Add prefix to each line and extend the text properties
  4276. (if (zerop (buffer-size))
  4277. (setq entries nil)
  4278. (setq entries (buffer-substring (point-min) (- (point-max) 1)))
  4279. (setq entries
  4280. (with-temp-buffer
  4281. (insert entries) (goto-char (point-min))
  4282. (while (re-search-forward "\n[ \t]+\\(.+\\)$" nil t)
  4283. (unless (save-match-data (string-match diary-time-regexp (match-string 1)))
  4284. (replace-match (concat "; " (match-string 1)))))
  4285. (buffer-string)))))
  4286. (set-buffer-modified-p nil)
  4287. (kill-buffer diary-fancy-buffer)))
  4288. (when entries
  4289. (setq entries (org-split-string entries "\n"))
  4290. (setq entries
  4291. (mapcar
  4292. (lambda (x)
  4293. (setq x (org-agenda-format-item "" x "Diary" nil 'time))
  4294. ;; Extend the text properties to the beginning of the line
  4295. (org-add-props x (text-properties-at (1- (length x)) x)
  4296. 'type "diary" 'date date 'face 'org-agenda-diary))
  4297. entries)))))
  4298. (defvar org-agenda-cleanup-fancy-diary-hook nil
  4299. "Hook run when the fancy diary buffer is cleaned up.")
  4300. (defun org-agenda-cleanup-fancy-diary ()
  4301. "Remove unwanted stuff in buffer created by `fancy-diary-display'.
  4302. This gets rid of the date, the underline under the date, and
  4303. the dummy entry installed by `org-mode' to ensure non-empty diary for each
  4304. date. It also removes lines that contain only whitespace."
  4305. (goto-char (point-min))
  4306. (if (looking-at ".*?:[ \t]*")
  4307. (progn
  4308. (replace-match "")
  4309. (re-search-forward "\n=+$" nil t)
  4310. (replace-match "")
  4311. (while (re-search-backward "^ +\n?" nil t) (replace-match "")))
  4312. (re-search-forward "\n=+$" nil t)
  4313. (delete-region (point-min) (min (point-max) (1+ (match-end 0)))))
  4314. (goto-char (point-min))
  4315. (while (re-search-forward "^ +\n" nil t)
  4316. (replace-match ""))
  4317. (goto-char (point-min))
  4318. (if (re-search-forward "^Org-mode dummy\n?" nil t)
  4319. (replace-match ""))
  4320. (run-hooks 'org-agenda-cleanup-fancy-diary-hook))
  4321. ;; Make sure entries from the diary have the right text properties.
  4322. (eval-after-load "diary-lib"
  4323. '(if (boundp 'diary-modify-entry-list-string-function)
  4324. ;; We can rely on the hook, nothing to do
  4325. nil
  4326. ;; Hook not available, must use advice to make this work
  4327. (defadvice add-to-diary-list (before org-mark-diary-entry activate)
  4328. "Make the position visible."
  4329. (if (and org-disable-agenda-to-diary ;; called from org-agenda
  4330. (stringp string)
  4331. buffer-file-name)
  4332. (setq string (org-modify-diary-entry-string string))))))
  4333. (defun org-modify-diary-entry-string (string)
  4334. "Add text properties to string, allowing org-mode to act on it."
  4335. (org-add-props string nil
  4336. 'mouse-face 'highlight
  4337. 'help-echo (if buffer-file-name
  4338. (format "mouse-2 or RET jump to diary file %s"
  4339. (abbreviate-file-name buffer-file-name))
  4340. "")
  4341. 'org-agenda-diary-link t
  4342. 'org-marker (org-agenda-new-marker (point-at-bol))))
  4343. (defun org-diary-default-entry ()
  4344. "Add a dummy entry to the diary.
  4345. Needed to avoid empty dates which mess up holiday display."
  4346. ;; Catch the error if dealing with the new add-to-diary-alist
  4347. (when org-disable-agenda-to-diary
  4348. (condition-case nil
  4349. (org-add-to-diary-list original-date "Org-mode dummy" "")
  4350. (error
  4351. (org-add-to-diary-list original-date "Org-mode dummy" "" nil)))))
  4352. (defun org-add-to-diary-list (&rest args)
  4353. (if (fboundp 'diary-add-to-list)
  4354. (apply 'diary-add-to-list args)
  4355. (apply 'add-to-diary-list args)))
  4356. (defvar org-diary-last-run-time nil)
  4357. ;;;###autoload
  4358. (defun org-diary (&rest args)
  4359. "Return diary information from org files.
  4360. This function can be used in a \"sexp\" diary entry in the Emacs calendar.
  4361. It accesses org files and extracts information from those files to be
  4362. listed in the diary. The function accepts arguments specifying what
  4363. items should be listed. For a list of arguments allowed here, see the
  4364. variable `org-agenda-entry-types'.
  4365. The call in the diary file should look like this:
  4366. &%%(org-diary) ~/path/to/some/orgfile.org
  4367. Use a separate line for each org file to check. Or, if you omit the file name,
  4368. all files listed in `org-agenda-files' will be checked automatically:
  4369. &%%(org-diary)
  4370. If you don't give any arguments (as in the example above), the default
  4371. arguments (:deadline :scheduled :timestamp :sexp) are used.
  4372. So the example above may also be written as
  4373. &%%(org-diary :deadline :timestamp :sexp :scheduled)
  4374. The function expects the lisp variables `entry' and `date' to be provided
  4375. by the caller, because this is how the calendar works. Don't use this
  4376. function from a program - use `org-agenda-get-day-entries' instead."
  4377. (when (> (- (org-float-time)
  4378. org-agenda-last-marker-time)
  4379. 5)
  4380. ;; I am not sure if this works with sticky agendas, because the marker
  4381. ;; list is then no longer a global variable.
  4382. (org-agenda-reset-markers))
  4383. ;; Prevent `org-compile-prefix-format' to fail when there is no agenda
  4384. (when (buffer-live-p org-agenda-buffer)
  4385. (org-compile-prefix-format 'agenda))
  4386. (org-set-sorting-strategy 'agenda)
  4387. (setq args (or args '(:deadline :scheduled :timestamp :sexp)))
  4388. (let* ((files (if (and entry (stringp entry) (string-match "\\S-" entry))
  4389. (list entry)
  4390. (org-agenda-files t)))
  4391. (time (org-float-time))
  4392. file rtn results)
  4393. (when (or (not org-diary-last-run-time)
  4394. (> (- time
  4395. org-diary-last-run-time)
  4396. 3))
  4397. (org-prepare-agenda-buffers files))
  4398. (setq org-diary-last-run-time time)
  4399. ;; If this is called during org-agenda, don't return any entries to
  4400. ;; the calendar. Org Agenda will list these entries itself.
  4401. (if org-disable-agenda-to-diary (setq files nil))
  4402. (while (setq file (pop files))
  4403. (setq rtn (apply 'org-agenda-get-day-entries file date args))
  4404. (setq results (append results rtn)))
  4405. (if results
  4406. (concat (org-finalize-agenda-entries results) "\n"))))
  4407. ;;; Agenda entry finders
  4408. (defun org-agenda-get-day-entries (file date &rest args)
  4409. "Does the work for `org-diary' and `org-agenda'.
  4410. FILE is the path to a file to be checked for entries. DATE is date like
  4411. the one returned by `calendar-current-date'. ARGS are symbols indicating
  4412. which kind of entries should be extracted. For details about these, see
  4413. the documentation of `org-diary'."
  4414. (setq args (or args '(:deadline :scheduled :timestamp :sexp)))
  4415. (let* ((org-startup-folded nil)
  4416. (org-startup-align-all-tables nil)
  4417. (buffer (if (file-exists-p file)
  4418. (org-get-agenda-file-buffer file)
  4419. (error "No such file %s" file)))
  4420. arg results rtn deadline-results)
  4421. (if (not buffer)
  4422. ;; If file does not exist, make sure an error message ends up in diary
  4423. (list (format "ORG-AGENDA-ERROR: No such org-file %s" file))
  4424. (with-current-buffer buffer
  4425. (unless (derived-mode-p 'org-mode)
  4426. (error "Agenda file %s is not in `org-mode'" file))
  4427. (let ((case-fold-search nil))
  4428. (save-excursion
  4429. (save-restriction
  4430. (if org-agenda-restrict
  4431. (narrow-to-region org-agenda-restrict-begin
  4432. org-agenda-restrict-end)
  4433. (widen))
  4434. ;; The way we repeatedly append to `results' makes it O(n^2) :-(
  4435. (while (setq arg (pop args))
  4436. (cond
  4437. ((and (eq arg :todo)
  4438. (equal date (calendar-gregorian-from-absolute
  4439. (org-today))))
  4440. (setq rtn (org-agenda-get-todos))
  4441. (setq results (append results rtn)))
  4442. ((eq arg :timestamp)
  4443. (setq rtn (org-agenda-get-blocks))
  4444. (setq results (append results rtn))
  4445. (setq rtn (org-agenda-get-timestamps deadline-results))
  4446. (setq results (append results rtn)))
  4447. ((eq arg :sexp)
  4448. (setq rtn (org-agenda-get-sexps))
  4449. (setq results (append results rtn)))
  4450. ((eq arg :scheduled)
  4451. (setq rtn (org-agenda-get-scheduled deadline-results))
  4452. (setq results (append results rtn)))
  4453. ((eq arg :closed)
  4454. (setq rtn (org-agenda-get-progress))
  4455. (setq results (append results rtn)))
  4456. ((eq arg :deadline)
  4457. (setq rtn (org-agenda-get-deadlines))
  4458. (setq deadline-results (copy-sequence rtn))
  4459. (setq results (append results rtn))))))))
  4460. results))))
  4461. (defvar org-heading-keyword-regexp-format) ; defined in org.el
  4462. (defun org-agenda-get-todos ()
  4463. "Return the TODO information for agenda display."
  4464. (let* ((props (list 'face nil
  4465. 'done-face 'org-agenda-done
  4466. 'org-not-done-regexp org-not-done-regexp
  4467. 'org-todo-regexp org-todo-regexp
  4468. 'org-complex-heading-regexp org-complex-heading-regexp
  4469. 'mouse-face 'highlight
  4470. 'help-echo
  4471. (format "mouse-2 or RET jump to org file %s"
  4472. (abbreviate-file-name buffer-file-name))))
  4473. (regexp (format org-heading-keyword-regexp-format
  4474. (cond
  4475. ((and org-select-this-todo-keyword
  4476. (equal org-select-this-todo-keyword "*"))
  4477. org-todo-regexp)
  4478. (org-select-this-todo-keyword
  4479. (concat "\\("
  4480. (mapconcat 'identity
  4481. (org-split-string
  4482. org-select-this-todo-keyword
  4483. "|")
  4484. "\\|") "\\)"))
  4485. (t org-not-done-regexp))))
  4486. marker priority category org-category-pos tags todo-state
  4487. ee txt beg end)
  4488. (goto-char (point-min))
  4489. (while (re-search-forward regexp nil t)
  4490. (catch :skip
  4491. (save-match-data
  4492. (beginning-of-line)
  4493. (org-agenda-skip)
  4494. (setq beg (point) end (save-excursion (outline-next-heading) (point)))
  4495. (when (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item end)
  4496. (goto-char (1+ beg))
  4497. (or org-agenda-todo-list-sublevels (org-end-of-subtree 'invisible))
  4498. (throw :skip nil)))
  4499. (goto-char (match-beginning 2))
  4500. (setq marker (org-agenda-new-marker (match-beginning 0))
  4501. category (org-get-category)
  4502. org-category-pos (get-text-property (point) 'org-category-position)
  4503. txt (org-trim
  4504. (buffer-substring (match-beginning 2) (match-end 0)))
  4505. tags (org-get-tags-at (point))
  4506. txt (org-agenda-format-item "" txt category tags)
  4507. priority (1+ (org-get-priority txt))
  4508. todo-state (org-get-todo-state))
  4509. (org-add-props txt props
  4510. 'org-marker marker 'org-hd-marker marker
  4511. 'priority priority 'org-category category
  4512. 'org-category-position org-category-pos
  4513. 'type "todo" 'todo-state todo-state)
  4514. (push txt ee)
  4515. (if org-agenda-todo-list-sublevels
  4516. (goto-char (match-end 2))
  4517. (org-end-of-subtree 'invisible))))
  4518. (nreverse ee)))
  4519. (defun org-agenda-todo-custom-ignore-p (time n)
  4520. "Check whether timestamp is farther away then n number of days.
  4521. This function is invoked if `org-agenda-todo-ignore-deadlines',
  4522. `org-agenda-todo-ignore-scheduled' or
  4523. `org-agenda-todo-ignore-timestamp' is set to an integer."
  4524. (let ((days (org-days-to-time time)))
  4525. (if (>= n 0)
  4526. (>= days n)
  4527. (<= days n))))
  4528. ;;;###autoload
  4529. (defun org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item
  4530. (&optional end)
  4531. "Do we have a reason to ignore this TODO entry because it has a time stamp?"
  4532. (when (or org-agenda-todo-ignore-with-date
  4533. org-agenda-todo-ignore-scheduled
  4534. org-agenda-todo-ignore-deadlines
  4535. org-agenda-todo-ignore-timestamp)
  4536. (setq end (or end (save-excursion (outline-next-heading) (point))))
  4537. (save-excursion
  4538. (or (and org-agenda-todo-ignore-with-date
  4539. (re-search-forward org-ts-regexp end t))
  4540. (and org-agenda-todo-ignore-scheduled
  4541. (re-search-forward org-scheduled-time-regexp end t)
  4542. (cond
  4543. ((eq org-agenda-todo-ignore-scheduled 'future)
  4544. (> (org-days-to-time (match-string 1)) 0))
  4545. ((eq org-agenda-todo-ignore-scheduled 'past)
  4546. (<= (org-days-to-time (match-string 1)) 0))
  4547. ((numberp org-agenda-todo-ignore-scheduled)
  4548. (org-agenda-todo-custom-ignore-p
  4549. (match-string 1) org-agenda-todo-ignore-scheduled))
  4550. (t)))
  4551. (and org-agenda-todo-ignore-deadlines
  4552. (re-search-forward org-deadline-time-regexp end t)
  4553. (cond
  4554. ((memq org-agenda-todo-ignore-deadlines '(t all)) t)
  4555. ((eq org-agenda-todo-ignore-deadlines 'far)
  4556. (not (org-deadline-close (match-string 1))))
  4557. ((eq org-agenda-todo-ignore-deadlines 'future)
  4558. (> (org-days-to-time (match-string 1)) 0))
  4559. ((eq org-agenda-todo-ignore-deadlines 'past)
  4560. (<= (org-days-to-time (match-string 1)) 0))
  4561. ((numberp org-agenda-todo-ignore-deadlines)
  4562. (org-agenda-todo-custom-ignore-p
  4563. (match-string 1) org-agenda-todo-ignore-deadlines))
  4564. (t (org-deadline-close (match-string 1)))))
  4565. (and org-agenda-todo-ignore-timestamp
  4566. (let ((buffer (current-buffer))
  4567. (regexp
  4568. (concat
  4569. org-scheduled-time-regexp "\\|" org-deadline-time-regexp))
  4570. (start (point)))
  4571. ;; Copy current buffer into a temporary one
  4572. (with-temp-buffer
  4573. (insert-buffer-substring buffer start end)
  4574. (goto-char (point-min))
  4575. ;; Delete SCHEDULED and DEADLINE items
  4576. (while (re-search-forward regexp end t)
  4577. (delete-region (match-beginning 0) (match-end 0)))
  4578. (goto-char (point-min))
  4579. ;; No search for timestamp left
  4580. (when (re-search-forward org-ts-regexp nil t)
  4581. (cond
  4582. ((eq org-agenda-todo-ignore-timestamp 'future)
  4583. (> (org-days-to-time (match-string 1)) 0))
  4584. ((eq org-agenda-todo-ignore-timestamp 'past)
  4585. (<= (org-days-to-time (match-string 1)) 0))
  4586. ((numberp org-agenda-todo-ignore-timestamp)
  4587. (org-agenda-todo-custom-ignore-p
  4588. (match-string 1) org-agenda-todo-ignore-timestamp))
  4589. (t))))))))))
  4590. (defconst org-agenda-no-heading-message
  4591. "No heading for this item in buffer or region.")
  4592. (defun org-agenda-get-timestamps (&optional deadline-results)
  4593. "Return the date stamp information for agenda display."
  4594. (let* ((props (list 'face 'org-agenda-calendar-event
  4595. 'org-not-done-regexp org-not-done-regexp
  4596. 'org-todo-regexp org-todo-regexp
  4597. 'org-complex-heading-regexp org-complex-heading-regexp
  4598. 'mouse-face 'highlight
  4599. 'help-echo
  4600. (format "mouse-2 or RET jump to org file %s"
  4601. (abbreviate-file-name buffer-file-name))))
  4602. (d1 (calendar-absolute-from-gregorian date))
  4603. mm
  4604. (deadline-position-alist
  4605. (mapcar (lambda (a) (and (setq mm (get-text-property
  4606. 0 'org-hd-marker a))
  4607. (cons (marker-position mm) a)))
  4608. deadline-results))
  4609. (remove-re org-ts-regexp)
  4610. (regexp
  4611. (concat
  4612. (if org-agenda-include-inactive-timestamps "[[<]" "<")
  4613. (regexp-quote
  4614. (substring
  4615. (format-time-string
  4616. (car org-time-stamp-formats)
  4617. (apply 'encode-time ; DATE bound by calendar
  4618. (list 0 0 0 (nth 1 date) (car date) (nth 2 date))))
  4619. 1 11))
  4620. "\\|\\(<[0-9]+-[0-9]+-[0-9]+[^>\n]+?\\+[0-9]+[hdwmy]>\\)"
  4621. "\\|\\(<%%\\(([^>\n]+)\\)>\\)"))
  4622. marker hdmarker deadlinep scheduledp clockp closedp inactivep
  4623. donep tmp priority category org-category-pos ee txt timestr tags
  4624. b0 b3 e3 head todo-state end-of-match show-all)
  4625. (goto-char (point-min))
  4626. (while (setq end-of-match (re-search-forward regexp nil t))
  4627. (setq b0 (match-beginning 0)
  4628. b3 (match-beginning 3) e3 (match-end 3)
  4629. todo-state (save-match-data (ignore-errors (org-get-todo-state)))
  4630. show-all (or (eq org-agenda-repeating-timestamp-show-all t)
  4631. (member todo-state
  4632. org-agenda-repeating-timestamp-show-all)))
  4633. (catch :skip
  4634. (and (org-at-date-range-p) (throw :skip nil))
  4635. (org-agenda-skip)
  4636. (if (and (match-end 1)
  4637. (not (= d1 (org-time-string-to-absolute
  4638. (match-string 1) d1 nil show-all
  4639. (current-buffer) b0))))
  4640. (throw :skip nil))
  4641. (if (and e3
  4642. (not (org-diary-sexp-entry (buffer-substring b3 e3) "" date)))
  4643. (throw :skip nil))
  4644. (setq tmp (buffer-substring (max (point-min)
  4645. (- b0 org-ds-keyword-length))
  4646. b0)
  4647. timestr (if b3 "" (buffer-substring b0 (point-at-eol)))
  4648. inactivep (= (char-after b0) ?\[)
  4649. deadlinep (string-match org-deadline-regexp tmp)
  4650. scheduledp (string-match org-scheduled-regexp tmp)
  4651. closedp (and org-agenda-include-inactive-timestamps
  4652. (string-match org-closed-string tmp))
  4653. clockp (and org-agenda-include-inactive-timestamps
  4654. (or (string-match org-clock-string tmp)
  4655. (string-match "]-+\\'" tmp)))
  4656. donep (member todo-state org-done-keywords))
  4657. (if (or scheduledp deadlinep closedp clockp
  4658. (and donep org-agenda-skip-timestamp-if-done))
  4659. (throw :skip t))
  4660. (if (string-match ">" timestr)
  4661. ;; substring should only run to end of time stamp
  4662. (setq timestr (substring timestr 0 (match-end 0))))
  4663. (setq marker (org-agenda-new-marker b0)
  4664. category (org-get-category b0)
  4665. org-category-pos (get-text-property b0 'org-category-position))
  4666. (save-excursion
  4667. (if (not (re-search-backward org-outline-regexp-bol nil t))
  4668. (setq txt org-agenda-no-heading-message)
  4669. (goto-char (match-beginning 0))
  4670. (if (and (eq t org-agenda-skip-timestamp-if-deadline-is-shown)
  4671. (assoc (point) deadline-position-alist))
  4672. (throw :skip nil))
  4673. (setq hdmarker (org-agenda-new-marker)
  4674. tags (org-get-tags-at))
  4675. (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
  4676. (setq head (or (match-string 1) ""))
  4677. (setq txt (org-agenda-format-item
  4678. (if inactivep org-agenda-inactive-leader nil)
  4679. head category tags timestr
  4680. remove-re)))
  4681. (setq priority (org-get-priority txt))
  4682. (org-add-props txt props
  4683. 'org-marker marker 'org-hd-marker hdmarker)
  4684. (org-add-props txt nil 'priority priority
  4685. 'org-category category 'date date
  4686. 'org-category-position org-category-pos
  4687. 'todo-state todo-state
  4688. 'type "timestamp")
  4689. (push txt ee))
  4690. (if org-agenda-skip-additional-timestamps-same-entry
  4691. (outline-next-heading)
  4692. (goto-char end-of-match))))
  4693. (nreverse ee)))
  4694. (defun org-agenda-get-sexps ()
  4695. "Return the sexp information for agenda display."
  4696. (require 'diary-lib)
  4697. (let* ((props (list 'face 'org-agenda-calendar-sexp
  4698. 'mouse-face 'highlight
  4699. 'help-echo
  4700. (format "mouse-2 or RET jump to org file %s"
  4701. (abbreviate-file-name buffer-file-name))))
  4702. (regexp "^&?%%(")
  4703. marker category extra org-category-pos ee txt tags entry
  4704. result beg b sexp sexp-entry todo-state)
  4705. (goto-char (point-min))
  4706. (while (re-search-forward regexp nil t)
  4707. (catch :skip
  4708. (org-agenda-skip)
  4709. (setq beg (match-beginning 0))
  4710. (goto-char (1- (match-end 0)))
  4711. (setq b (point))
  4712. (forward-sexp 1)
  4713. (setq sexp (buffer-substring b (point)))
  4714. (setq sexp-entry (if (looking-at "[ \t]*\\(\\S-.*\\)")
  4715. (org-trim (match-string 1))
  4716. ""))
  4717. (setq result (org-diary-sexp-entry sexp sexp-entry date))
  4718. (when result
  4719. (setq marker (org-agenda-new-marker beg)
  4720. category (org-get-category beg)
  4721. org-category-pos (get-text-property beg 'org-category-position)
  4722. tags (save-excursion (org-backward-heading-same-level 0)
  4723. (org-get-tags-at))
  4724. todo-state (org-get-todo-state))
  4725. (dolist (r (if (stringp result)
  4726. (list result)
  4727. result)) ;; we expect a list here
  4728. (when (and org-agenda-diary-sexp-prefix
  4729. (string-match org-agenda-diary-sexp-prefix r))
  4730. (setq extra (match-string 0 r)
  4731. r (replace-match "" nil nil r)))
  4732. (if (string-match "\\S-" r)
  4733. (setq txt r)
  4734. (setq txt "SEXP entry returned empty string"))
  4735. (setq txt (org-agenda-format-item
  4736. extra txt category tags 'time))
  4737. (org-add-props txt props 'org-marker marker)
  4738. (org-add-props txt nil
  4739. 'org-category category 'date date 'todo-state todo-state
  4740. 'org-category-position org-category-pos 'tags tags
  4741. 'type "sexp")
  4742. (push txt ee)))))
  4743. (nreverse ee)))
  4744. ;; Calendar sanity: define some functions that are independent of
  4745. ;; `calendar-date-style'.
  4746. ;; Normally I would like to use ISO format when calling the diary functions,
  4747. ;; but to make sure we still have Emacs 22 compatibility we bind
  4748. ;; also `european-calendar-style' and use european format
  4749. (defun org-anniversary (year month day &optional mark)
  4750. "Like `diary-anniversary', but with fixed (ISO) order of arguments."
  4751. (org-no-warnings
  4752. (let ((calendar-date-style 'european) (european-calendar-style t))
  4753. (diary-anniversary day month year mark))))
  4754. (defun org-cyclic (N year month day &optional mark)
  4755. "Like `diary-cyclic', but with fixed (ISO) order of arguments."
  4756. (org-no-warnings
  4757. (let ((calendar-date-style 'european) (european-calendar-style t))
  4758. (diary-cyclic N day month year mark))))
  4759. (defun org-block (Y1 M1 D1 Y2 M2 D2 &optional mark)
  4760. "Like `diary-block', but with fixed (ISO) order of arguments."
  4761. (org-no-warnings
  4762. (let ((calendar-date-style 'european) (european-calendar-style t))
  4763. (diary-block D1 M1 Y1 D2 M2 Y2 mark))))
  4764. (defun org-date (year month day &optional mark)
  4765. "Like `diary-date', but with fixed (ISO) order of arguments."
  4766. (org-no-warnings
  4767. (let ((calendar-date-style 'european) (european-calendar-style t))
  4768. (diary-date day month year mark))))
  4769. (defalias 'org-float 'diary-float)
  4770. ;; Define the` org-class' function
  4771. (defun org-class (y1 m1 d1 y2 m2 d2 dayname &rest skip-weeks)
  4772. "Entry applies if date is between dates on DAYNAME, but skips SKIP-WEEKS.
  4773. DAYNAME is a number between 0 (Sunday) and 6 (Saturday).
  4774. SKIP-WEEKS is any number of ISO weeks in the block period for which the
  4775. item should be skipped. If any of the SKIP-WEEKS arguments is the symbol
  4776. `holidays', then any date that is known by the Emacs calendar to be a
  4777. holiday will also be skipped."
  4778. (let* ((date1 (calendar-absolute-from-gregorian (list m1 d1 y1)))
  4779. (date2 (calendar-absolute-from-gregorian (list m2 d2 y2)))
  4780. (d (calendar-absolute-from-gregorian date)))
  4781. (and
  4782. (<= date1 d)
  4783. (<= d date2)
  4784. (= (calendar-day-of-week date) dayname)
  4785. (or (not skip-weeks)
  4786. (progn
  4787. (require 'cal-iso)
  4788. (not (member (car (calendar-iso-from-absolute d)) skip-weeks))))
  4789. (not (and (memq 'holidays skip-weeks)
  4790. (calendar-check-holidays date)))
  4791. entry)))
  4792. (defun org-diary-class (m1 d1 y1 m2 d2 y2 dayname &rest skip-weeks)
  4793. "Like `org-class', but honor `calendar-date-style'.
  4794. The order of the first 2 times 3 arguments depends on the variable
  4795. `calendar-date-style' or, if that is not defined, on `european-calendar-style'.
  4796. So for American calendars, give this as MONTH DAY YEAR, for European as
  4797. DAY MONTH YEAR, and for ISO as YEAR MONTH DAY.
  4798. DAYNAME is a number between 0 (Sunday) and 6 (Saturday). SKIP-WEEKS
  4799. is any number of ISO weeks in the block period for which the item should
  4800. be skipped.
  4801. This function is here only for backward compatibility and it is deprecated,
  4802. please use `org-class' instead."
  4803. (let* ((date1 (org-order-calendar-date-args m1 d1 y1))
  4804. (date2 (org-order-calendar-date-args m2 d2 y2)))
  4805. (org-class
  4806. (nth 2 date1) (car date1) (nth 1 date1)
  4807. (nth 2 date2) (car date2) (nth 1 date2)
  4808. dayname skip-weeks)))
  4809. (make-obsolete 'org-diary-class 'org-class "")
  4810. (defvar org-agenda-show-log-scoped) ;; dynamically scope in ̀org-timeline' or`org-agenda-list'
  4811. (defalias 'org-get-closed 'org-agenda-get-progress)
  4812. (defun org-agenda-get-progress ()
  4813. "Return the logged TODO entries for agenda display."
  4814. (let* ((props (list 'mouse-face 'highlight
  4815. 'org-not-done-regexp org-not-done-regexp
  4816. 'org-todo-regexp org-todo-regexp
  4817. 'org-complex-heading-regexp org-complex-heading-regexp
  4818. 'help-echo
  4819. (format "mouse-2 or RET jump to org file %s"
  4820. (abbreviate-file-name buffer-file-name))))
  4821. (items (if (consp org-agenda-show-log-scoped)
  4822. org-agenda-show-log-scoped
  4823. (if (eq org-agenda-show-log-scoped 'clockcheck)
  4824. '(clock)
  4825. org-agenda-log-mode-items)))
  4826. (parts
  4827. (delq nil
  4828. (list
  4829. (if (memq 'closed items) (concat "\\<" org-closed-string))
  4830. (if (memq 'clock items) (concat "\\<" org-clock-string))
  4831. (if (memq 'state items) "- State \"\\([a-zA-Z0-9]+\\)\".*?"))))
  4832. (parts-re (if parts (mapconcat 'identity parts "\\|")
  4833. (error "`org-agenda-log-mode-items' is empty")))
  4834. (regexp (concat
  4835. "\\(" parts-re "\\)"
  4836. " *\\["
  4837. (regexp-quote
  4838. (substring
  4839. (format-time-string
  4840. (car org-time-stamp-formats)
  4841. (apply 'encode-time ; DATE bound by calendar
  4842. (list 0 0 0 (nth 1 date) (car date) (nth 2 date))))
  4843. 1 11))))
  4844. (org-agenda-search-headline-for-time nil)
  4845. marker hdmarker priority category org-category-pos tags closedp
  4846. statep clockp state ee txt extra timestr rest clocked)
  4847. (goto-char (point-min))
  4848. (while (re-search-forward regexp nil t)
  4849. (catch :skip
  4850. (org-agenda-skip)
  4851. (setq marker (org-agenda-new-marker (match-beginning 0))
  4852. closedp (equal (match-string 1) org-closed-string)
  4853. statep (equal (string-to-char (match-string 1)) ?-)
  4854. clockp (not (or closedp statep))
  4855. state (and statep (match-string 2))
  4856. category (org-get-category (match-beginning 0))
  4857. org-category-pos (get-text-property (match-beginning 0) 'org-category-position)
  4858. timestr (buffer-substring (match-beginning 0) (point-at-eol)))
  4859. (when (string-match "\\]" timestr)
  4860. ;; substring should only run to end of time stamp
  4861. (setq rest (substring timestr (match-end 0))
  4862. timestr (substring timestr 0 (match-end 0)))
  4863. (if (and (not closedp) (not statep)
  4864. (string-match "\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)\\].*?\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)"
  4865. rest))
  4866. (progn (setq timestr (concat (substring timestr 0 -1)
  4867. "-" (match-string 1 rest) "]"))
  4868. (setq clocked (match-string 2 rest)))
  4869. (setq clocked "-")))
  4870. (save-excursion
  4871. (setq extra
  4872. (cond
  4873. ((not org-agenda-log-mode-add-notes) nil)
  4874. (statep
  4875. (and (looking-at ".*\\\\\n[ \t]*\\([^-\n \t].*?\\)[ \t]*$")
  4876. (match-string 1)))
  4877. (clockp
  4878. (and (looking-at ".*\n[ \t]*-[ \t]+\\([^-\n \t].*?\\)[ \t]*$")
  4879. (match-string 1)))))
  4880. (if (not (re-search-backward org-outline-regexp-bol nil t))
  4881. (setq txt org-agenda-no-heading-message)
  4882. (goto-char (match-beginning 0))
  4883. (setq hdmarker (org-agenda-new-marker)
  4884. tags (org-get-tags-at))
  4885. (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
  4886. (setq txt (match-string 1))
  4887. (when extra
  4888. (if (string-match "\\([ \t]+\\)\\(:[^ \n\t]*?:\\)[ \t]*$" txt)
  4889. (setq txt (concat (substring txt 0 (match-beginning 1))
  4890. " - " extra " " (match-string 2 txt)))
  4891. (setq txt (concat txt " - " extra))))
  4892. (setq txt (org-agenda-format-item
  4893. (cond
  4894. (closedp "Closed: ")
  4895. (statep (concat "State: (" state ")"))
  4896. (t (concat "Clocked: (" clocked ")")))
  4897. txt category tags timestr)))
  4898. (setq priority 100000)
  4899. (org-add-props txt props
  4900. 'org-marker marker 'org-hd-marker hdmarker 'face 'org-agenda-done
  4901. 'priority priority 'org-category category
  4902. 'org-category-position org-category-pos
  4903. 'type "closed" 'date date
  4904. 'undone-face 'org-warning 'done-face 'org-agenda-done)
  4905. (push txt ee))
  4906. (goto-char (point-at-eol))))
  4907. (nreverse ee)))
  4908. (defun org-agenda-show-clocking-issues ()
  4909. "Add overlays, showing issues with clocking.
  4910. See also the user option `org-agenda-clock-consistency-checks'."
  4911. (interactive)
  4912. (let* ((pl org-agenda-clock-consistency-checks)
  4913. (re (concat "^[ \t]*"
  4914. org-clock-string
  4915. "[ \t]+"
  4916. "\\(\\[.*?\\]\\)" ; group 1 is first stamp
  4917. "\\(-\\{1,3\\}\\(\\[.*?\\]\\)\\)?")) ; group 3 is second
  4918. (tlstart 0.)
  4919. (tlend 0.)
  4920. (maxtime (org-hh:mm-string-to-minutes
  4921. (or (plist-get pl :max-duration) "24:00")))
  4922. (mintime (org-hh:mm-string-to-minutes
  4923. (or (plist-get pl :min-duration) 0)))
  4924. (maxgap (org-hh:mm-string-to-minutes
  4925. ;; default 30:00 means never complain
  4926. (or (plist-get pl :max-gap) "30:00")))
  4927. (gapok (mapcar 'org-hh:mm-string-to-minutes
  4928. (plist-get pl :gap-ok-around)))
  4929. (def-face (or (plist-get pl :default-face)
  4930. '((:background "DarkRed") (:foreground "white"))))
  4931. issue face m te ts dt ov)
  4932. (goto-char (point-min))
  4933. (while (re-search-forward " Clocked: +(-\\|\\([0-9]+:[0-9]+\\))" nil t)
  4934. (setq issue nil face def-face)
  4935. (catch 'next
  4936. (setq m (org-get-at-bol 'org-marker)
  4937. te nil ts nil)
  4938. (unless (and m (markerp m))
  4939. (setq issue "No valid clock line") (throw 'next t))
  4940. (org-with-point-at m
  4941. (save-excursion
  4942. (goto-char (point-at-bol))
  4943. (unless (looking-at re)
  4944. (error "No valid Clock line")
  4945. (throw 'next t))
  4946. (unless (match-end 3)
  4947. (setq issue "No end time"
  4948. face (or (plist-get pl :no-end-time-face) face))
  4949. (throw 'next t))
  4950. (setq ts (match-string 1)
  4951. te (match-string 3)
  4952. ts (org-float-time
  4953. (apply 'encode-time (org-parse-time-string ts)))
  4954. te (org-float-time
  4955. (apply 'encode-time (org-parse-time-string te)))
  4956. dt (- te ts))))
  4957. (cond
  4958. ((> dt (* 60 maxtime))
  4959. ;; a very long clocking chunk
  4960. (setq issue (format "Clocking interval is very long: %s"
  4961. (org-minutes-to-hh:mm-string
  4962. (floor (/ (float dt) 60.))))
  4963. face (or (plist-get pl :long-face) face)))
  4964. ((< dt (* 60 mintime))
  4965. ;; a very short clocking chunk
  4966. (setq issue (format "Clocking interval is very short: %s"
  4967. (org-minutes-to-hh:mm-string
  4968. (floor (/ (float dt) 60.))))
  4969. face (or (plist-get pl :short-face) face)))
  4970. ((and (> tlend 0) (< ts tlend))
  4971. ;; Two clock entries are overlapping
  4972. (setq issue (format "Clocking overlap: %d minutes"
  4973. (/ (- tlend ts) 60))
  4974. face (or (plist-get pl :overlap-face) face)))
  4975. ((and (> tlend 0) (> ts (+ tlend (* 60 maxgap))))
  4976. ;; There is a gap, lets see if we need to report it
  4977. (unless (org-agenda-check-clock-gap tlend ts gapok)
  4978. (setq issue (format "Clocking gap: %d minutes"
  4979. (/ (- ts tlend) 60))
  4980. face (or (plist-get pl :gap-face) face))))
  4981. (t nil)))
  4982. (setq tlend (or te tlend) tlstart (or ts tlstart))
  4983. (when issue
  4984. ;; OK, there was some issue, add an overlay to show the issue
  4985. (setq ov (make-overlay (point-at-bol) (point-at-eol)))
  4986. (overlay-put ov 'before-string
  4987. (concat
  4988. (org-add-props
  4989. (format "%-43s" (concat " " issue))
  4990. nil
  4991. 'face face)
  4992. "\n"))
  4993. (overlay-put ov 'evaporate t)))))
  4994. (defun org-agenda-check-clock-gap (t1 t2 ok-list)
  4995. "Check if gap T1 -> T2 contains one of the OK-LIST time-of-day values."
  4996. (catch 'exit
  4997. (unless ok-list
  4998. ;; there are no OK times for gaps...
  4999. (throw 'exit nil))
  5000. (if (> (- (/ t2 36000) (/ t1 36000)) 24)
  5001. ;; This is more than 24 hours, so it is OK.
  5002. ;; because we have at least one OK time, that must be in the
  5003. ;; 24 hour interval.
  5004. (throw 'exit t))
  5005. ;; We have a shorter gap.
  5006. ;; Now we have to get the minute of the day when these times are
  5007. (let* ((t1dec (decode-time (seconds-to-time t1)))
  5008. (t2dec (decode-time (seconds-to-time t2)))
  5009. ;; compute the minute on the day
  5010. (min1 (+ (nth 1 t1dec) (* 60 (nth 2 t1dec))))
  5011. (min2 (+ (nth 1 t2dec) (* 60 (nth 2 t2dec)))))
  5012. (when (< min2 min1)
  5013. ;; if min2 is smaller than min1, this means it is on the next day.
  5014. ;; Wrap it to after midnight.
  5015. (setq min2 (+ min2 1440)))
  5016. ;; Now check if any of the OK times is in the gap
  5017. (mapc (lambda (x)
  5018. ;; Wrap the time to after midnight if necessary
  5019. (if (< x min1) (setq x (+ x 1440)))
  5020. ;; Check if in interval
  5021. (and (<= min1 x) (>= min2 x) (throw 'exit t)))
  5022. ok-list)
  5023. ;; Nope, this gap is not OK
  5024. nil)))
  5025. (defun org-agenda-get-deadlines ()
  5026. "Return the deadline information for agenda display."
  5027. (let* ((props (list 'mouse-face 'highlight
  5028. 'org-not-done-regexp org-not-done-regexp
  5029. 'org-todo-regexp org-todo-regexp
  5030. 'org-complex-heading-regexp org-complex-heading-regexp
  5031. 'help-echo
  5032. (format "mouse-2 or RET jump to org file %s"
  5033. (abbreviate-file-name buffer-file-name))))
  5034. (regexp org-deadline-time-regexp)
  5035. (todayp (org-agenda-todayp date)) ; DATE bound by calendar
  5036. (d1 (calendar-absolute-from-gregorian date)) ; DATE bound by calendar
  5037. d2 diff dfrac wdays pos pos1 category org-category-pos
  5038. tags suppress-prewarning ee txt head face s todo-state
  5039. show-all upcomingp donep timestr)
  5040. (goto-char (point-min))
  5041. (while (re-search-forward regexp nil t)
  5042. (setq suppress-prewarning nil)
  5043. (catch :skip
  5044. (org-agenda-skip)
  5045. (when (and org-agenda-skip-deadline-prewarning-if-scheduled
  5046. (save-match-data
  5047. (string-match org-scheduled-time-regexp
  5048. (buffer-substring (point-at-bol)
  5049. (point-at-eol)))))
  5050. (setq suppress-prewarning
  5051. (if (integerp org-agenda-skip-deadline-prewarning-if-scheduled)
  5052. org-agenda-skip-deadline-prewarning-if-scheduled
  5053. 0)))
  5054. (setq s (match-string 1)
  5055. txt nil
  5056. pos (1- (match-beginning 1))
  5057. todo-state (save-match-data (org-get-todo-state))
  5058. show-all (or (eq org-agenda-repeating-timestamp-show-all t)
  5059. (member todo-state
  5060. org-agenda-repeating-timestamp-show-all))
  5061. d2 (org-time-string-to-absolute
  5062. (match-string 1) d1 'past show-all
  5063. (current-buffer) pos)
  5064. diff (- d2 d1)
  5065. wdays (if suppress-prewarning
  5066. (let ((org-deadline-warning-days suppress-prewarning))
  5067. (org-get-wdays s))
  5068. (org-get-wdays s))
  5069. dfrac (- 1 (/ (* 1.0 diff) (max wdays 1)))
  5070. upcomingp (and todayp (> diff 0)))
  5071. ;; When to show a deadline in the calendar:
  5072. ;; If the expiration is within wdays warning time.
  5073. ;; Past-due deadlines are only shown on the current date
  5074. (if (and (or (and (<= diff wdays)
  5075. (and todayp (not org-agenda-only-exact-dates)))
  5076. (= diff 0)))
  5077. (save-excursion
  5078. ;; (setq todo-state (org-get-todo-state))
  5079. (setq donep (member todo-state org-done-keywords))
  5080. (if (and donep
  5081. (or org-agenda-skip-deadline-if-done
  5082. (not (= diff 0))))
  5083. (setq txt nil)
  5084. (setq category (org-get-category)
  5085. org-category-pos (get-text-property (point) 'org-category-position))
  5086. (if (not (re-search-backward "^\\*+[ \t]+" nil t))
  5087. (setq txt org-agenda-no-heading-message)
  5088. (goto-char (match-end 0))
  5089. (setq pos1 (match-beginning 0))
  5090. (setq tags (org-get-tags-at pos1))
  5091. (setq head (buffer-substring-no-properties
  5092. (point)
  5093. (progn (skip-chars-forward "^\r\n")
  5094. (point))))
  5095. (if (string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
  5096. (setq timestr
  5097. (concat (substring s (match-beginning 1)) " "))
  5098. (setq timestr 'time))
  5099. (setq txt (org-agenda-format-item
  5100. (if (= diff 0)
  5101. (car org-agenda-deadline-leaders)
  5102. (if (functionp
  5103. (nth 1 org-agenda-deadline-leaders))
  5104. (funcall
  5105. (nth 1 org-agenda-deadline-leaders)
  5106. diff date)
  5107. (format (nth 1 org-agenda-deadline-leaders)
  5108. diff)))
  5109. head category tags
  5110. (if (not (= diff 0)) nil timestr)))))
  5111. (when txt
  5112. (setq face (org-agenda-deadline-face dfrac))
  5113. (org-add-props txt props
  5114. 'org-marker (org-agenda-new-marker pos)
  5115. 'org-hd-marker (org-agenda-new-marker pos1)
  5116. 'priority (+ (- diff)
  5117. (org-get-priority txt))
  5118. 'org-category category
  5119. 'org-category-position org-category-pos
  5120. 'todo-state todo-state
  5121. 'type (if upcomingp "upcoming-deadline" "deadline")
  5122. 'date (if upcomingp date d2)
  5123. 'face (if donep 'org-agenda-done face)
  5124. 'undone-face face 'done-face 'org-agenda-done)
  5125. (push txt ee))))))
  5126. (nreverse ee)))
  5127. (defun org-agenda-deadline-face (fraction)
  5128. "Return the face to displaying a deadline item.
  5129. FRACTION is what fraction of the head-warning time has passed."
  5130. (let ((faces org-agenda-deadline-faces) f)
  5131. (catch 'exit
  5132. (while (setq f (pop faces))
  5133. (if (>= fraction (car f)) (throw 'exit (cdr f)))))))
  5134. (defun org-agenda-get-scheduled (&optional deadline-results)
  5135. "Return the scheduled information for agenda display."
  5136. (let* ((props (list 'org-not-done-regexp org-not-done-regexp
  5137. 'org-todo-regexp org-todo-regexp
  5138. 'org-complex-heading-regexp org-complex-heading-regexp
  5139. 'done-face 'org-agenda-done
  5140. 'mouse-face 'highlight
  5141. 'help-echo
  5142. (format "mouse-2 or RET jump to org file %s"
  5143. (abbreviate-file-name buffer-file-name))))
  5144. (regexp org-scheduled-time-regexp)
  5145. (todayp (org-agenda-todayp date)) ; DATE bound by calendar
  5146. (d1 (calendar-absolute-from-gregorian date)) ; DATE bound by calendar
  5147. mm
  5148. (deadline-position-alist
  5149. (mapcar (lambda (a) (and (setq mm (get-text-property
  5150. 0 'org-hd-marker a))
  5151. (cons (marker-position mm) a)))
  5152. deadline-results))
  5153. d2 diff pos pos1 category org-category-pos tags donep
  5154. ee txt head pastschedp todo-state face timestr s habitp show-all
  5155. did-habit-check-p)
  5156. (goto-char (point-min))
  5157. (while (re-search-forward regexp nil t)
  5158. (catch :skip
  5159. (org-agenda-skip)
  5160. (setq s (match-string 1)
  5161. txt nil
  5162. pos (1- (match-beginning 1))
  5163. todo-state (save-match-data (org-get-todo-state))
  5164. show-all (or (eq org-agenda-repeating-timestamp-show-all t)
  5165. (member todo-state
  5166. org-agenda-repeating-timestamp-show-all))
  5167. d2 (org-time-string-to-absolute
  5168. (match-string 1) d1 'past show-all
  5169. (current-buffer) pos)
  5170. diff (- d2 d1))
  5171. (setq pastschedp (and todayp (< diff 0)))
  5172. (setq did-habit-check-p nil)
  5173. ;; When to show a scheduled item in the calendar:
  5174. ;; If it is on or past the date.
  5175. (when (or (and (< diff 0)
  5176. (< (abs diff) org-scheduled-past-days)
  5177. (and todayp (not org-agenda-only-exact-dates)))
  5178. (= diff 0)
  5179. ;; org-is-habit-p uses org-entry-get, which is expansive
  5180. ;; so we go extra mile to only call it once
  5181. (and todayp
  5182. org-habit-show-all-today
  5183. (setq did-habit-check-p t)
  5184. (setq habitp (and (functionp 'org-is-habit-p)
  5185. (org-is-habit-p)))))
  5186. (save-excursion
  5187. (setq donep (member todo-state org-done-keywords))
  5188. (if (and donep
  5189. (or org-agenda-skip-scheduled-if-done
  5190. (not (= diff 0))
  5191. (and (functionp 'org-is-habit-p)
  5192. (org-is-habit-p))))
  5193. (setq txt nil)
  5194. (setq habitp (if did-habit-check-p habitp
  5195. (and (functionp 'org-is-habit-p)
  5196. (org-is-habit-p))))
  5197. (setq category (org-get-category)
  5198. org-category-pos (get-text-property (point) 'org-category-position))
  5199. (if (not (re-search-backward "^\\*+[ \t]+" nil t))
  5200. (setq txt org-agenda-no-heading-message)
  5201. (goto-char (match-end 0))
  5202. (setq pos1 (match-beginning 0))
  5203. (if habitp
  5204. (if (or (not org-habit-show-habits)
  5205. (and (not todayp)
  5206. org-habit-show-habits-only-for-today))
  5207. (throw :skip nil))
  5208. (if (and
  5209. (or (eq t org-agenda-skip-scheduled-if-deadline-is-shown)
  5210. (and org-agenda-skip-scheduled-if-deadline-is-shown
  5211. pastschedp))
  5212. (setq mm (assoc pos1 deadline-position-alist)))
  5213. (throw :skip nil)))
  5214. (setq tags (org-get-tags-at))
  5215. (setq head (buffer-substring-no-properties
  5216. (point)
  5217. (progn (skip-chars-forward "^\r\n") (point))))
  5218. (if (string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
  5219. (setq timestr
  5220. (concat (substring s (match-beginning 1)) " "))
  5221. (setq timestr 'time))
  5222. (setq txt (org-agenda-format-item
  5223. (if (= diff 0)
  5224. (car org-agenda-scheduled-leaders)
  5225. (format (nth 1 org-agenda-scheduled-leaders)
  5226. (- 1 diff)))
  5227. head category tags
  5228. (if (not (= diff 0)) nil timestr)
  5229. nil habitp))))
  5230. (when txt
  5231. (setq face
  5232. (cond
  5233. ((and (not habitp) pastschedp)
  5234. 'org-scheduled-previously)
  5235. (todayp 'org-scheduled-today)
  5236. (t 'org-scheduled))
  5237. habitp (and habitp (org-habit-parse-todo)))
  5238. (org-add-props txt props
  5239. 'undone-face face
  5240. 'face (if donep 'org-agenda-done face)
  5241. 'org-marker (org-agenda-new-marker pos)
  5242. 'org-hd-marker (org-agenda-new-marker pos1)
  5243. 'type (if pastschedp "past-scheduled" "scheduled")
  5244. 'date (if pastschedp d2 date)
  5245. 'priority (if habitp
  5246. (org-habit-get-priority habitp)
  5247. (+ 94 (- 5 diff) (org-get-priority txt)))
  5248. 'org-category category
  5249. 'org-category-position org-category-pos
  5250. 'org-habit-p habitp
  5251. 'todo-state todo-state)
  5252. (push txt ee))))))
  5253. (nreverse ee)))
  5254. (defun org-agenda-get-blocks ()
  5255. "Return the date-range information for agenda display."
  5256. (let* ((props (list 'face nil
  5257. 'org-not-done-regexp org-not-done-regexp
  5258. 'org-todo-regexp org-todo-regexp
  5259. 'org-complex-heading-regexp org-complex-heading-regexp
  5260. 'mouse-face 'highlight
  5261. 'help-echo
  5262. (format "mouse-2 or RET jump to org file %s"
  5263. (abbreviate-file-name buffer-file-name))))
  5264. (regexp org-tr-regexp)
  5265. (d0 (calendar-absolute-from-gregorian date))
  5266. marker hdmarker ee txt d1 d2 s1 s2 category org-category-pos
  5267. todo-state tags pos head donep)
  5268. (goto-char (point-min))
  5269. (while (re-search-forward regexp nil t)
  5270. (catch :skip
  5271. (org-agenda-skip)
  5272. (setq pos (point))
  5273. (let ((start-time (match-string 1))
  5274. (end-time (match-string 2)))
  5275. (setq s1 (match-string 1)
  5276. s2 (match-string 2)
  5277. d1 (time-to-days (org-time-string-to-time s1 (current-buffer) pos))
  5278. d2 (time-to-days (org-time-string-to-time s2 (current-buffer) pos)))
  5279. (if (and (> (- d0 d1) -1) (> (- d2 d0) -1))
  5280. ;; Only allow days between the limits, because the normal
  5281. ;; date stamps will catch the limits.
  5282. (save-excursion
  5283. (setq todo-state (org-get-todo-state))
  5284. (setq donep (member todo-state org-done-keywords))
  5285. (if (and donep org-agenda-skip-timestamp-if-done)
  5286. (throw :skip t))
  5287. (setq marker (org-agenda-new-marker (point)))
  5288. (setq category (org-get-category)
  5289. org-category-pos (get-text-property (point) 'org-category-position))
  5290. (if (not (re-search-backward org-outline-regexp-bol nil t))
  5291. (setq txt org-agenda-no-heading-message)
  5292. (goto-char (match-beginning 0))
  5293. (setq hdmarker (org-agenda-new-marker (point)))
  5294. (setq tags (org-get-tags-at))
  5295. (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
  5296. (setq head (match-string 1))
  5297. (let ((remove-re
  5298. (if org-agenda-remove-timeranges-from-blocks
  5299. (concat
  5300. "<" (regexp-quote s1) ".*?>"
  5301. "--"
  5302. "<" (regexp-quote s2) ".*?>")
  5303. nil)))
  5304. (setq txt (org-agenda-format-item
  5305. (format
  5306. (nth (if (= d1 d2) 0 1)
  5307. org-agenda-timerange-leaders)
  5308. (1+ (- d0 d1)) (1+ (- d2 d1)))
  5309. head category tags
  5310. (cond ((and (= d1 d0) (= d2 d0))
  5311. (concat "<" start-time ">--<" end-time ">"))
  5312. ((= d1 d0)
  5313. (concat "<" start-time ">"))
  5314. ((= d2 d0)
  5315. (concat "<" end-time ">")))
  5316. remove-re))))
  5317. (org-add-props txt props
  5318. 'org-marker marker 'org-hd-marker hdmarker
  5319. 'type "block" 'date date
  5320. 'todo-state todo-state
  5321. 'priority (org-get-priority txt) 'org-category category
  5322. 'org-category-position org-category-pos)
  5323. (push txt ee))))
  5324. (goto-char pos)))
  5325. ;; Sort the entries by expiration date.
  5326. (nreverse ee)))
  5327. ;;; Agenda presentation and sorting
  5328. (defvar org-prefix-has-time nil
  5329. "A flag, set by `org-compile-prefix-format'.
  5330. The flag is set if the currently compiled format contains a `%t'.")
  5331. (defvar org-prefix-has-tag nil
  5332. "A flag, set by `org-compile-prefix-format'.
  5333. The flag is set if the currently compiled format contains a `%T'.")
  5334. (defvar org-prefix-has-effort nil
  5335. "A flag, set by `org-compile-prefix-format'.
  5336. The flag is set if the currently compiled format contains a `%e'.")
  5337. (defvar org-prefix-category-length nil
  5338. "Used by `org-compile-prefix-format' to remember the category field width.")
  5339. (defvar org-prefix-category-max-length nil
  5340. "Used by `org-compile-prefix-format' to remember the category field width.")
  5341. (defun org-agenda-get-category-icon (category)
  5342. "Return an image for CATEGORY according to `org-agenda-category-icon-alist'."
  5343. (dolist (entry org-agenda-category-icon-alist)
  5344. (when (org-string-match-p (car entry) category)
  5345. (if (listp (cadr entry))
  5346. (return (cadr entry))
  5347. (return (apply 'create-image (cdr entry)))))))
  5348. (defun org-agenda-format-item (extra txt &optional category tags dotime
  5349. remove-re habitp)
  5350. "Format TXT to be inserted into the agenda buffer.
  5351. In particular, it adds the prefix and corresponding text properties. EXTRA
  5352. must be a string and replaces the `%s' specifier in the prefix format.
  5353. CATEGORY (string, symbol or nil) may be used to overrule the default
  5354. category taken from local variable or file name. It will replace the `%c'
  5355. specifier in the format. DOTIME, when non-nil, indicates that a
  5356. time-of-day should be extracted from TXT for sorting of this entry, and for
  5357. the `%t' specifier in the format. When DOTIME is a string, this string is
  5358. searched for a time before TXT is. TAGS can be the tags of the headline.
  5359. Any match of REMOVE-RE will be removed from TXT."
  5360. ;; We keep the org-prefix-* variable values along with a compiled
  5361. ;; formatter, so that multiple agendas existing at the same time, do
  5362. ;; not step on each other toes.
  5363. ;;
  5364. ;; It was inconvenient to make these variables buffer local in
  5365. ;; Agenda buffers, because this function expects to be called with
  5366. ;; the buffer where item comes from being current, and not agenda
  5367. ;; buffer
  5368. (let* ((bindings (car org-prefix-format-compiled))
  5369. (formatter (cadr org-prefix-format-compiled)))
  5370. (loop for (var value) in bindings
  5371. do (set var value))
  5372. (save-match-data
  5373. ;; Diary entries sometimes have extra whitespace at the beginning
  5374. (if (string-match "^ +" txt) (setq txt (replace-match "" nil nil txt)))
  5375. ;; Fix the tags part in txt
  5376. (setq txt (org-agenda-fix-displayed-tags
  5377. txt tags
  5378. org-agenda-show-inherited-tags
  5379. org-agenda-hide-tags-regexp))
  5380. (let* ((category (or category
  5381. (if (stringp org-category)
  5382. org-category
  5383. (and org-category (symbol-name org-category)))
  5384. (if buffer-file-name
  5385. (file-name-sans-extension
  5386. (file-name-nondirectory buffer-file-name))
  5387. "")))
  5388. (category-icon (org-agenda-get-category-icon category))
  5389. (category-icon (if category-icon
  5390. (propertize " " 'display category-icon)
  5391. ""))
  5392. ;; time, tag, effort are needed for the eval of the prefix format
  5393. (tag (if tags (nth (1- (length tags)) tags) ""))
  5394. time effort neffort
  5395. (ts (if dotime (concat
  5396. (if (stringp dotime) dotime "")
  5397. (and org-agenda-search-headline-for-time txt))))
  5398. (time-of-day (and dotime (org-get-time-of-day ts)))
  5399. stamp plain s0 s1 s2 rtn srp l
  5400. duration thecategory)
  5401. (and (derived-mode-p 'org-mode) buffer-file-name
  5402. (add-to-list 'org-agenda-contributing-files buffer-file-name))
  5403. (when (and dotime time-of-day)
  5404. ;; Extract starting and ending time and move them to prefix
  5405. (when (or (setq stamp (string-match org-stamp-time-of-day-regexp ts))
  5406. (setq plain (string-match org-plain-time-of-day-regexp ts)))
  5407. (setq s0 (match-string 0 ts)
  5408. srp (and stamp (match-end 3))
  5409. s1 (match-string (if plain 1 2) ts)
  5410. s2 (match-string (if plain 8 (if srp 4 6)) ts))
  5411. ;; If the times are in TXT (not in DOTIMES), and the prefix will list
  5412. ;; them, we might want to remove them there to avoid duplication.
  5413. ;; The user can turn this off with a variable.
  5414. (if (and org-prefix-has-time
  5415. org-agenda-remove-times-when-in-prefix (or stamp plain)
  5416. (string-match (concat (regexp-quote s0) " *") txt)
  5417. (not (equal ?\] (string-to-char (substring txt (match-end 0)))))
  5418. (if (eq org-agenda-remove-times-when-in-prefix 'beg)
  5419. (= (match-beginning 0) 0)
  5420. t))
  5421. (setq txt (replace-match "" nil nil txt))))
  5422. ;; Normalize the time(s) to 24 hour
  5423. (if s1 (setq s1 (org-get-time-of-day s1 'string t)))
  5424. (if s2 (setq s2 (org-get-time-of-day s2 'string t)))
  5425. ;; Try to set s2 if s1 and `org-agenda-default-appointment-duration' are set
  5426. (when (and s1 (not s2) org-agenda-default-appointment-duration)
  5427. (setq s2
  5428. (org-minutes-to-hh:mm-string
  5429. (+ (org-hh:mm-string-to-minutes s1) org-agenda-default-appointment-duration))))
  5430. ;; Compute the duration
  5431. (when s2
  5432. (setq duration (- (org-hh:mm-string-to-minutes s2)
  5433. (org-hh:mm-string-to-minutes s1)))))
  5434. (when (string-match (org-re "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$")
  5435. txt)
  5436. ;; Tags are in the string
  5437. (if (or (eq org-agenda-remove-tags t)
  5438. (and org-agenda-remove-tags
  5439. org-prefix-has-tag))
  5440. (setq txt (replace-match "" t t txt))
  5441. (setq txt (replace-match
  5442. (concat (make-string (max (- 50 (length txt)) 1) ?\ )
  5443. (match-string 2 txt))
  5444. t t txt))))
  5445. (when (derived-mode-p 'org-mode)
  5446. (setq effort
  5447. (condition-case nil
  5448. (org-get-effort
  5449. (or (get-text-property 0 'org-hd-marker txt)
  5450. (get-text-property 0 'org-marker txt)))
  5451. (error nil)))
  5452. (when effort
  5453. (setq neffort (org-duration-string-to-minutes effort)
  5454. effort (setq effort (concat "[" effort "]")))))
  5455. ;; prevent erroring out with %e format when there is no effort
  5456. (or effort (setq effort ""))
  5457. (when remove-re
  5458. (while (string-match remove-re txt)
  5459. (setq txt (replace-match "" t t txt))))
  5460. ;; Set org-heading property on `txt' to mark the start of the
  5461. ;; heading.
  5462. (add-text-properties 0 (length txt) '(org-heading t) txt)
  5463. ;; Prepare the variables needed in the eval of the compiled format
  5464. (setq time (cond (s2 (concat
  5465. (org-agenda-time-of-day-to-ampm-maybe s1)
  5466. "-" (org-agenda-time-of-day-to-ampm-maybe s2)
  5467. (if org-agenda-timegrid-use-ampm " ")))
  5468. (s1 (concat
  5469. (org-agenda-time-of-day-to-ampm-maybe s1)
  5470. (if org-agenda-timegrid-use-ampm
  5471. "........ "
  5472. "......")))
  5473. (t ""))
  5474. extra (or (and (not habitp) extra) "")
  5475. category (if (symbolp category) (symbol-name category) category)
  5476. thecategory (copy-sequence category))
  5477. (if (string-match org-bracket-link-regexp category)
  5478. (progn
  5479. (setq l (if (match-end 3)
  5480. (- (match-end 3) (match-beginning 3))
  5481. (- (match-end 1) (match-beginning 1))))
  5482. (when (< l (or org-prefix-category-length 0))
  5483. (setq category (copy-sequence category))
  5484. (org-add-props category nil
  5485. 'extra-space (make-string
  5486. (- org-prefix-category-length l 1) ?\ ))))
  5487. (if (and org-prefix-category-max-length
  5488. (>= (length category) org-prefix-category-max-length))
  5489. (setq category (substring category 0 (1- org-prefix-category-max-length)))))
  5490. ;; Evaluate the compiled format
  5491. (setq rtn (concat (eval formatter) txt))
  5492. ;; And finally add the text properties
  5493. (remove-text-properties 0 (length rtn) '(line-prefix t wrap-prefix t) rtn)
  5494. (org-add-props rtn nil
  5495. 'org-category (if thecategory (downcase thecategory) category)
  5496. 'tags (mapcar 'org-downcase-keep-props tags)
  5497. 'org-highest-priority org-highest-priority
  5498. 'org-lowest-priority org-lowest-priority
  5499. 'time-of-day time-of-day
  5500. 'duration duration
  5501. 'effort effort
  5502. 'effort-minutes neffort
  5503. 'txt txt
  5504. 'time time
  5505. 'extra extra
  5506. 'format org-prefix-format-compiled
  5507. 'dotime dotime)))))
  5508. (defun org-agenda-fix-displayed-tags (txt tags add-inherited hide-re)
  5509. "Remove tags string from TXT, and add a modified list of tags.
  5510. The modified list may contain inherited tags, and tags matched by
  5511. `org-agenda-hide-tags-regexp' will be removed."
  5512. (when (or add-inherited hide-re)
  5513. (if (string-match (org-re "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$") txt)
  5514. (setq txt (substring txt 0 (match-beginning 0))))
  5515. (setq tags
  5516. (delq nil
  5517. (mapcar (lambda (tg)
  5518. (if (or (and hide-re (string-match hide-re tg))
  5519. (and (not add-inherited)
  5520. (get-text-property 0 'inherited tg)))
  5521. nil
  5522. tg))
  5523. tags)))
  5524. (when tags
  5525. (let ((have-i (get-text-property 0 'inherited (car tags)))
  5526. i)
  5527. (setq txt (concat txt " :"
  5528. (mapconcat
  5529. (lambda (x)
  5530. (setq i (get-text-property 0 'inherited x))
  5531. (if (and have-i (not i))
  5532. (progn
  5533. (setq have-i nil)
  5534. (concat ":" x))
  5535. x))
  5536. tags ":")
  5537. (if have-i "::" ":"))))))
  5538. txt)
  5539. (defun org-downcase-keep-props (s)
  5540. (let ((props (text-properties-at 0 s)))
  5541. (setq s (downcase s))
  5542. (add-text-properties 0 (length s) props s)
  5543. s))
  5544. (defvar org-agenda-sorting-strategy) ;; because the def is in a let form
  5545. (defvar org-agenda-sorting-strategy-selected nil)
  5546. (defun org-agenda-add-time-grid-maybe (list ndays todayp)
  5547. (catch 'exit
  5548. (cond ((not org-agenda-use-time-grid) (throw 'exit list))
  5549. ((and todayp (member 'today (car org-agenda-time-grid))))
  5550. ((and (= ndays 1) (member 'daily (car org-agenda-time-grid))))
  5551. ((member 'weekly (car org-agenda-time-grid)))
  5552. (t (throw 'exit list)))
  5553. (let* ((have (delq nil (mapcar
  5554. (lambda (x) (get-text-property 1 'time-of-day x))
  5555. list)))
  5556. (string (nth 1 org-agenda-time-grid))
  5557. (gridtimes (nth 2 org-agenda-time-grid))
  5558. (req (car org-agenda-time-grid))
  5559. (remove (member 'remove-match req))
  5560. new time)
  5561. (if (and (member 'require-timed req) (not have))
  5562. ;; don't show empty grid
  5563. (throw 'exit list))
  5564. (while (setq time (pop gridtimes))
  5565. (unless (and remove (member time have))
  5566. (setq time (replace-regexp-in-string " " "0" (format "%04s" time)))
  5567. (push (org-agenda-format-item
  5568. nil string "" nil
  5569. (concat (substring time 0 -2) ":" (substring time -2)))
  5570. new)
  5571. (put-text-property
  5572. 2 (length (car new)) 'face 'org-time-grid (car new))))
  5573. (when (and todayp org-agenda-show-current-time-in-grid)
  5574. (push (org-agenda-format-item
  5575. nil
  5576. org-agenda-current-time-string
  5577. "" nil
  5578. (format-time-string "%H:%M "))
  5579. new)
  5580. (put-text-property
  5581. 2 (length (car new)) 'face 'org-agenda-current-time (car new)))
  5582. (if (member 'time-up org-agenda-sorting-strategy-selected)
  5583. (append new list)
  5584. (append list new)))))
  5585. (defun org-compile-prefix-format (key)
  5586. "Compile the prefix format into a Lisp form that can be evaluated.
  5587. The resulting form and associated variable bindings is returned
  5588. and stored in the variable `org-prefix-format-compiled'."
  5589. (setq org-prefix-has-time nil org-prefix-has-tag nil
  5590. org-prefix-category-length nil
  5591. org-prefix-has-effort nil)
  5592. (let ((s (cond
  5593. ((stringp org-agenda-prefix-format)
  5594. org-agenda-prefix-format)
  5595. ((assq key org-agenda-prefix-format)
  5596. (cdr (assq key org-agenda-prefix-format)))
  5597. (t " %-12:c%?-12t% s")))
  5598. (start 0)
  5599. varform vars var e c f opt)
  5600. (while (string-match "%\\(\\?\\)?\\([-+]?[0-9.]*\\)\\([ .;,:!?=|/<>]?\\)\\([ctsei]\\|(.+)\\)"
  5601. s start)
  5602. (setq var (or (cdr (assoc (match-string 4 s)
  5603. '(("c" . category) ("t" . time) ("s" . extra)
  5604. ("i" . category-icon) ("T" . tag) ("e" . effort))))
  5605. 'eval)
  5606. c (or (match-string 3 s) "")
  5607. opt (match-beginning 1)
  5608. start (1+ (match-beginning 0)))
  5609. (if (equal var 'time) (setq org-prefix-has-time t))
  5610. (if (equal var 'tag) (setq org-prefix-has-tag t))
  5611. (if (equal var 'effort) (setq org-prefix-has-effort t))
  5612. (setq f (concat "%" (match-string 2 s) "s"))
  5613. (when (equal var 'category)
  5614. (setq org-prefix-category-length
  5615. (floor (abs (string-to-number (match-string 2 s)))))
  5616. (setq org-prefix-category-max-length
  5617. (let ((x (match-string 2 s)))
  5618. (save-match-data
  5619. (if (string-match "\\.[0-9]+" x)
  5620. (string-to-number (substring (match-string 0 x) 1)))))))
  5621. (if (eq var 'eval)
  5622. (setq varform `(format ,f (org-eval ,(read (match-string 4 s)))))
  5623. (if opt
  5624. (setq varform
  5625. `(if (equal "" ,var)
  5626. ""
  5627. (format ,f (if (equal "" ,var) "" (concat ,var ,c)))))
  5628. (setq varform `(format ,f (if (equal ,var "") "" (concat ,var ,c (get-text-property 0 'extra-space ,var)))))))
  5629. (setq s (replace-match "%s" t nil s))
  5630. (push varform vars))
  5631. (setq vars (nreverse vars))
  5632. (with-current-buffer org-agenda-buffer
  5633. (setq org-prefix-format-compiled
  5634. (list
  5635. `((org-prefix-has-time ,org-prefix-has-time)
  5636. (org-prefix-has-tag ,org-prefix-has-tag)
  5637. (org-prefix-category-length ,org-prefix-category-length)
  5638. (org-prefix-has-effort ,org-prefix-has-effort))
  5639. `(format ,s ,@vars))))))
  5640. (defun org-set-sorting-strategy (key)
  5641. (if (symbolp (car org-agenda-sorting-strategy))
  5642. ;; the old format
  5643. (setq org-agenda-sorting-strategy-selected org-agenda-sorting-strategy)
  5644. (setq org-agenda-sorting-strategy-selected
  5645. (or (cdr (assq key org-agenda-sorting-strategy))
  5646. (cdr (assq 'agenda org-agenda-sorting-strategy))
  5647. '(time-up category-keep priority-down)))))
  5648. (defun org-get-time-of-day (s &optional string mod24)
  5649. "Check string S for a time of day.
  5650. If found, return it as a military time number between 0 and 2400.
  5651. If not found, return nil.
  5652. The optional STRING argument forces conversion into a 5 character wide string
  5653. HH:MM."
  5654. (save-match-data
  5655. (when
  5656. (or (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)\\([AaPp][Mm]\\)?\\> *" s)
  5657. (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?\\([AaPp][Mm]\\)\\> *" s))
  5658. (let* ((h (string-to-number (match-string 1 s)))
  5659. (m (if (match-end 3) (string-to-number (match-string 3 s)) 0))
  5660. (ampm (if (match-end 4) (downcase (match-string 4 s))))
  5661. (am-p (equal ampm "am"))
  5662. (h1 (cond ((not ampm) h)
  5663. ((= h 12) (if am-p 0 12))
  5664. (t (+ h (if am-p 0 12)))))
  5665. (h2 (if (and string mod24 (not (and (= m 0) (= h1 24))))
  5666. (mod h1 24) h1))
  5667. (t0 (+ (* 100 h2) m))
  5668. (t1 (concat (if (>= h1 24) "+" " ")
  5669. (if (and org-agenda-time-leading-zero
  5670. (< t0 1000)) "0" "")
  5671. (if (< t0 100) "0" "")
  5672. (if (< t0 10) "0" "")
  5673. (int-to-string t0))))
  5674. (if string (concat (substring t1 -4 -2) ":" (substring t1 -2)) t0)))))
  5675. (defvar org-agenda-before-sorting-filter-function nil
  5676. "Function to be applied to agenda items prior to sorting.
  5677. Prior to sorting also means just before they are inserted into the agenda.
  5678. To aid sorting, you may revisit the original entries and add more text
  5679. properties which will later be used by the sorting functions.
  5680. The function should take a string argument, an agenda line.
  5681. It has access to the text properties in that line, which contain among
  5682. other things, the property `org-hd-marker' that points to the entry
  5683. where the line comes from. Note that not all lines going into the agenda
  5684. have this property, only most.
  5685. The function should return the modified string. It is probably best
  5686. to ONLY change text properties.
  5687. You can also use this function as a filter, by returning nil for lines
  5688. you don't want to have in the agenda at all. For this application, you
  5689. could bind the variable in the options section of a custom command.")
  5690. (defun org-finalize-agenda-entries (list &optional nosort)
  5691. "Sort and concatenate the agenda items."
  5692. (setq list (mapcar 'org-agenda-highlight-todo list))
  5693. (if nosort
  5694. list
  5695. (when org-agenda-before-sorting-filter-function
  5696. (setq list (delq nil (mapcar org-agenda-before-sorting-filter-function list))))
  5697. (mapconcat 'identity (sort list 'org-entries-lessp) "\n")))
  5698. (defun org-agenda-highlight-todo (x)
  5699. (let ((org-done-keywords org-done-keywords-for-agenda)
  5700. (case-fold-search nil)
  5701. re)
  5702. (if (eq x 'line)
  5703. (save-excursion
  5704. (beginning-of-line 1)
  5705. (setq re (org-get-at-bol 'org-todo-regexp))
  5706. (goto-char (or (text-property-any (point-at-bol) (point-at-eol) 'org-heading t) (point)))
  5707. (when (looking-at (concat "[ \t]*\\.*\\(" re "\\) +"))
  5708. (add-text-properties (match-beginning 0) (match-end 1)
  5709. (list 'face (org-get-todo-face 1)))
  5710. (let ((s (buffer-substring (match-beginning 1) (match-end 1))))
  5711. (delete-region (match-beginning 1) (1- (match-end 0)))
  5712. (goto-char (match-beginning 1))
  5713. (insert (format org-agenda-todo-keyword-format s)))))
  5714. (let ((pl (text-property-any 0 (length x) 'org-heading t x)))
  5715. (setq re (get-text-property 0 'org-todo-regexp x))
  5716. (when (and re
  5717. ;; Test `pl' because if there's no heading content,
  5718. ;; there's no point matching to highlight. Note
  5719. ;; that if we didn't test `pl' first, and there
  5720. ;; happened to be no keyword from `org-todo-regexp'
  5721. ;; on this heading line, then the `equal' comparison
  5722. ;; afterwards would spuriously succeed in the case
  5723. ;; where `pl' is nil -- causing an args-out-of-range
  5724. ;; error when we try to add text properties to text
  5725. ;; that isn't there.
  5726. pl
  5727. (equal (string-match (concat "\\(\\.*\\)" re "\\( +\\)")
  5728. x pl) pl))
  5729. (add-text-properties
  5730. (or (match-end 1) (match-end 0)) (match-end 0)
  5731. (list 'face (org-get-todo-face (match-string 2 x)))
  5732. x)
  5733. (when (match-end 1)
  5734. (setq x (concat (substring x 0 (match-end 1))
  5735. (format org-agenda-todo-keyword-format
  5736. (match-string 2 x))
  5737. (org-add-props " " (text-properties-at 0 x))
  5738. (substring x (match-end 3)))))))
  5739. x)))
  5740. (defsubst org-cmp-priority (a b)
  5741. "Compare the priorities of string A and B."
  5742. (let ((pa (or (get-text-property 1 'priority a) 0))
  5743. (pb (or (get-text-property 1 'priority b) 0)))
  5744. (cond ((> pa pb) +1)
  5745. ((< pa pb) -1))))
  5746. (defsubst org-cmp-effort (a b)
  5747. "Compare the effort values of string A and B."
  5748. (let* ((def (if org-sort-agenda-noeffort-is-high 32767 -1))
  5749. (ea (or (get-text-property 1 'effort-minutes a) def))
  5750. (eb (or (get-text-property 1 'effort-minutes b) def)))
  5751. (cond ((> ea eb) +1)
  5752. ((< ea eb) -1))))
  5753. (defsubst org-cmp-category (a b)
  5754. "Compare the string values of categories of strings A and B."
  5755. (let ((ca (or (get-text-property 1 'org-category a) ""))
  5756. (cb (or (get-text-property 1 'org-category b) "")))
  5757. (cond ((string-lessp ca cb) -1)
  5758. ((string-lessp cb ca) +1))))
  5759. (defsubst org-cmp-todo-state (a b)
  5760. "Compare the todo states of strings A and B."
  5761. (let* ((ma (or (get-text-property 1 'org-marker a)
  5762. (get-text-property 1 'org-hd-marker a)))
  5763. (mb (or (get-text-property 1 'org-marker b)
  5764. (get-text-property 1 'org-hd-marker b)))
  5765. (fa (and ma (marker-buffer ma)))
  5766. (fb (and mb (marker-buffer mb)))
  5767. (todo-kwds
  5768. (or (and fa (with-current-buffer fa org-todo-keywords-1))
  5769. (and fb (with-current-buffer fb org-todo-keywords-1))))
  5770. (ta (or (get-text-property 1 'todo-state a) ""))
  5771. (tb (or (get-text-property 1 'todo-state b) ""))
  5772. (la (- (length (member ta todo-kwds))))
  5773. (lb (- (length (member tb todo-kwds))))
  5774. (donepa (member ta org-done-keywords-for-agenda))
  5775. (donepb (member tb org-done-keywords-for-agenda)))
  5776. (cond ((and donepa (not donepb)) -1)
  5777. ((and (not donepa) donepb) +1)
  5778. ((< la lb) -1)
  5779. ((< lb la) +1))))
  5780. (defsubst org-cmp-alpha (a b)
  5781. "Compare the headlines, alphabetically."
  5782. (let* ((pla (text-property-any 0 (length a) 'org-heading t a))
  5783. (plb (text-property-any 0 (length b) 'org-heading t b))
  5784. (ta (and pla (substring a pla)))
  5785. (tb (and plb (substring b plb))))
  5786. (when pla
  5787. (if (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp a) "")
  5788. "\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *") ta)
  5789. (setq ta (substring ta (match-end 0))))
  5790. (setq ta (downcase ta)))
  5791. (when plb
  5792. (if (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp b) "")
  5793. "\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *") tb)
  5794. (setq tb (substring tb (match-end 0))))
  5795. (setq tb (downcase tb)))
  5796. (cond ((not ta) +1)
  5797. ((not tb) -1)
  5798. ((string-lessp ta tb) -1)
  5799. ((string-lessp tb ta) +1))))
  5800. (defsubst org-cmp-tag (a b)
  5801. "Compare the string values of the first tags of A and B."
  5802. (let ((ta (car (last (get-text-property 1 'tags a))))
  5803. (tb (car (last (get-text-property 1 'tags b)))))
  5804. (cond ((not ta) +1)
  5805. ((not tb) -1)
  5806. ((string-lessp ta tb) -1)
  5807. ((string-lessp tb ta) +1))))
  5808. (defsubst org-cmp-time (a b)
  5809. "Compare the time-of-day values of strings A and B."
  5810. (let* ((def (if org-sort-agenda-notime-is-late 9901 -1))
  5811. (ta (or (get-text-property 1 'time-of-day a) def))
  5812. (tb (or (get-text-property 1 'time-of-day b) def)))
  5813. (cond ((< ta tb) -1)
  5814. ((< tb ta) +1))))
  5815. (defsubst org-cmp-habit-p (a b)
  5816. "Compare the todo states of strings A and B."
  5817. (let ((ha (get-text-property 1 'org-habit-p a))
  5818. (hb (get-text-property 1 'org-habit-p b)))
  5819. (cond ((and ha (not hb)) -1)
  5820. ((and (not ha) hb) +1))))
  5821. (defsubst org-em (x y list) (or (memq x list) (memq y list)))
  5822. (defun org-entries-lessp (a b)
  5823. "Predicate for sorting agenda entries."
  5824. ;; The following variables will be used when the form is evaluated.
  5825. ;; So even though the compiler complains, keep them.
  5826. (let* ((ss org-agenda-sorting-strategy-selected)
  5827. (time-up (and (org-em 'time-up 'time-down ss)
  5828. (org-cmp-time a b)))
  5829. (time-down (if time-up (- time-up) nil))
  5830. (priority-up (and (org-em 'priority-up 'priority-down ss)
  5831. (org-cmp-priority a b)))
  5832. (priority-down (if priority-up (- priority-up) nil))
  5833. (effort-up (and (org-em 'effort-up 'effort-down ss)
  5834. (org-cmp-effort a b)))
  5835. (effort-down (if effort-up (- effort-up) nil))
  5836. (category-up (and (or (org-em 'category-up 'category-down ss)
  5837. (memq 'category-keep ss))
  5838. (org-cmp-category a b)))
  5839. (category-down (if category-up (- category-up) nil))
  5840. (category-keep (if category-up +1 nil))
  5841. (tag-up (and (org-em 'tag-up 'tag-down ss)
  5842. (org-cmp-tag a b)))
  5843. (tag-down (if tag-up (- tag-up) nil))
  5844. (todo-state-up (and (org-em 'todo-state-up 'todo-state-down ss)
  5845. (org-cmp-todo-state a b)))
  5846. (todo-state-down (if todo-state-up (- todo-state-up) nil))
  5847. (habit-up (and (org-em 'habit-up 'habit-down ss)
  5848. (org-cmp-habit-p a b)))
  5849. (habit-down (if habit-up (- habit-up) nil))
  5850. (alpha-up (and (org-em 'alpha-up 'alpha-down ss)
  5851. (org-cmp-alpha a b)))
  5852. (alpha-down (if alpha-up (- alpha-up) nil))
  5853. (need-user-cmp (org-em 'user-defined-up 'user-defined-down ss))
  5854. user-defined-up user-defined-down)
  5855. (if (and need-user-cmp org-agenda-cmp-user-defined
  5856. (functionp org-agenda-cmp-user-defined))
  5857. (setq user-defined-up
  5858. (funcall org-agenda-cmp-user-defined a b)
  5859. user-defined-down (if user-defined-up (- user-defined-up) nil)))
  5860. (cdr (assoc
  5861. (eval (cons 'or org-agenda-sorting-strategy-selected))
  5862. '((-1 . t) (1 . nil) (nil . nil))))))
  5863. ;;; Agenda restriction lock
  5864. (defvar org-agenda-restriction-lock-overlay (make-overlay 1 1)
  5865. "Overlay to mark the headline to which agenda commands are restricted.")
  5866. (overlay-put org-agenda-restriction-lock-overlay
  5867. 'face 'org-agenda-restriction-lock)
  5868. (overlay-put org-agenda-restriction-lock-overlay
  5869. 'help-echo "Agendas are currently limited to this subtree.")
  5870. (org-detach-overlay org-agenda-restriction-lock-overlay)
  5871. (defun org-agenda-set-restriction-lock (&optional type)
  5872. "Set restriction lock for agenda, to current subtree or file.
  5873. Restriction will be the file if TYPE is `file', or if type is the
  5874. universal prefix '(4), or if the cursor is before the first headline
  5875. in the file. Otherwise, restriction will be to the current subtree."
  5876. (interactive "P")
  5877. (and (equal type '(4)) (setq type 'file))
  5878. (setq type (cond
  5879. (type type)
  5880. ((org-at-heading-p) 'subtree)
  5881. ((condition-case nil (org-back-to-heading t) (error nil))
  5882. 'subtree)
  5883. (t 'file)))
  5884. (if (eq type 'subtree)
  5885. (progn
  5886. (setq org-agenda-restrict t)
  5887. (setq org-agenda-overriding-restriction 'subtree)
  5888. (put 'org-agenda-files 'org-restrict
  5889. (list (buffer-file-name (buffer-base-buffer))))
  5890. (org-back-to-heading t)
  5891. (move-overlay org-agenda-restriction-lock-overlay (point) (point-at-eol))
  5892. (move-marker org-agenda-restrict-begin (point))
  5893. (move-marker org-agenda-restrict-end
  5894. (save-excursion (org-end-of-subtree t)))
  5895. (message "Locking agenda restriction to subtree"))
  5896. (put 'org-agenda-files 'org-restrict
  5897. (list (buffer-file-name (buffer-base-buffer))))
  5898. (setq org-agenda-restrict nil)
  5899. (setq org-agenda-overriding-restriction 'file)
  5900. (move-marker org-agenda-restrict-begin nil)
  5901. (move-marker org-agenda-restrict-end nil)
  5902. (message "Locking agenda restriction to file"))
  5903. (setq current-prefix-arg nil)
  5904. (org-agenda-maybe-redo))
  5905. (defun org-agenda-remove-restriction-lock (&optional noupdate)
  5906. "Remove the agenda restriction lock."
  5907. (interactive "P")
  5908. (org-detach-overlay org-agenda-restriction-lock-overlay)
  5909. (org-detach-overlay org-speedbar-restriction-lock-overlay)
  5910. (setq org-agenda-overriding-restriction nil)
  5911. (setq org-agenda-restrict nil)
  5912. (put 'org-agenda-files 'org-restrict nil)
  5913. (move-marker org-agenda-restrict-begin nil)
  5914. (move-marker org-agenda-restrict-end nil)
  5915. (setq current-prefix-arg nil)
  5916. (message "Agenda restriction lock removed")
  5917. (or noupdate (org-agenda-maybe-redo)))
  5918. (defun org-agenda-maybe-redo ()
  5919. "If there is any window showing the agenda view, update it."
  5920. (let ((w (get-buffer-window org-agenda-buffer-name t))
  5921. (w0 (selected-window)))
  5922. (when w
  5923. (select-window w)
  5924. (org-agenda-redo)
  5925. (select-window w0)
  5926. (if org-agenda-overriding-restriction
  5927. (message "Agenda view shifted to new %s restriction"
  5928. org-agenda-overriding-restriction)
  5929. (message "Agenda restriction lock removed")))))
  5930. ;;; Agenda commands
  5931. (defun org-agenda-check-type (error &rest types)
  5932. "Check if agenda buffer is of allowed type.
  5933. If ERROR is non-nil, throw an error, otherwise just return nil."
  5934. (if (not org-agenda-type)
  5935. (error "No Org agenda currently displayed")
  5936. (if (memq org-agenda-type types)
  5937. t
  5938. (if error
  5939. (error "Not allowed in %s-type agenda buffers" org-agenda-type)
  5940. nil))))
  5941. (defun org-agenda-Quit (&optional arg)
  5942. "Exit agenda by removing the window or the buffer."
  5943. (interactive)
  5944. (if org-agenda-columns-active
  5945. (org-columns-quit)
  5946. (let ((buf (current-buffer)))
  5947. (if (eq org-agenda-window-setup 'other-frame)
  5948. (progn
  5949. (org-agenda-reset-markers)
  5950. (kill-buffer buf)
  5951. (org-columns-remove-overlays)
  5952. (setq org-agenda-archives-mode nil)
  5953. (delete-frame))
  5954. (and (not (eq org-agenda-window-setup 'current-window))
  5955. (not (one-window-p))
  5956. (delete-window))
  5957. (org-agenda-reset-markers)
  5958. (kill-buffer buf)
  5959. (org-columns-remove-overlays)
  5960. (setq org-agenda-archives-mode nil)))
  5961. ;; Maybe restore the pre-agenda window configuration.
  5962. (and org-agenda-restore-windows-after-quit
  5963. (not (eq org-agenda-window-setup 'other-frame))
  5964. org-pre-agenda-window-conf
  5965. (set-window-configuration org-pre-agenda-window-conf))))
  5966. (defun org-agenda-quit ()
  5967. "Exit agenda by killing agenda buffer or burying it when
  5968. `org-agenda-sticky' is non-NIL"
  5969. (interactive)
  5970. (if org-agenda-columns-active
  5971. (org-columns-quit)
  5972. (if org-agenda-sticky
  5973. (let ((buf (current-buffer)))
  5974. (if (eq org-agenda-window-setup 'other-frame)
  5975. (progn
  5976. (delete-frame))
  5977. (and (not (eq org-agenda-window-setup 'current-window))
  5978. (not (one-window-p))
  5979. (delete-window)))
  5980. (with-current-buffer buf
  5981. (bury-buffer)
  5982. ;; Maybe restore the pre-agenda window configuration.
  5983. (and org-agenda-restore-windows-after-quit
  5984. (not (eq org-agenda-window-setup 'other-frame))
  5985. org-pre-agenda-window-conf
  5986. (set-window-configuration org-pre-agenda-window-conf))))
  5987. (org-agenda-Quit))))
  5988. (defun org-agenda-exit ()
  5989. "Exit agenda by removing the window or the buffer.
  5990. Also kill all Org-mode buffers which have been loaded by `org-agenda'.
  5991. Org-mode buffers visited directly by the user will not be touched."
  5992. (interactive)
  5993. (org-release-buffers org-agenda-new-buffers)
  5994. (setq org-agenda-new-buffers nil)
  5995. (org-agenda-Quit))
  5996. (defun org-agenda-kill-all-agenda-buffers ()
  5997. "Kill all buffers in `org-agena-mode'.
  5998. This is used when toggling sticky agendas. You can also explicitly invoke it
  5999. with `C-c a C-k'."
  6000. (interactive)
  6001. (let (blist)
  6002. (dolist (buf (buffer-list))
  6003. (when (with-current-buffer buf (eq major-mode 'org-agenda-mode))
  6004. (push buf blist)))
  6005. (mapc 'kill-buffer blist)))
  6006. (defun org-agenda-execute (arg)
  6007. "Execute another agenda command, keeping same window.
  6008. So this is just a shortcut for \\<global-map>`\\[org-agenda]', available
  6009. in the agenda."
  6010. (interactive "P")
  6011. (let ((org-agenda-window-setup 'current-window))
  6012. (org-agenda arg)))
  6013. (defun org-agenda-redo ()
  6014. "Rebuild Agenda.
  6015. When this is the global TODO list, a prefix argument will be interpreted."
  6016. (interactive)
  6017. (let* ((org-agenda-doing-sticky-redo org-agenda-sticky)
  6018. (org-agenda-sticky nil)
  6019. (org-agenda-buffer-name (or org-agenda-this-buffer-name
  6020. org-agenda-buffer-name))
  6021. (org-agenda-keep-modes t)
  6022. (tag-filter org-agenda-tag-filter)
  6023. (tag-preset (get 'org-agenda-tag-filter :preset-filter))
  6024. (top-cat-filter org-agenda-top-category-filter)
  6025. (cat-filter org-agenda-category-filter)
  6026. (cat-preset (get 'org-agenda-category-filter :preset-filter))
  6027. (org-agenda-tag-filter-while-redo (or tag-filter tag-preset))
  6028. (cols org-agenda-columns-active)
  6029. (line (org-current-line))
  6030. (window-line (- line (org-current-line (window-start))))
  6031. (lprops (get 'org-agenda-redo-command 'org-lprops)))
  6032. (put 'org-agenda-tag-filter :preset-filter nil)
  6033. (put 'org-agenda-category-filter :preset-filter nil)
  6034. (and cols (org-columns-quit))
  6035. (message "Rebuilding agenda buffer...")
  6036. (org-let lprops '(eval org-agenda-redo-command))
  6037. (setq org-agenda-undo-list nil
  6038. org-agenda-pending-undo-list nil)
  6039. (message "Rebuilding agenda buffer...done")
  6040. (put 'org-agenda-tag-filter :preset-filter tag-preset)
  6041. (put 'org-agenda-category-filter :preset-filter cat-preset)
  6042. (and (or tag-filter tag-preset) (org-agenda-filter-apply tag-filter 'tag))
  6043. (and (or cat-filter cat-preset) (org-agenda-filter-apply cat-filter 'category))
  6044. (and top-cat-filter (org-agenda-filter-top-category-apply top-cat-filter))
  6045. (and cols (org-called-interactively-p 'any) (org-agenda-columns))
  6046. (org-goto-line line)
  6047. (recenter window-line)))
  6048. (defvar org-global-tags-completion-table nil)
  6049. (defvar org-agenda-filter-form nil)
  6050. (defvar org-agenda-filtered-by-category nil)
  6051. (defun org-agenda-filter-by-category (strip)
  6052. "Keep only those lines in the agenda buffer that have a specific category.
  6053. The category is that of the current line."
  6054. (interactive "P")
  6055. (if org-agenda-filtered-by-category
  6056. (org-agenda-filter-show-all-cat)
  6057. (let ((cat (org-no-properties (get-text-property (point) 'org-category))))
  6058. (if cat (org-agenda-filter-apply
  6059. (list (concat (if strip "-" "+") cat)) 'category)
  6060. (error "No category at point")))))
  6061. (defun org-find-top-category (&optional pos)
  6062. (save-excursion
  6063. (with-current-buffer (if pos (marker-buffer pos) (current-buffer))
  6064. (if pos (goto-char pos))
  6065. ;; Skip up to the topmost parent
  6066. (while (ignore-errors (outline-up-heading 1) t))
  6067. (ignore-errors
  6068. (nth 4 (org-heading-components))))))
  6069. (defvar org-agenda-filtered-by-top-category nil)
  6070. (defun org-agenda-filter-by-top-category (strip)
  6071. "Keep only those lines in the agenda buffer that have a specific category.
  6072. The category is that of the current line."
  6073. (interactive "P")
  6074. (if org-agenda-filtered-by-top-category
  6075. (progn
  6076. (setq org-agenda-filtered-by-top-category nil
  6077. org-agenda-top-category-filter nil)
  6078. (org-agenda-filter-show-all-cat))
  6079. (let ((cat (org-find-top-category (org-get-at-bol 'org-hd-marker))))
  6080. (if cat (org-agenda-filter-top-category-apply cat strip)
  6081. (error "No top-level category at point")))))
  6082. (defun org-agenda-filter-by-tag (strip &optional char narrow)
  6083. "Keep only those lines in the agenda buffer that have a specific tag.
  6084. The tag is selected with its fast selection letter, as configured.
  6085. With prefix argument STRIP, remove all lines that do have the tag.
  6086. A lisp caller can specify CHAR. NARROW means that the new tag should be
  6087. used to narrow the search - the interactive user can also press `-' or `+'
  6088. to switch to narrowing."
  6089. (interactive "P")
  6090. (let* ((alist org-tag-alist-for-agenda)
  6091. (tag-chars (mapconcat
  6092. (lambda (x) (if (and (not (symbolp (car x)))
  6093. (cdr x))
  6094. (char-to-string (cdr x))
  6095. ""))
  6096. alist ""))
  6097. (efforts (org-split-string
  6098. (or (cdr (assoc (concat org-effort-property "_ALL")
  6099. org-global-properties))
  6100. "0 0:10 0:30 1:00 2:00 3:00 4:00 5:00 6:00 7:00 8:00"
  6101. "")))
  6102. (effort-op org-agenda-filter-effort-default-operator)
  6103. (effort-prompt "")
  6104. (inhibit-read-only t)
  6105. (current org-agenda-tag-filter)
  6106. maybe-refresh a n tag)
  6107. (unless char
  6108. (message
  6109. "%s by tag [%s ], [TAB], %s[/]:off, [+-]:narrow, [>=<?]:effort: "
  6110. (if narrow "Narrow" "Filter") tag-chars
  6111. (if org-agenda-auto-exclude-function "[RET], " ""))
  6112. (setq char (read-char-exclusive)))
  6113. (when (member char '(?+ ?-))
  6114. ;; Narrowing down
  6115. (cond ((equal char ?-) (setq strip t narrow t))
  6116. ((equal char ?+) (setq strip nil narrow t)))
  6117. (message
  6118. "Narrow by tag [%s ], [TAB], [/]:off, [>=<]:effort: " tag-chars)
  6119. (setq char (read-char-exclusive)))
  6120. (when (member char '(?< ?> ?= ??))
  6121. ;; An effort operator
  6122. (setq effort-op (char-to-string char))
  6123. (setq alist nil) ; to make sure it will be interpreted as effort.
  6124. (unless (equal char ??)
  6125. (loop for i from 0 to 9 do
  6126. (setq effort-prompt
  6127. (concat
  6128. effort-prompt " ["
  6129. (if (= i 9) "0" (int-to-string (1+ i)))
  6130. "]" (nth i efforts))))
  6131. (message "Effort%s: %s " effort-op effort-prompt)
  6132. (setq char (read-char-exclusive))
  6133. (when (or (< char ?0) (> char ?9))
  6134. (error "Need 1-9,0 to select effort"))))
  6135. (when (equal char ?\t)
  6136. (unless (local-variable-p 'org-global-tags-completion-table (current-buffer))
  6137. (org-set-local 'org-global-tags-completion-table
  6138. (org-global-tags-completion-table)))
  6139. (let ((completion-ignore-case t))
  6140. (setq tag (org-icompleting-read
  6141. "Tag: " org-global-tags-completion-table))))
  6142. (cond
  6143. ((equal char ?\r)
  6144. (org-agenda-filter-show-all-tag)
  6145. (when org-agenda-auto-exclude-function
  6146. (setq org-agenda-tag-filter '())
  6147. (dolist (tag (org-agenda-get-represented-tags))
  6148. (let ((modifier (funcall org-agenda-auto-exclude-function tag)))
  6149. (if modifier
  6150. (push modifier org-agenda-tag-filter))))
  6151. (if (not (null org-agenda-tag-filter))
  6152. (org-agenda-filter-apply org-agenda-tag-filter 'tag)))
  6153. (setq maybe-refresh t))
  6154. ((equal char ?/)
  6155. (org-agenda-filter-show-all-tag)
  6156. (when (get 'org-agenda-tag-filter :preset-filter)
  6157. (org-agenda-filter-apply org-agenda-tag-filter 'tag))
  6158. (setq maybe-refresh t))
  6159. ((equal char ?. )
  6160. (setq org-agenda-tag-filter
  6161. (mapcar (lambda(tag) (concat "+" tag))
  6162. (org-get-at-bol 'tags)))
  6163. (org-agenda-filter-apply org-agenda-tag-filter 'tag)
  6164. (setq maybe-refresh t))
  6165. ((or (equal char ?\ )
  6166. (setq a (rassoc char alist))
  6167. (and (>= char ?0) (<= char ?9)
  6168. (setq n (if (= char ?0) 9 (- char ?0 1))
  6169. tag (concat effort-op (nth n efforts))
  6170. a (cons tag nil)))
  6171. (and (= char ??)
  6172. (setq tag "?eff")
  6173. a (cons tag nil))
  6174. (and tag (setq a (cons tag nil))))
  6175. (org-agenda-filter-show-all-tag)
  6176. (setq tag (car a))
  6177. (setq org-agenda-tag-filter
  6178. (cons (concat (if strip "-" "+") tag)
  6179. (if narrow current nil)))
  6180. (org-agenda-filter-apply org-agenda-tag-filter 'tag)
  6181. (setq maybe-refresh t))
  6182. (t (error "Invalid tag selection character %c" char)))
  6183. (when (and maybe-refresh
  6184. (eq org-agenda-clockreport-mode 'with-filter))
  6185. (org-agenda-redo))))
  6186. (defun org-agenda-get-represented-tags ()
  6187. "Get a list of all tags currently represented in the agenda."
  6188. (let (p tags)
  6189. (save-excursion
  6190. (goto-char (point-min))
  6191. (while (setq p (next-single-property-change (point) 'tags))
  6192. (goto-char p)
  6193. (mapc (lambda (x) (add-to-list 'tags x))
  6194. (get-text-property (point) 'tags))))
  6195. tags))
  6196. (defun org-agenda-filter-by-tag-refine (strip &optional char)
  6197. "Refine the current filter. See `org-agenda-filter-by-tag'."
  6198. (interactive "P")
  6199. (org-agenda-filter-by-tag strip char 'refine))
  6200. (defun org-agenda-filter-make-matcher ()
  6201. "Create the form that tests a line for agenda filter."
  6202. (let (f f1)
  6203. ;; first compute the tag-filter matcher
  6204. (dolist (x (delete-dups
  6205. (append (get 'org-agenda-tag-filter
  6206. :preset-filter) org-agenda-tag-filter)))
  6207. (if (member x '("-" "+"))
  6208. (setq f1 (if (equal x "-") 'tags '(not tags)))
  6209. (if (string-match "[<=>?]" x)
  6210. (setq f1 (org-agenda-filter-effort-form x))
  6211. (setq f1 (list 'member (downcase (substring x 1)) 'tags)))
  6212. (if (equal (string-to-char x) ?-)
  6213. (setq f1 (list 'not f1))))
  6214. (push f1 f))
  6215. ;; then compute the category-filter matcher
  6216. (dolist (x (delete-dups
  6217. (append (get 'org-agenda-category-filter
  6218. :preset-filter) org-agenda-category-filter)))
  6219. (if (equal "-" (substring x 0 1))
  6220. (setq f1 (list 'not (list 'equal (substring x 1) 'cat)))
  6221. (setq f1 (list 'equal (substring x 1) 'cat)))
  6222. (push f1 f))
  6223. (cons 'and (nreverse f))))
  6224. (defun org-agenda-filter-effort-form (e)
  6225. "Return the form to compare the effort of the current line with what E says.
  6226. E looks like \"+<2:25\"."
  6227. (let (op)
  6228. (setq e (substring e 1))
  6229. (setq op (string-to-char e) e (substring e 1))
  6230. (setq op (cond ((equal op ?<) '<=)
  6231. ((equal op ?>) '>=)
  6232. ((equal op ??) op)
  6233. (t '=)))
  6234. (list 'org-agenda-compare-effort (list 'quote op)
  6235. (org-duration-string-to-minutes e))))
  6236. (defun org-agenda-compare-effort (op value)
  6237. "Compare the effort of the current line with VALUE, using OP.
  6238. If the line does not have an effort defined, return nil."
  6239. (let ((eff (org-get-at-bol 'effort-minutes)))
  6240. (if (equal op ??)
  6241. (not eff)
  6242. (funcall op (or eff (if org-sort-agenda-noeffort-is-high 32767 0))
  6243. value))))
  6244. (defun org-agenda-filter-apply (filter type)
  6245. "Set FILTER as the new agenda filter and apply it."
  6246. (let (tags cat)
  6247. (if (eq type 'tag)
  6248. (setq org-agenda-tag-filter filter)
  6249. (setq org-agenda-category-filter filter))
  6250. (setq org-agenda-filter-form (org-agenda-filter-make-matcher))
  6251. (if (and (eq type 'category)
  6252. (not (equal (substring (car filter) 0 1) "-")))
  6253. ;; Only set `org-agenda-filtered-by-category' to t
  6254. ;; when a unique category is used as the filter
  6255. (setq org-agenda-filtered-by-category t))
  6256. (org-agenda-set-mode-name)
  6257. (save-excursion
  6258. (goto-char (point-min))
  6259. (while (not (eobp))
  6260. (if (org-get-at-bol 'org-marker)
  6261. (progn
  6262. (setq tags (org-get-at-bol 'tags) ; used in eval
  6263. cat (get-text-property (point) 'org-category))
  6264. (if (not (eval org-agenda-filter-form))
  6265. (org-agenda-filter-hide-line type))
  6266. (beginning-of-line 2))
  6267. (beginning-of-line 2))))
  6268. (if (get-char-property (point) 'invisible)
  6269. (ignore-errors (org-agenda-previous-line)))))
  6270. (defun org-agenda-filter-top-category-apply (category &optional negative)
  6271. "Set FILTER as the new agenda filter and apply it."
  6272. (org-agenda-set-mode-name)
  6273. (save-excursion
  6274. (goto-char (point-min))
  6275. (while (not (eobp))
  6276. (let* ((pos (org-get-at-bol 'org-hd-marker))
  6277. (topcat (and pos (org-find-top-category pos))))
  6278. (if (and topcat (funcall (if negative 'identity 'not)
  6279. (string= category topcat)))
  6280. (org-agenda-filter-hide-line 'category)))
  6281. (beginning-of-line 2)))
  6282. (if (get-char-property (point) 'invisible)
  6283. (org-agenda-previous-line))
  6284. (setq org-agenda-top-category-filter category
  6285. org-agenda-filtered-by-top-category t))
  6286. (defun org-agenda-filter-hide-line (type)
  6287. (let (ov)
  6288. (setq ov (make-overlay (max (point-min) (1- (point-at-bol)))
  6289. (point-at-eol)))
  6290. (overlay-put ov 'invisible t)
  6291. (overlay-put ov 'type type)
  6292. (if (eq type 'tag)
  6293. (push ov org-agenda-tag-filter-overlays)
  6294. (push ov org-agenda-cat-filter-overlays))))
  6295. (defun org-agenda-fix-tags-filter-overlays-at (&optional pos)
  6296. (setq pos (or pos (point)))
  6297. (save-excursion
  6298. (dolist (ov (overlays-at pos))
  6299. (when (and (overlay-get ov 'invisible)
  6300. (eq (overlay-get ov 'type) 'tag))
  6301. (goto-char pos)
  6302. (if (< (overlay-start ov) (point-at-eol))
  6303. (move-overlay ov (point-at-eol)
  6304. (overlay-end ov)))))))
  6305. (defun org-agenda-filter-show-all-tag nil
  6306. (mapc 'delete-overlay org-agenda-tag-filter-overlays)
  6307. (setq org-agenda-tag-filter-overlays nil
  6308. org-agenda-tag-filter nil
  6309. org-agenda-filter-form nil)
  6310. (org-agenda-set-mode-name))
  6311. (defun org-agenda-filter-show-all-cat nil
  6312. (mapc 'delete-overlay org-agenda-cat-filter-overlays)
  6313. (setq org-agenda-cat-filter-overlays nil
  6314. org-agenda-filtered-by-category nil
  6315. org-agenda-category-filter nil
  6316. org-agenda-filter-form nil)
  6317. (org-agenda-set-mode-name))
  6318. (defun org-agenda-manipulate-query-add ()
  6319. "Manipulate the query by adding a search term with positive selection.
  6320. Positive selection means the term must be matched for selection of an entry."
  6321. (interactive)
  6322. (org-agenda-manipulate-query ?\[))
  6323. (defun org-agenda-manipulate-query-subtract ()
  6324. "Manipulate the query by adding a search term with negative selection.
  6325. Negative selection means term must not be matched for selection of an entry."
  6326. (interactive)
  6327. (org-agenda-manipulate-query ?\]))
  6328. (defun org-agenda-manipulate-query-add-re ()
  6329. "Manipulate the query by adding a search regexp with positive selection.
  6330. Positive selection means the regexp must match for selection of an entry."
  6331. (interactive)
  6332. (org-agenda-manipulate-query ?\{))
  6333. (defun org-agenda-manipulate-query-subtract-re ()
  6334. "Manipulate the query by adding a search regexp with negative selection.
  6335. Negative selection means regexp must not match for selection of an entry."
  6336. (interactive)
  6337. (org-agenda-manipulate-query ?\}))
  6338. (defun org-agenda-manipulate-query (char)
  6339. (cond
  6340. ((memq org-agenda-type '(timeline agenda))
  6341. (let ((org-agenda-include-inactive-timestamps t))
  6342. (org-agenda-redo))
  6343. (message "Display now includes inactive timestamps as well"))
  6344. ((eq org-agenda-type 'search)
  6345. (org-add-to-string
  6346. 'org-agenda-query-string
  6347. (if org-agenda-last-search-view-search-was-boolean
  6348. (cdr (assoc char '((?\[ . " +") (?\] . " -")
  6349. (?\{ . " +{}") (?\} . " -{}"))))
  6350. " "))
  6351. (setq org-agenda-redo-command
  6352. (list 'org-search-view
  6353. org-todo-only
  6354. org-agenda-query-string
  6355. (+ (length org-agenda-query-string)
  6356. (if (member char '(?\{ ?\})) 0 1))))
  6357. (set-register org-agenda-query-register org-agenda-query-string)
  6358. (org-agenda-redo))
  6359. (t (error "Cannot manipulate query for %s-type agenda buffers"
  6360. org-agenda-type))))
  6361. (defun org-add-to-string (var string)
  6362. (set var (concat (symbol-value var) string)))
  6363. (defun org-agenda-goto-date (date)
  6364. "Jump to DATE in agenda."
  6365. (interactive (list (let ((org-read-date-prefer-future
  6366. (eval org-agenda-jump-prefer-future)))
  6367. (org-read-date))))
  6368. (org-agenda-list nil date))
  6369. (defun org-agenda-goto-today ()
  6370. "Go to today."
  6371. (interactive)
  6372. (org-agenda-check-type t 'timeline 'agenda)
  6373. (let ((tdpos (text-property-any (point-min) (point-max) 'org-today t)))
  6374. (cond
  6375. (tdpos (goto-char tdpos))
  6376. ((eq org-agenda-type 'agenda)
  6377. (let* ((sd (org-agenda-compute-starting-span
  6378. (org-today) (or org-agenda-current-span org-agenda-ndays org-agenda-span)))
  6379. (org-agenda-overriding-arguments org-agenda-last-arguments))
  6380. (setf (nth 1 org-agenda-overriding-arguments) sd)
  6381. (org-agenda-redo)
  6382. (org-agenda-find-same-or-today-or-agenda)))
  6383. (t (error "Cannot find today")))))
  6384. (defun org-agenda-find-same-or-today-or-agenda (&optional cnt)
  6385. (goto-char
  6386. (or (and cnt (text-property-any (point-min) (point-max) 'org-day-cnt cnt))
  6387. (text-property-any (point-min) (point-max) 'org-today t)
  6388. (text-property-any (point-min) (point-max) 'org-agenda-type 'agenda)
  6389. (point-min))))
  6390. (defun org-agenda-later (arg)
  6391. "Go forward in time by thee current span.
  6392. With prefix ARG, go forward that many times the current span."
  6393. (interactive "p")
  6394. (org-agenda-check-type t 'agenda)
  6395. (let* ((span org-agenda-current-span)
  6396. (sd org-starting-day)
  6397. (greg (calendar-gregorian-from-absolute sd))
  6398. (cnt (org-get-at-bol 'org-day-cnt))
  6399. greg2)
  6400. (cond
  6401. ((eq span 'day)
  6402. (setq sd (+ arg sd)))
  6403. ((eq span 'week)
  6404. (setq sd (+ (* 7 arg) sd)))
  6405. ((eq span 'month)
  6406. (setq greg2 (list (+ (car greg) arg) (nth 1 greg) (nth 2 greg))
  6407. sd (calendar-absolute-from-gregorian greg2))
  6408. (setcar greg2 (1+ (car greg2))))
  6409. ((eq span 'year)
  6410. (setq greg2 (list (car greg) (nth 1 greg) (+ arg (nth 2 greg)))
  6411. sd (calendar-absolute-from-gregorian greg2))
  6412. (setcar (nthcdr 2 greg2) (1+ (nth 2 greg2))))
  6413. (t
  6414. (setq sd (+ (* span arg) sd))))
  6415. (let ((org-agenda-overriding-arguments
  6416. (list (car org-agenda-last-arguments) sd span t)))
  6417. (org-agenda-redo)
  6418. (org-agenda-find-same-or-today-or-agenda cnt))))
  6419. (defun org-agenda-earlier (arg)
  6420. "Go backward in time by the current span.
  6421. With prefix ARG, go backward that many times the current span."
  6422. (interactive "p")
  6423. (org-agenda-later (- arg)))
  6424. (defun org-agenda-view-mode-dispatch ()
  6425. "Call one of the view mode commands."
  6426. (interactive)
  6427. (message "View: [d]ay [w]eek [m]onth [y]ear [SPC]reset [q]uit/abort
  6428. time[G]rid [[]inactive [f]ollow [l]og [L]og-all [c]lockcheck
  6429. [a]rch-trees [A]rch-files clock[R]eport include[D]iary [E]ntryText")
  6430. (let ((a (read-char-exclusive)))
  6431. (case a
  6432. (?\ (call-interactively 'org-agenda-reset-view))
  6433. (?d (call-interactively 'org-agenda-day-view))
  6434. (?w (call-interactively 'org-agenda-week-view))
  6435. (?m (call-interactively 'org-agenda-month-view))
  6436. (?y (call-interactively 'org-agenda-year-view))
  6437. (?l (call-interactively 'org-agenda-log-mode))
  6438. (?L (org-agenda-log-mode '(4)))
  6439. (?c (org-agenda-log-mode 'clockcheck))
  6440. ((?F ?f) (call-interactively 'org-agenda-follow-mode))
  6441. (?a (call-interactively 'org-agenda-archives-mode))
  6442. (?A (org-agenda-archives-mode 'files))
  6443. ((?R ?r) (call-interactively 'org-agenda-clockreport-mode))
  6444. ((?E ?e) (call-interactively 'org-agenda-entry-text-mode))
  6445. (?G (call-interactively 'org-agenda-toggle-time-grid))
  6446. (?D (call-interactively 'org-agenda-toggle-diary))
  6447. (?\! (call-interactively 'org-agenda-toggle-deadlines))
  6448. (?\[ (let ((org-agenda-include-inactive-timestamps t))
  6449. (org-agenda-check-type t 'timeline 'agenda)
  6450. (org-agenda-redo))
  6451. (message "Display now includes inactive timestamps as well"))
  6452. (?q (message "Abort"))
  6453. (otherwise (error "Invalid key" )))))
  6454. (defun org-agenda-reset-view ()
  6455. "Switch to default view for agenda."
  6456. (interactive)
  6457. (org-agenda-change-time-span (or org-agenda-ndays org-agenda-span)))
  6458. (defun org-agenda-day-view (&optional day-of-year)
  6459. "Switch to daily view for agenda.
  6460. With argument DAY-OF-YEAR, switch to that day of the year."
  6461. (interactive "P")
  6462. (org-agenda-change-time-span 'day day-of-year))
  6463. (defun org-agenda-week-view (&optional iso-week)
  6464. "Switch to daily view for agenda.
  6465. With argument ISO-WEEK, switch to the corresponding ISO week.
  6466. If ISO-WEEK has more then 2 digits, only the last two encode the
  6467. week. Any digits before this encode a year. So 200712 means
  6468. week 12 of year 2007. Years in the range 1938-2037 can also be
  6469. written as 2-digit years."
  6470. (interactive "P")
  6471. (org-agenda-change-time-span 'week iso-week))
  6472. (defun org-agenda-month-view (&optional month)
  6473. "Switch to monthly view for agenda.
  6474. With argument MONTH, switch to that month."
  6475. (interactive "P")
  6476. (org-agenda-change-time-span 'month month))
  6477. (defun org-agenda-year-view (&optional year)
  6478. "Switch to yearly view for agenda.
  6479. With argument YEAR, switch to that year.
  6480. If MONTH has more then 2 digits, only the last two encode the
  6481. month. Any digits before this encode a year. So 200712 means
  6482. December year 2007. Years in the range 1938-2037 can also be
  6483. written as 2-digit years."
  6484. (interactive "P")
  6485. (when year
  6486. (setq year (org-small-year-to-year year)))
  6487. (if (y-or-n-p "Are you sure you want to compute the agenda for an entire year? ")
  6488. (org-agenda-change-time-span 'year year)
  6489. (error "Abort")))
  6490. (defun org-agenda-change-time-span (span &optional n)
  6491. "Change the agenda view to SPAN.
  6492. SPAN may be `day', `week', `month', `year'."
  6493. (org-agenda-check-type t 'agenda)
  6494. (if (and (not n) (equal org-agenda-current-span span))
  6495. (error "Viewing span is already \"%s\"" span))
  6496. (let* ((sd (or (org-get-at-bol 'day)
  6497. org-starting-day))
  6498. (sd (org-agenda-compute-starting-span sd span n))
  6499. (org-agenda-overriding-arguments
  6500. (or org-agenda-overriding-arguments
  6501. (list (car org-agenda-last-arguments) sd span t))))
  6502. (org-agenda-redo)
  6503. (org-agenda-find-same-or-today-or-agenda))
  6504. (org-agenda-set-mode-name)
  6505. (message "Switched to %s view" span))
  6506. (defun org-agenda-compute-starting-span (sd span &optional n)
  6507. "Compute starting date for agenda.
  6508. SPAN may be `day', `week', `month', `year'. The return value
  6509. is a cons cell with the starting date and the number of days,
  6510. so that the date SD will be in that range."
  6511. (let* ((greg (calendar-gregorian-from-absolute sd))
  6512. (dg (nth 1 greg))
  6513. (mg (car greg))
  6514. (yg (nth 2 greg)))
  6515. (cond
  6516. ((eq span 'day)
  6517. (when n
  6518. (setq sd (+ (calendar-absolute-from-gregorian
  6519. (list mg 1 yg))
  6520. n -1))))
  6521. ((eq span 'week)
  6522. (let* ((nt (calendar-day-of-week
  6523. (calendar-gregorian-from-absolute sd)))
  6524. (d (if org-agenda-start-on-weekday
  6525. (- nt org-agenda-start-on-weekday)
  6526. 0))
  6527. y1)
  6528. (setq sd (- sd (+ (if (< d 0) 7 0) d)))
  6529. (when n
  6530. (require 'cal-iso)
  6531. (when (> n 99)
  6532. (setq y1 (org-small-year-to-year (/ n 100))
  6533. n (mod n 100)))
  6534. (setq sd
  6535. (calendar-absolute-from-iso
  6536. (list n 1
  6537. (or y1 (nth 2 (calendar-iso-from-absolute sd)))))))))
  6538. ((eq span 'month)
  6539. (let (y1)
  6540. (when (and n (> n 99))
  6541. (setq y1 (org-small-year-to-year (/ n 100))
  6542. n (mod n 100)))
  6543. (setq sd (calendar-absolute-from-gregorian
  6544. (list (or n mg) 1 (or y1 yg))))))
  6545. ((eq span 'year)
  6546. (setq sd (calendar-absolute-from-gregorian
  6547. (list 1 1 (or n yg))))))
  6548. sd))
  6549. (defun org-agenda-next-date-line (&optional arg)
  6550. "Jump to the next line indicating a date in agenda buffer."
  6551. (interactive "p")
  6552. (org-agenda-check-type t 'agenda 'timeline)
  6553. (beginning-of-line 1)
  6554. ;; This does not work if user makes date format that starts with a blank
  6555. (if (looking-at "^\\S-") (forward-char 1))
  6556. (if (not (re-search-forward "^\\S-" nil t arg))
  6557. (progn
  6558. (backward-char 1)
  6559. (error "No next date after this line in this buffer")))
  6560. (goto-char (match-beginning 0)))
  6561. (defun org-agenda-previous-date-line (&optional arg)
  6562. "Jump to the previous line indicating a date in agenda buffer."
  6563. (interactive "p")
  6564. (org-agenda-check-type t 'agenda 'timeline)
  6565. (beginning-of-line 1)
  6566. (if (not (re-search-backward "^\\S-" nil t arg))
  6567. (error "No previous date before this line in this buffer")))
  6568. ;; Initialize the highlight
  6569. (defvar org-hl (make-overlay 1 1))
  6570. (overlay-put org-hl 'face 'highlight)
  6571. (defun org-highlight (begin end &optional buffer)
  6572. "Highlight a region with overlay."
  6573. (move-overlay org-hl begin end (or buffer (current-buffer))))
  6574. (defun org-unhighlight ()
  6575. "Detach overlay INDEX."
  6576. (org-detach-overlay org-hl))
  6577. ;; FIXME this is currently not used.
  6578. (defun org-highlight-until-next-command (beg end &optional buffer)
  6579. "Move the highlight overlay to BEG/END, remove it before the next command."
  6580. (org-highlight beg end buffer)
  6581. (add-hook 'pre-command-hook 'org-unhighlight-once))
  6582. (defun org-unhighlight-once ()
  6583. "Remove the highlight from its position, and this function from the hook."
  6584. (remove-hook 'pre-command-hook 'org-unhighlight-once)
  6585. (org-unhighlight))
  6586. (defun org-agenda-follow-mode ()
  6587. "Toggle follow mode in an agenda buffer."
  6588. (interactive)
  6589. (setq org-agenda-follow-mode (not org-agenda-follow-mode))
  6590. (org-agenda-set-mode-name)
  6591. (org-agenda-do-context-action)
  6592. (message "Follow mode is %s"
  6593. (if org-agenda-follow-mode "on" "off")))
  6594. (defun org-agenda-entry-text-mode (&optional arg)
  6595. "Toggle entry text mode in an agenda buffer."
  6596. (interactive "P")
  6597. (setq org-agenda-entry-text-mode (or (integerp arg)
  6598. (not org-agenda-entry-text-mode)))
  6599. (org-agenda-entry-text-hide)
  6600. (and org-agenda-entry-text-mode
  6601. (let ((org-agenda-entry-text-maxlines
  6602. (if (integerp arg) arg org-agenda-entry-text-maxlines)))
  6603. (org-agenda-entry-text-show)))
  6604. (org-agenda-set-mode-name)
  6605. (message "Entry text mode is %s. Maximum number of lines is %d"
  6606. (if org-agenda-entry-text-mode "on" "off")
  6607. (if (integerp arg) arg org-agenda-entry-text-maxlines)))
  6608. (defun org-agenda-clockreport-mode (&optional with-filter)
  6609. "Toggle clocktable mode in an agenda buffer.
  6610. With prefix arg WITH-FILTER, make the clocktable respect the current
  6611. agenda filter."
  6612. (interactive "P")
  6613. (org-agenda-check-type t 'agenda)
  6614. (if with-filter
  6615. (setq org-agenda-clockreport-mode 'with-filter)
  6616. (setq org-agenda-clockreport-mode (not org-agenda-clockreport-mode)))
  6617. (org-agenda-set-mode-name)
  6618. (org-agenda-redo)
  6619. (message "Clocktable mode is %s"
  6620. (if org-agenda-clockreport-mode "on" "off")))
  6621. (defun org-agenda-log-mode (&optional special)
  6622. "Toggle log mode in an agenda buffer.
  6623. With argument SPECIAL, show all possible log items, not only the ones
  6624. configured in `org-agenda-log-mode-items'.
  6625. With a double `C-u' prefix arg, show *only* log items, nothing else."
  6626. (interactive "P")
  6627. (org-agenda-check-type t 'agenda 'timeline)
  6628. (setq org-agenda-show-log
  6629. (cond
  6630. ((equal special '(16)) 'only)
  6631. ((eq special 'clockcheck)
  6632. (if (eq org-agenda-show-log 'clockcheck)
  6633. nil 'clockcheck))
  6634. (special '(closed clock state))
  6635. (t (not org-agenda-show-log))))
  6636. (org-agenda-set-mode-name)
  6637. (org-agenda-redo)
  6638. (message "Log mode is %s"
  6639. (if org-agenda-show-log "on" "off")))
  6640. (defun org-agenda-archives-mode (&optional with-files)
  6641. "Toggle inclusion of items in trees marked with :ARCHIVE:.
  6642. When called with a prefix argument, include all archive files as well."
  6643. (interactive "P")
  6644. (setq org-agenda-archives-mode
  6645. (if with-files t (if org-agenda-archives-mode nil 'trees)))
  6646. (org-agenda-set-mode-name)
  6647. (org-agenda-redo)
  6648. (message
  6649. "%s"
  6650. (cond
  6651. ((eq org-agenda-archives-mode nil)
  6652. "No archives are included")
  6653. ((eq org-agenda-archives-mode 'trees)
  6654. (format "Trees with :%s: tag are included" org-archive-tag))
  6655. ((eq org-agenda-archives-mode t)
  6656. (format "Trees with :%s: tag and all active archive files are included"
  6657. org-archive-tag)))))
  6658. (defun org-agenda-toggle-diary ()
  6659. "Toggle diary inclusion in an agenda buffer."
  6660. (interactive)
  6661. (org-agenda-check-type t 'agenda)
  6662. (setq org-agenda-include-diary (not org-agenda-include-diary))
  6663. (org-agenda-redo)
  6664. (org-agenda-set-mode-name)
  6665. (message "Diary inclusion turned %s"
  6666. (if org-agenda-include-diary "on" "off")))
  6667. (defun org-agenda-toggle-deadlines ()
  6668. "Toggle inclusion of entries with a deadline in an agenda buffer."
  6669. (interactive)
  6670. (org-agenda-check-type t 'agenda)
  6671. (setq org-agenda-include-deadlines (not org-agenda-include-deadlines))
  6672. (org-agenda-redo)
  6673. (org-agenda-set-mode-name)
  6674. (message "Deadlines inclusion turned %s"
  6675. (if org-agenda-include-deadlines "on" "off")))
  6676. (defun org-agenda-toggle-time-grid ()
  6677. "Toggle time grid in an agenda buffer."
  6678. (interactive)
  6679. (org-agenda-check-type t 'agenda)
  6680. (setq org-agenda-use-time-grid (not org-agenda-use-time-grid))
  6681. (org-agenda-redo)
  6682. (org-agenda-set-mode-name)
  6683. (message "Time-grid turned %s"
  6684. (if org-agenda-use-time-grid "on" "off")))
  6685. (defun org-agenda-set-mode-name ()
  6686. "Set the mode name to indicate all the small mode settings."
  6687. (setq mode-name
  6688. (list "Org-Agenda"
  6689. (if (get 'org-agenda-files 'org-restrict) " []" "")
  6690. " "
  6691. '(:eval (org-agenda-span-name org-agenda-current-span))
  6692. (if org-agenda-follow-mode " Follow" "")
  6693. (if org-agenda-entry-text-mode " ETxt" "")
  6694. (if org-agenda-include-diary " Diary" "")
  6695. (if org-agenda-include-deadlines " Ddl" "")
  6696. (if org-agenda-use-time-grid " Grid" "")
  6697. (if (and (boundp 'org-habit-show-habits)
  6698. org-habit-show-habits) " Habit" "")
  6699. (cond
  6700. ((consp org-agenda-show-log) " LogAll")
  6701. ((eq org-agenda-show-log 'clockcheck) " ClkCk")
  6702. (org-agenda-show-log " Log")
  6703. (t ""))
  6704. (if (or org-agenda-category-filter (get 'org-agenda-category-filter
  6705. :preset-filter))
  6706. '(:eval (org-propertize
  6707. (concat " <"
  6708. (mapconcat
  6709. 'identity
  6710. (append
  6711. (get 'org-agenda-category-filter :preset-filter)
  6712. org-agenda-category-filter)
  6713. "")
  6714. ">")
  6715. 'face 'org-agenda-filter-category
  6716. 'help-echo "Category used in filtering"))
  6717. "")
  6718. (if (or org-agenda-tag-filter (get 'org-agenda-tag-filter
  6719. :preset-filter))
  6720. '(:eval (org-propertize
  6721. (concat " {"
  6722. (mapconcat
  6723. 'identity
  6724. (append
  6725. (get 'org-agenda-tag-filter :preset-filter)
  6726. org-agenda-tag-filter)
  6727. "")
  6728. "}")
  6729. 'face 'org-agenda-filter-tags
  6730. 'help-echo "Tags used in filtering"))
  6731. "")
  6732. (if org-agenda-archives-mode
  6733. (if (eq org-agenda-archives-mode t)
  6734. " Archives"
  6735. (format " :%s:" org-archive-tag))
  6736. "")
  6737. (if org-agenda-clockreport-mode
  6738. (if (eq org-agenda-clockreport-mode 'with-filter)
  6739. " Clock{}" " Clock")
  6740. "")))
  6741. (force-mode-line-update))
  6742. (defun org-agenda-post-command-hook ()
  6743. (setq org-agenda-type
  6744. (or (get-text-property (point) 'org-agenda-type)
  6745. (get-text-property (max (point-min) (1- (point)))
  6746. 'org-agenda-type))))
  6747. (defun org-agenda-next-line ()
  6748. "Move cursor to the next line, and show if follow mode is active."
  6749. (interactive)
  6750. (call-interactively 'next-line)
  6751. (org-agenda-do-context-action))
  6752. (defun org-agenda-previous-line ()
  6753. "Move cursor to the previous line, and show if follow-mode is active."
  6754. (interactive)
  6755. (call-interactively 'previous-line)
  6756. (org-agenda-do-context-action))
  6757. (defun org-agenda-next-item (n)
  6758. "Move cursor to next agenda item."
  6759. (interactive "p")
  6760. (let ((col (current-column)))
  6761. (dotimes (c n)
  6762. (when (next-single-property-change (point-at-eol) 'org-marker)
  6763. (move-end-of-line 1)
  6764. (goto-char (next-single-property-change (point) 'org-marker))))
  6765. (org-move-to-column col))
  6766. (org-agenda-do-context-action))
  6767. (defun org-agenda-previous-item (n)
  6768. "Move cursor to next agenda item."
  6769. (interactive "p")
  6770. (dotimes (c n)
  6771. (let ((col (current-column))
  6772. (goto (save-excursion
  6773. (move-end-of-line 0)
  6774. (previous-single-property-change (point) 'org-marker))))
  6775. (if goto (goto-char goto))
  6776. (org-move-to-column col)))
  6777. (org-agenda-do-context-action))
  6778. (defun org-agenda-do-context-action ()
  6779. "Show outline path and, maybe, follow mode window."
  6780. (let ((m (org-get-at-bol 'org-marker)))
  6781. (when (and (markerp m) (marker-buffer m))
  6782. (and org-agenda-follow-mode
  6783. (if org-agenda-follow-indirect
  6784. (org-agenda-tree-to-indirect-buffer)
  6785. (org-agenda-show)))
  6786. (and org-agenda-show-outline-path
  6787. (org-with-point-at m (org-display-outline-path t))))))
  6788. (defun org-agenda-show-priority ()
  6789. "Show the priority of the current item.
  6790. This priority is composed of the main priority given with the [#A] cookies,
  6791. and by additional input from the age of a schedules or deadline entry."
  6792. (interactive)
  6793. (let* ((pri (org-get-at-bol 'priority)))
  6794. (message "Priority is %d" (if pri pri -1000))))
  6795. (defun org-agenda-show-tags ()
  6796. "Show the tags applicable to the current item."
  6797. (interactive)
  6798. (let* ((tags (org-get-at-bol 'tags)))
  6799. (if tags
  6800. (message "Tags are :%s:"
  6801. (org-no-properties (mapconcat 'identity tags ":")))
  6802. (message "No tags associated with this line"))))
  6803. (defun org-agenda-goto (&optional highlight)
  6804. "Go to the Org-mode file which contains the item at point."
  6805. (interactive)
  6806. (let* ((marker (or (org-get-at-bol 'org-marker)
  6807. (org-agenda-error)))
  6808. (buffer (marker-buffer marker))
  6809. (pos (marker-position marker)))
  6810. (switch-to-buffer-other-window buffer)
  6811. (widen)
  6812. (push-mark)
  6813. (goto-char pos)
  6814. (when (derived-mode-p 'org-mode)
  6815. (org-show-context 'agenda)
  6816. (save-excursion
  6817. (and (outline-next-heading)
  6818. (org-flag-heading nil)))) ; show the next heading
  6819. (when (outline-invisible-p)
  6820. (show-entry)) ; display invisible text
  6821. (recenter (/ (window-height) 2))
  6822. (run-hooks 'org-agenda-after-show-hook)
  6823. (and highlight (org-highlight (point-at-bol) (point-at-eol)))))
  6824. (defvar org-agenda-after-show-hook nil
  6825. "Normal hook run after an item has been shown from the agenda.
  6826. Point is in the buffer where the item originated.")
  6827. (defun org-agenda-kill ()
  6828. "Kill the entry or subtree belonging to the current agenda entry."
  6829. (interactive)
  6830. (or (eq major-mode 'org-agenda-mode) (error "Not in agenda"))
  6831. (let* ((marker (or (org-get-at-bol 'org-marker)
  6832. (org-agenda-error)))
  6833. (buffer (marker-buffer marker))
  6834. (pos (marker-position marker))
  6835. (type (org-get-at-bol 'type))
  6836. dbeg dend (n 0) conf)
  6837. (org-with-remote-undo buffer
  6838. (with-current-buffer buffer
  6839. (save-excursion
  6840. (goto-char pos)
  6841. (if (and (derived-mode-p 'org-mode) (not (member type '("sexp"))))
  6842. (setq dbeg (progn (org-back-to-heading t) (point))
  6843. dend (org-end-of-subtree t t))
  6844. (setq dbeg (point-at-bol)
  6845. dend (min (point-max) (1+ (point-at-eol)))))
  6846. (goto-char dbeg)
  6847. (while (re-search-forward "^[ \t]*\\S-" dend t) (setq n (1+ n)))))
  6848. (setq conf (or (eq t org-agenda-confirm-kill)
  6849. (and (numberp org-agenda-confirm-kill)
  6850. (> n org-agenda-confirm-kill))))
  6851. (and conf
  6852. (not (y-or-n-p
  6853. (format "Delete entry with %d lines in buffer \"%s\"? "
  6854. n (buffer-name buffer))))
  6855. (error "Abort"))
  6856. (org-remove-subtree-entries-from-agenda buffer dbeg dend)
  6857. (with-current-buffer buffer (delete-region dbeg dend))
  6858. (message "Agenda item and source killed"))))
  6859. (defvar org-archive-default-command)
  6860. (defun org-agenda-archive-default ()
  6861. "Archive the entry or subtree belonging to the current agenda entry."
  6862. (interactive)
  6863. (require 'org-archive)
  6864. (org-agenda-archive-with org-archive-default-command))
  6865. (defun org-agenda-archive-default-with-confirmation ()
  6866. "Archive the entry or subtree belonging to the current agenda entry."
  6867. (interactive)
  6868. (require 'org-archive)
  6869. (org-agenda-archive-with org-archive-default-command 'confirm))
  6870. (defun org-agenda-archive ()
  6871. "Archive the entry or subtree belonging to the current agenda entry."
  6872. (interactive)
  6873. (org-agenda-archive-with 'org-archive-subtree))
  6874. (defun org-agenda-archive-to-archive-sibling ()
  6875. "Move the entry to the archive sibling."
  6876. (interactive)
  6877. (org-agenda-archive-with 'org-archive-to-archive-sibling))
  6878. (defun org-agenda-archive-with (cmd &optional confirm)
  6879. "Move the entry to the archive sibling."
  6880. (interactive)
  6881. (or (eq major-mode 'org-agenda-mode) (error "Not in agenda"))
  6882. (let* ((marker (or (org-get-at-bol 'org-marker)
  6883. (org-agenda-error)))
  6884. (buffer (marker-buffer marker))
  6885. (pos (marker-position marker)))
  6886. (org-with-remote-undo buffer
  6887. (with-current-buffer buffer
  6888. (if (derived-mode-p 'org-mode)
  6889. (if (and confirm
  6890. (not (y-or-n-p "Archive this subtree or entry? ")))
  6891. (error "Abort")
  6892. (save-excursion
  6893. (goto-char pos)
  6894. (org-remove-subtree-entries-from-agenda)
  6895. (org-back-to-heading t)
  6896. (funcall cmd)))
  6897. (error "Archiving works only in Org-mode files"))))))
  6898. (defun org-remove-subtree-entries-from-agenda (&optional buf beg end)
  6899. "Remove all lines in the agenda that correspond to a given subtree.
  6900. The subtree is the one in buffer BUF, starting at BEG and ending at END.
  6901. If this information is not given, the function uses the tree at point."
  6902. (let ((buf (or buf (current-buffer))) m p)
  6903. (save-excursion
  6904. (unless (and beg end)
  6905. (org-back-to-heading t)
  6906. (setq beg (point))
  6907. (org-end-of-subtree t)
  6908. (setq end (point)))
  6909. (set-buffer (get-buffer org-agenda-buffer-name))
  6910. (save-excursion
  6911. (goto-char (point-max))
  6912. (beginning-of-line 1)
  6913. (while (not (bobp))
  6914. (when (and (setq m (org-get-at-bol 'org-marker))
  6915. (equal buf (marker-buffer m))
  6916. (setq p (marker-position m))
  6917. (>= p beg)
  6918. (< p end))
  6919. (let ((inhibit-read-only t))
  6920. (delete-region (point-at-bol) (1+ (point-at-eol)))))
  6921. (beginning-of-line 0))))))
  6922. (defun org-agenda-refile (&optional goto rfloc no-update)
  6923. "Refile the item at point."
  6924. (interactive "P")
  6925. (if (equal goto '(16))
  6926. (org-refile-goto-last-stored)
  6927. (let* ((marker (or (org-get-at-bol 'org-hd-marker)
  6928. (org-agenda-error)))
  6929. (buffer (marker-buffer marker))
  6930. (pos (marker-position marker))
  6931. (rfloc (or rfloc
  6932. (org-refile-get-location
  6933. (if goto "Goto" "Refile to") buffer
  6934. org-refile-allow-creating-parent-nodes))))
  6935. (with-current-buffer buffer
  6936. (save-excursion
  6937. (save-restriction
  6938. (widen)
  6939. (goto-char marker)
  6940. (org-remove-subtree-entries-from-agenda)
  6941. (org-refile goto buffer rfloc)))))
  6942. (unless no-update (org-agenda-redo))))
  6943. (defun org-agenda-open-link (&optional arg)
  6944. "Follow the link in the current line, if any.
  6945. This looks for a link in the displayed line in the agenda. It also looks
  6946. at the text of the entry itself."
  6947. (interactive "P")
  6948. (let* ((marker (or (org-get-at-bol 'org-hd-marker)
  6949. (org-get-at-bol 'org-marker)))
  6950. (buffer (and marker (marker-buffer marker)))
  6951. (prefix (buffer-substring
  6952. (point-at-bol) (point-at-eol))))
  6953. (cond
  6954. (buffer
  6955. (with-current-buffer buffer
  6956. (save-excursion
  6957. (save-restriction
  6958. (widen)
  6959. (goto-char marker)
  6960. (org-offer-links-in-entry arg prefix)))))
  6961. ((or (org-in-regexp (concat "\\(" org-bracket-link-regexp "\\)"))
  6962. (save-excursion
  6963. (beginning-of-line 1)
  6964. (looking-at (concat ".*?\\(" org-bracket-link-regexp "\\)"))))
  6965. (org-open-link-from-string (match-string 1)))
  6966. (t (error "No link to open here")))))
  6967. (defun org-agenda-copy-local-variable (var)
  6968. "Get a variable from a referenced buffer and install it here."
  6969. (let ((m (org-get-at-bol 'org-marker)))
  6970. (when (and m (buffer-live-p (marker-buffer m)))
  6971. (org-set-local var (with-current-buffer (marker-buffer m)
  6972. (symbol-value var))))))
  6973. (defun org-agenda-switch-to (&optional delete-other-windows)
  6974. "Go to the Org-mode file which contains the item at point."
  6975. (interactive)
  6976. (if (and org-return-follows-link
  6977. (not (org-get-at-bol 'org-marker))
  6978. (org-in-regexp org-bracket-link-regexp))
  6979. (org-open-link-from-string (match-string 0))
  6980. (let* ((marker (or (org-get-at-bol 'org-marker)
  6981. (org-agenda-error)))
  6982. (buffer (marker-buffer marker))
  6983. (pos (marker-position marker)))
  6984. (org-pop-to-buffer-same-window buffer)
  6985. (and delete-other-windows (delete-other-windows))
  6986. (widen)
  6987. (goto-char pos)
  6988. (when (derived-mode-p 'org-mode)
  6989. (org-show-context 'agenda)
  6990. (save-excursion
  6991. (and (outline-next-heading)
  6992. (org-flag-heading nil))) ; show the next heading
  6993. (when (outline-invisible-p)
  6994. (show-entry)) ; display invisible text
  6995. (run-hooks 'org-agenda-after-show-hook)))))
  6996. (defun org-agenda-goto-mouse (ev)
  6997. "Go to the Org-mode file which contains the item at the mouse click."
  6998. (interactive "e")
  6999. (mouse-set-point ev)
  7000. (org-agenda-goto))
  7001. (defun org-agenda-show (&optional full-entry)
  7002. "Display the Org-mode file which contains the item at point.
  7003. With prefix argument FULL-ENTRY, make the entire entry visible
  7004. if it was hidden in the outline."
  7005. (interactive "P")
  7006. (let ((win (selected-window)))
  7007. (if full-entry
  7008. (let ((org-show-entry-below t))
  7009. (org-agenda-goto t))
  7010. (org-agenda-goto t))
  7011. (select-window win)))
  7012. (defvar org-agenda-show-window nil)
  7013. (defun org-agenda-show-and-scroll-up (&optional arg)
  7014. "Display the Org-mode file which contains the item at point.
  7015. When called repeatedly, scroll the window that is displaying the buffer.
  7016. With a \\[universal-argument] prefix, use `org-show-entry' instead of
  7017. `show-subtree' to display the item, so that drawers and logbooks stay
  7018. folded."
  7019. (interactive "P")
  7020. (let ((win (selected-window)))
  7021. (if (and (window-live-p org-agenda-show-window)
  7022. (eq this-command last-command))
  7023. (progn
  7024. (select-window org-agenda-show-window)
  7025. (ignore-errors (scroll-up)))
  7026. (org-agenda-goto t)
  7027. (if arg (org-show-entry) (show-subtree))
  7028. (setq org-agenda-show-window (selected-window)))
  7029. (select-window win)))
  7030. (defun org-agenda-show-scroll-down ()
  7031. "Scroll down the window showing the agenda."
  7032. (interactive)
  7033. (let ((win (selected-window)))
  7034. (when (window-live-p org-agenda-show-window)
  7035. (select-window org-agenda-show-window)
  7036. (ignore-errors (scroll-down))
  7037. (select-window win))))
  7038. (defun org-agenda-show-1 (&optional more)
  7039. "Display the Org-mode file which contains the item at point.
  7040. The prefix arg selects the amount of information to display:
  7041. 0 hide the subtree
  7042. 1 just show the entry according to defaults.
  7043. 2 show the children view
  7044. 3 show the subtree view
  7045. 4 show the entire subtree and any LOGBOOK drawers
  7046. 5 show the entire subtree and any drawers
  7047. With prefix argument FULL-ENTRY, make the entire entry visible
  7048. if it was hidden in the outline."
  7049. (interactive "p")
  7050. (let ((win (selected-window)))
  7051. (org-agenda-goto t)
  7052. (org-recenter-heading 1)
  7053. (cond
  7054. ((= more 0)
  7055. (hide-subtree)
  7056. (save-excursion
  7057. (org-back-to-heading)
  7058. (run-hook-with-args 'org-cycle-hook 'folded))
  7059. (message "Remote: FOLDED"))
  7060. ((and (org-called-interactively-p 'any) (= more 1))
  7061. (message "Remote: show with default settings"))
  7062. ((= more 2)
  7063. (show-entry)
  7064. (show-children)
  7065. (save-excursion
  7066. (org-back-to-heading)
  7067. (run-hook-with-args 'org-cycle-hook 'children))
  7068. (message "Remote: CHILDREN"))
  7069. ((= more 3)
  7070. (show-subtree)
  7071. (save-excursion
  7072. (org-back-to-heading)
  7073. (run-hook-with-args 'org-cycle-hook 'subtree))
  7074. (message "Remote: SUBTREE"))
  7075. ((= more 4)
  7076. (let* ((org-drawers (delete "LOGBOOK" (copy-sequence org-drawers)))
  7077. (org-drawer-regexp
  7078. (concat "^[ \t]*:\\("
  7079. (mapconcat 'regexp-quote org-drawers "\\|")
  7080. "\\):[ \t]*$")))
  7081. (show-subtree)
  7082. (save-excursion
  7083. (org-back-to-heading)
  7084. (org-cycle-hide-drawers 'subtree)))
  7085. (message "Remote: SUBTREE AND LOGBOOK"))
  7086. ((> more 4)
  7087. (show-subtree)
  7088. (message "Remote: SUBTREE AND ALL DRAWERS")))
  7089. (select-window win)))
  7090. (defun org-recenter-heading (n)
  7091. (save-excursion
  7092. (org-back-to-heading)
  7093. (recenter n)))
  7094. (defvar org-agenda-cycle-counter nil)
  7095. (defun org-agenda-cycle-show (&optional n)
  7096. "Show the current entry in another window, with default settings.
  7097. Default settings are taken from `org-show-hierarchy-above' and siblings.
  7098. When use repeatedly in immediate succession, the remote entry will cycle
  7099. through visibility
  7100. children -> subtree -> folded
  7101. When called with a numeric prefix arg, that arg will be passed through to
  7102. `org-agenda-show-1'. For the interpretation of that argument, see the
  7103. docstring of `org-agenda-show-1'."
  7104. (interactive "P")
  7105. (if (integerp n)
  7106. (setq org-agenda-cycle-counter n)
  7107. (if (not (eq last-command this-command))
  7108. (setq org-agenda-cycle-counter 1)
  7109. (if (equal org-agenda-cycle-counter 0)
  7110. (setq org-agenda-cycle-counter 2)
  7111. (setq org-agenda-cycle-counter (1+ org-agenda-cycle-counter))
  7112. (if (> org-agenda-cycle-counter 3)
  7113. (setq org-agenda-cycle-counter 0)))))
  7114. (org-agenda-show-1 org-agenda-cycle-counter))
  7115. (defun org-agenda-recenter (arg)
  7116. "Display the Org-mode file which contains the item at point and recenter."
  7117. (interactive "P")
  7118. (let ((win (selected-window)))
  7119. (org-agenda-goto t)
  7120. (recenter arg)
  7121. (select-window win)))
  7122. (defun org-agenda-show-mouse (ev)
  7123. "Display the Org-mode file which contains the item at the mouse click."
  7124. (interactive "e")
  7125. (mouse-set-point ev)
  7126. (org-agenda-show))
  7127. (defun org-agenda-check-no-diary ()
  7128. "Check if the entry is a diary link and abort if yes."
  7129. (if (org-get-at-bol 'org-agenda-diary-link)
  7130. (org-agenda-error)))
  7131. (defun org-agenda-error ()
  7132. (error "Command not allowed in this line"))
  7133. (defun org-agenda-tree-to-indirect-buffer ()
  7134. "Show the subtree corresponding to the current entry in an indirect buffer.
  7135. This calls the command `org-tree-to-indirect-buffer' from the original
  7136. Org-mode buffer.
  7137. With numerical prefix arg ARG, go up to this level and then take that tree.
  7138. With a \\[universal-argument] prefix, make a separate frame for this tree (i.e. don't
  7139. use the dedicated frame)."
  7140. (interactive)
  7141. (if (and current-prefix-arg (listp current-prefix-arg))
  7142. (org-agenda-do-tree-to-indirect-buffer)
  7143. (let ((agenda-window (selected-window))
  7144. (indirect-window
  7145. (and org-last-indirect-buffer
  7146. (get-buffer-window org-last-indirect-buffer))))
  7147. (save-window-excursion (org-agenda-do-tree-to-indirect-buffer))
  7148. (unwind-protect
  7149. (progn
  7150. (unless (and indirect-window (window-live-p indirect-window))
  7151. (setq indirect-window (split-window agenda-window)))
  7152. (select-window indirect-window)
  7153. (switch-to-buffer org-last-indirect-buffer :norecord)
  7154. (fit-window-to-buffer indirect-window))
  7155. (select-window (get-buffer-window org-agenda-buffer-name))))))
  7156. (defun org-agenda-do-tree-to-indirect-buffer ()
  7157. "Same as `org-agenda-tree-to-indirect-buffer' without saving window."
  7158. (org-agenda-check-no-diary)
  7159. (let* ((marker (or (org-get-at-bol 'org-marker)
  7160. (org-agenda-error)))
  7161. (buffer (marker-buffer marker))
  7162. (pos (marker-position marker)))
  7163. (with-current-buffer buffer
  7164. (save-excursion
  7165. (goto-char pos)
  7166. (call-interactively 'org-tree-to-indirect-buffer)))))
  7167. (defvar org-last-heading-marker (make-marker)
  7168. "Marker pointing to the headline that last changed its TODO state
  7169. by a remote command from the agenda.")
  7170. (defun org-agenda-todo-nextset ()
  7171. "Switch TODO entry to next sequence."
  7172. (interactive)
  7173. (org-agenda-todo 'nextset))
  7174. (defun org-agenda-todo-previousset ()
  7175. "Switch TODO entry to previous sequence."
  7176. (interactive)
  7177. (org-agenda-todo 'previousset))
  7178. (defun org-agenda-todo (&optional arg)
  7179. "Cycle TODO state of line at point, also in Org-mode file.
  7180. This changes the line at point, all other lines in the agenda referring to
  7181. the same tree node, and the headline of the tree node in the Org-mode file."
  7182. (interactive "P")
  7183. (org-agenda-check-no-diary)
  7184. (let* ((col (current-column))
  7185. (marker (or (org-get-at-bol 'org-marker)
  7186. (org-agenda-error)))
  7187. (buffer (marker-buffer marker))
  7188. (pos (marker-position marker))
  7189. (hdmarker (org-get-at-bol 'org-hd-marker))
  7190. (todayp (org-agenda-todayp (org-get-at-bol 'day)))
  7191. (inhibit-read-only t)
  7192. org-agenda-headline-snapshot-before-repeat newhead just-one)
  7193. (org-with-remote-undo buffer
  7194. (with-current-buffer buffer
  7195. (widen)
  7196. (goto-char pos)
  7197. (org-show-context 'agenda)
  7198. (save-excursion
  7199. (and (outline-next-heading)
  7200. (org-flag-heading nil))) ; show the next heading
  7201. (let ((current-prefix-arg arg))
  7202. (call-interactively 'org-todo))
  7203. (and (bolp) (forward-char 1))
  7204. (setq newhead (org-get-heading))
  7205. (when (and (org-bound-and-true-p
  7206. org-agenda-headline-snapshot-before-repeat)
  7207. (not (equal org-agenda-headline-snapshot-before-repeat
  7208. newhead))
  7209. todayp)
  7210. (setq newhead org-agenda-headline-snapshot-before-repeat
  7211. just-one t))
  7212. (save-excursion
  7213. (org-back-to-heading)
  7214. (move-marker org-last-heading-marker (point))))
  7215. (beginning-of-line 1)
  7216. (save-excursion
  7217. (org-agenda-change-all-lines newhead hdmarker 'fixface just-one))
  7218. (org-move-to-column col))))
  7219. (defun org-agenda-add-note (&optional arg)
  7220. "Add a time-stamped note to the entry at point."
  7221. (interactive "P")
  7222. (org-agenda-check-no-diary)
  7223. (let* ((marker (or (org-get-at-bol 'org-marker)
  7224. (org-agenda-error)))
  7225. (buffer (marker-buffer marker))
  7226. (pos (marker-position marker))
  7227. (hdmarker (org-get-at-bol 'org-hd-marker))
  7228. (inhibit-read-only t))
  7229. (with-current-buffer buffer
  7230. (widen)
  7231. (goto-char pos)
  7232. (org-show-context 'agenda)
  7233. (save-excursion
  7234. (and (outline-next-heading)
  7235. (org-flag-heading nil))) ; show the next heading
  7236. (org-add-note))))
  7237. (defun org-agenda-change-all-lines (newhead hdmarker
  7238. &optional fixface just-this)
  7239. "Change all lines in the agenda buffer which match HDMARKER.
  7240. The new content of the line will be NEWHEAD (as modified by
  7241. `org-agenda-format-item'). HDMARKER is checked with
  7242. `equal' against all `org-hd-marker' text properties in the file.
  7243. If FIXFACE is non-nil, the face of each item is modified according to
  7244. the new TODO state.
  7245. If JUST-THIS is non-nil, change just the current line, not all.
  7246. If FORCE-TAGS is non nil, the car of it returns the new tags."
  7247. (let* ((inhibit-read-only t)
  7248. (line (org-current-line))
  7249. (org-agenda-buffer (current-buffer))
  7250. (thetags (with-current-buffer (marker-buffer hdmarker)
  7251. (save-excursion (save-restriction (widen)
  7252. (goto-char hdmarker)
  7253. (org-get-tags-at)))))
  7254. props m pl undone-face done-face finish new dotime cat tags)
  7255. (save-excursion
  7256. (goto-char (point-max))
  7257. (beginning-of-line 1)
  7258. (while (not finish)
  7259. (setq finish (bobp))
  7260. (when (and (setq m (org-get-at-bol 'org-hd-marker))
  7261. (or (not just-this) (= (org-current-line) line))
  7262. (equal m hdmarker))
  7263. (setq props (text-properties-at (point))
  7264. dotime (org-get-at-bol 'dotime)
  7265. cat (org-get-at-bol 'org-category)
  7266. tags thetags
  7267. new
  7268. (let ((org-prefix-format-compiled
  7269. (or (get-text-property (point) 'format)
  7270. org-prefix-format-compiled))
  7271. (extra (org-get-at-bol 'extra)))
  7272. (with-current-buffer (marker-buffer hdmarker)
  7273. (save-excursion
  7274. (save-restriction
  7275. (widen)
  7276. (org-agenda-format-item extra newhead cat tags dotime)))))
  7277. pl (text-property-any (point-at-bol) (point-at-eol) 'org-heading t)
  7278. undone-face (org-get-at-bol 'undone-face)
  7279. done-face (org-get-at-bol 'done-face))
  7280. (beginning-of-line 1)
  7281. (cond
  7282. ((equal new "")
  7283. (and (looking-at ".*\n?") (replace-match "")))
  7284. ((looking-at ".*")
  7285. (replace-match new t t)
  7286. (beginning-of-line 1)
  7287. (add-text-properties (point-at-bol) (point-at-eol) props)
  7288. (when fixface
  7289. (add-text-properties
  7290. (point-at-bol) (point-at-eol)
  7291. (list 'face
  7292. (if org-last-todo-state-is-todo
  7293. undone-face done-face))))
  7294. (org-agenda-highlight-todo 'line)
  7295. (beginning-of-line 1))
  7296. (t (error "Line update did not work"))))
  7297. (beginning-of-line 0)))
  7298. (org-finalize-agenda)))
  7299. (defun org-agenda-align-tags (&optional line)
  7300. "Align all tags in agenda items to `org-agenda-tags-column'."
  7301. (let ((inhibit-read-only t) l c)
  7302. (save-excursion
  7303. (goto-char (if line (point-at-bol) (point-min)))
  7304. (while (re-search-forward (org-re "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$")
  7305. (if line (point-at-eol) nil) t)
  7306. (add-text-properties
  7307. (match-beginning 2) (match-end 2)
  7308. (list 'face (delq nil (let ((prop (get-text-property
  7309. (match-beginning 2) 'face)))
  7310. (or (listp prop) (setq prop (list prop)))
  7311. (if (memq 'org-tag prop)
  7312. prop
  7313. (cons 'org-tag prop))))))
  7314. (setq l (- (match-end 2) (match-beginning 2))
  7315. c (if (< org-agenda-tags-column 0)
  7316. (- (abs org-agenda-tags-column) l)
  7317. org-agenda-tags-column))
  7318. (delete-region (match-beginning 1) (match-end 1))
  7319. (goto-char (match-beginning 1))
  7320. (insert (org-add-props
  7321. (make-string (max 1 (- c (current-column))) ?\ )
  7322. (plist-put (copy-sequence (text-properties-at (point)))
  7323. 'face nil))))
  7324. (goto-char (point-min))
  7325. (org-font-lock-add-tag-faces (point-max)))))
  7326. (defun org-agenda-priority-up ()
  7327. "Increase the priority of line at point, also in Org-mode file."
  7328. (interactive)
  7329. (org-agenda-priority 'up))
  7330. (defun org-agenda-priority-down ()
  7331. "Decrease the priority of line at point, also in Org-mode file."
  7332. (interactive)
  7333. (org-agenda-priority 'down))
  7334. (defun org-agenda-priority (&optional force-direction)
  7335. "Set the priority of line at point, also in Org-mode file.
  7336. This changes the line at point, all other lines in the agenda referring to
  7337. the same tree node, and the headline of the tree node in the Org-mode file."
  7338. (interactive)
  7339. (unless org-enable-priority-commands
  7340. (error "Priority commands are disabled"))
  7341. (org-agenda-check-no-diary)
  7342. (let* ((marker (or (org-get-at-bol 'org-marker)
  7343. (org-agenda-error)))
  7344. (hdmarker (org-get-at-bol 'org-hd-marker))
  7345. (buffer (marker-buffer hdmarker))
  7346. (pos (marker-position hdmarker))
  7347. (inhibit-read-only t)
  7348. newhead)
  7349. (org-with-remote-undo buffer
  7350. (with-current-buffer buffer
  7351. (widen)
  7352. (goto-char pos)
  7353. (org-show-context 'agenda)
  7354. (save-excursion
  7355. (and (outline-next-heading)
  7356. (org-flag-heading nil))) ; show the next heading
  7357. (funcall 'org-priority force-direction)
  7358. (end-of-line 1)
  7359. (setq newhead (org-get-heading)))
  7360. (org-agenda-change-all-lines newhead hdmarker)
  7361. (beginning-of-line 1))))
  7362. ;; FIXME: should fix the tags property of the agenda line.
  7363. (defun org-agenda-set-tags (&optional tag onoff)
  7364. "Set tags for the current headline."
  7365. (interactive)
  7366. (org-agenda-check-no-diary)
  7367. (if (and (org-region-active-p) (org-called-interactively-p 'any))
  7368. (call-interactively 'org-change-tag-in-region)
  7369. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  7370. (org-agenda-error)))
  7371. (buffer (marker-buffer hdmarker))
  7372. (pos (marker-position hdmarker))
  7373. (inhibit-read-only t)
  7374. newhead)
  7375. (org-with-remote-undo buffer
  7376. (with-current-buffer buffer
  7377. (widen)
  7378. (goto-char pos)
  7379. (save-excursion
  7380. (org-show-context 'agenda))
  7381. (save-excursion
  7382. (and (outline-next-heading)
  7383. (org-flag-heading nil))) ; show the next heading
  7384. (goto-char pos)
  7385. (if tag
  7386. (org-toggle-tag tag onoff)
  7387. (call-interactively 'org-set-tags))
  7388. (end-of-line 1)
  7389. (setq newhead (org-get-heading)))
  7390. (org-agenda-change-all-lines newhead hdmarker)
  7391. (beginning-of-line 1)))))
  7392. (defun org-agenda-set-property ()
  7393. "Set a property for the current headline."
  7394. (interactive)
  7395. (org-agenda-check-no-diary)
  7396. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  7397. (org-agenda-error)))
  7398. (buffer (marker-buffer hdmarker))
  7399. (pos (marker-position hdmarker))
  7400. (inhibit-read-only t)
  7401. newhead)
  7402. (org-with-remote-undo buffer
  7403. (with-current-buffer buffer
  7404. (widen)
  7405. (goto-char pos)
  7406. (save-excursion
  7407. (org-show-context 'agenda))
  7408. (save-excursion
  7409. (and (outline-next-heading)
  7410. (org-flag-heading nil))) ; show the next heading
  7411. (goto-char pos)
  7412. (call-interactively 'org-set-property)))))
  7413. (defun org-agenda-set-effort ()
  7414. "Set the effort property for the current headline."
  7415. (interactive)
  7416. (org-agenda-check-no-diary)
  7417. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  7418. (org-agenda-error)))
  7419. (buffer (marker-buffer hdmarker))
  7420. (pos (marker-position hdmarker))
  7421. (inhibit-read-only t)
  7422. newhead)
  7423. (org-with-remote-undo buffer
  7424. (with-current-buffer buffer
  7425. (widen)
  7426. (goto-char pos)
  7427. (save-excursion
  7428. (org-show-context 'agenda))
  7429. (save-excursion
  7430. (and (outline-next-heading)
  7431. (org-flag-heading nil))) ; show the next heading
  7432. (goto-char pos)
  7433. (call-interactively 'org-set-effort)
  7434. (end-of-line 1)
  7435. (setq newhead (org-get-heading)))
  7436. (org-agenda-change-all-lines newhead hdmarker))))
  7437. (defun org-agenda-toggle-archive-tag ()
  7438. "Toggle the archive tag for the current entry."
  7439. (interactive)
  7440. (org-agenda-check-no-diary)
  7441. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  7442. (org-agenda-error)))
  7443. (buffer (marker-buffer hdmarker))
  7444. (pos (marker-position hdmarker))
  7445. (inhibit-read-only t)
  7446. newhead)
  7447. (org-with-remote-undo buffer
  7448. (with-current-buffer buffer
  7449. (widen)
  7450. (goto-char pos)
  7451. (org-show-context 'agenda)
  7452. (save-excursion
  7453. (and (outline-next-heading)
  7454. (org-flag-heading nil))) ; show the next heading
  7455. (call-interactively 'org-toggle-archive-tag)
  7456. (end-of-line 1)
  7457. (setq newhead (org-get-heading)))
  7458. (org-agenda-change-all-lines newhead hdmarker)
  7459. (beginning-of-line 1))))
  7460. (defun org-agenda-do-date-later (arg)
  7461. (interactive "P")
  7462. (cond
  7463. ((or (equal arg '(16))
  7464. (memq last-command
  7465. '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
  7466. (setq this-command 'org-agenda-date-later-minutes)
  7467. (org-agenda-date-later-minutes 1))
  7468. ((or (equal arg '(4))
  7469. (memq last-command
  7470. '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
  7471. (setq this-command 'org-agenda-date-later-hours)
  7472. (org-agenda-date-later-hours 1))
  7473. (t
  7474. (org-agenda-date-later (prefix-numeric-value arg)))))
  7475. (defun org-agenda-do-date-earlier (arg)
  7476. (interactive "P")
  7477. (cond
  7478. ((or (equal arg '(16))
  7479. (memq last-command
  7480. '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
  7481. (setq this-command 'org-agenda-date-earlier-minutes)
  7482. (org-agenda-date-earlier-minutes 1))
  7483. ((or (equal arg '(4))
  7484. (memq last-command
  7485. '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
  7486. (setq this-command 'org-agenda-date-earlier-hours)
  7487. (org-agenda-date-earlier-hours 1))
  7488. (t
  7489. (org-agenda-date-earlier (prefix-numeric-value arg)))))
  7490. (defun org-agenda-date-later (arg &optional what)
  7491. "Change the date of this item to ARG day(s) later."
  7492. (interactive "p")
  7493. (org-agenda-check-type t 'agenda 'timeline)
  7494. (org-agenda-check-no-diary)
  7495. (let* ((marker (or (org-get-at-bol 'org-marker)
  7496. (org-agenda-error)))
  7497. (buffer (marker-buffer marker))
  7498. (pos (marker-position marker))
  7499. cdate today)
  7500. (org-with-remote-undo buffer
  7501. (with-current-buffer buffer
  7502. (widen)
  7503. (goto-char pos)
  7504. (if (not (org-at-timestamp-p))
  7505. (error "Cannot find time stamp"))
  7506. (when (and org-agenda-move-date-from-past-immediately-to-today
  7507. (equal arg 1)
  7508. (or (not what) (eq what 'day))
  7509. (not (save-match-data (org-at-date-range-p))))
  7510. (setq cdate (org-parse-time-string (match-string 0) 'nodefault)
  7511. cdate (calendar-absolute-from-gregorian
  7512. (list (nth 4 cdate) (nth 3 cdate) (nth 5 cdate)))
  7513. today (org-today))
  7514. (if (> today cdate)
  7515. ;; immediately shift to today
  7516. (setq arg (- today cdate))))
  7517. (org-timestamp-change arg (or what 'day))
  7518. (when (and (org-at-date-range-p)
  7519. (re-search-backward org-tr-regexp-both (point-at-bol)))
  7520. (let ((end org-last-changed-timestamp))
  7521. (org-timestamp-change arg (or what 'day))
  7522. (setq org-last-changed-timestamp
  7523. (concat org-last-changed-timestamp "--" end)))))
  7524. (org-agenda-show-new-time marker org-last-changed-timestamp))
  7525. (message "Time stamp changed to %s" org-last-changed-timestamp)))
  7526. (defun org-agenda-date-earlier (arg &optional what)
  7527. "Change the date of this item to ARG day(s) earlier."
  7528. (interactive "p")
  7529. (org-agenda-date-later (- arg) what))
  7530. (defun org-agenda-date-later-minutes (arg)
  7531. "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
  7532. (interactive "p")
  7533. (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
  7534. (org-agenda-date-later arg 'minute))
  7535. (defun org-agenda-date-earlier-minutes (arg)
  7536. "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
  7537. (interactive "p")
  7538. (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
  7539. (org-agenda-date-earlier arg 'minute))
  7540. (defun org-agenda-date-later-hours (arg)
  7541. "Change the time of this item, in hour steps."
  7542. (interactive "p")
  7543. (org-agenda-date-later arg 'hour))
  7544. (defun org-agenda-date-earlier-hours (arg)
  7545. "Change the time of this item, in hour steps."
  7546. (interactive "p")
  7547. (org-agenda-date-earlier arg 'hour))
  7548. (defun org-agenda-show-new-time (marker stamp &optional prefix)
  7549. "Show new date stamp via text properties."
  7550. ;; We use text properties to make this undoable
  7551. (let ((inhibit-read-only t)
  7552. (buffer-invisibility-spec))
  7553. (setq stamp (concat " " prefix " => " stamp))
  7554. (save-excursion
  7555. (goto-char (point-max))
  7556. (while (not (bobp))
  7557. (when (equal marker (org-get-at-bol 'org-marker))
  7558. (org-move-to-column (- (window-width) (length stamp)) t)
  7559. (org-agenda-fix-tags-filter-overlays-at (point))
  7560. (if (featurep 'xemacs)
  7561. ;; Use `duplicable' property to trigger undo recording
  7562. (let ((ex (make-extent nil nil))
  7563. (gl (make-glyph stamp)))
  7564. (set-glyph-face gl 'secondary-selection)
  7565. (set-extent-properties
  7566. ex (list 'invisible t 'end-glyph gl 'duplicable t))
  7567. (insert-extent ex (1- (point)) (point-at-eol)))
  7568. (add-text-properties
  7569. (1- (point)) (point-at-eol)
  7570. (list 'display (org-add-props stamp nil
  7571. 'face 'secondary-selection))))
  7572. (beginning-of-line 1))
  7573. (beginning-of-line 0)))))
  7574. (defun org-agenda-date-prompt (arg)
  7575. "Change the date of this item. Date is prompted for, with default today.
  7576. The prefix ARG is passed to the `org-time-stamp' command and can therefore
  7577. be used to request time specification in the time stamp."
  7578. (interactive "P")
  7579. (org-agenda-check-type t 'agenda 'timeline)
  7580. (org-agenda-check-no-diary)
  7581. (let* ((marker (or (org-get-at-bol 'org-marker)
  7582. (org-agenda-error)))
  7583. (buffer (marker-buffer marker))
  7584. (pos (marker-position marker)))
  7585. (org-with-remote-undo buffer
  7586. (with-current-buffer buffer
  7587. (widen)
  7588. (goto-char pos)
  7589. (if (not (org-at-timestamp-p t))
  7590. (error "Cannot find time stamp"))
  7591. (org-time-stamp arg (equal (char-after (match-beginning 0)) ?\[)))
  7592. (org-agenda-show-new-time marker org-last-changed-timestamp))
  7593. (message "Time stamp changed to %s" org-last-changed-timestamp)))
  7594. (defun org-agenda-schedule (arg &optional time)
  7595. "Schedule the item at point.
  7596. ARG is passed through to `org-schedule'."
  7597. (interactive "P")
  7598. (org-agenda-check-type t 'agenda 'timeline 'todo 'tags 'search)
  7599. (org-agenda-check-no-diary)
  7600. (let* ((marker (or (org-get-at-bol 'org-marker)
  7601. (org-agenda-error)))
  7602. (type (marker-insertion-type marker))
  7603. (buffer (marker-buffer marker))
  7604. (pos (marker-position marker))
  7605. (org-insert-labeled-timestamps-at-point nil)
  7606. ts)
  7607. (set-marker-insertion-type marker t)
  7608. (org-with-remote-undo buffer
  7609. (with-current-buffer buffer
  7610. (widen)
  7611. (goto-char pos)
  7612. (setq ts (org-schedule arg time)))
  7613. (org-agenda-show-new-time marker ts "S"))
  7614. (message "Item scheduled for %s" ts)))
  7615. (defun org-agenda-deadline (arg &optional time)
  7616. "Schedule the item at point.
  7617. ARG is passed through to `org-deadline'."
  7618. (interactive "P")
  7619. (org-agenda-check-type t 'agenda 'timeline 'todo 'tags 'search)
  7620. (org-agenda-check-no-diary)
  7621. (let* ((marker (or (org-get-at-bol 'org-marker)
  7622. (org-agenda-error)))
  7623. (buffer (marker-buffer marker))
  7624. (pos (marker-position marker))
  7625. (org-insert-labeled-timestamps-at-point nil)
  7626. ts)
  7627. (org-with-remote-undo buffer
  7628. (with-current-buffer buffer
  7629. (widen)
  7630. (goto-char pos)
  7631. (setq ts (org-deadline arg time)))
  7632. (org-agenda-show-new-time marker ts "D"))
  7633. (message "Deadline for this item set to %s" ts)))
  7634. (defun org-agenda-action ()
  7635. "Select entry for agenda action, or execute an agenda action.
  7636. This command prompts for another letter. Valid inputs are:
  7637. m Mark the entry at point for an agenda action
  7638. s Schedule the marked entry to the date at the cursor
  7639. d Set the deadline of the marked entry to the date at the cursor
  7640. r Call `org-remember' with cursor date as the default date
  7641. c Call `org-capture' with cursor date as the default date
  7642. SPC Show marked entry in other window
  7643. TAB Visit marked entry in other window
  7644. The cursor may be at a date in the calendar, or in the Org agenda."
  7645. (interactive)
  7646. (let (ans)
  7647. (message "Select action: [m]ark | [s]chedule [d]eadline [r]emember [c]apture [ ]show")
  7648. (setq ans (read-char-exclusive))
  7649. (cond
  7650. ((equal ans ?m)
  7651. ;; Mark this entry
  7652. (if (eq major-mode 'org-agenda-mode)
  7653. (let ((m (or (org-get-at-bol 'org-hd-marker)
  7654. (org-get-at-bol 'org-marker))))
  7655. (if m
  7656. (progn
  7657. (move-marker org-agenda-action-marker
  7658. (marker-position m) (marker-buffer m))
  7659. (message "Entry marked for action; press `k' at desired date in agenda or calendar"))
  7660. (error "Don't know which entry to mark")))
  7661. (error "This command works only in the agenda")))
  7662. ((equal ans ?s)
  7663. (org-agenda-do-action '(org-schedule nil org-overriding-default-time)))
  7664. ((equal ans ?d)
  7665. (org-agenda-do-action '(org-deadline nil org-overriding-default-time)))
  7666. ((equal ans ?r)
  7667. (org-agenda-do-action '(org-remember) t))
  7668. ((equal ans ?c)
  7669. (org-agenda-do-action '(org-capture) t))
  7670. ((equal ans ?\ )
  7671. (let ((cw (selected-window)))
  7672. (org-switch-to-buffer-other-window
  7673. (marker-buffer org-agenda-action-marker))
  7674. (goto-char org-agenda-action-marker)
  7675. (org-show-context 'agenda)
  7676. (select-window cw)))
  7677. ((equal ans ?\C-i)
  7678. (org-switch-to-buffer-other-window
  7679. (marker-buffer org-agenda-action-marker))
  7680. (goto-char org-agenda-action-marker)
  7681. (org-show-context 'agenda))
  7682. (t (error "Invalid agenda action %c" ans)))))
  7683. (defun org-agenda-do-action (form &optional current-buffer)
  7684. "Evaluate FORM at the entry pointed to by `org-agenda-action-marker'."
  7685. (let ((org-overriding-default-time (org-get-cursor-date)))
  7686. (if current-buffer
  7687. (eval form)
  7688. (if (not (marker-buffer org-agenda-action-marker))
  7689. (error "No entry has been selected for agenda action")
  7690. (with-current-buffer (marker-buffer org-agenda-action-marker)
  7691. (save-excursion
  7692. (save-restriction
  7693. (widen)
  7694. (goto-char org-agenda-action-marker)
  7695. (eval form))))))))
  7696. (defun org-agenda-clock-in (&optional arg)
  7697. "Start the clock on the currently selected item."
  7698. (interactive "P")
  7699. (org-agenda-check-no-diary)
  7700. (if (equal arg '(4))
  7701. (org-clock-in arg)
  7702. (let* ((marker (or (org-get-at-bol 'org-marker)
  7703. (org-agenda-error)))
  7704. (hdmarker (or (org-get-at-bol 'org-hd-marker)
  7705. marker))
  7706. (pos (marker-position marker))
  7707. newhead)
  7708. (org-with-remote-undo (marker-buffer marker)
  7709. (with-current-buffer (marker-buffer marker)
  7710. (widen)
  7711. (goto-char pos)
  7712. (org-show-context 'agenda)
  7713. (org-show-entry)
  7714. (org-cycle-hide-drawers 'children)
  7715. (org-clock-in arg)
  7716. (setq newhead (org-get-heading)))
  7717. (org-agenda-change-all-lines newhead hdmarker)))))
  7718. (defun org-agenda-clock-out ()
  7719. "Stop the currently running clock."
  7720. (interactive)
  7721. (unless (marker-buffer org-clock-marker)
  7722. (error "No running clock"))
  7723. (let ((marker (make-marker)) newhead)
  7724. (org-with-remote-undo (marker-buffer org-clock-marker)
  7725. (with-current-buffer (marker-buffer org-clock-marker)
  7726. (save-excursion
  7727. (save-restriction
  7728. (widen)
  7729. (goto-char org-clock-marker)
  7730. (org-back-to-heading t)
  7731. (move-marker marker (point))
  7732. (org-clock-out)
  7733. (setq newhead (org-get-heading))))))
  7734. (org-agenda-change-all-lines newhead marker)
  7735. (move-marker marker nil)))
  7736. (defun org-agenda-clock-cancel (&optional arg)
  7737. "Cancel the currently running clock."
  7738. (interactive "P")
  7739. (unless (marker-buffer org-clock-marker)
  7740. (error "No running clock"))
  7741. (org-with-remote-undo (marker-buffer org-clock-marker)
  7742. (org-clock-cancel)))
  7743. (defun org-agenda-clock-goto ()
  7744. "Jump to the currently clocked in task within the agenda.
  7745. If the currently clocked in task is not listed in the agenda
  7746. buffer, display it in another window."
  7747. (interactive)
  7748. (let (pos)
  7749. (mapc (lambda (o)
  7750. (if (eq (overlay-get o 'type) 'org-agenda-clocking)
  7751. (setq pos (overlay-start o))))
  7752. (overlays-in (point-min) (point-max)))
  7753. (cond (pos (goto-char pos))
  7754. ;; If the currently clocked entry is not in the agenda
  7755. ;; buffer, we visit it in another window:
  7756. (org-clock-current-task
  7757. (org-switch-to-buffer-other-window (org-clock-goto)))
  7758. (t (message "No running clock, use `C-c C-x C-j' to jump to the most recent one")))))
  7759. (defun org-agenda-diary-entry-in-org-file ()
  7760. "Make a diary entry in the file `org-agenda-diary-file'."
  7761. (let (d1 d2 char (text "") dp1 dp2)
  7762. (if (equal (buffer-name) "*Calendar*")
  7763. (setq d1 (calendar-cursor-to-date t)
  7764. d2 (car calendar-mark-ring))
  7765. (setq dp1 (get-text-property (point-at-bol) 'day))
  7766. (unless dp1 (error "No date defined in current line"))
  7767. (setq d1 (calendar-gregorian-from-absolute dp1)
  7768. d2 (and (ignore-errors (mark))
  7769. (save-excursion
  7770. (goto-char (mark))
  7771. (setq dp2 (get-text-property (point-at-bol) 'day)))
  7772. (calendar-gregorian-from-absolute dp2))))
  7773. (message "Diary entry: [d]ay [a]nniversary [b]lock [j]ump to date tree")
  7774. (setq char (read-char-exclusive))
  7775. (cond
  7776. ((equal char ?d)
  7777. (setq text (read-string "Day entry: "))
  7778. (org-agenda-add-entry-to-org-agenda-diary-file 'day text d1)
  7779. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  7780. ((equal char ?a)
  7781. (setq d1 (list (car d1) (nth 1 d1)
  7782. (read-number (format "Reference year [%d]: " (nth 2 d1))
  7783. (nth 2 d1))))
  7784. (setq text (read-string "Anniversary (use %d to show years): "))
  7785. (org-agenda-add-entry-to-org-agenda-diary-file 'anniversary text d1)
  7786. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  7787. ((equal char ?b)
  7788. (setq text (read-string "Block entry: "))
  7789. (unless (and d1 d2 (not (equal d1 d2)))
  7790. (error "No block of days selected"))
  7791. (org-agenda-add-entry-to-org-agenda-diary-file 'block text d1 d2)
  7792. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  7793. ((equal char ?j)
  7794. (org-switch-to-buffer-other-window
  7795. (find-file-noselect org-agenda-diary-file))
  7796. (require 'org-datetree)
  7797. (org-datetree-find-date-create d1)
  7798. (org-reveal t))
  7799. (t (error "Invalid selection character `%c'" char)))))
  7800. (defcustom org-agenda-insert-diary-strategy 'date-tree
  7801. "Where in `org-agenda-diary-file' should new entries be added?
  7802. Valid values:
  7803. date-tree in the date tree, as child of the date
  7804. top-level as top-level entries at the end of the file."
  7805. :group 'org-agenda
  7806. :type '(choice
  7807. (const :tag "in a date tree" date-tree)
  7808. (const :tag "as top level at end of file" top-level)))
  7809. (defcustom org-agenda-insert-diary-extract-time nil
  7810. "Non-nil means extract any time specification from the diary entry."
  7811. :group 'org-agenda
  7812. :version "24.1"
  7813. :type 'boolean)
  7814. (defcustom org-agenda-bulk-mark-char ">"
  7815. "A single-character string to be used as the bulk mark."
  7816. :group 'org-agenda
  7817. :version "24.1"
  7818. :type 'string)
  7819. (defun org-agenda-add-entry-to-org-agenda-diary-file (type text &optional d1 d2)
  7820. "Add a diary entry with TYPE to `org-agenda-diary-file'.
  7821. If TEXT is not empty, it will become the headline of the new entry, and
  7822. the resulting entry will not be shown. When TEXT is empty, switch to
  7823. `org-agenda-diary-file' and let the user finish the entry there."
  7824. (let ((cw (current-window-configuration)))
  7825. (org-switch-to-buffer-other-window
  7826. (find-file-noselect org-agenda-diary-file))
  7827. (widen)
  7828. (goto-char (point-min))
  7829. (cond
  7830. ((eq type 'anniversary)
  7831. (or (re-search-forward "^*[ \t]+Anniversaries" nil t)
  7832. (progn
  7833. (or (org-at-heading-p t)
  7834. (progn
  7835. (outline-next-heading)
  7836. (insert "* Anniversaries\n\n")
  7837. (beginning-of-line -1)))))
  7838. (outline-next-heading)
  7839. (org-back-over-empty-lines)
  7840. (backward-char 1)
  7841. (insert "\n")
  7842. (insert (format "%%%%(org-anniversary %d %2d %2d) %s"
  7843. (nth 2 d1) (car d1) (nth 1 d1) text)))
  7844. ((eq type 'day)
  7845. (let ((org-prefix-has-time t)
  7846. (org-agenda-time-leading-zero t)
  7847. fmt time time2)
  7848. (if org-agenda-insert-diary-extract-time
  7849. ;; Use org-agenda-format-item to parse text for a time-range and
  7850. ;; remove it. FIXME: This is a hack, we should refactor
  7851. ;; that function to make time extraction available separately
  7852. (setq fmt (org-agenda-format-item nil text nil nil t)
  7853. time (get-text-property 0 'time fmt)
  7854. time2 (if (> (length time) 0)
  7855. ;; split-string removes trailing ...... if
  7856. ;; no end time given. First space
  7857. ;; separates time from date.
  7858. (concat " " (car (split-string time "\\.")))
  7859. nil)
  7860. text (get-text-property 0 'txt fmt)))
  7861. (if (eq org-agenda-insert-diary-strategy 'top-level)
  7862. (org-agenda-insert-diary-as-top-level text)
  7863. (require 'org-datetree)
  7864. (org-datetree-find-date-create d1)
  7865. (org-agenda-insert-diary-make-new-entry text))
  7866. (org-insert-time-stamp (org-time-from-absolute
  7867. (calendar-absolute-from-gregorian d1))
  7868. nil nil nil nil time2))
  7869. (end-of-line 0))
  7870. ((eq type 'block)
  7871. (if (> (calendar-absolute-from-gregorian d1)
  7872. (calendar-absolute-from-gregorian d2))
  7873. (setq d1 (prog1 d2 (setq d2 d1))))
  7874. (if (eq org-agenda-insert-diary-strategy 'top-level)
  7875. (org-agenda-insert-diary-as-top-level text)
  7876. (require 'org-datetree)
  7877. (org-datetree-find-date-create d1)
  7878. (org-agenda-insert-diary-make-new-entry text))
  7879. (org-insert-time-stamp (org-time-from-absolute
  7880. (calendar-absolute-from-gregorian d1)))
  7881. (insert "--")
  7882. (org-insert-time-stamp (org-time-from-absolute
  7883. (calendar-absolute-from-gregorian d2)))
  7884. (end-of-line 0)))
  7885. (if (string-match "\\S-" text)
  7886. (progn
  7887. (set-window-configuration cw)
  7888. (message "%s entry added to %s"
  7889. (capitalize (symbol-name type))
  7890. (abbreviate-file-name org-agenda-diary-file)))
  7891. (org-reveal t)
  7892. (message "Please finish entry here"))))
  7893. (defun org-agenda-insert-diary-as-top-level (text)
  7894. "Make new entry as a top-level entry at the end of the file.
  7895. Add TEXT as headline, and position the cursor in the second line so that
  7896. a timestamp can be added there."
  7897. (widen)
  7898. (goto-char (point-max))
  7899. (or (bolp) (insert "\n"))
  7900. (insert "* " text "\n")
  7901. (if org-adapt-indentation (org-indent-to-column 2)))
  7902. (defun org-agenda-insert-diary-make-new-entry (text)
  7903. "Make new entry as last child of current entry.
  7904. Add TEXT as headline, and position the cursor in the second line so that
  7905. a timestamp can be added there."
  7906. (let ((org-show-following-heading t)
  7907. (org-show-siblings t)
  7908. (org-show-hierarchy-above t)
  7909. (org-show-entry-below t)
  7910. col)
  7911. (outline-next-heading)
  7912. (org-back-over-empty-lines)
  7913. (or (looking-at "[ \t]*$")
  7914. (progn (insert "\n") (backward-char 1)))
  7915. (org-insert-heading nil t)
  7916. (org-do-demote)
  7917. (setq col (current-column))
  7918. (insert text "\n")
  7919. (if org-adapt-indentation (org-indent-to-column col))
  7920. (let ((org-show-following-heading t)
  7921. (org-show-siblings t)
  7922. (org-show-hierarchy-above t)
  7923. (org-show-entry-below t))
  7924. (org-show-context))))
  7925. (defun org-agenda-diary-entry ()
  7926. "Make a diary entry, like the `i' command from the calendar.
  7927. All the standard commands work: block, weekly etc.
  7928. When `org-agenda-diary-file' points to a file,
  7929. `org-agenda-diary-entry-in-org-file' is called instead to create
  7930. entries in that Org-mode file."
  7931. (interactive)
  7932. (org-agenda-check-type t 'agenda 'timeline)
  7933. (if (not (eq org-agenda-diary-file 'diary-file))
  7934. (org-agenda-diary-entry-in-org-file)
  7935. (require 'diary-lib)
  7936. (let* ((char (progn
  7937. (message "Diary entry: [d]ay [w]eekly [m]onthly [y]early [a]nniversary [b]lock [c]yclic")
  7938. (read-char-exclusive)))
  7939. (cmd (cdr (assoc char
  7940. '((?d . insert-diary-entry)
  7941. (?w . insert-weekly-diary-entry)
  7942. (?m . insert-monthly-diary-entry)
  7943. (?y . insert-yearly-diary-entry)
  7944. (?a . insert-anniversary-diary-entry)
  7945. (?b . insert-block-diary-entry)
  7946. (?c . insert-cyclic-diary-entry)))))
  7947. (oldf (symbol-function 'calendar-cursor-to-date))
  7948. ;; (buf (get-file-buffer (substitute-in-file-name diary-file)))
  7949. (point (point))
  7950. (mark (or (mark t) (point))))
  7951. (unless cmd
  7952. (error "No command associated with <%c>" char))
  7953. (unless (and (get-text-property point 'day)
  7954. (or (not (equal ?b char))
  7955. (get-text-property mark 'day)))
  7956. (error "Don't know which date to use for diary entry"))
  7957. ;; We implement this by hacking the `calendar-cursor-to-date' function
  7958. ;; and the `calendar-mark-ring' variable. Saves a lot of code.
  7959. (let ((calendar-mark-ring
  7960. (list (calendar-gregorian-from-absolute
  7961. (or (get-text-property mark 'day)
  7962. (get-text-property point 'day))))))
  7963. (unwind-protect
  7964. (progn
  7965. (fset 'calendar-cursor-to-date
  7966. (lambda (&optional error dummy)
  7967. (calendar-gregorian-from-absolute
  7968. (get-text-property point 'day))))
  7969. (call-interactively cmd))
  7970. (fset 'calendar-cursor-to-date oldf))))))
  7971. (defun org-agenda-execute-calendar-command (cmd)
  7972. "Execute a calendar command from the agenda, with the date associated to
  7973. the cursor position."
  7974. (org-agenda-check-type t 'agenda 'timeline)
  7975. (require 'diary-lib)
  7976. (unless (get-text-property (point) 'day)
  7977. (error "Don't know which date to use for calendar command"))
  7978. (let* ((oldf (symbol-function 'calendar-cursor-to-date))
  7979. (point (point))
  7980. (date (calendar-gregorian-from-absolute
  7981. (get-text-property point 'day)))
  7982. ;; the following 2 vars are needed in the calendar
  7983. (displayed-month (car date))
  7984. (displayed-year (nth 2 date)))
  7985. (unwind-protect
  7986. (progn
  7987. (fset 'calendar-cursor-to-date
  7988. (lambda (&optional error dummy)
  7989. (calendar-gregorian-from-absolute
  7990. (get-text-property point 'day))))
  7991. (call-interactively cmd))
  7992. (fset 'calendar-cursor-to-date oldf))))
  7993. (defun org-agenda-phases-of-moon ()
  7994. "Display the phases of the moon for the 3 months around the cursor date."
  7995. (interactive)
  7996. (org-agenda-execute-calendar-command 'calendar-phases-of-moon))
  7997. (defun org-agenda-holidays ()
  7998. "Display the holidays for the 3 months around the cursor date."
  7999. (interactive)
  8000. (org-agenda-execute-calendar-command 'list-calendar-holidays))
  8001. (defvar calendar-longitude)
  8002. (defvar calendar-latitude)
  8003. (defvar calendar-location-name)
  8004. (defun org-agenda-sunrise-sunset (arg)
  8005. "Display sunrise and sunset for the cursor date.
  8006. Latitude and longitude can be specified with the variables
  8007. `calendar-latitude' and `calendar-longitude'. When called with prefix
  8008. argument, latitude and longitude will be prompted for."
  8009. (interactive "P")
  8010. (require 'solar)
  8011. (let ((calendar-longitude (if arg nil calendar-longitude))
  8012. (calendar-latitude (if arg nil calendar-latitude))
  8013. (calendar-location-name
  8014. (if arg "the given coordinates" calendar-location-name)))
  8015. (org-agenda-execute-calendar-command 'calendar-sunrise-sunset)))
  8016. (defun org-agenda-goto-calendar ()
  8017. "Open the Emacs calendar with the date at the cursor."
  8018. (interactive)
  8019. (org-agenda-check-type t 'agenda 'timeline)
  8020. (let* ((day (or (get-text-property (point) 'day)
  8021. (error "Don't know which date to open in calendar")))
  8022. (date (calendar-gregorian-from-absolute day))
  8023. (calendar-move-hook nil)
  8024. (calendar-view-holidays-initially-flag nil)
  8025. (calendar-view-diary-initially-flag nil))
  8026. (calendar)
  8027. (calendar-goto-date date)))
  8028. ;;;###autoload
  8029. (defun org-calendar-goto-agenda ()
  8030. "Compute the Org-mode agenda for the calendar date displayed at the cursor.
  8031. This is a command that has to be installed in `calendar-mode-map'."
  8032. (interactive)
  8033. (org-agenda-list nil (calendar-absolute-from-gregorian
  8034. (calendar-cursor-to-date))
  8035. nil))
  8036. (defun org-agenda-convert-date ()
  8037. (interactive)
  8038. (org-agenda-check-type t 'agenda 'timeline)
  8039. (let ((day (get-text-property (point) 'day))
  8040. date s)
  8041. (unless day
  8042. (error "Don't know which date to convert"))
  8043. (setq date (calendar-gregorian-from-absolute day))
  8044. (setq s (concat
  8045. "Gregorian: " (calendar-date-string date) "\n"
  8046. "ISO: " (calendar-iso-date-string date) "\n"
  8047. "Day of Yr: " (calendar-day-of-year-string date) "\n"
  8048. "Julian: " (calendar-julian-date-string date) "\n"
  8049. "Astron. JD: " (calendar-astro-date-string date)
  8050. " (Julian date number at noon UTC)\n"
  8051. "Hebrew: " (calendar-hebrew-date-string date) " (until sunset)\n"
  8052. "Islamic: " (calendar-islamic-date-string date) " (until sunset)\n"
  8053. "French: " (calendar-french-date-string date) "\n"
  8054. "Baha'i: " (calendar-bahai-date-string date) " (until sunset)\n"
  8055. "Mayan: " (calendar-mayan-date-string date) "\n"
  8056. "Coptic: " (calendar-coptic-date-string date) "\n"
  8057. "Ethiopic: " (calendar-ethiopic-date-string date) "\n"
  8058. "Persian: " (calendar-persian-date-string date) "\n"
  8059. "Chinese: " (calendar-chinese-date-string date) "\n"))
  8060. (with-output-to-temp-buffer "*Dates*"
  8061. (princ s))
  8062. (org-fit-window-to-buffer (get-buffer-window "*Dates*"))))
  8063. ;;; Bulk commands
  8064. (defvar org-agenda-bulk-marked-entries nil
  8065. "List of markers that refer to marked entries in the agenda.")
  8066. (defun org-agenda-bulk-marked-p ()
  8067. (eq (get-char-property (point-at-bol) 'type)
  8068. 'org-marked-entry-overlay))
  8069. (defun org-agenda-bulk-mark (&optional arg)
  8070. "Mark the entry at point for future bulk action."
  8071. (interactive "p")
  8072. (dotimes (i (or arg 1))
  8073. (unless (org-get-at-bol 'org-agenda-diary-link)
  8074. (let* ((m (org-get-at-bol 'org-hd-marker))
  8075. ov)
  8076. (unless (org-agenda-bulk-marked-p)
  8077. (unless m (error "Nothing to mark at point"))
  8078. (push m org-agenda-bulk-marked-entries)
  8079. (setq ov (make-overlay (point-at-bol) (+ 2 (point-at-bol))))
  8080. (org-overlay-display ov (concat org-agenda-bulk-mark-char " ")
  8081. (org-get-todo-face "TODO")
  8082. 'evaporate)
  8083. (overlay-put ov 'type 'org-marked-entry-overlay))
  8084. (beginning-of-line 2)
  8085. (while (and (get-char-property (point) 'invisible) (not (eobp)))
  8086. (beginning-of-line 2))
  8087. (message "%d entries marked for bulk action"
  8088. (length org-agenda-bulk-marked-entries))))))
  8089. (defun org-agenda-bulk-mark-all ()
  8090. "Mark all entries for future agenda bulk action."
  8091. (interactive)
  8092. (org-agenda-bulk-mark-regexp "."))
  8093. (defun org-agenda-bulk-mark-regexp (regexp)
  8094. "Mark entries matching REGEXP for future agenda bulk action."
  8095. (interactive "sMark entries matching regexp: ")
  8096. (let ((entries-marked 0))
  8097. (save-excursion
  8098. (goto-char (point-min))
  8099. (goto-char (next-single-property-change (point) 'txt))
  8100. (while (re-search-forward regexp nil t)
  8101. (when (string-match regexp (get-text-property (point) 'txt))
  8102. (setq entries-marked (1+ entries-marked))
  8103. (call-interactively 'org-agenda-bulk-mark))))
  8104. (if (not entries-marked)
  8105. (message "No entry matching this regexp."))))
  8106. (defun org-agenda-bulk-unmark (&optional arg)
  8107. "Unmark the entry at point for future bulk action."
  8108. (interactive "P")
  8109. (if arg
  8110. (org-agenda-bulk-unmark-all)
  8111. (cond ((org-agenda-bulk-marked-p)
  8112. (org-agenda-bulk-remove-overlays
  8113. (point-at-bol) (+ 2 (point-at-bol)))
  8114. (setq org-agenda-bulk-marked-entries
  8115. (delete (org-get-at-bol 'org-hd-marker)
  8116. org-agenda-bulk-marked-entries))
  8117. (beginning-of-line 2)
  8118. (while (and (get-char-property (point) 'invisible) (not (eobp)))
  8119. (beginning-of-line 2))
  8120. (message "%d entries left marked for bulk action"
  8121. (length org-agenda-bulk-marked-entries)))
  8122. (t (message "No entry to unmark here")))))
  8123. (defun org-agenda-bulk-toggle ()
  8124. "Toggle marking the entry at point for bulk action."
  8125. (interactive)
  8126. (if (org-agenda-bulk-marked-p)
  8127. (org-agenda-bulk-unmark)
  8128. (org-agenda-bulk-mark)))
  8129. (defun org-agenda-bulk-remove-overlays (&optional beg end)
  8130. "Remove the mark overlays between BEG and END in the agenda buffer.
  8131. BEG and END default to the buffer limits.
  8132. This only removes the overlays, it does not remove the markers
  8133. from the list in `org-agenda-bulk-marked-entries'."
  8134. (interactive)
  8135. (mapc (lambda (ov)
  8136. (and (eq (overlay-get ov 'type) 'org-marked-entry-overlay)
  8137. (delete-overlay ov)))
  8138. (overlays-in (or beg (point-min)) (or end (point-max)))))
  8139. (defun org-agenda-bulk-unmark-all ()
  8140. "Remove all marks in the agenda buffer.
  8141. This will remove the markers and the overlays."
  8142. (interactive)
  8143. (if (null org-agenda-bulk-marked-entries)
  8144. (message "No entry to unmark")
  8145. (mapc (lambda (m) (move-marker m nil)) org-agenda-bulk-marked-entries)
  8146. (setq org-agenda-bulk-marked-entries nil)
  8147. (org-agenda-bulk-remove-overlays (point-min) (point-max))))
  8148. (defcustom org-agenda-persistent-marks nil
  8149. "Non-nil means marked items will stay marked after a bulk action.
  8150. You can interactively and temporarily toggle by typing `p' when you
  8151. are prompted for a bulk action."
  8152. :group 'org-agenda
  8153. :version "24.1"
  8154. :type 'boolean)
  8155. (defun org-agenda-bulk-action (&optional arg)
  8156. "Execute an remote-editing action on all marked entries.
  8157. The prefix arg is passed through to the command if possible."
  8158. (interactive "P")
  8159. ;; Make sure we have markers, and only valid ones
  8160. (unless org-agenda-bulk-marked-entries (error "No entries are marked"))
  8161. (mapc
  8162. (lambda (m)
  8163. (unless (and (markerp m)
  8164. (marker-buffer m)
  8165. (buffer-live-p (marker-buffer m))
  8166. (marker-position m))
  8167. (error "Marker %s for bulk command is invalid" m)))
  8168. org-agenda-bulk-marked-entries)
  8169. ;; Prompt for the bulk command
  8170. (let* ((msg (if org-agenda-persistent-marks "Bulk (persistent): " "Bulk: ")))
  8171. (message (concat msg "[r]efile [$]arch [A]rch->sib [t]odo"
  8172. " [+/-]tag [s]chd [S]catter [d]eadline [f]unction "
  8173. (when org-agenda-bulk-custom-functions
  8174. (concat " Custom: ["
  8175. (mapconcat (lambda(f) (char-to-string (car f)))
  8176. org-agenda-bulk-custom-functions "")
  8177. "]"))))
  8178. (catch 'exit
  8179. (let* ((action (read-char-exclusive))
  8180. (org-log-refile (if org-log-refile 'time nil))
  8181. (entries (reverse org-agenda-bulk-marked-entries))
  8182. redo-at-end
  8183. cmd rfloc state e tag pos (cnt 0) (cntskip 0))
  8184. (cond
  8185. ((equal action ?p)
  8186. (let ((org-agenda-persistent-marks
  8187. (not org-agenda-persistent-marks)))
  8188. (org-agenda-bulk-action)
  8189. (throw 'exit nil)))
  8190. ((equal action ?$)
  8191. (setq cmd '(org-agenda-archive)))
  8192. ((equal action ?A)
  8193. (setq cmd '(org-agenda-archive-to-archive-sibling)))
  8194. ((member action '(?r ?w))
  8195. (setq rfloc (org-refile-get-location
  8196. "Refile to"
  8197. (marker-buffer (car org-agenda-bulk-marked-entries))
  8198. org-refile-allow-creating-parent-nodes))
  8199. (if (nth 3 rfloc)
  8200. (setcar (nthcdr 3 rfloc)
  8201. (move-marker (make-marker) (nth 3 rfloc)
  8202. (or (get-file-buffer (nth 1 rfloc))
  8203. (find-buffer-visiting (nth 1 rfloc))
  8204. (error "This should not happen")))))
  8205. (setq cmd (list 'org-agenda-refile nil (list 'quote rfloc) t)
  8206. redo-at-end t))
  8207. ((equal action ?t)
  8208. (setq state (org-icompleting-read
  8209. "Todo state: "
  8210. (with-current-buffer (marker-buffer (car entries))
  8211. (mapcar 'list org-todo-keywords-1))))
  8212. (setq cmd `(let ((org-inhibit-blocking t)
  8213. (org-inhibit-logging 'note))
  8214. (org-agenda-todo ,state))))
  8215. ((memq action '(?- ?+))
  8216. (setq tag (org-icompleting-read
  8217. (format "Tag to %s: " (if (eq action ?+) "add" "remove"))
  8218. (with-current-buffer (marker-buffer (car entries))
  8219. (delq nil
  8220. (mapcar (lambda (x)
  8221. (if (stringp (car x)) x)) org-tag-alist)))))
  8222. (setq cmd `(org-agenda-set-tags ,tag ,(if (eq action ?+) ''on ''off))))
  8223. ((memq action '(?s ?d))
  8224. (let* ((date (unless arg
  8225. (org-read-date
  8226. nil nil nil
  8227. (if (eq action ?s) "(Re)Schedule to" "Set Deadline to"))))
  8228. (ans (if arg nil org-read-date-final-answer))
  8229. (c1 (if (eq action ?s) 'org-agenda-schedule 'org-agenda-deadline)))
  8230. (setq cmd `(let* ((bound (fboundp 'read-string))
  8231. (old (and bound (symbol-function 'read-string))))
  8232. (unwind-protect
  8233. (progn
  8234. (fset 'read-string (lambda (&rest ignore) ,ans))
  8235. (eval '(,c1 arg)))
  8236. (if bound
  8237. (fset 'read-string old)
  8238. (fmakunbound 'read-string)))))))
  8239. ((equal action ?S)
  8240. (if (not (org-agenda-check-type nil 'agenda 'timeline 'todo))
  8241. (error "Can't scatter tasks in \"%s\" agenda view" org-agenda-type)
  8242. (let ((days (read-number
  8243. (format "Scatter tasks across how many %sdays: "
  8244. (if arg "week" "")) 7)))
  8245. (setq cmd
  8246. `(let ((distance (1+ (random ,days))))
  8247. (if arg
  8248. (let ((dist distance)
  8249. (day-of-week
  8250. (calendar-day-of-week
  8251. (calendar-gregorian-from-absolute (org-today)))))
  8252. (dotimes (i (1+ dist))
  8253. (while (member day-of-week org-agenda-weekend-days)
  8254. (incf distance)
  8255. (incf day-of-week)
  8256. (if (= day-of-week 7)
  8257. (setq day-of-week 0)))
  8258. (incf day-of-week)
  8259. (if (= day-of-week 7)
  8260. (setq day-of-week 0)))))
  8261. ;; silently fail when try to replan a sexp entry
  8262. (condition-case nil
  8263. (let* ((date (calendar-gregorian-from-absolute
  8264. (+ (org-today) distance)))
  8265. (time (encode-time 0 0 0 (nth 1 date) (nth 0 date)
  8266. (nth 2 date))))
  8267. (org-agenda-schedule nil time))
  8268. (error nil)))))))
  8269. ((assoc action org-agenda-bulk-custom-functions)
  8270. (setq cmd (list (cadr (assoc action org-agenda-bulk-custom-functions)))
  8271. redo-at-end t))
  8272. ((equal action ?f)
  8273. (setq cmd (list (intern
  8274. (org-icompleting-read "Function: "
  8275. obarray 'fboundp t nil nil)))))
  8276. (t (error "Invalid bulk action")))
  8277. ;; Sort the markers, to make sure that parents are handled before children
  8278. (setq entries (sort entries
  8279. (lambda (a b)
  8280. (cond
  8281. ((equal (marker-buffer a) (marker-buffer b))
  8282. (< (marker-position a) (marker-position b)))
  8283. (t
  8284. (string< (buffer-name (marker-buffer a))
  8285. (buffer-name (marker-buffer b))))))))
  8286. ;; Now loop over all markers and apply cmd
  8287. (while (setq e (pop entries))
  8288. (setq pos (text-property-any (point-min) (point-max) 'org-hd-marker e))
  8289. (if (not pos)
  8290. (progn (message "Skipping removed entry at %s" e)
  8291. (setq cntskip (1+ cntskip)))
  8292. (goto-char pos)
  8293. (let (org-loop-over-headlines-in-active-region)
  8294. (eval cmd))
  8295. (when (not org-agenda-persistent-marks)
  8296. (setq org-agenda-bulk-marked-entries
  8297. (delete e org-agenda-bulk-marked-entries)))
  8298. (setq cnt (1+ cnt))))
  8299. (when (not org-agenda-persistent-marks)
  8300. (org-agenda-bulk-unmark-all))
  8301. (when redo-at-end (org-agenda-redo))
  8302. (message "Acted on %d entries%s%s"
  8303. cnt
  8304. (if (= cntskip 0)
  8305. ""
  8306. (format ", skipped %d (disappeared before their turn)"
  8307. cntskip))
  8308. (if (not org-agenda-persistent-marks)
  8309. "" " (kept marked)"))))))
  8310. ;;; Flagging notes
  8311. (defun org-agenda-show-the-flagging-note ()
  8312. "Display the flagging note in the other window.
  8313. When called a second time in direct sequence, offer to remove the FLAGGING
  8314. tag and (if present) the flagging note."
  8315. (interactive)
  8316. (let ((hdmarker (org-get-at-bol 'org-hd-marker))
  8317. (win (selected-window))
  8318. note heading newhead)
  8319. (unless hdmarker
  8320. (error "No linked entry at point"))
  8321. (if (and (eq this-command last-command)
  8322. (y-or-n-p "Unflag and remove any flagging note? "))
  8323. (progn
  8324. (org-agenda-remove-flag hdmarker)
  8325. (let ((win (get-buffer-window "*Flagging Note*")))
  8326. (and win (delete-window win)))
  8327. (message "Entry unflagged"))
  8328. (setq note (org-entry-get hdmarker "THEFLAGGINGNOTE"))
  8329. (unless note
  8330. (error "No flagging note"))
  8331. (org-kill-new note)
  8332. (org-switch-to-buffer-other-window "*Flagging Note*")
  8333. (erase-buffer)
  8334. (insert note)
  8335. (goto-char (point-min))
  8336. (while (re-search-forward "\\\\n" nil t)
  8337. (replace-match "\n" t t))
  8338. (goto-char (point-min))
  8339. (select-window win)
  8340. (message "Flagging note pushed to kill ring. Press [?] again to remove tag and note"))))
  8341. (defun org-agenda-remove-flag (marker)
  8342. "Remove the FLAGGED tag and any flagging note in the entry."
  8343. (let (newhead)
  8344. (org-with-point-at marker
  8345. (org-toggle-tag "FLAGGED" 'off)
  8346. (org-entry-delete nil "THEFLAGGINGNOTE")
  8347. (setq newhead (org-get-heading)))
  8348. (org-agenda-change-all-lines newhead marker)
  8349. (message "Entry unflagged")))
  8350. (defun org-agenda-get-any-marker (&optional pos)
  8351. (or (get-text-property (or pos (point-at-bol)) 'org-hd-marker)
  8352. (get-text-property (or pos (point-at-bol)) 'org-marker)))
  8353. ;;; Appointment reminders
  8354. (defvar appt-time-msg-list)
  8355. ;;;###autoload
  8356. (defun org-agenda-to-appt (&optional refresh filter &rest args)
  8357. "Activate appointments found in `org-agenda-files'.
  8358. With a \\[universal-argument] prefix, refresh the list of
  8359. appointments.
  8360. If FILTER is t, interactively prompt the user for a regular
  8361. expression, and filter out entries that don't match it.
  8362. If FILTER is a string, use this string as a regular expression
  8363. for filtering entries out.
  8364. If FILTER is a function, filter out entries against which
  8365. calling the function returns nil. This function takes one
  8366. argument: an entry from `org-agenda-get-day-entries'.
  8367. FILTER can also be an alist with the car of each cell being
  8368. either 'headline or 'category. For example:
  8369. '((headline \"IMPORTANT\")
  8370. (category \"Work\"))
  8371. will only add headlines containing IMPORTANT or headlines
  8372. belonging to the \"Work\" category.
  8373. ARGS are symbols indicating what kind of entries to consider.
  8374. By default `org-agenda-to-appt' will use :deadline, :scheduled
  8375. and :timestamp entries. See the docstring of `org-diary' for
  8376. details and examples.
  8377. If an entry as a APPT_WARNTIME property, its value will be used
  8378. to override `appt-message-warning-time'."
  8379. (interactive "P")
  8380. (if refresh (setq appt-time-msg-list nil))
  8381. (if (eq filter t)
  8382. (setq filter (read-from-minibuffer "Regexp filter: ")))
  8383. (let* ((cnt 0) ; count added events
  8384. (scope (or args '(:deadline :scheduled :timestamp)))
  8385. (org-agenda-new-buffers nil)
  8386. (org-deadline-warning-days 0)
  8387. ;; Do not use `org-today' here because appt only takes
  8388. ;; time and without date as argument, so it may pass wrong
  8389. ;; information otherwise
  8390. (today (org-date-to-gregorian
  8391. (time-to-days (current-time))))
  8392. (org-agenda-restrict nil)
  8393. (files (org-agenda-files 'unrestricted)) entries file
  8394. (org-agenda-buffer nil))
  8395. ;; Get all entries which may contain an appt
  8396. (org-prepare-agenda-buffers files)
  8397. (while (setq file (pop files))
  8398. (setq entries
  8399. (delq nil
  8400. (append entries
  8401. (apply 'org-agenda-get-day-entries
  8402. file today scope)))))
  8403. ;; Map thru entries and find if we should filter them out
  8404. (mapc
  8405. (lambda(x)
  8406. (let* ((evt (org-trim (or (get-text-property 1 'txt x) "")))
  8407. (cat (get-text-property 1 'org-category x))
  8408. (tod (get-text-property 1 'time-of-day x))
  8409. (ok (or (null filter)
  8410. (and (stringp filter) (string-match filter evt))
  8411. (and (functionp filter) (funcall filter x))
  8412. (and (listp filter)
  8413. (let ((cat-filter (cadr (assoc 'category filter)))
  8414. (evt-filter (cadr (assoc 'headline filter))))
  8415. (or (and (stringp cat-filter)
  8416. (string-match cat-filter cat))
  8417. (and (stringp evt-filter)
  8418. (string-match evt-filter evt)))))))
  8419. (wrn (org-entry-get (point) "APPT_WARNTIME")))
  8420. ;; FIXME: Shall we remove text-properties for the appt text?
  8421. ;; (setq evt (set-text-properties 0 (length evt) nil evt))
  8422. (when (and ok tod)
  8423. (setq tod (concat "00" (number-to-string tod))
  8424. tod (when (string-match
  8425. "\\([0-9]\\{1,2\\}\\)\\([0-9]\\{2\\}\\)\\'" tod)
  8426. (concat (match-string 1 tod) ":"
  8427. (match-string 2 tod))))
  8428. (if (version< emacs-version "23.3")
  8429. (appt-add tod evt)
  8430. (appt-add tod evt wrn))
  8431. (setq cnt (1+ cnt))))) entries)
  8432. (org-release-buffers org-agenda-new-buffers)
  8433. (if (eq cnt 0)
  8434. (message "No event to add")
  8435. (message "Added %d event%s for today" cnt (if (> cnt 1) "s" "")))))
  8436. (defun org-agenda-todayp (date)
  8437. "Does DATE mean today, when considering `org-extend-today-until'?"
  8438. (let ((today (org-today))
  8439. (date (if (and date (listp date)) (calendar-absolute-from-gregorian date)
  8440. date)))
  8441. (eq date today)))
  8442. (defun org-agenda-todo-yesterday (&optional arg)
  8443. "Like `org-agenda-todo' but the time of change will be 23:59 of yesterday."
  8444. (interactive "P")
  8445. (let* ((hour (third (decode-time
  8446. (org-current-time))))
  8447. (org-extend-today-until (1+ hour)))
  8448. (org-agenda-todo arg)))
  8449. (provide 'org-agenda)
  8450. ;;; org-agenda.el ends here