org-agenda.el 390 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108
  1. ;;; org-agenda.el --- Dynamic task and appointment lists for Org
  2. ;; Copyright (C) 2004-2014 Free Software Foundation, Inc.
  3. ;; Author: Carsten Dominik <carsten at orgmode dot org>
  4. ;; Keywords: outlines, hypermedia, calendar, wp
  5. ;; Homepage: http://orgmode.org
  6. ;;
  7. ;; This file is part of GNU Emacs.
  8. ;;
  9. ;; GNU Emacs is free software: you can redistribute it and/or modify
  10. ;; it under the terms of the GNU General Public License as published by
  11. ;; the Free Software Foundation, either version 3 of the License, or
  12. ;; (at your option) any later version.
  13. ;; GNU Emacs is distributed in the hope that it will be useful,
  14. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. ;; GNU General Public License for more details.
  17. ;; You should have received a copy of the GNU General Public License
  18. ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
  19. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  20. ;;
  21. ;;; Commentary:
  22. ;; This file contains the code for creating and using the Agenda for Org-mode.
  23. ;;
  24. ;; The functions `org-batch-agenda', `org-batch-agenda-csv', and
  25. ;; `org-batch-store-agenda-views' are implemented as macros to provide
  26. ;; a convenient way for extracting agenda information from the command
  27. ;; line. The Lisp does not evaluate parameters of a macro call; thus
  28. ;; it is not necessary to quote the parameters passed to one of those
  29. ;; functions. E.g. you can write:
  30. ;;
  31. ;; emacs -batch -l ~/.emacs -eval '(org-batch-agenda "a" org-agenda-span 7)'
  32. ;;
  33. ;; To export an agenda spanning 7 days. If `org-batch-agenda' would
  34. ;; have been implemented as a regular function you'd have to quote the
  35. ;; symbol org-agenda-span. Moreover: To use a symbol as parameter
  36. ;; value you would have to double quote the symbol.
  37. ;;
  38. ;; This is a hack, but it works even when running Org byte-compiled.
  39. ;;
  40. ;;; Code:
  41. (require 'org)
  42. (require 'org-macs)
  43. (eval-when-compile
  44. (require 'cl))
  45. (declare-function diary-add-to-list "diary-lib"
  46. (date string specifier &optional marker globcolor literal))
  47. (declare-function calendar-absolute-from-iso "cal-iso" (date))
  48. (declare-function calendar-astro-date-string "cal-julian" (&optional date))
  49. (declare-function calendar-bahai-date-string "cal-bahai" (&optional date))
  50. (declare-function calendar-chinese-date-string "cal-china" (&optional date))
  51. (declare-function calendar-coptic-date-string "cal-coptic" (&optional date))
  52. (declare-function calendar-ethiopic-date-string "cal-coptic" (&optional date))
  53. (declare-function calendar-french-date-string "cal-french" (&optional date))
  54. (declare-function calendar-goto-date "cal-move" (date))
  55. (declare-function calendar-hebrew-date-string "cal-hebrew" (&optional date))
  56. (declare-function calendar-islamic-date-string "cal-islam" (&optional date))
  57. (declare-function calendar-iso-date-string "cal-iso" (&optional date))
  58. (declare-function calendar-iso-from-absolute "cal-iso" (date))
  59. (declare-function calendar-julian-date-string "cal-julian" (&optional date))
  60. (declare-function calendar-mayan-date-string "cal-mayan" (&optional date))
  61. (declare-function calendar-persian-date-string "cal-persia" (&optional date))
  62. (declare-function calendar-check-holidays "holidays" (date))
  63. (declare-function org-datetree-find-date-create "org-datetree"
  64. (date &optional keep-restriction))
  65. (declare-function org-columns-quit "org-colview" ())
  66. (declare-function diary-date-display-form "diary-lib" (&optional type))
  67. (declare-function org-mobile-write-agenda-for-mobile "org-mobile" (file))
  68. (declare-function org-habit-insert-consistency-graphs
  69. "org-habit" (&optional line))
  70. (declare-function org-is-habit-p "org-habit" (&optional pom))
  71. (declare-function org-habit-parse-todo "org-habit" (&optional pom))
  72. (declare-function org-habit-get-priority "org-habit" (habit &optional moment))
  73. (declare-function org-pop-to-buffer-same-window "org-compat"
  74. (&optional buffer-or-name norecord label))
  75. (declare-function org-agenda-columns "org-colview" ())
  76. (declare-function org-add-archive-files "org-archive" (files))
  77. (declare-function org-capture "org-capture" (&optional goto keys))
  78. (defvar calendar-mode-map) ; defined in calendar.el
  79. (defvar org-clock-current-task nil) ; defined in org-clock.el
  80. (defvar org-mobile-force-id-on-agenda-items) ; defined in org-mobile.el
  81. (defvar org-habit-show-habits) ; defined in org-habit.el
  82. (defvar org-habit-show-habits-only-for-today)
  83. (defvar org-habit-show-all-today)
  84. ;; Defined somewhere in this file, but used before definition.
  85. (defvar org-agenda-buffer-name "*Org Agenda*")
  86. (defvar org-agenda-overriding-header nil)
  87. (defvar org-agenda-title-append nil)
  88. (org-no-warnings (defvar entry)) ;; unprefixed, from calendar.el
  89. (org-no-warnings (defvar date)) ;; unprefixed, from calendar.el
  90. (defvar original-date) ; dynamically scoped, calendar.el does scope this
  91. (defvar org-agenda-undo-list nil
  92. "List of undoable operations in the agenda since last refresh.")
  93. (defvar org-agenda-pending-undo-list nil
  94. "In a series of undo commands, this is the list of remaining undo items.")
  95. (defcustom org-agenda-confirm-kill 1
  96. "When set, remote killing from the agenda buffer needs confirmation.
  97. When t, a confirmation is always needed. When a number N, confirmation is
  98. only needed when the text to be killed contains more than N non-white lines."
  99. :group 'org-agenda
  100. :type '(choice
  101. (const :tag "Never" nil)
  102. (const :tag "Always" t)
  103. (integer :tag "When more than N lines")))
  104. (defcustom org-agenda-compact-blocks nil
  105. "Non-nil means make the block agenda more compact.
  106. This is done globally by leaving out lines like the agenda span
  107. name and week number or the separator lines."
  108. :group 'org-agenda
  109. :type 'boolean)
  110. (defcustom org-agenda-block-separator ?=
  111. "The separator between blocks in the agenda.
  112. If this is a string, it will be used as the separator, with a newline added.
  113. If it is a character, it will be repeated to fill the window width.
  114. If nil the separator is disabled. In `org-agenda-custom-commands' this
  115. addresses the separator between the current and the previous block."
  116. :group 'org-agenda
  117. :type '(choice
  118. (const :tag "Disabled" nil)
  119. (character)
  120. (string)))
  121. (defgroup org-agenda-export nil
  122. "Options concerning exporting agenda views in Org-mode."
  123. :tag "Org Agenda Export"
  124. :group 'org-agenda)
  125. (defcustom org-agenda-with-colors t
  126. "Non-nil means use colors in agenda views."
  127. :group 'org-agenda-export
  128. :type 'boolean)
  129. (defcustom org-agenda-exporter-settings nil
  130. "Alist of variable/value pairs that should be active during agenda export.
  131. This is a good place to set options for ps-print and for htmlize.
  132. Note that the way this is implemented, the values will be evaluated
  133. before assigned to the variables. So make sure to quote values you do
  134. *not* want evaluated, for example
  135. (setq org-agenda-exporter-settings
  136. '((ps-print-color-p 'black-white)))"
  137. :group 'org-agenda-export
  138. :type '(repeat
  139. (list
  140. (variable)
  141. (sexp :tag "Value"))))
  142. (defcustom org-agenda-before-write-hook '(org-agenda-add-entry-text)
  143. "Hook run in a temporary buffer before writing the agenda to an export file.
  144. A useful function for this hook is `org-agenda-add-entry-text'."
  145. :group 'org-agenda-export
  146. :type 'hook
  147. :options '(org-agenda-add-entry-text))
  148. (defcustom org-agenda-add-entry-text-maxlines 0
  149. "Maximum number of entry text lines to be added to agenda.
  150. This is only relevant when `org-agenda-add-entry-text' is part of
  151. `org-agenda-before-write-hook', which is the default.
  152. When this is 0, nothing will happen. When it is greater than 0, it
  153. specifies the maximum number of lines that will be added for each entry
  154. that is listed in the agenda view.
  155. Note that this variable is not used during display, only when exporting
  156. the agenda. For agenda display, see the variables `org-agenda-entry-text-mode'
  157. and `org-agenda-entry-text-maxlines'."
  158. :group 'org-agenda
  159. :type 'integer)
  160. (defcustom org-agenda-add-entry-text-descriptive-links t
  161. "Non-nil means export org-links as descriptive links in agenda added text.
  162. This variable applies to the text added to the agenda when
  163. `org-agenda-add-entry-text-maxlines' is larger than 0.
  164. When this variable nil, the URL will (also) be shown."
  165. :group 'org-agenda
  166. :type 'boolean)
  167. (defcustom org-agenda-export-html-style nil
  168. "The style specification for exported HTML Agenda files.
  169. If this variable contains a string, it will replace the default <style>
  170. section as produced by `htmlize'.
  171. Since there are different ways of setting style information, this variable
  172. needs to contain the full HTML structure to provide a style, including the
  173. surrounding HTML tags. The style specifications should include definitions
  174. the fonts used by the agenda, here is an example:
  175. <style type=\"text/css\">
  176. p { font-weight: normal; color: gray; }
  177. .org-agenda-structure {
  178. font-size: 110%;
  179. color: #003399;
  180. font-weight: 600;
  181. }
  182. .org-todo {
  183. color: #cc6666;
  184. font-weight: bold;
  185. }
  186. .org-agenda-done {
  187. color: #339933;
  188. }
  189. .org-done {
  190. color: #339933;
  191. }
  192. .title { text-align: center; }
  193. .todo, .deadline { color: red; }
  194. .done { color: green; }
  195. </style>
  196. or, if you want to keep the style in a file,
  197. <link rel=\"stylesheet\" type=\"text/css\" href=\"mystyles.css\">
  198. As the value of this option simply gets inserted into the HTML <head> header,
  199. you can \"misuse\" it to also add other text to the header."
  200. :group 'org-agenda-export
  201. :group 'org-export-html
  202. :type '(choice
  203. (const nil)
  204. (string)))
  205. (defcustom org-agenda-persistent-filter nil
  206. "When set, keep filters from one agenda view to the next."
  207. :group 'org-agenda
  208. :type 'boolean)
  209. (defgroup org-agenda-custom-commands nil
  210. "Options concerning agenda views in Org-mode."
  211. :tag "Org Agenda Custom Commands"
  212. :group 'org-agenda)
  213. (defconst org-sorting-choice
  214. '(choice
  215. (const time-up) (const time-down)
  216. (const timestamp-up) (const timestamp-down)
  217. (const scheduled-up) (const scheduled-down)
  218. (const deadline-up) (const deadline-down)
  219. (const ts-up) (const ts-down)
  220. (const tsia-up) (const tsia-down)
  221. (const category-keep) (const category-up) (const category-down)
  222. (const tag-down) (const tag-up)
  223. (const priority-up) (const priority-down)
  224. (const todo-state-up) (const todo-state-down)
  225. (const effort-up) (const effort-down)
  226. (const habit-up) (const habit-down)
  227. (const alpha-up) (const alpha-down)
  228. (const user-defined-up) (const user-defined-down))
  229. "Sorting choices.")
  230. ;; Keep custom values for `org-agenda-filter-preset' compatible with
  231. ;; the new variable `org-agenda-tag-filter-preset'.
  232. (org-defvaralias 'org-agenda-filter-preset 'org-agenda-tag-filter-preset)
  233. (org-defvaralias 'org-agenda-filter 'org-agenda-tag-filter)
  234. (defvar org-agenda-entry-types '(:deadline :scheduled :timestamp :sexp)
  235. "List of types searched for when creating the daily/weekly agenda.
  236. This variable is a list of symbols that controls the types of
  237. items that appear in the daily/weekly agenda. Allowed symbols in this
  238. list are are
  239. :timestamp List items containing a date stamp or date range matching
  240. the selected date. This includes sexp entries in angular
  241. brackets.
  242. :sexp List entries resulting from plain diary-like sexps.
  243. :deadline List deadline due on that date. When the date is today,
  244. also list any deadlines past due, or due within
  245. `org-deadline-warning-days'. `:deadline' must appear before
  246. `:scheduled' if the setting of
  247. `org-agenda-skip-scheduled-if-deadline-is-shown' is to have
  248. any effect.
  249. :deadline* Same as above, but only include the deadline if it has an
  250. hour specification as [h]h:mm.
  251. :scheduled List all items which are scheduled for the given date.
  252. The diary for *today* also contains items which were
  253. scheduled earlier and are not yet marked DONE.
  254. :scheduled* Same as above, but only include the scheduled item if it
  255. has an hour specification as [h]h:mm.
  256. By default, all four non-starred types are turned on.
  257. When :scheduled* or :deadline* are included, :schedule or :deadline
  258. will be ignored.
  259. Never set this variable globally using `setq', because then it
  260. will apply to all future agenda commands. Instead, bind it with
  261. `let' to scope it dynamically into the agenda-constructing
  262. command. A good way to set it is through options in
  263. `org-agenda-custom-commands'. For a more flexible (though
  264. somewhat less efficient) way of determining what is included in
  265. the daily/weekly agenda, see `org-agenda-skip-function'.")
  266. (defconst org-agenda-custom-commands-local-options
  267. `(repeat :tag "Local settings for this command. Remember to quote values"
  268. (choice :tag "Setting"
  269. (list :tag "Heading for this block"
  270. (const org-agenda-overriding-header)
  271. (string :tag "Headline"))
  272. (list :tag "Files to be searched"
  273. (const org-agenda-files)
  274. (list
  275. (const :format "" quote)
  276. (repeat (file))))
  277. (list :tag "Sorting strategy"
  278. (const org-agenda-sorting-strategy)
  279. (list
  280. (const :format "" quote)
  281. (repeat
  282. ,org-sorting-choice)))
  283. (list :tag "Prefix format"
  284. (const org-agenda-prefix-format :value " %-12:c%?-12t% s")
  285. (string))
  286. (list :tag "Number of days in agenda"
  287. (const org-agenda-span)
  288. (choice (const :tag "Day" day)
  289. (const :tag "Week" week)
  290. (const :tag "Fortnight" fortnight)
  291. (const :tag "Month" month)
  292. (const :tag "Year" year)
  293. (integer :tag "Custom")))
  294. (list :tag "Fixed starting date"
  295. (const org-agenda-start-day)
  296. (string :value "2007-11-01"))
  297. (list :tag "Start on day of week"
  298. (const org-agenda-start-on-weekday)
  299. (choice :value 1
  300. (const :tag "Today" nil)
  301. (integer :tag "Weekday No.")))
  302. (list :tag "Include data from diary"
  303. (const org-agenda-include-diary)
  304. (boolean))
  305. (list :tag "Deadline Warning days"
  306. (const org-deadline-warning-days)
  307. (integer :value 1))
  308. (list :tag "Category filter preset"
  309. (const org-agenda-category-filter-preset)
  310. (list
  311. (const :format "" quote)
  312. (repeat
  313. (string :tag "+category or -category"))))
  314. (list :tag "Tags filter preset"
  315. (const org-agenda-tag-filter-preset)
  316. (list
  317. (const :format "" quote)
  318. (repeat
  319. (string :tag "+tag or -tag"))))
  320. (list :tag "Regexp filter preset"
  321. (const org-agenda-regexp-filter-preset)
  322. (list
  323. (const :format "" quote)
  324. (repeat
  325. (string :tag "+regexp or -regexp"))))
  326. (list :tag "Set daily/weekly entry types"
  327. (const org-agenda-entry-types)
  328. (list
  329. (const :format "" quote)
  330. (set :greedy t :value ,org-agenda-entry-types
  331. (const :deadline)
  332. (const :scheduled)
  333. (const :deadline*)
  334. (const :scheduled*)
  335. (const :timestamp)
  336. (const :sexp))))
  337. (list :tag "Standard skipping condition"
  338. :value (org-agenda-skip-function '(org-agenda-skip-entry-if))
  339. (const org-agenda-skip-function)
  340. (list
  341. (const :format "" quote)
  342. (list
  343. (choice
  344. :tag "Skipping range"
  345. (const :tag "Skip entry" org-agenda-skip-entry-if)
  346. (const :tag "Skip subtree" org-agenda-skip-subtree-if))
  347. (repeat :inline t :tag "Conditions for skipping"
  348. (choice
  349. :tag "Condition type"
  350. (list :tag "Regexp matches" :inline t (const :format "" regexp) (regexp))
  351. (list :tag "Regexp does not match" :inline t (const :format "" notregexp) (regexp))
  352. (list :tag "TODO state is" :inline t
  353. (const todo)
  354. (choice
  355. (const :tag "any not-done state" todo)
  356. (const :tag "any done state" done)
  357. (const :tag "any state" any)
  358. (list :tag "Keyword list"
  359. (const :format "" quote)
  360. (repeat (string :tag "Keyword")))))
  361. (list :tag "TODO state is not" :inline t
  362. (const nottodo)
  363. (choice
  364. (const :tag "any not-done state" todo)
  365. (const :tag "any done state" done)
  366. (const :tag "any state" any)
  367. (list :tag "Keyword list"
  368. (const :format "" quote)
  369. (repeat (string :tag "Keyword")))))
  370. (const :tag "scheduled" scheduled)
  371. (const :tag "not scheduled" notscheduled)
  372. (const :tag "deadline" deadline)
  373. (const :tag "no deadline" notdeadline)
  374. (const :tag "timestamp" timestamp)
  375. (const :tag "no timestamp" nottimestamp))))))
  376. (list :tag "Non-standard skipping condition"
  377. :value (org-agenda-skip-function)
  378. (const org-agenda-skip-function)
  379. (sexp :tag "Function or form (quoted!)"))
  380. (list :tag "Any variable"
  381. (variable :tag "Variable")
  382. (sexp :tag "Value (sexp)"))))
  383. "Selection of examples for agenda command settings.
  384. This will be spliced into the custom type of
  385. `org-agenda-custom-commands'.")
  386. (defcustom org-agenda-custom-commands
  387. '(("n" "Agenda and all TODO's" ((agenda "") (alltodo ""))))
  388. "Custom commands for the agenda.
  389. These commands will be offered on the splash screen displayed by the
  390. agenda dispatcher \\[org-agenda]. Each entry is a list like this:
  391. (key desc type match settings files)
  392. key The key (one or more characters as a string) to be associated
  393. with the command.
  394. desc A description of the command, when omitted or nil, a default
  395. description is built using MATCH.
  396. type The command type, any of the following symbols:
  397. agenda The daily/weekly agenda.
  398. todo Entries with a specific TODO keyword, in all agenda files.
  399. search Entries containing search words entry or headline.
  400. tags Tags/Property/TODO match in all agenda files.
  401. tags-todo Tags/P/T match in all agenda files, TODO entries only.
  402. todo-tree Sparse tree of specific TODO keyword in *current* file.
  403. tags-tree Sparse tree with all tags matches in *current* file.
  404. occur-tree Occur sparse tree for *current* file.
  405. ... A user-defined function.
  406. match What to search for:
  407. - a single keyword for TODO keyword searches
  408. - a tags match expression for tags searches
  409. - a word search expression for text searches.
  410. - a regular expression for occur searches
  411. For all other commands, this should be the empty string.
  412. settings A list of option settings, similar to that in a let form, so like
  413. this: ((opt1 val1) (opt2 val2) ...). The values will be
  414. evaluated at the moment of execution, so quote them when needed.
  415. files A list of files file to write the produced agenda buffer to
  416. with the command `org-store-agenda-views'.
  417. If a file name ends in \".html\", an HTML version of the buffer
  418. is written out. If it ends in \".ps\", a postscript version is
  419. produced. Otherwise, only the plain text is written to the file.
  420. You can also define a set of commands, to create a composite agenda buffer.
  421. In this case, an entry looks like this:
  422. (key desc (cmd1 cmd2 ...) general-settings-for-whole-set files)
  423. where
  424. desc A description string to be displayed in the dispatcher menu.
  425. cmd An agenda command, similar to the above. However, tree commands
  426. are not allowed, but instead you can get agenda and global todo list.
  427. So valid commands for a set are:
  428. (agenda \"\" settings)
  429. (alltodo \"\" settings)
  430. (stuck \"\" settings)
  431. (todo \"match\" settings files)
  432. (search \"match\" settings files)
  433. (tags \"match\" settings files)
  434. (tags-todo \"match\" settings files)
  435. Each command can carry a list of options, and another set of options can be
  436. given for the whole set of commands. Individual command options take
  437. precedence over the general options.
  438. When using several characters as key to a command, the first characters
  439. are prefix commands. For the dispatcher to display useful information, you
  440. should provide a description for the prefix, like
  441. (setq org-agenda-custom-commands
  442. '((\"h\" . \"HOME + Name tag searches\") ; describe prefix \"h\"
  443. (\"hl\" tags \"+HOME+Lisa\")
  444. (\"hp\" tags \"+HOME+Peter\")
  445. (\"hk\" tags \"+HOME+Kim\")))"
  446. :group 'org-agenda-custom-commands
  447. :type `(repeat
  448. (choice :value ("x" "Describe command here" tags "" nil)
  449. (list :tag "Single command"
  450. (string :tag "Access Key(s) ")
  451. (option (string :tag "Description"))
  452. (choice
  453. (const :tag "Agenda" agenda)
  454. (const :tag "TODO list" alltodo)
  455. (const :tag "Search words" search)
  456. (const :tag "Stuck projects" stuck)
  457. (const :tag "Tags/Property match (all agenda files)" tags)
  458. (const :tag "Tags/Property match of TODO entries (all agenda files)" tags-todo)
  459. (const :tag "TODO keyword search (all agenda files)" todo)
  460. (const :tag "Tags sparse tree (current buffer)" tags-tree)
  461. (const :tag "TODO keyword tree (current buffer)" todo-tree)
  462. (const :tag "Occur tree (current buffer)" occur-tree)
  463. (sexp :tag "Other, user-defined function"))
  464. (string :tag "Match (only for some commands)")
  465. ,org-agenda-custom-commands-local-options
  466. (option (repeat :tag "Export" (file :tag "Export to"))))
  467. (list :tag "Command series, all agenda files"
  468. (string :tag "Access Key(s)")
  469. (string :tag "Description ")
  470. (repeat :tag "Component"
  471. (choice
  472. (list :tag "Agenda"
  473. (const :format "" agenda)
  474. (const :tag "" :format "" "")
  475. ,org-agenda-custom-commands-local-options)
  476. (list :tag "TODO list (all keywords)"
  477. (const :format "" alltodo)
  478. (const :tag "" :format "" "")
  479. ,org-agenda-custom-commands-local-options)
  480. (list :tag "Search words"
  481. (const :format "" search)
  482. (string :tag "Match")
  483. ,org-agenda-custom-commands-local-options)
  484. (list :tag "Stuck projects"
  485. (const :format "" stuck)
  486. (const :tag "" :format "" "")
  487. ,org-agenda-custom-commands-local-options)
  488. (list :tag "Tags search"
  489. (const :format "" tags)
  490. (string :tag "Match")
  491. ,org-agenda-custom-commands-local-options)
  492. (list :tag "Tags search, TODO entries only"
  493. (const :format "" tags-todo)
  494. (string :tag "Match")
  495. ,org-agenda-custom-commands-local-options)
  496. (list :tag "TODO keyword search"
  497. (const :format "" todo)
  498. (string :tag "Match")
  499. ,org-agenda-custom-commands-local-options)
  500. (list :tag "Other, user-defined function"
  501. (symbol :tag "function")
  502. (string :tag "Match")
  503. ,org-agenda-custom-commands-local-options)))
  504. (repeat :tag "Settings for entire command set"
  505. (list (variable :tag "Any variable")
  506. (sexp :tag "Value")))
  507. (option (repeat :tag "Export" (file :tag "Export to"))))
  508. (cons :tag "Prefix key documentation"
  509. (string :tag "Access Key(s)")
  510. (string :tag "Description ")))))
  511. (defcustom org-agenda-query-register ?o
  512. "The register holding the current query string.
  513. The purpose of this is that if you construct a query string interactively,
  514. you can then use it to define a custom command."
  515. :group 'org-agenda-custom-commands
  516. :type 'character)
  517. (defcustom org-stuck-projects
  518. '("+LEVEL=2/-DONE" ("TODO" "NEXT" "NEXTACTION") nil "")
  519. "How to identify stuck projects.
  520. This is a list of four items:
  521. 1. A tags/todo/property matcher string that is used to identify a project.
  522. See the manual for a description of tag and property searches.
  523. The entire tree below a headline matched by this is considered one project.
  524. 2. A list of TODO keywords identifying non-stuck projects.
  525. If the project subtree contains any headline with one of these todo
  526. keywords, the project is considered to be not stuck. If you specify
  527. \"*\" as a keyword, any TODO keyword will mark the project unstuck.
  528. 3. A list of tags identifying non-stuck projects.
  529. If the project subtree contains any headline with one of these tags,
  530. the project is considered to be not stuck. If you specify \"*\" as
  531. a tag, any tag will mark the project unstuck. Note that this is about
  532. the explicit presence of a tag somewhere in the subtree, inherited
  533. tags do not count here. If inherited tags make a project not stuck,
  534. use \"-TAG\" in the tags part of the matcher under (1.) above.
  535. 4. An arbitrary regular expression matching non-stuck projects.
  536. If the project turns out to be not stuck, search continues also in the
  537. subtree to see if any of the subtasks have project status.
  538. See also the variable `org-tags-match-list-sublevels' which applies
  539. to projects matched by this search as well.
  540. After defining this variable, you may use \\[org-agenda-list-stuck-projects]
  541. or `C-c a #' to produce the list."
  542. :group 'org-agenda-custom-commands
  543. :type '(list
  544. (string :tag "Tags/TODO match to identify a project")
  545. (repeat :tag "Projects are *not* stuck if they have an entry with TODO keyword any of" (string))
  546. (repeat :tag "Projects are *not* stuck if they have an entry with TAG being any of" (string))
  547. (regexp :tag "Projects are *not* stuck if this regexp matches inside the subtree")))
  548. (defcustom org-agenda-filter-effort-default-operator "<"
  549. "The default operator for effort estimate filtering.
  550. If you select an effort estimate limit without first pressing an operator,
  551. this one will be used."
  552. :group 'org-agenda-custom-commands
  553. :type '(choice (const :tag "less or equal" "<")
  554. (const :tag "greater or equal"">")
  555. (const :tag "equal" "=")))
  556. (defgroup org-agenda-skip nil
  557. "Options concerning skipping parts of agenda files."
  558. :tag "Org Agenda Skip"
  559. :group 'org-agenda)
  560. (defcustom org-agenda-skip-function-global nil
  561. "Function to be called at each match during agenda construction.
  562. If this function returns nil, the current match should not be skipped.
  563. If the function decided to skip an agenda match, is must return the
  564. buffer position from which the search should be continued.
  565. This may also be a Lisp form, which will be evaluated.
  566. This variable will be applied to every agenda match, including
  567. tags/property searches and TODO lists. So try to make the test function
  568. do its checking as efficiently as possible. To implement a skipping
  569. condition just for specific agenda commands, use the variable
  570. `org-agenda-skip-function' which can be set in the options section
  571. of custom agenda commands."
  572. :group 'org-agenda-skip
  573. :type 'sexp)
  574. (defgroup org-agenda-daily/weekly nil
  575. "Options concerning the daily/weekly agenda."
  576. :tag "Org Agenda Daily/Weekly"
  577. :group 'org-agenda)
  578. (defgroup org-agenda-todo-list nil
  579. "Options concerning the global todo list agenda view."
  580. :tag "Org Agenda Todo List"
  581. :group 'org-agenda)
  582. (defgroup org-agenda-match-view nil
  583. "Options concerning the general tags/property/todo match agenda view."
  584. :tag "Org Agenda Match View"
  585. :group 'org-agenda)
  586. (defgroup org-agenda-search-view nil
  587. "Options concerning the general tags/property/todo match agenda view."
  588. :tag "Org Agenda Match View"
  589. :group 'org-agenda)
  590. (defvar org-agenda-archives-mode nil
  591. "Non-nil means the agenda will include archived items.
  592. If this is the symbol `trees', trees in the selected agenda scope
  593. that are marked with the ARCHIVE tag will be included anyway. When this is
  594. t, also all archive files associated with the current selection of agenda
  595. files will be included.")
  596. (defcustom org-agenda-restriction-lock-highlight-subtree t
  597. "Non-nil means highlight the whole subtree when restriction is active.
  598. Otherwise only highlight the headline. Highlighting the whole subtree is
  599. useful to ensure no edits happen beyond the restricted region."
  600. :group 'org-agenda
  601. :type 'boolean)
  602. (defcustom org-agenda-skip-comment-trees t
  603. "Non-nil means skip trees that start with the COMMENT keyword.
  604. When nil, these trees are also scanned by agenda commands."
  605. :group 'org-agenda-skip
  606. :type 'boolean)
  607. (defcustom org-agenda-todo-list-sublevels t
  608. "Non-nil means check also the sublevels of a TODO entry for TODO entries.
  609. When nil, the sublevels of a TODO entry are not checked, resulting in
  610. potentially much shorter TODO lists."
  611. :group 'org-agenda-skip
  612. :group 'org-agenda-todo-list
  613. :type 'boolean)
  614. (defcustom org-agenda-todo-ignore-with-date nil
  615. "Non-nil means don't show entries with a date in the global todo list.
  616. You can use this if you prefer to mark mere appointments with a TODO keyword,
  617. but don't want them to show up in the TODO list.
  618. When this is set, it also covers deadlines and scheduled items, the settings
  619. of `org-agenda-todo-ignore-scheduled' and `org-agenda-todo-ignore-deadlines'
  620. will be ignored.
  621. See also the variable `org-agenda-tags-todo-honor-ignore-options'."
  622. :group 'org-agenda-skip
  623. :group 'org-agenda-todo-list
  624. :type 'boolean)
  625. (defcustom org-agenda-todo-ignore-timestamp nil
  626. "Non-nil means don't show entries with a timestamp.
  627. This applies when creating the global todo list.
  628. Valid values are:
  629. past Don't show entries for today or in the past.
  630. future Don't show entries with a timestamp in the future.
  631. The idea behind this is that if it has a future
  632. timestamp, you don't want to think about it until the
  633. date.
  634. all Don't show any entries with a timestamp in the global todo list.
  635. The idea behind this is that by setting a timestamp, you
  636. have already \"taken care\" of this item.
  637. This variable can also have an integer as a value. If positive (N),
  638. todos with a timestamp N or more days in the future will be ignored. If
  639. negative (-N), todos with a timestamp N or more days in the past will be
  640. ignored. If 0, todos with a timestamp either today or in the future will
  641. be ignored. For example, a value of -1 will exclude todos with a
  642. timestamp in the past (yesterday or earlier), while a value of 7 will
  643. exclude todos with a timestamp a week or more in the future.
  644. See also `org-agenda-todo-ignore-with-date'.
  645. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  646. to make his option also apply to the tags-todo list."
  647. :group 'org-agenda-skip
  648. :group 'org-agenda-todo-list
  649. :version "24.1"
  650. :type '(choice
  651. (const :tag "Ignore future timestamp todos" future)
  652. (const :tag "Ignore past or present timestamp todos" past)
  653. (const :tag "Ignore all timestamp todos" all)
  654. (const :tag "Show timestamp todos" nil)
  655. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  656. (defcustom org-agenda-todo-ignore-scheduled nil
  657. "Non-nil means, ignore some scheduled TODO items when making TODO list.
  658. This applies when creating the global todo list.
  659. Valid values are:
  660. past Don't show entries scheduled today or in the past.
  661. future Don't show entries scheduled in the future.
  662. The idea behind this is that by scheduling it, you don't want to
  663. think about it until the scheduled date.
  664. all Don't show any scheduled entries in the global todo list.
  665. The idea behind this is that by scheduling it, you have already
  666. \"taken care\" of this item.
  667. t Same as `all', for backward compatibility.
  668. This variable can also have an integer as a value. See
  669. `org-agenda-todo-ignore-timestamp' for more details.
  670. See also `org-agenda-todo-ignore-with-date'.
  671. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  672. to make his option also apply to the tags-todo list."
  673. :group 'org-agenda-skip
  674. :group 'org-agenda-todo-list
  675. :type '(choice
  676. (const :tag "Ignore future-scheduled todos" future)
  677. (const :tag "Ignore past- or present-scheduled todos" past)
  678. (const :tag "Ignore all scheduled todos" all)
  679. (const :tag "Ignore all scheduled todos (compatibility)" t)
  680. (const :tag "Show scheduled todos" nil)
  681. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  682. (defcustom org-agenda-todo-ignore-deadlines nil
  683. "Non-nil means ignore some deadlined TODO items when making TODO list.
  684. There are different motivations for using different values, please think
  685. carefully when configuring this variable.
  686. This applies when creating the global todo list.
  687. Valid values are:
  688. near Don't show near deadline entries. A deadline is near when it is
  689. closer than `org-deadline-warning-days' days. The idea behind this
  690. is that such items will appear in the agenda anyway.
  691. far Don't show TODO entries where a deadline has been defined, but
  692. the deadline is not near. This is useful if you don't want to
  693. use the todo list to figure out what to do now.
  694. past Don't show entries with a deadline timestamp for today or in the past.
  695. future Don't show entries with a deadline timestamp in the future, not even
  696. when they become `near' ones. Use it with caution.
  697. all Ignore all TODO entries that do have a deadline.
  698. t Same as `near', for backward compatibility.
  699. This variable can also have an integer as a value. See
  700. `org-agenda-todo-ignore-timestamp' for more details.
  701. See also `org-agenda-todo-ignore-with-date'.
  702. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  703. to make his option also apply to the tags-todo list."
  704. :group 'org-agenda-skip
  705. :group 'org-agenda-todo-list
  706. :type '(choice
  707. (const :tag "Ignore near deadlines" near)
  708. (const :tag "Ignore near deadlines (compatibility)" t)
  709. (const :tag "Ignore far deadlines" far)
  710. (const :tag "Ignore all TODOs with a deadlines" all)
  711. (const :tag "Show all TODOs, even if they have a deadline" nil)
  712. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  713. (defcustom org-agenda-todo-ignore-time-comparison-use-seconds nil
  714. "Time unit to use when possibly ignoring an agenda item.
  715. See the docstring of various `org-agenda-todo-ignore-*' options.
  716. The default is to compare time stamps using days. An item is thus
  717. considered to be in the future if it is at least one day after today.
  718. Non-nil means to compare time stamps using seconds. An item is then
  719. considered future if it has a time value later than current time."
  720. :group 'org-agenda-skip
  721. :group 'org-agenda-todo-list
  722. :version "24.4"
  723. :package-version '(Org . "8.0")
  724. :type '(choice
  725. (const :tag "Compare time with days" nil)
  726. (const :tag "Compare time with seconds" t)))
  727. (defcustom org-agenda-tags-todo-honor-ignore-options nil
  728. "Non-nil means honor todo-list ignores options also in tags-todo search.
  729. The variables
  730. `org-agenda-todo-ignore-with-date',
  731. `org-agenda-todo-ignore-timestamp',
  732. `org-agenda-todo-ignore-scheduled',
  733. `org-agenda-todo-ignore-deadlines'
  734. make the global TODO list skip entries that have time stamps of certain
  735. kinds. If this option is set, the same options will also apply for the
  736. tags-todo search, which is the general tags/property matcher
  737. restricted to unfinished TODO entries only."
  738. :group 'org-agenda-skip
  739. :group 'org-agenda-todo-list
  740. :group 'org-agenda-match-view
  741. :type 'boolean)
  742. (defcustom org-agenda-skip-scheduled-if-done nil
  743. "Non-nil means don't show scheduled items in agenda when they are done.
  744. This is relevant for the daily/weekly agenda, not for the TODO list. And
  745. it applies only to the actual date of the scheduling. Warnings about
  746. an item with a past scheduling dates are always turned off when the item
  747. is DONE."
  748. :group 'org-agenda-skip
  749. :group 'org-agenda-daily/weekly
  750. :type 'boolean)
  751. (defcustom org-agenda-skip-scheduled-if-deadline-is-shown nil
  752. "Non-nil means skip scheduling line if same entry shows because of deadline.
  753. In the agenda of today, an entry can show up multiple times
  754. because it is both scheduled and has a nearby deadline, and maybe
  755. a plain time stamp as well.
  756. When this variable is nil, the entry will be shown several times.
  757. When set to t, then only the deadline is shown and the fact that
  758. the entry is scheduled today or was scheduled previously is not
  759. shown.
  760. When set to the symbol `not-today', skip scheduled previously,
  761. but not scheduled today.
  762. When set to the symbol `repeated-after-deadline', skip scheduled
  763. items if they are repeated beyond the current deadline."
  764. :group 'org-agenda-skip
  765. :group 'org-agenda-daily/weekly
  766. :type '(choice
  767. (const :tag "Never" nil)
  768. (const :tag "Always" t)
  769. (const :tag "Not when scheduled today" not-today)
  770. (const :tag "When repeated past deadline" repeated-after-deadline)))
  771. (defcustom org-agenda-skip-timestamp-if-deadline-is-shown nil
  772. "Non-nil means skip timestamp line if same entry shows because of deadline.
  773. In the agenda of today, an entry can show up multiple times
  774. because it has both a plain timestamp and has a nearby deadline.
  775. When this variable is t, then only the deadline is shown and the
  776. fact that the entry has a timestamp for or including today is not
  777. shown. When this variable is nil, the entry will be shown
  778. several times."
  779. :group 'org-agenda-skip
  780. :group 'org-agenda-daily/weekly
  781. :version "24.1"
  782. :type '(choice
  783. (const :tag "Never" nil)
  784. (const :tag "Always" t)))
  785. (defcustom org-agenda-skip-deadline-if-done nil
  786. "Non-nil means don't show deadlines when the corresponding item is done.
  787. When nil, the deadline is still shown and should give you a happy feeling.
  788. This is relevant for the daily/weekly agenda. And it applied only to the
  789. actually date of the deadline. Warnings about approaching and past-due
  790. deadlines are always turned off when the item is DONE."
  791. :group 'org-agenda-skip
  792. :group 'org-agenda-daily/weekly
  793. :type 'boolean)
  794. (defcustom org-agenda-skip-deadline-prewarning-if-scheduled nil
  795. "Non-nil means skip deadline prewarning when entry is also scheduled.
  796. This will apply on all days where a prewarning for the deadline would
  797. be shown, but not at the day when the entry is actually due. On that day,
  798. the deadline will be shown anyway.
  799. This variable may be set to nil, t, the symbol `pre-scheduled',
  800. or a number which will then give the number of days before the actual
  801. deadline when the prewarnings should resume. The symbol `pre-scheduled'
  802. eliminates the deadline prewarning only prior to the scheduled date.
  803. This can be used in a workflow where the first showing of the deadline will
  804. trigger you to schedule it, and then you don't want to be reminded of it
  805. because you will take care of it on the day when scheduled."
  806. :group 'org-agenda-skip
  807. :group 'org-agenda-daily/weekly
  808. :version "24.1"
  809. :type '(choice
  810. (const :tag "Always show prewarning" nil)
  811. (const :tag "Remove prewarning prior to scheduled date" pre-scheduled)
  812. (const :tag "Remove prewarning if entry is scheduled" t)
  813. (integer :tag "Restart prewarning N days before deadline")))
  814. (defcustom org-agenda-skip-scheduled-delay-if-deadline nil
  815. "Non-nil means skip scheduled delay when entry also has a deadline.
  816. This variable may be set to nil, t, the symbol `post-deadline',
  817. or a number which will then give the number of days after the actual
  818. scheduled date when the delay should expire. The symbol `post-deadline'
  819. eliminates the schedule delay when the date is posterior to the deadline."
  820. :group 'org-agenda-skip
  821. :group 'org-agenda-daily/weekly
  822. :version "24.4"
  823. :package-version '(Org . "8.0")
  824. :type '(choice
  825. (const :tag "Always honor delay" nil)
  826. (const :tag "Ignore delay if posterior to the deadline" post-deadline)
  827. (const :tag "Ignore delay if entry has a deadline" t)
  828. (integer :tag "Honor delay up until N days after the scheduled date")))
  829. (defcustom org-agenda-skip-additional-timestamps-same-entry nil
  830. "When nil, multiple same-day timestamps in entry make multiple agenda lines.
  831. When non-nil, after the search for timestamps has matched once in an
  832. entry, the rest of the entry will not be searched."
  833. :group 'org-agenda-skip
  834. :type 'boolean)
  835. (defcustom org-agenda-skip-timestamp-if-done nil
  836. "Non-nil means don't select item by timestamp or -range if it is DONE."
  837. :group 'org-agenda-skip
  838. :group 'org-agenda-daily/weekly
  839. :type 'boolean)
  840. (defcustom org-agenda-dim-blocked-tasks t
  841. "Non-nil means dim blocked tasks in the agenda display.
  842. This causes some overhead during agenda construction, but if you
  843. have turned on `org-enforce-todo-dependencies',
  844. `org-enforce-todo-checkbox-dependencies', or any other blocking
  845. mechanism, this will create useful feedback in the agenda.
  846. Instead of t, this variable can also have the value `invisible'.
  847. Then blocked tasks will be invisible and only become visible when
  848. they become unblocked. An exemption to this behavior is when a task is
  849. blocked because of unchecked checkboxes below it. Since checkboxes do
  850. not show up in the agenda views, making this task invisible you remove any
  851. trace from agenda views that there is something to do. Therefore, a task
  852. that is blocked because of checkboxes will never be made invisible, it
  853. will only be dimmed."
  854. :group 'org-agenda-daily/weekly
  855. :group 'org-agenda-todo-list
  856. :version "24.3"
  857. :type '(choice
  858. (const :tag "Do not dim" nil)
  859. (const :tag "Dim to a gray face" t)
  860. (const :tag "Make invisible" invisible)))
  861. (defcustom org-timeline-show-empty-dates 3
  862. "Non-nil means `org-timeline' also shows dates without an entry.
  863. When nil, only the days which actually have entries are shown.
  864. When t, all days between the first and the last date are shown.
  865. When an integer, show also empty dates, but if there is a gap of more than
  866. N days, just insert a special line indicating the size of the gap."
  867. :group 'org-agenda-skip
  868. :type '(choice
  869. (const :tag "None" nil)
  870. (const :tag "All" t)
  871. (integer :tag "at most")))
  872. (defgroup org-agenda-startup nil
  873. "Options concerning initial settings in the Agenda in Org Mode."
  874. :tag "Org Agenda Startup"
  875. :group 'org-agenda)
  876. (defcustom org-agenda-menu-show-matcher t
  877. "Non-nil means show the match string in the agenda dispatcher menu.
  878. When nil, the matcher string is not shown, but is put into the help-echo
  879. property so than moving the mouse over the command shows it.
  880. Setting it to nil is good if matcher strings are very long and/or if
  881. you want to use two-columns display (see `org-agenda-menu-two-columns')."
  882. :group 'org-agenda
  883. :version "24.1"
  884. :type 'boolean)
  885. (define-obsolete-variable-alias 'org-agenda-menu-two-column 'org-agenda-menu-two-columns "24.3")
  886. (defcustom org-agenda-menu-two-columns nil
  887. "Non-nil means, use two columns to show custom commands in the dispatcher.
  888. If you use this, you probably want to set `org-agenda-menu-show-matcher'
  889. to nil."
  890. :group 'org-agenda
  891. :version "24.1"
  892. :type 'boolean)
  893. (define-obsolete-variable-alias 'org-finalize-agenda-hook 'org-agenda-finalize-hook "24.3")
  894. (defcustom org-agenda-finalize-hook nil
  895. "Hook run just before displaying an agenda buffer.
  896. The buffer is still writable when the hook is called.
  897. You can modify some of the buffer substrings but you should be
  898. extra careful not to modify the text properties of the agenda
  899. headlines as the agenda display heavily relies on them."
  900. :group 'org-agenda-startup
  901. :type 'hook)
  902. (defcustom org-agenda-mouse-1-follows-link nil
  903. "Non-nil means mouse-1 on a link will follow the link in the agenda.
  904. A longer mouse click will still set point. Does not work on XEmacs.
  905. Needs to be set before org.el is loaded."
  906. :group 'org-agenda-startup
  907. :type 'boolean)
  908. (defcustom org-agenda-start-with-follow-mode nil
  909. "The initial value of follow mode in a newly created agenda window."
  910. :group 'org-agenda-startup
  911. :type 'boolean)
  912. (defcustom org-agenda-follow-indirect nil
  913. "Non-nil means `org-agenda-follow-mode' displays only the
  914. current item's tree, in an indirect buffer."
  915. :group 'org-agenda
  916. :version "24.1"
  917. :type 'boolean)
  918. (defcustom org-agenda-show-outline-path t
  919. "Non-nil means show outline path in echo area after line motion."
  920. :group 'org-agenda-startup
  921. :type 'boolean)
  922. (defcustom org-agenda-start-with-entry-text-mode nil
  923. "The initial value of entry-text-mode in a newly created agenda window."
  924. :group 'org-agenda-startup
  925. :type 'boolean)
  926. (defcustom org-agenda-entry-text-maxlines 5
  927. "Number of text lines to be added when `E' is pressed in the agenda.
  928. Note that this variable only used during agenda display. Add add entry text
  929. when exporting the agenda, configure the variable
  930. `org-agenda-add-entry-ext-maxlines'."
  931. :group 'org-agenda
  932. :type 'integer)
  933. (defcustom org-agenda-entry-text-exclude-regexps nil
  934. "List of regular expressions to clean up entry text.
  935. The complete matches of all regular expressions in this list will be
  936. removed from entry text before it is shown in the agenda."
  937. :group 'org-agenda
  938. :type '(repeat (regexp)))
  939. (defcustom org-agenda-entry-text-leaders " > "
  940. "Text prepended to the entry text in agenda buffers."
  941. :version "24.4"
  942. :package-version '(Org . "8.0")
  943. :group 'org-agenda
  944. :type 'string)
  945. (defvar org-agenda-entry-text-cleanup-hook nil
  946. "Hook that is run after basic cleanup of entry text to be shown in agenda.
  947. This cleanup is done in a temporary buffer, so the function may inspect and
  948. change the entire buffer.
  949. Some default stuff like drawers and scheduling/deadline dates will already
  950. have been removed when this is called, as will any matches for regular
  951. expressions listed in `org-agenda-entry-text-exclude-regexps'.")
  952. (defvar org-agenda-include-inactive-timestamps nil
  953. "Non-nil means include inactive time stamps in agenda and timeline.
  954. Dynamically scoped.")
  955. (defgroup org-agenda-windows nil
  956. "Options concerning the windows used by the Agenda in Org Mode."
  957. :tag "Org Agenda Windows"
  958. :group 'org-agenda)
  959. (defcustom org-agenda-window-setup 'reorganize-frame
  960. "How the agenda buffer should be displayed.
  961. Possible values for this option are:
  962. current-window Show agenda in the current window, keeping all other windows.
  963. other-window Use `switch-to-buffer-other-window' to display agenda.
  964. reorganize-frame Show only two windows on the current frame, the current
  965. window and the agenda.
  966. other-frame Use `switch-to-buffer-other-frame' to display agenda.
  967. Also, when exiting the agenda, kill that frame.
  968. See also the variable `org-agenda-restore-windows-after-quit'."
  969. :group 'org-agenda-windows
  970. :type '(choice
  971. (const current-window)
  972. (const other-frame)
  973. (const other-window)
  974. (const reorganize-frame)))
  975. (defcustom org-agenda-window-frame-fractions '(0.5 . 0.75)
  976. "The min and max height of the agenda window as a fraction of frame height.
  977. The value of the variable is a cons cell with two numbers between 0 and 1.
  978. It only matters if `org-agenda-window-setup' is `reorganize-frame'."
  979. :group 'org-agenda-windows
  980. :type '(cons (number :tag "Minimum") (number :tag "Maximum")))
  981. (defcustom org-agenda-restore-windows-after-quit nil
  982. "Non-nil means restore window configuration upon exiting agenda.
  983. Before the window configuration is changed for displaying the agenda,
  984. the current status is recorded. When the agenda is exited with
  985. `q' or `x' and this option is set, the old state is restored. If
  986. `org-agenda-window-setup' is `other-frame', the value of this
  987. option will be ignored."
  988. :group 'org-agenda-windows
  989. :type 'boolean)
  990. (defcustom org-agenda-ndays nil
  991. "Number of days to include in overview display.
  992. Should be 1 or 7.
  993. Obsolete, see `org-agenda-span'."
  994. :group 'org-agenda-daily/weekly
  995. :type '(choice (const nil)
  996. (integer)))
  997. (make-obsolete-variable 'org-agenda-ndays 'org-agenda-span "24.1")
  998. (defcustom org-agenda-span 'week
  999. "Number of days to include in overview display.
  1000. Can be day, week, month, year, or any number of days.
  1001. Custom commands can set this variable in the options section."
  1002. :group 'org-agenda-daily/weekly
  1003. :type '(choice (const :tag "Day" day)
  1004. (const :tag "Week" week)
  1005. (const :tag "Fortnight" fortnight)
  1006. (const :tag "Month" month)
  1007. (const :tag "Year" year)
  1008. (integer :tag "Custom")))
  1009. (defcustom org-agenda-start-on-weekday 1
  1010. "Non-nil means start the overview always on the specified weekday.
  1011. 0 denotes Sunday, 1 denotes Monday, etc.
  1012. When nil, always start on the current day.
  1013. Custom commands can set this variable in the options section."
  1014. :group 'org-agenda-daily/weekly
  1015. :type '(choice (const :tag "Today" nil)
  1016. (integer :tag "Weekday No.")))
  1017. (defcustom org-agenda-show-all-dates t
  1018. "Non-nil means `org-agenda' shows every day in the selected range.
  1019. When nil, only the days which actually have entries are shown."
  1020. :group 'org-agenda-daily/weekly
  1021. :type 'boolean)
  1022. (defcustom org-agenda-format-date 'org-agenda-format-date-aligned
  1023. "Format string for displaying dates in the agenda.
  1024. Used by the daily/weekly agenda and by the timeline. This should be
  1025. a format string understood by `format-time-string', or a function returning
  1026. the formatted date as a string. The function must take a single argument,
  1027. a calendar-style date list like (month day year)."
  1028. :group 'org-agenda-daily/weekly
  1029. :type '(choice
  1030. (string :tag "Format string")
  1031. (function :tag "Function")))
  1032. (defun org-agenda-format-date-aligned (date)
  1033. "Format a DATE string for display in the daily/weekly agenda, or timeline.
  1034. This function makes sure that dates are aligned for easy reading."
  1035. (require 'cal-iso)
  1036. (let* ((dayname (calendar-day-name date))
  1037. (day (cadr date))
  1038. (day-of-week (calendar-day-of-week date))
  1039. (month (car date))
  1040. (monthname (calendar-month-name month))
  1041. (year (nth 2 date))
  1042. (iso-week (org-days-to-iso-week
  1043. (calendar-absolute-from-gregorian date)))
  1044. (weekyear (cond ((and (= month 1) (>= iso-week 52))
  1045. (1- year))
  1046. ((and (= month 12) (<= iso-week 1))
  1047. (1+ year))
  1048. (t year)))
  1049. (weekstring (if (= day-of-week 1)
  1050. (format " W%02d" iso-week)
  1051. "")))
  1052. (format "%-10s %2d %s %4d%s"
  1053. dayname day monthname year weekstring)))
  1054. (defcustom org-agenda-time-leading-zero nil
  1055. "Non-nil means use leading zero for military times in agenda.
  1056. For example, 9:30am would become 09:30 rather than 9:30."
  1057. :group 'org-agenda-daily/weekly
  1058. :version "24.1"
  1059. :type 'boolean)
  1060. (defcustom org-agenda-timegrid-use-ampm nil
  1061. "When set, show AM/PM style timestamps on the timegrid."
  1062. :group 'org-agenda
  1063. :version "24.1"
  1064. :type 'boolean)
  1065. (defun org-agenda-time-of-day-to-ampm (time)
  1066. "Convert TIME of a string like '13:45' to an AM/PM style time string."
  1067. (let* ((hour-number (string-to-number (substring time 0 -3)))
  1068. (minute (substring time -2))
  1069. (ampm "am"))
  1070. (cond
  1071. ((equal hour-number 12)
  1072. (setq ampm "pm"))
  1073. ((> hour-number 12)
  1074. (setq ampm "pm")
  1075. (setq hour-number (- hour-number 12))))
  1076. (concat
  1077. (if org-agenda-time-leading-zero
  1078. (format "%02d" hour-number)
  1079. (format "%02s" (number-to-string hour-number)))
  1080. ":" minute ampm)))
  1081. (defun org-agenda-time-of-day-to-ampm-maybe (time)
  1082. "Conditionally convert TIME to AM/PM format based on `org-agenda-timegrid-use-ampm'."
  1083. (if org-agenda-timegrid-use-ampm
  1084. (org-agenda-time-of-day-to-ampm time)
  1085. time))
  1086. (defcustom org-agenda-weekend-days '(6 0)
  1087. "Which days are weekend?
  1088. These days get the special face `org-agenda-date-weekend' in the agenda
  1089. and timeline buffers."
  1090. :group 'org-agenda-daily/weekly
  1091. :type '(set :greedy t
  1092. (const :tag "Monday" 1)
  1093. (const :tag "Tuesday" 2)
  1094. (const :tag "Wednesday" 3)
  1095. (const :tag "Thursday" 4)
  1096. (const :tag "Friday" 5)
  1097. (const :tag "Saturday" 6)
  1098. (const :tag "Sunday" 0)))
  1099. (defcustom org-agenda-move-date-from-past-immediately-to-today t
  1100. "Non-nil means jump to today when moving a past date forward in time.
  1101. When using S-right in the agenda to move a a date forward, and the date
  1102. stamp currently points to the past, the first key press will move it
  1103. to today. WHen nil, just move one day forward even if the date stays
  1104. in the past."
  1105. :group 'org-agenda-daily/weekly
  1106. :version "24.1"
  1107. :type 'boolean)
  1108. (defcustom org-agenda-include-diary nil
  1109. "If non-nil, include in the agenda entries from the Emacs Calendar's diary.
  1110. Custom commands can set this variable in the options section."
  1111. :group 'org-agenda-daily/weekly
  1112. :type 'boolean)
  1113. (defcustom org-agenda-include-deadlines t
  1114. "If non-nil, include entries within their deadline warning period.
  1115. Custom commands can set this variable in the options section."
  1116. :group 'org-agenda-daily/weekly
  1117. :version "24.1"
  1118. :type 'boolean)
  1119. (defcustom org-agenda-repeating-timestamp-show-all t
  1120. "Non-nil means show all occurrences of a repeating stamp in the agenda.
  1121. When set to a list of strings, only show occurrences of repeating
  1122. stamps for these TODO keywords. When nil, only one occurrence is
  1123. shown, either today or the nearest into the future."
  1124. :group 'org-agenda-daily/weekly
  1125. :type '(choice
  1126. (const :tag "Show repeating stamps" t)
  1127. (repeat :tag "Show repeating stamps for these TODO keywords"
  1128. (string :tag "TODO Keyword"))
  1129. (const :tag "Don't show repeating stamps" nil)))
  1130. (defcustom org-scheduled-past-days 10000
  1131. "Number of days to continue listing scheduled items not marked DONE.
  1132. When an item is scheduled on a date, it shows up in the agenda on this
  1133. day and will be listed until it is marked done for the number of days
  1134. given here."
  1135. :group 'org-agenda-daily/weekly
  1136. :type 'integer)
  1137. (defcustom org-agenda-log-mode-items '(closed clock)
  1138. "List of items that should be shown in agenda log mode.
  1139. This list may contain the following symbols:
  1140. closed Show entries that have been closed on that day.
  1141. clock Show entries that have received clocked time on that day.
  1142. state Show all logged state changes.
  1143. Note that instead of changing this variable, you can also press `C-u l' in
  1144. the agenda to display all available LOG items temporarily."
  1145. :group 'org-agenda-daily/weekly
  1146. :type '(set :greedy t (const closed) (const clock) (const state)))
  1147. (defcustom org-agenda-clock-consistency-checks
  1148. '(:max-duration "10:00" :min-duration 0 :max-gap "0:05"
  1149. :gap-ok-around ("4:00")
  1150. :default-face ((:background "DarkRed") (:foreground "white"))
  1151. :overlap-face nil :gap-face nil :no-end-time-face nil
  1152. :long-face nil :short-face nil)
  1153. "This is a property list, with the following keys:
  1154. :max-duration Mark clocking chunks that are longer than this time.
  1155. This is a time string like \"HH:MM\", or the number
  1156. of minutes as an integer.
  1157. :min-duration Mark clocking chunks that are shorter that this.
  1158. This is a time string like \"HH:MM\", or the number
  1159. of minutes as an integer.
  1160. :max-gap Mark gaps between clocking chunks that are longer than
  1161. this duration. A number of minutes, or a string
  1162. like \"HH:MM\".
  1163. :gap-ok-around List of times during the day which are usually not working
  1164. times. When a gap is detected, but the gap contains any
  1165. of these times, the gap is *not* reported. For example,
  1166. if this is (\"4:00\" \"13:00\") then gaps that contain
  1167. 4:00 in the morning (i.e. the night) and 13:00
  1168. (i.e. a typical lunch time) do not cause a warning.
  1169. You should have at least one time during the night in this
  1170. list, or otherwise the first task each morning will trigger
  1171. a warning because it follows a long gap.
  1172. Furthermore, the following properties can be used to define faces for
  1173. issue display.
  1174. :default-face the default face, if the specific face is undefined
  1175. :overlap-face face for overlapping clocks
  1176. :gap-face face for gaps between clocks
  1177. :no-end-time-face face for incomplete clocks
  1178. :long-face face for clock intervals that are too long
  1179. :short-face face for clock intervals that are too short"
  1180. :group 'org-agenda-daily/weekly
  1181. :group 'org-clock
  1182. :version "24.1"
  1183. :type 'plist)
  1184. (defcustom org-agenda-log-mode-add-notes t
  1185. "Non-nil means add first line of notes to log entries in agenda views.
  1186. If a log item like a state change or a clock entry is associated with
  1187. notes, the first line of these notes will be added to the entry in the
  1188. agenda display."
  1189. :group 'org-agenda-daily/weekly
  1190. :type 'boolean)
  1191. (defcustom org-agenda-start-with-log-mode nil
  1192. "The initial value of log-mode in a newly created agenda window.
  1193. See `org-agenda-log-mode' and `org-agenda-log-mode-items' for further
  1194. explanations on the possible values."
  1195. :group 'org-agenda-startup
  1196. :group 'org-agenda-daily/weekly
  1197. :type '(choice (const :tag "Don't show log items" nil)
  1198. (const :tag "Show only log items" only)
  1199. (const :tag "Show all possible log items" clockcheck)
  1200. (repeat :tag "Choose among possible values for `org-agenda-log-mode-items'"
  1201. (choice (const :tag "Show closed log items" closed)
  1202. (const :tag "Show clocked log items" clock)
  1203. (const :tag "Show all logged state changes" state)))))
  1204. (defcustom org-agenda-start-with-clockreport-mode nil
  1205. "The initial value of clockreport-mode in a newly created agenda window."
  1206. :group 'org-agenda-startup
  1207. :group 'org-agenda-daily/weekly
  1208. :type 'boolean)
  1209. (defcustom org-agenda-clockreport-parameter-plist '(:link t :maxlevel 2)
  1210. "Property list with parameters for the clocktable in clockreport mode.
  1211. This is the display mode that shows a clock table in the daily/weekly
  1212. agenda, the properties for this dynamic block can be set here.
  1213. The usual clocktable parameters are allowed here, but you cannot set
  1214. the properties :name, :tstart, :tend, :block, and :scope - these will
  1215. be overwritten to make sure the content accurately reflects the
  1216. current display in the agenda."
  1217. :group 'org-agenda-daily/weekly
  1218. :type 'plist)
  1219. (defcustom org-agenda-search-view-always-boolean nil
  1220. "Non-nil means the search string is interpreted as individual parts.
  1221. The search string for search view can either be interpreted as a phrase,
  1222. or as a list of snippets that define a boolean search for a number of
  1223. strings.
  1224. When this is non-nil, the string will be split on whitespace, and each
  1225. snippet will be searched individually, and all must match in order to
  1226. select an entry. A snippet is then a single string of non-white
  1227. characters, or a string in double quotes, or a regexp in {} braces.
  1228. If a snippet is preceded by \"-\", the snippet must *not* match.
  1229. \"+\" is syntactic sugar for positive selection. Each snippet may
  1230. be found as a full word or a partial word, but see the variable
  1231. `org-agenda-search-view-force-full-words'.
  1232. When this is nil, search will look for the entire search phrase as one,
  1233. with each space character matching any amount of whitespace, including
  1234. line breaks.
  1235. Even when this is nil, you can still switch to Boolean search dynamically
  1236. by preceding the first snippet with \"+\" or \"-\". If the first snippet
  1237. is a regexp marked with braces like \"{abc}\", this will also switch to
  1238. boolean search."
  1239. :group 'org-agenda-search-view
  1240. :version "24.1"
  1241. :type 'boolean)
  1242. (org-defvaralias 'org-agenda-search-view-search-words-only
  1243. 'org-agenda-search-view-always-boolean)
  1244. (defcustom org-agenda-search-view-force-full-words nil
  1245. "Non-nil means, search words must be matches as complete words.
  1246. When nil, they may also match part of a word."
  1247. :group 'org-agenda-search-view
  1248. :version "24.1"
  1249. :type 'boolean)
  1250. (defcustom org-agenda-search-view-max-outline-level 0
  1251. "Maximum outline level to display in search view.
  1252. E.g. when this is set to 1, the search view will only
  1253. show headlines of level 1. When set to 0, the default
  1254. value, don't limit agenda view by outline level."
  1255. :group 'org-agenda-search-view
  1256. :version "24.4"
  1257. :package-version '(Org . "8.3")
  1258. :type 'integer)
  1259. (defgroup org-agenda-time-grid nil
  1260. "Options concerning the time grid in the Org-mode Agenda."
  1261. :tag "Org Agenda Time Grid"
  1262. :group 'org-agenda)
  1263. (defcustom org-agenda-search-headline-for-time t
  1264. "Non-nil means search headline for a time-of-day.
  1265. If the headline contains a time-of-day in one format or another, it will
  1266. be used to sort the entry into the time sequence of items for a day.
  1267. Some people have time stamps in the headline that refer to the creation
  1268. time or so, and then this produces an unwanted side effect. If this is
  1269. the case for your, use this variable to turn off searching the headline
  1270. for a time."
  1271. :group 'org-agenda-time-grid
  1272. :type 'boolean)
  1273. (defcustom org-agenda-use-time-grid t
  1274. "Non-nil means show a time grid in the agenda schedule.
  1275. A time grid is a set of lines for specific times (like every two hours between
  1276. 8:00 and 20:00). The items scheduled for a day at specific times are
  1277. sorted in between these lines.
  1278. For details about when the grid will be shown, and what it will look like, see
  1279. the variable `org-agenda-time-grid'."
  1280. :group 'org-agenda-time-grid
  1281. :type 'boolean)
  1282. (defcustom org-agenda-time-grid
  1283. '((daily today require-timed)
  1284. "----------------"
  1285. (800 1000 1200 1400 1600 1800 2000))
  1286. "The settings for time grid for agenda display.
  1287. This is a list of three items. The first item is again a list. It contains
  1288. symbols specifying conditions when the grid should be displayed:
  1289. daily if the agenda shows a single day
  1290. weekly if the agenda shows an entire week
  1291. today show grid on current date, independent of daily/weekly display
  1292. require-timed show grid only if at least one item has a time specification
  1293. The second item is a string which will be placed behind the grid time.
  1294. The third item is a list of integers, indicating the times that should have
  1295. a grid line."
  1296. :group 'org-agenda-time-grid
  1297. :type
  1298. '(list
  1299. (set :greedy t :tag "Grid Display Options"
  1300. (const :tag "Show grid in single day agenda display" daily)
  1301. (const :tag "Show grid in weekly agenda display" weekly)
  1302. (const :tag "Always show grid for today" today)
  1303. (const :tag "Show grid only if any timed entries are present"
  1304. require-timed)
  1305. (const :tag "Skip grid times already present in an entry"
  1306. remove-match))
  1307. (string :tag "Grid String")
  1308. (repeat :tag "Grid Times" (integer :tag "Time"))))
  1309. (defcustom org-agenda-show-current-time-in-grid t
  1310. "Non-nil means show the current time in the time grid."
  1311. :group 'org-agenda-time-grid
  1312. :version "24.1"
  1313. :type 'boolean)
  1314. (defcustom org-agenda-current-time-string
  1315. "now - - - - - - - - - - - - - - - - - - - - - - - - -"
  1316. "The string for the current time marker in the agenda."
  1317. :group 'org-agenda-time-grid
  1318. :version "24.1"
  1319. :type 'string)
  1320. (defgroup org-agenda-sorting nil
  1321. "Options concerning sorting in the Org-mode Agenda."
  1322. :tag "Org Agenda Sorting"
  1323. :group 'org-agenda)
  1324. (defcustom org-agenda-sorting-strategy
  1325. '((agenda habit-down time-up priority-down category-keep)
  1326. (todo priority-down category-keep)
  1327. (tags priority-down category-keep)
  1328. (search category-keep))
  1329. "Sorting structure for the agenda items of a single day.
  1330. This is a list of symbols which will be used in sequence to determine
  1331. if an entry should be listed before another entry. The following
  1332. symbols are recognized:
  1333. time-up Put entries with time-of-day indications first, early first
  1334. time-down Put entries with time-of-day indications first, late first
  1335. timestamp-up Sort by any timestamp, early first
  1336. timestamp-down Sort by any timestamp, late first
  1337. scheduled-up Sort by scheduled timestamp, early first
  1338. scheduled-down Sort by scheduled timestamp, late first
  1339. deadline-up Sort by deadline timestamp, early first
  1340. deadline-down Sort by deadline timestamp, late first
  1341. ts-up Sort by active timestamp, early first
  1342. ts-down Sort by active timestamp, late first
  1343. tsia-up Sort by inactive timestamp, early first
  1344. tsia-down Sort by inactive timestamp, late first
  1345. category-keep Keep the default order of categories, corresponding to the
  1346. sequence in `org-agenda-files'.
  1347. category-up Sort alphabetically by category, A-Z.
  1348. category-down Sort alphabetically by category, Z-A.
  1349. tag-up Sort alphabetically by last tag, A-Z.
  1350. tag-down Sort alphabetically by last tag, Z-A.
  1351. priority-up Sort numerically by priority, high priority last.
  1352. priority-down Sort numerically by priority, high priority first.
  1353. todo-state-up Sort by todo state, tasks that are done last.
  1354. todo-state-down Sort by todo state, tasks that are done first.
  1355. effort-up Sort numerically by estimated effort, high effort last.
  1356. effort-down Sort numerically by estimated effort, high effort first.
  1357. user-defined-up Sort according to `org-agenda-cmp-user-defined', high last.
  1358. user-defined-down Sort according to `org-agenda-cmp-user-defined', high first.
  1359. habit-up Put entries that are habits first
  1360. habit-down Put entries that are habits last
  1361. alpha-up Sort headlines alphabetically
  1362. alpha-down Sort headlines alphabetically, reversed
  1363. The different possibilities will be tried in sequence, and testing stops
  1364. if one comparison returns a \"not-equal\". For example, the default
  1365. '(time-up category-keep priority-down)
  1366. means: Pull out all entries having a specified time of day and sort them,
  1367. in order to make a time schedule for the current day the first thing in the
  1368. agenda listing for the day. Of the entries without a time indication, keep
  1369. the grouped in categories, don't sort the categories, but keep them in
  1370. the sequence given in `org-agenda-files'. Within each category sort by
  1371. priority.
  1372. Leaving out `category-keep' would mean that items will be sorted across
  1373. categories by priority.
  1374. Instead of a single list, this can also be a set of list for specific
  1375. contents, with a context symbol in the car of the list, any of
  1376. `agenda', `todo', `tags', `search' for the corresponding agenda views.
  1377. Custom commands can bind this variable in the options section."
  1378. :group 'org-agenda-sorting
  1379. :type `(choice
  1380. (repeat :tag "General" ,org-sorting-choice)
  1381. (list :tag "Individually"
  1382. (cons (const :tag "Strategy for Weekly/Daily agenda" agenda)
  1383. (repeat ,org-sorting-choice))
  1384. (cons (const :tag "Strategy for TODO lists" todo)
  1385. (repeat ,org-sorting-choice))
  1386. (cons (const :tag "Strategy for Tags matches" tags)
  1387. (repeat ,org-sorting-choice))
  1388. (cons (const :tag "Strategy for search matches" search)
  1389. (repeat ,org-sorting-choice)))))
  1390. (defcustom org-agenda-cmp-user-defined nil
  1391. "A function to define the comparison `user-defined'.
  1392. This function must receive two arguments, agenda entry a and b.
  1393. If a>b, return +1. If a<b, return -1. If they are equal as seen by
  1394. the user comparison, return nil.
  1395. When this is defined, you can make `user-defined-up' and `user-defined-down'
  1396. part of an agenda sorting strategy."
  1397. :group 'org-agenda-sorting
  1398. :type 'symbol)
  1399. (defcustom org-sort-agenda-notime-is-late t
  1400. "Non-nil means items without time are considered late.
  1401. This is only relevant for sorting. When t, items which have no explicit
  1402. time like 15:30 will be considered as 99:01, i.e. later than any items which
  1403. do have a time. When nil, the default time is before 0:00. You can use this
  1404. option to decide if the schedule for today should come before or after timeless
  1405. agenda entries."
  1406. :group 'org-agenda-sorting
  1407. :type 'boolean)
  1408. (defcustom org-sort-agenda-noeffort-is-high t
  1409. "Non-nil means items without effort estimate are sorted as high effort.
  1410. This also applies when filtering an agenda view with respect to the
  1411. < or > effort operator. Then, tasks with no effort defined will be treated
  1412. as tasks with high effort.
  1413. When nil, such items are sorted as 0 minutes effort."
  1414. :group 'org-agenda-sorting
  1415. :type 'boolean)
  1416. (defgroup org-agenda-line-format nil
  1417. "Options concerning the entry prefix in the Org-mode agenda display."
  1418. :tag "Org Agenda Line Format"
  1419. :group 'org-agenda)
  1420. (defcustom org-agenda-prefix-format
  1421. '((agenda . " %i %-12:c%?-12t% s")
  1422. (timeline . " % s")
  1423. (todo . " %i %-12:c")
  1424. (tags . " %i %-12:c")
  1425. (search . " %i %-12:c"))
  1426. "Format specifications for the prefix of items in the agenda views.
  1427. An alist with five entries, each for the different agenda types. The
  1428. keys of the sublists are `agenda', `timeline', `todo', `search' and `tags'.
  1429. The values are format strings.
  1430. This format works similar to a printf format, with the following meaning:
  1431. %c the category of the item, \"Diary\" for entries from the diary,
  1432. or as given by the CATEGORY keyword or derived from the file name
  1433. %e the effort required by the item
  1434. %l the level of the item (insert X space(s) if item is of level X)
  1435. %i the icon category of the item, see `org-agenda-category-icon-alist'
  1436. %T the last tag of the item (ignore inherited tags, which come first)
  1437. %t the HH:MM time-of-day specification if one applies to the entry
  1438. %s Scheduling/Deadline information, a short string
  1439. %b show breadcrumbs, i.e., the names of the higher levels
  1440. %(expression) Eval EXPRESSION and replace the control string
  1441. by the result
  1442. All specifiers work basically like the standard `%s' of printf, but may
  1443. contain two additional characters: a question mark just after the `%'
  1444. and a whitespace/punctuation character just before the final letter.
  1445. If the first character after `%' is a question mark, the entire field
  1446. will only be included if the corresponding value applies to the current
  1447. entry. This is useful for fields which should have fixed width when
  1448. present, but zero width when absent. For example, \"%?-12t\" will
  1449. result in a 12 character time field if a time of the day is specified,
  1450. but will completely disappear in entries which do not contain a time.
  1451. If there is punctuation or whitespace character just before the
  1452. final format letter, this character will be appended to the field
  1453. value if the value is not empty. For example, the format
  1454. \"%-12:c\" leads to \"Diary: \" if the category is \"Diary\". If
  1455. the category is empty, no additional colon is inserted.
  1456. The default value for the agenda sublist is \" %-12:c%?-12t% s\",
  1457. which means:
  1458. - Indent the line with two space characters
  1459. - Give the category a 12 chars wide field, padded with whitespace on
  1460. the right (because of `-'). Append a colon if there is a category
  1461. (because of `:').
  1462. - If there is a time-of-day, put it into a 12 chars wide field. If no
  1463. time, don't put in an empty field, just skip it (because of '?').
  1464. - Finally, put the scheduling information.
  1465. See also the variables `org-agenda-remove-times-when-in-prefix' and
  1466. `org-agenda-remove-tags'.
  1467. Custom commands can set this variable in the options section."
  1468. :type '(choice
  1469. (string :tag "General format")
  1470. (list :greedy t :tag "View dependent"
  1471. (cons (const agenda) (string :tag "Format"))
  1472. (cons (const timeline) (string :tag "Format"))
  1473. (cons (const todo) (string :tag "Format"))
  1474. (cons (const tags) (string :tag "Format"))
  1475. (cons (const search) (string :tag "Format"))))
  1476. :group 'org-agenda-line-format)
  1477. (defvar org-prefix-format-compiled nil
  1478. "The compiled prefix format and associated variables.
  1479. This is a list where first element is a list of variable bindings, and second
  1480. element is the compiled format expression. See the variable
  1481. `org-agenda-prefix-format'.")
  1482. (defcustom org-agenda-todo-keyword-format "%-1s"
  1483. "Format for the TODO keyword in agenda lines.
  1484. Set this to something like \"%-12s\" if you want all TODO keywords
  1485. to occupy a fixed space in the agenda display."
  1486. :group 'org-agenda-line-format
  1487. :type 'string)
  1488. (defcustom org-agenda-diary-sexp-prefix nil
  1489. "A regexp that matches part of a diary sexp entry
  1490. which should be treated as scheduling/deadline information in
  1491. `org-agenda'.
  1492. For example, you can use this to extract the `diary-remind-message' from
  1493. `diary-remind' entries."
  1494. :group 'org-agenda-line-format
  1495. :type '(choice (const :tag "None" nil) (regexp :tag "Regexp")))
  1496. (defcustom org-agenda-timerange-leaders '("" "(%d/%d): ")
  1497. "Text preceding timerange entries in the agenda view.
  1498. This is a list with two strings. The first applies when the range
  1499. is entirely on one day. The second applies if the range spans several days.
  1500. The strings may have two \"%d\" format specifiers which will be filled
  1501. with the sequence number of the days, and the total number of days in the
  1502. range, respectively."
  1503. :group 'org-agenda-line-format
  1504. :type '(list
  1505. (string :tag "Deadline today ")
  1506. (choice :tag "Deadline relative"
  1507. (string :tag "Format string")
  1508. (function))))
  1509. (defcustom org-agenda-scheduled-leaders '("Scheduled: " "Sched.%2dx: ")
  1510. "Text preceding scheduled items in the agenda view.
  1511. This is a list with two strings. The first applies when the item is
  1512. scheduled on the current day. The second applies when it has been scheduled
  1513. previously, it may contain a %d indicating that this is the nth time that
  1514. this item is scheduled, due to automatic rescheduling of unfinished items
  1515. for the following day. So this number is one larger than the number of days
  1516. that passed since this item was scheduled first."
  1517. :group 'org-agenda-line-format
  1518. :version "24.4"
  1519. :package-version '(Org . "8.0")
  1520. :type '(list
  1521. (string :tag "Scheduled today ")
  1522. (string :tag "Scheduled previously")))
  1523. (defcustom org-agenda-inactive-leader "["
  1524. "Text preceding item pulled into the agenda by inactive time stamps.
  1525. These entries are added to the agenda when pressing \"[\"."
  1526. :group 'org-agenda-line-format
  1527. :version "24.1"
  1528. :type 'string)
  1529. (defcustom org-agenda-deadline-leaders '("Deadline: " "In %3d d.: " "%2d d. ago: ")
  1530. "Text preceding deadline items in the agenda view.
  1531. This is a list with three strings. The first applies when the item has its
  1532. deadline on the current day. The second applies when the deadline is in the
  1533. future, the third one when it is in the past. The strings may contain %d
  1534. to capture the number of days."
  1535. :group 'org-agenda-line-format
  1536. :version "24.4"
  1537. :package-version '(Org . "8.0")
  1538. :type '(list
  1539. (string :tag "Deadline today ")
  1540. (string :tag "Deadline in the future ")
  1541. (string :tag "Deadline in the past ")))
  1542. (defcustom org-agenda-remove-times-when-in-prefix t
  1543. "Non-nil means remove duplicate time specifications in agenda items.
  1544. When the format `org-agenda-prefix-format' contains a `%t' specifier, a
  1545. time-of-day specification in a headline or diary entry is extracted and
  1546. placed into the prefix. If this option is non-nil, the original specification
  1547. \(a timestamp or -range, or just a plain time(range) specification like
  1548. 11:30-4pm) will be removed for agenda display. This makes the agenda less
  1549. cluttered.
  1550. The option can be t or nil. It may also be the symbol `beg', indicating
  1551. that the time should only be removed when it is located at the beginning of
  1552. the headline/diary entry."
  1553. :group 'org-agenda-line-format
  1554. :type '(choice
  1555. (const :tag "Always" t)
  1556. (const :tag "Never" nil)
  1557. (const :tag "When at beginning of entry" beg)))
  1558. (defcustom org-agenda-remove-timeranges-from-blocks nil
  1559. "Non-nil means remove time ranges specifications in agenda
  1560. items that span on several days."
  1561. :group 'org-agenda-line-format
  1562. :version "24.1"
  1563. :type 'boolean)
  1564. (defcustom org-agenda-default-appointment-duration nil
  1565. "Default duration for appointments that only have a starting time.
  1566. When nil, no duration is specified in such cases.
  1567. When non-nil, this must be the number of minutes, e.g. 60 for one hour."
  1568. :group 'org-agenda-line-format
  1569. :type '(choice
  1570. (integer :tag "Minutes")
  1571. (const :tag "No default duration")))
  1572. (defcustom org-agenda-show-inherited-tags t
  1573. "Non-nil means show inherited tags in each agenda line.
  1574. When this option is set to 'always, it take precedences over
  1575. `org-agenda-use-tag-inheritance' and inherited tags are shown
  1576. in every agenda.
  1577. When this option is set to t (the default), inherited tags are
  1578. shown when they are available, i.e. when the value of
  1579. `org-agenda-use-tag-inheritance' has been taken into account.
  1580. This can be set to a list of agenda types in which the agenda
  1581. must display the inherited tags. Available types are 'todo,
  1582. 'agenda, 'search and 'timeline.
  1583. When set to nil, never show inherited tags in agenda lines."
  1584. :group 'org-agenda-line-format
  1585. :group 'org-agenda
  1586. :version "24.3"
  1587. :type '(choice
  1588. (const :tag "Show inherited tags when available" t)
  1589. (const :tag "Always show inherited tags" always)
  1590. (repeat :tag "Show inherited tags only in selected agenda types"
  1591. (symbol :tag "Agenda type"))))
  1592. (defcustom org-agenda-use-tag-inheritance '(todo search timeline agenda)
  1593. "List of agenda view types where to use tag inheritance.
  1594. In tags/tags-todo/tags-tree agenda views, tag inheritance is
  1595. controlled by `org-use-tag-inheritance'. In other agenda types,
  1596. `org-use-tag-inheritance' is not used for the selection of the
  1597. agenda entries. Still, you may want the agenda to be aware of
  1598. the inherited tags anyway, e.g. for later tag filtering.
  1599. Allowed value are 'todo, 'search, 'timeline and 'agenda.
  1600. This variable has no effect if `org-agenda-show-inherited-tags'
  1601. is set to 'always. In that case, the agenda is aware of those
  1602. tags.
  1603. The default value sets tags in every agenda type. Setting this
  1604. option to nil will speed up non-tags agenda view a lot."
  1605. :group 'org-agenda
  1606. :version "24.3"
  1607. :type '(choice
  1608. (const :tag "Use tag inheritance in all agenda types" t)
  1609. (repeat :tag "Use tag inheritance in selected agenda types"
  1610. (symbol :tag "Agenda type"))))
  1611. (defcustom org-agenda-hide-tags-regexp nil
  1612. "Regular expression used to filter away specific tags in agenda views.
  1613. This means that these tags will be present, but not be shown in the agenda
  1614. line. Secondary filtering will still work on the hidden tags.
  1615. Nil means don't hide any tags."
  1616. :group 'org-agenda-line-format
  1617. :type '(choice
  1618. (const :tag "Hide none" nil)
  1619. (string :tag "Regexp ")))
  1620. (defcustom org-agenda-remove-tags nil
  1621. "Non-nil means remove the tags from the headline copy in the agenda.
  1622. When this is the symbol `prefix', only remove tags when
  1623. `org-agenda-prefix-format' contains a `%T' specifier."
  1624. :group 'org-agenda-line-format
  1625. :type '(choice
  1626. (const :tag "Always" t)
  1627. (const :tag "Never" nil)
  1628. (const :tag "When prefix format contains %T" prefix)))
  1629. (org-defvaralias 'org-agenda-remove-tags-when-in-prefix
  1630. 'org-agenda-remove-tags)
  1631. (defcustom org-agenda-tags-column (if (featurep 'xemacs) -79 -80)
  1632. "Shift tags in agenda items to this column.
  1633. If this number is positive, it specifies the column. If it is negative,
  1634. it means that the tags should be flushright to that column. For example,
  1635. -80 works well for a normal 80 character screen."
  1636. :group 'org-agenda-line-format
  1637. :type 'integer)
  1638. (org-defvaralias 'org-agenda-align-tags-to-column 'org-agenda-tags-column)
  1639. (defcustom org-agenda-fontify-priorities 'cookies
  1640. "Non-nil means highlight low and high priorities in agenda.
  1641. When t, the highest priority entries are bold, lowest priority italic.
  1642. However, settings in `org-priority-faces' will overrule these faces.
  1643. When this variable is the symbol `cookies', only fontify the
  1644. cookies, not the entire task.
  1645. This may also be an association list of priority faces, whose
  1646. keys are the character values of `org-highest-priority',
  1647. `org-default-priority', and `org-lowest-priority' (the default values
  1648. are ?A, ?B, and ?C, respectively). The face may be a named face, a
  1649. color as a string, or a list like `(:background \"Red\")'.
  1650. If it is a color, the variable `org-faces-easy-properties'
  1651. determines if it is a foreground or a background color."
  1652. :group 'org-agenda-line-format
  1653. :type '(choice
  1654. (const :tag "Never" nil)
  1655. (const :tag "Defaults" t)
  1656. (const :tag "Cookies only" cookies)
  1657. (repeat :tag "Specify"
  1658. (list (character :tag "Priority" :value ?A)
  1659. (choice :tag "Face "
  1660. (string :tag "Color")
  1661. (sexp :tag "Face"))))))
  1662. (defcustom org-agenda-day-face-function nil
  1663. "Function called to determine what face should be used to display a day.
  1664. The only argument passed to that function is the day. It should
  1665. returns a face, or nil if does not want to specify a face and let
  1666. the normal rules apply."
  1667. :group 'org-agenda-line-format
  1668. :version "24.1"
  1669. :type '(choice (const nil) (function)))
  1670. (defcustom org-agenda-category-icon-alist nil
  1671. "Alist of category icon to be displayed in agenda views.
  1672. Each entry should have the following format:
  1673. (CATEGORY-REGEXP FILE-OR-DATA TYPE DATA-P PROPS)
  1674. Where CATEGORY-REGEXP is a regexp matching the categories where
  1675. the icon should be displayed.
  1676. FILE-OR-DATA either a file path or a string containing image data.
  1677. The other fields can be omitted safely if not needed:
  1678. TYPE indicates the image type.
  1679. DATA-P is a boolean indicating whether the FILE-OR-DATA string is
  1680. image data.
  1681. PROPS are additional image attributes to assign to the image,
  1682. like, e.g. `:ascent center'.
  1683. (\"Org\" \"/path/to/icon.png\" nil nil :ascent center)
  1684. If you want to set the display properties yourself, just put a
  1685. list as second element:
  1686. (CATEGORY-REGEXP (MY PROPERTY LIST))
  1687. For example, to display a 16px horizontal space for Emacs
  1688. category, you can use:
  1689. (\"Emacs\" '(space . (:width (16))))"
  1690. :group 'org-agenda-line-format
  1691. :version "24.1"
  1692. :type '(alist :key-type (string :tag "Regexp matching category")
  1693. :value-type (choice (list :tag "Icon"
  1694. (string :tag "File or data")
  1695. (symbol :tag "Type")
  1696. (boolean :tag "Data?")
  1697. (repeat :tag "Extra image properties" :inline t symbol))
  1698. (list :tag "Display properties" sexp))))
  1699. (defgroup org-agenda-column-view nil
  1700. "Options concerning column view in the agenda."
  1701. :tag "Org Agenda Column View"
  1702. :group 'org-agenda)
  1703. (defcustom org-agenda-columns-show-summaries t
  1704. "Non-nil means show summaries for columns displayed in the agenda view."
  1705. :group 'org-agenda-column-view
  1706. :type 'boolean)
  1707. (defcustom org-agenda-columns-compute-summary-properties t
  1708. "Non-nil means recompute all summary properties before column view.
  1709. When column view in the agenda is listing properties that have a summary
  1710. operator, it can go to all relevant buffers and recompute the summaries
  1711. there. This can mean overhead for the agenda column view, but is necessary
  1712. to have thing up to date.
  1713. As a special case, a CLOCKSUM property also makes sure that the clock
  1714. computations are current."
  1715. :group 'org-agenda-column-view
  1716. :type 'boolean)
  1717. (defcustom org-agenda-columns-add-appointments-to-effort-sum nil
  1718. "Non-nil means the duration of an appointment will add to day effort.
  1719. The property to which appointment durations will be added is the one given
  1720. in the option `org-effort-property'. If an appointment does not have
  1721. an end time, `org-agenda-default-appointment-duration' will be used. If that
  1722. is not set, an appointment without end time will not contribute to the time
  1723. estimate."
  1724. :group 'org-agenda-column-view
  1725. :type 'boolean)
  1726. (defcustom org-agenda-auto-exclude-function nil
  1727. "A function called with a tag to decide if it is filtered on '/ RET'.
  1728. The sole argument to the function, which is called once for each
  1729. possible tag, is a string giving the name of the tag. The
  1730. function should return either nil if the tag should be included
  1731. as normal, or \"-<TAG>\" to exclude the tag.
  1732. Note that for the purpose of tag filtering, only the lower-case version of
  1733. all tags will be considered, so that this function will only ever see
  1734. the lower-case version of all tags."
  1735. :group 'org-agenda
  1736. :type '(choice (const nil) (function)))
  1737. (defcustom org-agenda-bulk-custom-functions nil
  1738. "Alist of characters and custom functions for bulk actions.
  1739. For example, this value makes those two functions available:
  1740. '((?R set-category)
  1741. (?C bulk-cut))
  1742. With selected entries in an agenda buffer, `B R' will call
  1743. the custom function `set-category' on the selected entries.
  1744. Note that functions in this alist don't need to be quoted."
  1745. :type 'alist
  1746. :version "24.1"
  1747. :group 'org-agenda)
  1748. (defmacro org-agenda-with-point-at-orig-entry (string &rest body)
  1749. "Execute BODY with point at location given by `org-hd-marker' property.
  1750. If STRING is non-nil, the text property will be fetched from position 0
  1751. in that string. If STRING is nil, it will be fetched from the beginning
  1752. of the current line."
  1753. (org-with-gensyms (marker)
  1754. `(let ((,marker (get-text-property (if string 0 (point-at-bol))
  1755. 'org-hd-marker ,string)))
  1756. (with-current-buffer (marker-buffer ,marker)
  1757. (save-excursion
  1758. (goto-char ,marker)
  1759. ,@body)))))
  1760. (def-edebug-spec org-agenda-with-point-at-orig-entry (form body))
  1761. (defun org-add-agenda-custom-command (entry)
  1762. "Replace or add a command in `org-agenda-custom-commands'.
  1763. This is mostly for hacking and trying a new command - once the command
  1764. works you probably want to add it to `org-agenda-custom-commands' for good."
  1765. (let ((ass (assoc (car entry) org-agenda-custom-commands)))
  1766. (if ass
  1767. (setcdr ass (cdr entry))
  1768. (push entry org-agenda-custom-commands))))
  1769. ;;; Define the org-agenda-mode
  1770. (defvar org-agenda-mode-map (make-sparse-keymap)
  1771. "Keymap for `org-agenda-mode'.")
  1772. (org-defvaralias 'org-agenda-keymap 'org-agenda-mode-map)
  1773. (defvar org-agenda-menu) ; defined later in this file.
  1774. (defvar org-agenda-restrict nil) ; defined later in this file.
  1775. (defvar org-agenda-follow-mode nil)
  1776. (defvar org-agenda-entry-text-mode nil)
  1777. (defvar org-agenda-clockreport-mode nil)
  1778. (defvar org-agenda-show-log nil)
  1779. (defvar org-agenda-redo-command nil)
  1780. (defvar org-agenda-query-string nil)
  1781. (defvar org-agenda-mode-hook nil
  1782. "Hook run after `org-agenda-mode' is turned on.
  1783. The buffer is still writable when this hook is called.")
  1784. (defvar org-agenda-type nil)
  1785. (defvar org-agenda-force-single-file nil)
  1786. (defvar org-agenda-bulk-marked-entries nil
  1787. "List of markers that refer to marked entries in the agenda.")
  1788. ;;; Multiple agenda buffers support
  1789. (defcustom org-agenda-sticky nil
  1790. "Non-nil means agenda q key will bury agenda buffers.
  1791. Agenda commands will then show existing buffer instead of generating new ones.
  1792. When nil, `q' will kill the single agenda buffer."
  1793. :group 'org-agenda
  1794. :version "24.3"
  1795. :type 'boolean)
  1796. ;;;###autoload
  1797. (defun org-toggle-sticky-agenda (&optional arg)
  1798. "Toggle `org-agenda-sticky'."
  1799. (interactive "P")
  1800. (let ((new-value (if arg
  1801. (> (prefix-numeric-value arg) 0)
  1802. (not org-agenda-sticky))))
  1803. (if (equal new-value org-agenda-sticky)
  1804. (and (org-called-interactively-p 'interactive)
  1805. (message "Sticky agenda was already %s"
  1806. (if org-agenda-sticky "enabled" "disabled")))
  1807. (setq org-agenda-sticky new-value)
  1808. (org-agenda-kill-all-agenda-buffers)
  1809. (and (org-called-interactively-p 'interactive)
  1810. (message "Sticky agenda was %s"
  1811. (if org-agenda-sticky "enabled" "disabled"))))))
  1812. (defvar org-agenda-buffer nil
  1813. "Agenda buffer currently being generated.")
  1814. (defvar org-agenda-last-prefix-arg nil)
  1815. (defvar org-agenda-this-buffer-name nil)
  1816. (defvar org-agenda-doing-sticky-redo nil)
  1817. (defvar org-agenda-this-buffer-is-sticky nil)
  1818. (defconst org-agenda-local-vars
  1819. '(org-agenda-this-buffer-name
  1820. org-agenda-undo-list
  1821. org-agenda-pending-undo-list
  1822. org-agenda-follow-mode
  1823. org-agenda-entry-text-mode
  1824. org-agenda-clockreport-mode
  1825. org-agenda-show-log
  1826. org-agenda-redo-command
  1827. org-agenda-query-string
  1828. org-agenda-type
  1829. org-agenda-bulk-marked-entries
  1830. org-agenda-undo-has-started-in
  1831. org-agenda-info
  1832. org-agenda-pre-window-conf
  1833. org-agenda-columns-active
  1834. org-agenda-tag-filter-overlays
  1835. org-agenda-tag-filter
  1836. org-agenda-cat-filter-overlays
  1837. org-agenda-category-filter
  1838. org-agenda-re-filter-overlays
  1839. org-agenda-regexp-filter
  1840. org-agenda-markers
  1841. org-agenda-last-search-view-search-was-boolean
  1842. org-agenda-filtered-by-category
  1843. org-agenda-filter-form
  1844. org-agenda-cycle-counter
  1845. org-agenda-last-prefix-arg)
  1846. "Variables that must be local in agenda buffers to allow multiple buffers.")
  1847. (defun org-agenda-mode ()
  1848. "Mode for time-sorted view on action items in Org-mode files.
  1849. The following commands are available:
  1850. \\{org-agenda-mode-map}"
  1851. (interactive)
  1852. (cond (org-agenda-doing-sticky-redo
  1853. ;; Refreshing sticky agenda-buffer
  1854. ;;
  1855. ;; Preserve the value of `org-agenda-local-vars' variables,
  1856. ;; while letting `kill-all-local-variables' kill the rest
  1857. (let ((save (buffer-local-variables)))
  1858. (kill-all-local-variables)
  1859. (mapc 'make-local-variable org-agenda-local-vars)
  1860. (dolist (elem save)
  1861. (let ((var (car elem))
  1862. (val (cdr elem)))
  1863. (when (and val
  1864. (member var org-agenda-local-vars))
  1865. (set var val)))))
  1866. (set (make-local-variable 'org-agenda-this-buffer-is-sticky) t))
  1867. (org-agenda-sticky
  1868. ;; Creating a sticky Agenda buffer for the first time
  1869. (kill-all-local-variables)
  1870. (mapc 'make-local-variable org-agenda-local-vars)
  1871. (set (make-local-variable 'org-agenda-this-buffer-is-sticky) t))
  1872. (t
  1873. ;; Creating a non-sticky agenda buffer
  1874. (kill-all-local-variables)
  1875. (set (make-local-variable 'org-agenda-this-buffer-is-sticky) nil)))
  1876. (setq org-agenda-undo-list nil
  1877. org-agenda-pending-undo-list nil
  1878. org-agenda-bulk-marked-entries nil)
  1879. (setq major-mode 'org-agenda-mode)
  1880. ;; Keep global-font-lock-mode from turning on font-lock-mode
  1881. (org-set-local 'font-lock-global-modes (list 'not major-mode))
  1882. (setq mode-name "Org-Agenda")
  1883. (use-local-map org-agenda-mode-map)
  1884. (easy-menu-add org-agenda-menu)
  1885. (if org-startup-truncated (setq truncate-lines t))
  1886. (org-set-local 'line-move-visual nil)
  1887. (org-add-hook 'post-command-hook 'org-agenda-update-agenda-type nil 'local)
  1888. (org-add-hook 'pre-command-hook 'org-unhighlight nil 'local)
  1889. ;; Make sure properties are removed when copying text
  1890. (org-add-hook 'filter-buffer-substring-functions
  1891. (lambda (fun start end delete)
  1892. (substring-no-properties (funcall fun start end delete)))
  1893. nil t)
  1894. (unless org-agenda-keep-modes
  1895. (setq org-agenda-follow-mode org-agenda-start-with-follow-mode
  1896. org-agenda-entry-text-mode org-agenda-start-with-entry-text-mode
  1897. org-agenda-clockreport-mode org-agenda-start-with-clockreport-mode
  1898. org-agenda-show-log org-agenda-start-with-log-mode))
  1899. (easy-menu-change
  1900. '("Agenda") "Agenda Files"
  1901. (append
  1902. (list
  1903. (vector
  1904. (if (get 'org-agenda-files 'org-restrict)
  1905. "Restricted to single file"
  1906. "Edit File List")
  1907. '(org-edit-agenda-file-list)
  1908. (not (get 'org-agenda-files 'org-restrict)))
  1909. "--")
  1910. (mapcar 'org-file-menu-entry (org-agenda-files))))
  1911. (org-agenda-set-mode-name)
  1912. (apply
  1913. (if (fboundp 'run-mode-hooks) 'run-mode-hooks 'run-hooks)
  1914. (list 'org-agenda-mode-hook)))
  1915. (substitute-key-definition 'undo 'org-agenda-undo
  1916. org-agenda-mode-map global-map)
  1917. (org-defkey org-agenda-mode-map "\C-i" 'org-agenda-goto)
  1918. (org-defkey org-agenda-mode-map [(tab)] 'org-agenda-goto)
  1919. (org-defkey org-agenda-mode-map "\C-m" 'org-agenda-switch-to)
  1920. (org-defkey org-agenda-mode-map "\C-k" 'org-agenda-kill)
  1921. (org-defkey org-agenda-mode-map "\C-c\C-w" 'org-agenda-refile)
  1922. (org-defkey org-agenda-mode-map [(meta down)] 'org-agenda-drag-line-forward)
  1923. (org-defkey org-agenda-mode-map [(meta up)] 'org-agenda-drag-line-backward)
  1924. (org-defkey org-agenda-mode-map "m" 'org-agenda-bulk-mark)
  1925. (org-defkey org-agenda-mode-map "\M-m" 'org-agenda-bulk-toggle)
  1926. (org-defkey org-agenda-mode-map "*" 'org-agenda-bulk-mark-all)
  1927. (org-defkey org-agenda-mode-map "\M-*" 'org-agenda-bulk-toggle-all)
  1928. (org-defkey org-agenda-mode-map "#" 'org-agenda-dim-blocked-tasks)
  1929. (org-defkey org-agenda-mode-map "%" 'org-agenda-bulk-mark-regexp)
  1930. (org-defkey org-agenda-mode-map "u" 'org-agenda-bulk-unmark)
  1931. (org-defkey org-agenda-mode-map "U" 'org-agenda-bulk-unmark-all)
  1932. (org-defkey org-agenda-mode-map "B" 'org-agenda-bulk-action)
  1933. (org-defkey org-agenda-mode-map "k" 'org-agenda-capture)
  1934. (org-defkey org-agenda-mode-map "A" 'org-agenda-append-agenda)
  1935. (org-defkey org-agenda-mode-map "\C-c\C-x!" 'org-reload)
  1936. (org-defkey org-agenda-mode-map "\C-c\C-x\C-a" 'org-agenda-archive-default)
  1937. (org-defkey org-agenda-mode-map "\C-c\C-xa" 'org-agenda-toggle-archive-tag)
  1938. (org-defkey org-agenda-mode-map "\C-c\C-xA" 'org-agenda-archive-to-archive-sibling)
  1939. (org-defkey org-agenda-mode-map "\C-c\C-x\C-s" 'org-agenda-archive)
  1940. (org-defkey org-agenda-mode-map "\C-c$" 'org-agenda-archive)
  1941. (org-defkey org-agenda-mode-map "$" 'org-agenda-archive)
  1942. (org-defkey org-agenda-mode-map "\C-c\C-o" 'org-agenda-open-link)
  1943. (org-defkey org-agenda-mode-map " " 'org-agenda-show-and-scroll-up)
  1944. (org-defkey org-agenda-mode-map [backspace] 'org-agenda-show-scroll-down)
  1945. (org-defkey org-agenda-mode-map "\d" 'org-agenda-show-scroll-down)
  1946. (org-defkey org-agenda-mode-map [(control shift right)] 'org-agenda-todo-nextset)
  1947. (org-defkey org-agenda-mode-map [(control shift left)] 'org-agenda-todo-previousset)
  1948. (org-defkey org-agenda-mode-map "\C-c\C-xb" 'org-agenda-tree-to-indirect-buffer)
  1949. (org-defkey org-agenda-mode-map "o" 'delete-other-windows)
  1950. (org-defkey org-agenda-mode-map "L" 'org-agenda-recenter)
  1951. (org-defkey org-agenda-mode-map "\C-c\C-t" 'org-agenda-todo)
  1952. (org-defkey org-agenda-mode-map "t" 'org-agenda-todo)
  1953. (org-defkey org-agenda-mode-map "a" 'org-agenda-archive-default-with-confirmation)
  1954. (org-defkey org-agenda-mode-map ":" 'org-agenda-set-tags)
  1955. (org-defkey org-agenda-mode-map "\C-c\C-q" 'org-agenda-set-tags)
  1956. (org-defkey org-agenda-mode-map "." 'org-agenda-goto-today)
  1957. (org-defkey org-agenda-mode-map "j" 'org-agenda-goto-date)
  1958. (org-defkey org-agenda-mode-map "d" 'org-agenda-day-view)
  1959. (org-defkey org-agenda-mode-map "w" 'org-agenda-week-view)
  1960. (org-defkey org-agenda-mode-map "y" 'org-agenda-year-view)
  1961. (org-defkey org-agenda-mode-map "\C-c\C-z" 'org-agenda-add-note)
  1962. (org-defkey org-agenda-mode-map "z" 'org-agenda-add-note)
  1963. (org-defkey org-agenda-mode-map [(shift right)] 'org-agenda-do-date-later)
  1964. (org-defkey org-agenda-mode-map [(shift left)] 'org-agenda-do-date-earlier)
  1965. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (right)] 'org-agenda-do-date-later)
  1966. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (left)] 'org-agenda-do-date-earlier)
  1967. (org-defkey org-agenda-mode-map ">" 'org-agenda-date-prompt)
  1968. (org-defkey org-agenda-mode-map "\C-c\C-s" 'org-agenda-schedule)
  1969. (org-defkey org-agenda-mode-map "\C-c\C-d" 'org-agenda-deadline)
  1970. (let ((l '(1 2 3 4 5 6 7 8 9 0)))
  1971. (while l (org-defkey org-agenda-mode-map
  1972. (int-to-string (pop l)) 'digit-argument)))
  1973. (org-defkey org-agenda-mode-map "F" 'org-agenda-follow-mode)
  1974. (org-defkey org-agenda-mode-map "R" 'org-agenda-clockreport-mode)
  1975. (org-defkey org-agenda-mode-map "E" 'org-agenda-entry-text-mode)
  1976. (org-defkey org-agenda-mode-map "l" 'org-agenda-log-mode)
  1977. (org-defkey org-agenda-mode-map "v" 'org-agenda-view-mode-dispatch)
  1978. (org-defkey org-agenda-mode-map "D" 'org-agenda-toggle-diary)
  1979. (org-defkey org-agenda-mode-map "!" 'org-agenda-toggle-deadlines)
  1980. (org-defkey org-agenda-mode-map "G" 'org-agenda-toggle-time-grid)
  1981. (org-defkey org-agenda-mode-map "r" 'org-agenda-redo)
  1982. (org-defkey org-agenda-mode-map "g" (lambda () (interactive) (org-agenda-redo t)))
  1983. (org-defkey org-agenda-mode-map "e" 'org-agenda-set-effort)
  1984. (org-defkey org-agenda-mode-map "\C-c\C-xe" 'org-agenda-set-effort)
  1985. (org-defkey org-agenda-mode-map "\C-c\C-x\C-e"
  1986. 'org-clock-modify-effort-estimate)
  1987. (org-defkey org-agenda-mode-map "\C-c\C-xp" 'org-agenda-set-property)
  1988. (org-defkey org-agenda-mode-map "q" 'org-agenda-quit)
  1989. (org-defkey org-agenda-mode-map "Q" 'org-agenda-Quit)
  1990. (org-defkey org-agenda-mode-map "x" 'org-agenda-exit)
  1991. (org-defkey org-agenda-mode-map "\C-x\C-w" 'org-agenda-write)
  1992. (org-defkey org-agenda-mode-map "\C-x\C-s" 'org-save-all-org-buffers)
  1993. (org-defkey org-agenda-mode-map "s" 'org-save-all-org-buffers)
  1994. (org-defkey org-agenda-mode-map "T" 'org-agenda-show-tags)
  1995. (org-defkey org-agenda-mode-map "n" 'org-agenda-next-line)
  1996. (org-defkey org-agenda-mode-map "p" 'org-agenda-previous-line)
  1997. (org-defkey org-agenda-mode-map "N" 'org-agenda-next-item)
  1998. (org-defkey org-agenda-mode-map "P" 'org-agenda-previous-item)
  1999. (substitute-key-definition 'next-line 'org-agenda-next-line
  2000. org-agenda-mode-map global-map)
  2001. (substitute-key-definition 'previous-line 'org-agenda-previous-line
  2002. org-agenda-mode-map global-map)
  2003. (org-defkey org-agenda-mode-map "\C-c\C-a" 'org-attach)
  2004. (org-defkey org-agenda-mode-map "\C-c\C-n" 'org-agenda-next-date-line)
  2005. (org-defkey org-agenda-mode-map "\C-c\C-p" 'org-agenda-previous-date-line)
  2006. (org-defkey org-agenda-mode-map "\C-c," 'org-agenda-priority)
  2007. (org-defkey org-agenda-mode-map "," 'org-agenda-priority)
  2008. (org-defkey org-agenda-mode-map "i" 'org-agenda-diary-entry)
  2009. (org-defkey org-agenda-mode-map "c" 'org-agenda-goto-calendar)
  2010. (org-defkey org-agenda-mode-map "C" 'org-agenda-convert-date)
  2011. (org-defkey org-agenda-mode-map "M" 'org-agenda-phases-of-moon)
  2012. (org-defkey org-agenda-mode-map "S" 'org-agenda-sunrise-sunset)
  2013. (org-defkey org-agenda-mode-map "h" 'org-agenda-holidays)
  2014. (org-defkey org-agenda-mode-map "H" 'org-agenda-holidays)
  2015. (org-defkey org-agenda-mode-map "\C-c\C-x\C-i" 'org-agenda-clock-in)
  2016. (org-defkey org-agenda-mode-map "I" 'org-agenda-clock-in)
  2017. (org-defkey org-agenda-mode-map "\C-c\C-x\C-o" 'org-agenda-clock-out)
  2018. (org-defkey org-agenda-mode-map "O" 'org-agenda-clock-out)
  2019. (org-defkey org-agenda-mode-map "\C-c\C-x\C-x" 'org-agenda-clock-cancel)
  2020. (org-defkey org-agenda-mode-map "X" 'org-agenda-clock-cancel)
  2021. (org-defkey org-agenda-mode-map "\C-c\C-x\C-j" 'org-clock-goto)
  2022. (org-defkey org-agenda-mode-map "J" 'org-agenda-clock-goto)
  2023. (org-defkey org-agenda-mode-map "+" 'org-agenda-priority-up)
  2024. (org-defkey org-agenda-mode-map "-" 'org-agenda-priority-down)
  2025. (org-defkey org-agenda-mode-map [(shift up)] 'org-agenda-priority-up)
  2026. (org-defkey org-agenda-mode-map [(shift down)] 'org-agenda-priority-down)
  2027. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (up)] 'org-agenda-priority-up)
  2028. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (down)] 'org-agenda-priority-down)
  2029. (org-defkey org-agenda-mode-map "f" 'org-agenda-later)
  2030. (org-defkey org-agenda-mode-map "b" 'org-agenda-earlier)
  2031. (org-defkey org-agenda-mode-map "\C-c\C-x\C-c" 'org-agenda-columns)
  2032. (org-defkey org-agenda-mode-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
  2033. (org-defkey org-agenda-mode-map "[" 'org-agenda-manipulate-query-add)
  2034. (org-defkey org-agenda-mode-map "]" 'org-agenda-manipulate-query-subtract)
  2035. (org-defkey org-agenda-mode-map "{" 'org-agenda-manipulate-query-add-re)
  2036. (org-defkey org-agenda-mode-map "}" 'org-agenda-manipulate-query-subtract-re)
  2037. (org-defkey org-agenda-mode-map "/" 'org-agenda-filter-by-tag)
  2038. (org-defkey org-agenda-mode-map "=" 'org-agenda-filter-by-regexp)
  2039. (org-defkey org-agenda-mode-map "|" 'org-agenda-filter-remove-all)
  2040. (org-defkey org-agenda-mode-map "\\" 'org-agenda-filter-by-tag-refine)
  2041. (org-defkey org-agenda-mode-map "~" 'org-agenda-limit-interactively)
  2042. (org-defkey org-agenda-mode-map "<" 'org-agenda-filter-by-category)
  2043. (org-defkey org-agenda-mode-map "^" 'org-agenda-filter-by-top-headline)
  2044. (org-defkey org-agenda-mode-map ";" 'org-timer-set-timer)
  2045. (define-key org-agenda-mode-map "?" 'org-agenda-show-the-flagging-note)
  2046. (org-defkey org-agenda-mode-map "\C-c\C-x\C-mg" 'org-mobile-pull)
  2047. (org-defkey org-agenda-mode-map "\C-c\C-x\C-mp" 'org-mobile-push)
  2048. (org-defkey org-agenda-mode-map [mouse-2] 'org-agenda-goto-mouse)
  2049. (org-defkey org-agenda-mode-map [mouse-3] 'org-agenda-show-mouse)
  2050. (when org-agenda-mouse-1-follows-link
  2051. (org-defkey org-agenda-mode-map [follow-link] 'mouse-face))
  2052. (easy-menu-define org-agenda-menu org-agenda-mode-map "Agenda menu"
  2053. '("Agenda"
  2054. ("Agenda Files")
  2055. "--"
  2056. ("Agenda Dates"
  2057. ["Goto Today" org-agenda-goto-today (org-agenda-check-type nil 'agenda 'timeline)]
  2058. ["Next Dates" org-agenda-later (org-agenda-check-type nil 'agenda)]
  2059. ["Previous Dates" org-agenda-earlier (org-agenda-check-type nil 'agenda)]
  2060. ["Jump to date" org-agenda-goto-date (org-agenda-check-type nil 'agenda)])
  2061. "--"
  2062. ("View"
  2063. ["Day View" org-agenda-day-view
  2064. :active (org-agenda-check-type nil 'agenda)
  2065. :style radio :selected (eq org-agenda-current-span 'day)
  2066. :keys "v d (or just d)"]
  2067. ["Week View" org-agenda-week-view
  2068. :active (org-agenda-check-type nil 'agenda)
  2069. :style radio :selected (eq org-agenda-current-span 'week)
  2070. :keys "v w"]
  2071. ["Fortnight View" org-agenda-fortnight-view
  2072. :active (org-agenda-check-type nil 'agenda)
  2073. :style radio :selected (eq org-agenda-current-span 'fortnight)
  2074. :keys "v f"]
  2075. ["Month View" org-agenda-month-view
  2076. :active (org-agenda-check-type nil 'agenda)
  2077. :style radio :selected (eq org-agenda-current-span 'month)
  2078. :keys "v m"]
  2079. ["Year View" org-agenda-year-view
  2080. :active (org-agenda-check-type nil 'agenda)
  2081. :style radio :selected (eq org-agenda-current-span 'year)
  2082. :keys "v y"]
  2083. "--"
  2084. ["Include Diary" org-agenda-toggle-diary
  2085. :style toggle :selected org-agenda-include-diary
  2086. :active (org-agenda-check-type nil 'agenda)]
  2087. ["Include Deadlines" org-agenda-toggle-deadlines
  2088. :style toggle :selected org-agenda-include-deadlines
  2089. :active (org-agenda-check-type nil 'agenda)]
  2090. ["Use Time Grid" org-agenda-toggle-time-grid
  2091. :style toggle :selected org-agenda-use-time-grid
  2092. :active (org-agenda-check-type nil 'agenda)]
  2093. "--"
  2094. ["Show clock report" org-agenda-clockreport-mode
  2095. :style toggle :selected org-agenda-clockreport-mode
  2096. :active (org-agenda-check-type nil 'agenda)]
  2097. ["Show some entry text" org-agenda-entry-text-mode
  2098. :style toggle :selected org-agenda-entry-text-mode
  2099. :active t]
  2100. "--"
  2101. ["Show Logbook entries" org-agenda-log-mode
  2102. :style toggle :selected org-agenda-show-log
  2103. :active (org-agenda-check-type nil 'agenda 'timeline)
  2104. :keys "v l (or just l)"]
  2105. ["Include archived trees" org-agenda-archives-mode
  2106. :style toggle :selected org-agenda-archives-mode :active t
  2107. :keys "v a"]
  2108. ["Include archive files" (org-agenda-archives-mode t)
  2109. :style toggle :selected (eq org-agenda-archives-mode t) :active t
  2110. :keys "v A"]
  2111. "--"
  2112. ["Remove Restriction" org-agenda-remove-restriction-lock org-agenda-restrict])
  2113. ["Write view to file" org-agenda-write t]
  2114. ["Rebuild buffer" org-agenda-redo t]
  2115. ["Save all Org-mode Buffers" org-save-all-org-buffers t]
  2116. "--"
  2117. ["Show original entry" org-agenda-show t]
  2118. ["Go To (other window)" org-agenda-goto t]
  2119. ["Go To (this window)" org-agenda-switch-to t]
  2120. ["Capture with cursor date" org-agenda-capture t]
  2121. ["Follow Mode" org-agenda-follow-mode
  2122. :style toggle :selected org-agenda-follow-mode :active t]
  2123. ;; ["Tree to indirect frame" org-agenda-tree-to-indirect-buffer t]
  2124. "--"
  2125. ("TODO"
  2126. ["Cycle TODO" org-agenda-todo t]
  2127. ["Next TODO set" org-agenda-todo-nextset t]
  2128. ["Previous TODO set" org-agenda-todo-previousset t]
  2129. ["Add note" org-agenda-add-note t])
  2130. ("Archive/Refile/Delete"
  2131. ["Archive default" org-agenda-archive-default t]
  2132. ["Archive default" org-agenda-archive-default-with-confirmation t]
  2133. ["Toggle ARCHIVE tag" org-agenda-toggle-archive-tag t]
  2134. ["Move to archive sibling" org-agenda-archive-to-archive-sibling t]
  2135. ["Archive subtree" org-agenda-archive t]
  2136. "--"
  2137. ["Refile" org-agenda-refile t]
  2138. "--"
  2139. ["Delete subtree" org-agenda-kill t])
  2140. ("Bulk action"
  2141. ["Mark entry" org-agenda-bulk-mark t]
  2142. ["Mark all" org-agenda-bulk-mark-all t]
  2143. ["Unmark entry" org-agenda-bulk-unmark t]
  2144. ["Unmark all" org-agenda-bulk-unmark-all :active t :keys "U"]
  2145. ["Toggle mark" org-agenda-bulk-toggle t]
  2146. ["Toggle all" org-agenda-bulk-toggle-all t]
  2147. ["Mark regexp" org-agenda-bulk-mark-regexp t])
  2148. ["Act on all marked" org-agenda-bulk-action t]
  2149. "--"
  2150. ("Tags and Properties"
  2151. ["Show all Tags" org-agenda-show-tags t]
  2152. ["Set Tags current line" org-agenda-set-tags (not (org-region-active-p))]
  2153. ["Change tag in region" org-agenda-set-tags (org-region-active-p)]
  2154. "--"
  2155. ["Column View" org-columns t])
  2156. ("Deadline/Schedule"
  2157. ["Schedule" org-agenda-schedule t]
  2158. ["Set Deadline" org-agenda-deadline t]
  2159. "--"
  2160. ["Change Date +1 day" org-agenda-date-later (org-agenda-check-type nil 'agenda 'timeline)]
  2161. ["Change Date -1 day" org-agenda-date-earlier (org-agenda-check-type nil 'agenda 'timeline)]
  2162. ["Change Time +1 hour" org-agenda-do-date-later :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u S-right"]
  2163. ["Change Time -1 hour" org-agenda-do-date-earlier :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u S-left"]
  2164. ["Change Time + min" org-agenda-date-later :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u C-u S-right"]
  2165. ["Change Time - min" org-agenda-date-earlier :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u C-u S-left"]
  2166. ["Change Date to ..." org-agenda-date-prompt (org-agenda-check-type nil 'agenda 'timeline)])
  2167. ("Clock and Effort"
  2168. ["Clock in" org-agenda-clock-in t]
  2169. ["Clock out" org-agenda-clock-out t]
  2170. ["Clock cancel" org-agenda-clock-cancel t]
  2171. ["Goto running clock" org-clock-goto t]
  2172. "--"
  2173. ["Set Effort" org-agenda-set-effort t]
  2174. ["Change clocked effort" org-clock-modify-effort-estimate
  2175. (org-clock-is-active)])
  2176. ("Priority"
  2177. ["Set Priority" org-agenda-priority t]
  2178. ["Increase Priority" org-agenda-priority-up t]
  2179. ["Decrease Priority" org-agenda-priority-down t]
  2180. ["Show Priority" org-show-priority t])
  2181. ("Calendar/Diary"
  2182. ["New Diary Entry" org-agenda-diary-entry (org-agenda-check-type nil 'agenda 'timeline)]
  2183. ["Goto Calendar" org-agenda-goto-calendar (org-agenda-check-type nil 'agenda 'timeline)]
  2184. ["Phases of the Moon" org-agenda-phases-of-moon (org-agenda-check-type nil 'agenda 'timeline)]
  2185. ["Sunrise/Sunset" org-agenda-sunrise-sunset (org-agenda-check-type nil 'agenda 'timeline)]
  2186. ["Holidays" org-agenda-holidays (org-agenda-check-type nil 'agenda 'timeline)]
  2187. ["Convert" org-agenda-convert-date (org-agenda-check-type nil 'agenda 'timeline)]
  2188. "--"
  2189. ["Create iCalendar File" org-icalendar-combine-agenda-files t])
  2190. "--"
  2191. ["Undo Remote Editing" org-agenda-undo org-agenda-undo-list]
  2192. "--"
  2193. ("MobileOrg"
  2194. ["Push Files and Views" org-mobile-push t]
  2195. ["Get Captured and Flagged" org-mobile-pull t]
  2196. ["Find FLAGGED Tasks" (org-agenda nil "?") :active t :keys "C-c a ?"]
  2197. ["Show note / unflag" org-agenda-show-the-flagging-note t]
  2198. "--"
  2199. ["Setup" (progn (require 'org-mobile) (customize-group 'org-mobile)) t])
  2200. "--"
  2201. ["Quit" org-agenda-quit t]
  2202. ["Exit and Release Buffers" org-agenda-exit t]
  2203. ))
  2204. ;;; Agenda undo
  2205. (defvar org-agenda-allow-remote-undo t
  2206. "Non-nil means allow remote undo from the agenda buffer.")
  2207. (defvar org-agenda-undo-has-started-in nil
  2208. "Buffers that have already seen `undo-start' in the current undo sequence.")
  2209. (defun org-agenda-undo ()
  2210. "Undo a remote editing step in the agenda.
  2211. This undoes changes both in the agenda buffer and in the remote buffer
  2212. that have been changed along."
  2213. (interactive)
  2214. (or org-agenda-allow-remote-undo
  2215. (user-error "Check the variable `org-agenda-allow-remote-undo' to activate remote undo"))
  2216. (if (not (eq this-command last-command))
  2217. (setq org-agenda-undo-has-started-in nil
  2218. org-agenda-pending-undo-list org-agenda-undo-list))
  2219. (if (not org-agenda-pending-undo-list)
  2220. (user-error "No further undo information"))
  2221. (let* ((entry (pop org-agenda-pending-undo-list))
  2222. buf line cmd rembuf)
  2223. (setq cmd (pop entry) line (pop entry))
  2224. (setq rembuf (nth 2 entry))
  2225. (org-with-remote-undo rembuf
  2226. (while (bufferp (setq buf (pop entry)))
  2227. (if (pop entry)
  2228. (with-current-buffer buf
  2229. (let ((last-undo-buffer buf)
  2230. (inhibit-read-only t))
  2231. (unless (memq buf org-agenda-undo-has-started-in)
  2232. (push buf org-agenda-undo-has-started-in)
  2233. (make-local-variable 'pending-undo-list)
  2234. (undo-start))
  2235. (while (and pending-undo-list
  2236. (listp pending-undo-list)
  2237. (not (car pending-undo-list)))
  2238. (pop pending-undo-list))
  2239. (undo-more 1))))))
  2240. (org-goto-line line)
  2241. (message "`%s' undone (buffer %s)" cmd (buffer-name rembuf))))
  2242. (defun org-verify-change-for-undo (l1 l2)
  2243. "Verify that a real change occurred between the undo lists L1 and L2."
  2244. (while (and l1 (listp l1) (null (car l1))) (pop l1))
  2245. (while (and l2 (listp l2) (null (car l2))) (pop l2))
  2246. (not (eq l1 l2)))
  2247. ;;; Agenda dispatch
  2248. (defvar org-agenda-restrict-begin (make-marker))
  2249. (defvar org-agenda-restrict-end (make-marker))
  2250. (defvar org-agenda-last-dispatch-buffer nil)
  2251. (defvar org-agenda-overriding-restriction nil)
  2252. (defcustom org-agenda-custom-commands-contexts nil
  2253. "Alist of custom agenda keys and contextual rules.
  2254. For example, if you have a custom agenda command \"p\" and you
  2255. want this command to be accessible only from plain text files,
  2256. use this:
  2257. '((\"p\" ((in-file . \"\\.txt\"))))
  2258. Here are the available contexts definitions:
  2259. in-file: command displayed only in matching files
  2260. in-mode: command displayed only in matching modes
  2261. not-in-file: command not displayed in matching files
  2262. not-in-mode: command not displayed in matching modes
  2263. in-buffer: command displayed only in matching buffers
  2264. not-in-buffer: command not displayed in matching buffers
  2265. [function]: a custom function taking no argument
  2266. If you define several checks, the agenda command will be
  2267. accessible if there is at least one valid check.
  2268. You can also bind a key to another agenda custom command
  2269. depending on contextual rules.
  2270. '((\"p\" \"q\" ((in-file . \"\\.txt\"))))
  2271. Here it means: in .txt files, use \"p\" as the key for the
  2272. agenda command otherwise associated with \"q\". (The command
  2273. originally associated with \"q\" is not displayed to avoid
  2274. duplicates.)"
  2275. :version "24.3"
  2276. :group 'org-agenda-custom-commands
  2277. :type '(repeat (list :tag "Rule"
  2278. (string :tag " Agenda key")
  2279. (string :tag "Replace by command")
  2280. (repeat :tag "Available when"
  2281. (choice
  2282. (cons :tag "Condition"
  2283. (choice
  2284. (const :tag "In file" in-file)
  2285. (const :tag "Not in file" not-in-file)
  2286. (const :tag "In buffer" in-buffer)
  2287. (const :tag "Not in buffer" not-in-buffer)
  2288. (const :tag "In mode" in-mode)
  2289. (const :tag "Not in mode" not-in-mode))
  2290. (regexp))
  2291. (function :tag "Custom function"))))))
  2292. (defcustom org-agenda-max-entries nil
  2293. "Maximum number of entries to display in an agenda.
  2294. This can be nil (no limit) or an integer or an alist of agenda
  2295. types with an associated number of entries to display in this
  2296. type."
  2297. :version "24.4"
  2298. :package-version '(Org . "8.0")
  2299. :group 'org-agenda-custom-commands
  2300. :type '(choice (symbol :tag "No limit" nil)
  2301. (integer :tag "Max number of entries")
  2302. (repeat
  2303. (cons (choice :tag "Agenda type"
  2304. (const agenda)
  2305. (const todo)
  2306. (const tags)
  2307. (const search)
  2308. (const timeline))
  2309. (integer :tag "Max number of entries")))))
  2310. (defcustom org-agenda-max-todos nil
  2311. "Maximum number of TODOs to display in an agenda.
  2312. This can be nil (no limit) or an integer or an alist of agenda
  2313. types with an associated number of entries to display in this
  2314. type."
  2315. :version "24.4"
  2316. :package-version '(Org . "8.0")
  2317. :group 'org-agenda-custom-commands
  2318. :type '(choice (symbol :tag "No limit" nil)
  2319. (integer :tag "Max number of entries")
  2320. (repeat
  2321. (cons (choice :tag "Agenda type"
  2322. (const agenda)
  2323. (const todo)
  2324. (const tags)
  2325. (const search)
  2326. (const timeline))
  2327. (integer :tag "Max number of entries")))))
  2328. (defcustom org-agenda-max-tags nil
  2329. "Maximum number of tagged entries to display in an agenda.
  2330. This can be nil (no limit) or an integer or an alist of agenda
  2331. types with an associated number of entries to display in this
  2332. type."
  2333. :version "24.4"
  2334. :package-version '(Org . "8.0")
  2335. :group 'org-agenda-custom-commands
  2336. :type '(choice (symbol :tag "No limit" nil)
  2337. (integer :tag "Max number of entries")
  2338. (repeat
  2339. (cons (choice :tag "Agenda type"
  2340. (const agenda)
  2341. (const todo)
  2342. (const tags)
  2343. (const search)
  2344. (const timeline))
  2345. (integer :tag "Max number of entries")))))
  2346. (defcustom org-agenda-max-effort nil
  2347. "Maximum cumulated effort duration for the agenda.
  2348. This can be nil (no limit) or a number of minutes (as an integer)
  2349. or an alist of agenda types with an associated number of minutes
  2350. to limit entries to in this type."
  2351. :version "24.4"
  2352. :package-version '(Org . "8.0")
  2353. :group 'org-agenda-custom-commands
  2354. :type '(choice (symbol :tag "No limit" nil)
  2355. (integer :tag "Max number of entries")
  2356. (repeat
  2357. (cons (choice :tag "Agenda type"
  2358. (const agenda)
  2359. (const todo)
  2360. (const tags)
  2361. (const search)
  2362. (const timeline))
  2363. (integer :tag "Max number of entries")))))
  2364. (defvar org-keys nil)
  2365. (defvar org-match nil)
  2366. ;;;###autoload
  2367. (defun org-agenda (&optional arg org-keys restriction)
  2368. "Dispatch agenda commands to collect entries to the agenda buffer.
  2369. Prompts for a command to execute. Any prefix arg will be passed
  2370. on to the selected command. The default selections are:
  2371. a Call `org-agenda-list' to display the agenda for current day or week.
  2372. t Call `org-todo-list' to display the global todo list.
  2373. T Call `org-todo-list' to display the global todo list, select only
  2374. entries with a specific TODO keyword (the user gets a prompt).
  2375. m Call `org-tags-view' to display headlines with tags matching
  2376. a condition (the user is prompted for the condition).
  2377. M Like `m', but select only TODO entries, no ordinary headlines.
  2378. L Create a timeline for the current buffer.
  2379. e Export views to associated files.
  2380. s Search entries for keywords.
  2381. S Search entries for keywords, only with TODO keywords.
  2382. / Multi occur across all agenda files and also files listed
  2383. in `org-agenda-text-search-extra-files'.
  2384. < Restrict agenda commands to buffer, subtree, or region.
  2385. Press several times to get the desired effect.
  2386. > Remove a previous restriction.
  2387. # List \"stuck\" projects.
  2388. ! Configure what \"stuck\" means.
  2389. C Configure custom agenda commands.
  2390. More commands can be added by configuring the variable
  2391. `org-agenda-custom-commands'. In particular, specific tags and TODO keyword
  2392. searches can be pre-defined in this way.
  2393. If the current buffer is in Org-mode and visiting a file, you can also
  2394. first press `<' once to indicate that the agenda should be temporarily
  2395. \(until the next use of \\[org-agenda]) restricted to the current file.
  2396. Pressing `<' twice means to restrict to the current subtree or region
  2397. \(if active)."
  2398. (interactive "P")
  2399. (catch 'exit
  2400. (let* ((prefix-descriptions nil)
  2401. (org-agenda-buffer-name org-agenda-buffer-name)
  2402. (org-agenda-window-setup (if (equal (buffer-name)
  2403. org-agenda-buffer-name)
  2404. 'current-window
  2405. org-agenda-window-setup))
  2406. (org-agenda-custom-commands-orig org-agenda-custom-commands)
  2407. (org-agenda-custom-commands
  2408. ;; normalize different versions
  2409. (delq nil
  2410. (mapcar
  2411. (lambda (x)
  2412. (cond ((stringp (cdr x))
  2413. (push x prefix-descriptions)
  2414. nil)
  2415. ((stringp (nth 1 x)) x)
  2416. ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
  2417. (t (cons (car x) (cons "" (cdr x))))))
  2418. org-agenda-custom-commands)))
  2419. (org-agenda-custom-commands
  2420. (org-contextualize-keys
  2421. org-agenda-custom-commands org-agenda-custom-commands-contexts))
  2422. (buf (current-buffer))
  2423. (bfn (buffer-file-name (buffer-base-buffer)))
  2424. entry key type org-match lprops ans)
  2425. ;; Turn off restriction unless there is an overriding one,
  2426. (unless org-agenda-overriding-restriction
  2427. (unless (org-bound-and-true-p org-agenda-keep-restricted-file-list)
  2428. ;; There is a request to keep the file list in place
  2429. (put 'org-agenda-files 'org-restrict nil))
  2430. (setq org-agenda-restrict nil)
  2431. (move-marker org-agenda-restrict-begin nil)
  2432. (move-marker org-agenda-restrict-end nil))
  2433. ;; Delete old local properties
  2434. (put 'org-agenda-redo-command 'org-lprops nil)
  2435. ;; Delete previously set last-arguments
  2436. (put 'org-agenda-redo-command 'last-args nil)
  2437. ;; Remember where this call originated
  2438. (setq org-agenda-last-dispatch-buffer (current-buffer))
  2439. (unless org-keys
  2440. (setq ans (org-agenda-get-restriction-and-command prefix-descriptions)
  2441. org-keys (car ans)
  2442. restriction (cdr ans)))
  2443. ;; If we have sticky agenda buffers, set a name for the buffer,
  2444. ;; depending on the invoking keys. The user may still set this
  2445. ;; as a command option, which will overwrite what we do here.
  2446. (if org-agenda-sticky
  2447. (setq org-agenda-buffer-name
  2448. (format "*Org Agenda(%s)*" org-keys)))
  2449. ;; Establish the restriction, if any
  2450. (when (and (not org-agenda-overriding-restriction) restriction)
  2451. (put 'org-agenda-files 'org-restrict (list bfn))
  2452. (cond
  2453. ((eq restriction 'region)
  2454. (setq org-agenda-restrict (current-buffer))
  2455. (move-marker org-agenda-restrict-begin (region-beginning))
  2456. (move-marker org-agenda-restrict-end (region-end)))
  2457. ((eq restriction 'subtree)
  2458. (save-excursion
  2459. (setq org-agenda-restrict (current-buffer))
  2460. (org-back-to-heading t)
  2461. (move-marker org-agenda-restrict-begin (point))
  2462. (move-marker org-agenda-restrict-end
  2463. (progn (org-end-of-subtree t)))))))
  2464. ;; For example the todo list should not need it (but does...)
  2465. (cond
  2466. ((setq entry (assoc org-keys org-agenda-custom-commands))
  2467. (if (or (symbolp (nth 2 entry)) (functionp (nth 2 entry)))
  2468. (progn
  2469. (setq type (nth 2 entry) org-match (eval (nth 3 entry))
  2470. lprops (nth 4 entry))
  2471. (if org-agenda-sticky
  2472. (setq org-agenda-buffer-name
  2473. (or (and (stringp org-match) (format "*Org Agenda(%s:%s)*" org-keys org-match))
  2474. (format "*Org Agenda(%s)*" org-keys))))
  2475. (put 'org-agenda-redo-command 'org-lprops lprops)
  2476. (cond
  2477. ((eq type 'agenda)
  2478. (org-let lprops '(org-agenda-list current-prefix-arg)))
  2479. ((eq type 'agenda*)
  2480. (org-let lprops '(org-agenda-list current-prefix-arg nil nil t)))
  2481. ((eq type 'alltodo)
  2482. (org-let lprops '(org-todo-list current-prefix-arg)))
  2483. ((eq type 'search)
  2484. (org-let lprops '(org-search-view current-prefix-arg org-match nil)))
  2485. ((eq type 'stuck)
  2486. (org-let lprops '(org-agenda-list-stuck-projects
  2487. current-prefix-arg)))
  2488. ((eq type 'tags)
  2489. (org-let lprops '(org-tags-view current-prefix-arg org-match)))
  2490. ((eq type 'tags-todo)
  2491. (org-let lprops '(org-tags-view '(4) org-match)))
  2492. ((eq type 'todo)
  2493. (org-let lprops '(org-todo-list org-match)))
  2494. ((eq type 'tags-tree)
  2495. (org-check-for-org-mode)
  2496. (org-let lprops '(org-match-sparse-tree current-prefix-arg org-match)))
  2497. ((eq type 'todo-tree)
  2498. (org-check-for-org-mode)
  2499. (org-let lprops
  2500. '(org-occur (concat "^" org-outline-regexp "[ \t]*"
  2501. (regexp-quote org-match) "\\>"))))
  2502. ((eq type 'occur-tree)
  2503. (org-check-for-org-mode)
  2504. (org-let lprops '(org-occur org-match)))
  2505. ((functionp type)
  2506. (org-let lprops '(funcall type org-match)))
  2507. ((fboundp type)
  2508. (org-let lprops '(funcall type org-match)))
  2509. (t (user-error "Invalid custom agenda command type %s" type))))
  2510. (org-agenda-run-series (nth 1 entry) (cddr entry))))
  2511. ((equal org-keys "C")
  2512. (setq org-agenda-custom-commands org-agenda-custom-commands-orig)
  2513. (customize-variable 'org-agenda-custom-commands))
  2514. ((equal org-keys "a") (call-interactively 'org-agenda-list))
  2515. ((equal org-keys "s") (call-interactively 'org-search-view))
  2516. ((equal org-keys "S") (org-call-with-arg 'org-search-view (or arg '(4))))
  2517. ((equal org-keys "t") (call-interactively 'org-todo-list))
  2518. ((equal org-keys "T") (org-call-with-arg 'org-todo-list (or arg '(4))))
  2519. ((equal org-keys "m") (call-interactively 'org-tags-view))
  2520. ((equal org-keys "M") (org-call-with-arg 'org-tags-view (or arg '(4))))
  2521. ((equal org-keys "e") (call-interactively 'org-store-agenda-views))
  2522. ((equal org-keys "?") (org-tags-view nil "+FLAGGED")
  2523. (org-add-hook
  2524. 'post-command-hook
  2525. (lambda ()
  2526. (unless (current-message)
  2527. (let* ((m (org-agenda-get-any-marker))
  2528. (note (and m (org-entry-get m "THEFLAGGINGNOTE"))))
  2529. (when note
  2530. (message (concat
  2531. "FLAGGING-NOTE ([?] for more info): "
  2532. (org-add-props
  2533. (replace-regexp-in-string
  2534. "\\\\n" "//"
  2535. (copy-sequence note))
  2536. nil 'face 'org-warning)))))))
  2537. t t))
  2538. ((equal org-keys "L")
  2539. (unless (derived-mode-p 'org-mode)
  2540. (user-error "This is not an Org-mode file"))
  2541. (unless restriction
  2542. (put 'org-agenda-files 'org-restrict (list bfn))
  2543. (org-call-with-arg 'org-timeline arg)))
  2544. ((equal org-keys "#") (call-interactively 'org-agenda-list-stuck-projects))
  2545. ((equal org-keys "/") (call-interactively 'org-occur-in-agenda-files))
  2546. ((equal org-keys "!") (customize-variable 'org-stuck-projects))
  2547. (t (user-error "Invalid agenda key"))))))
  2548. (defvar org-agenda-multi)
  2549. (defun org-agenda-append-agenda ()
  2550. "Append another agenda view to the current one.
  2551. This function allows interactive building of block agendas.
  2552. Agenda views are separated by `org-agenda-block-separator'."
  2553. (interactive)
  2554. (unless (derived-mode-p 'org-agenda-mode)
  2555. (user-error "Can only append from within agenda buffer"))
  2556. (let ((org-agenda-multi t))
  2557. (org-agenda)
  2558. (widen)
  2559. (org-agenda-finalize)
  2560. (setq buffer-read-only t)
  2561. (org-agenda-fit-window-to-buffer)))
  2562. (defun org-agenda-normalize-custom-commands (cmds)
  2563. "Normalize custom commands CMDS."
  2564. (delq nil
  2565. (mapcar
  2566. (lambda (x)
  2567. (cond ((stringp (cdr x)) nil)
  2568. ((stringp (nth 1 x)) x)
  2569. ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
  2570. (t (cons (car x) (cons "" (cdr x))))))
  2571. cmds)))
  2572. (defun org-agenda-get-restriction-and-command (prefix-descriptions)
  2573. "The user interface for selecting an agenda command."
  2574. (catch 'exit
  2575. (let* ((bfn (buffer-file-name (buffer-base-buffer)))
  2576. (restrict-ok (and bfn (derived-mode-p 'org-mode)))
  2577. (region-p (org-region-active-p))
  2578. (custom org-agenda-custom-commands)
  2579. (selstring "")
  2580. restriction second-time
  2581. c entry key type match prefixes rmheader header-end custom1 desc
  2582. line lines left right n n1)
  2583. (save-window-excursion
  2584. (delete-other-windows)
  2585. (org-switch-to-buffer-other-window " *Agenda Commands*")
  2586. (erase-buffer)
  2587. (insert (eval-when-compile
  2588. (let ((header
  2589. "Press key for an agenda command: < Buffer, subtree/region restriction
  2590. -------------------------------- > Remove restriction
  2591. a Agenda for current week or day e Export agenda views
  2592. t List of all TODO entries T Entries with special TODO kwd
  2593. m Match a TAGS/PROP/TODO query M Like m, but only TODO entries
  2594. s Search for keywords S Like s, but only TODO entries
  2595. L Timeline for current buffer # List stuck projects (!=configure)
  2596. / Multi-occur C Configure custom agenda commands
  2597. ? Find :FLAGGED: entries * Toggle sticky agenda views
  2598. ")
  2599. (start 0))
  2600. (while (string-match
  2601. "\\(^\\| \\|(\\)\\(\\S-\\)\\( \\|=\\)"
  2602. header start)
  2603. (setq start (match-end 0))
  2604. (add-text-properties (match-beginning 2) (match-end 2)
  2605. '(face bold) header))
  2606. header)))
  2607. (setq header-end (point-marker))
  2608. (while t
  2609. (setq custom1 custom)
  2610. (when (eq rmheader t)
  2611. (org-goto-line 1)
  2612. (re-search-forward ":" nil t)
  2613. (delete-region (match-end 0) (point-at-eol))
  2614. (forward-char 1)
  2615. (looking-at "-+")
  2616. (delete-region (match-end 0) (point-at-eol))
  2617. (move-marker header-end (match-end 0)))
  2618. (goto-char header-end)
  2619. (delete-region (point) (point-max))
  2620. ;; Produce all the lines that describe custom commands and prefixes
  2621. (setq lines nil)
  2622. (while (setq entry (pop custom1))
  2623. (setq key (car entry) desc (nth 1 entry)
  2624. type (nth 2 entry)
  2625. match (nth 3 entry))
  2626. (if (> (length key) 1)
  2627. (add-to-list 'prefixes (string-to-char key))
  2628. (setq line
  2629. (format
  2630. "%-4s%-14s"
  2631. (org-add-props (copy-sequence key)
  2632. '(face bold))
  2633. (cond
  2634. ((string-match "\\S-" desc) desc)
  2635. ((eq type 'agenda) "Agenda for current week or day")
  2636. ((eq type 'agenda*) "Appointments for current week or day")
  2637. ((eq type 'alltodo) "List of all TODO entries")
  2638. ((eq type 'search) "Word search")
  2639. ((eq type 'stuck) "List of stuck projects")
  2640. ((eq type 'todo) "TODO keyword")
  2641. ((eq type 'tags) "Tags query")
  2642. ((eq type 'tags-todo) "Tags (TODO)")
  2643. ((eq type 'tags-tree) "Tags tree")
  2644. ((eq type 'todo-tree) "TODO kwd tree")
  2645. ((eq type 'occur-tree) "Occur tree")
  2646. ((functionp type) (if (symbolp type)
  2647. (symbol-name type)
  2648. "Lambda expression"))
  2649. (t "???"))))
  2650. (if org-agenda-menu-show-matcher
  2651. (setq line
  2652. (concat line ": "
  2653. (cond
  2654. ((stringp match)
  2655. (setq match (copy-sequence match))
  2656. (org-add-props match nil 'face 'org-warning))
  2657. ((listp type)
  2658. (format "set of %d commands" (length type))))))
  2659. (if (org-string-nw-p match)
  2660. (add-text-properties
  2661. 0 (length line) (list 'help-echo
  2662. (concat "Matcher: " match)) line)))
  2663. (push line lines)))
  2664. (setq lines (nreverse lines))
  2665. (when prefixes
  2666. (mapc (lambda (x)
  2667. (push
  2668. (format "%s %s"
  2669. (org-add-props (char-to-string x)
  2670. nil 'face 'bold)
  2671. (or (cdr (assoc (concat selstring
  2672. (char-to-string x))
  2673. prefix-descriptions))
  2674. "Prefix key"))
  2675. lines))
  2676. prefixes))
  2677. ;; Check if we should display in two columns
  2678. (if org-agenda-menu-two-columns
  2679. (progn
  2680. (setq n (length lines)
  2681. n1 (+ (/ n 2) (mod n 2))
  2682. right (nthcdr n1 lines)
  2683. left (copy-sequence lines))
  2684. (setcdr (nthcdr (1- n1) left) nil))
  2685. (setq left lines right nil))
  2686. (while left
  2687. (insert "\n" (pop left))
  2688. (when right
  2689. (if (< (current-column) 40)
  2690. (move-to-column 40 t)
  2691. (insert " "))
  2692. (insert (pop right))))
  2693. ;; Make the window the right size
  2694. (goto-char (point-min))
  2695. (if second-time
  2696. (if (not (pos-visible-in-window-p (point-max)))
  2697. (org-fit-window-to-buffer))
  2698. (setq second-time t)
  2699. (org-fit-window-to-buffer))
  2700. ;; Ask for selection
  2701. (message "Press key for agenda command%s:"
  2702. (if (or restrict-ok org-agenda-overriding-restriction)
  2703. (if org-agenda-overriding-restriction
  2704. " (restriction lock active)"
  2705. (if restriction
  2706. (format " (restricted to %s)" restriction)
  2707. " (unrestricted)"))
  2708. ""))
  2709. (setq c (read-char-exclusive))
  2710. (message "")
  2711. (cond
  2712. ((assoc (char-to-string c) custom)
  2713. (setq selstring (concat selstring (char-to-string c)))
  2714. (throw 'exit (cons selstring restriction)))
  2715. ((memq c prefixes)
  2716. (setq selstring (concat selstring (char-to-string c))
  2717. prefixes nil
  2718. rmheader (or rmheader t)
  2719. custom (delq nil (mapcar
  2720. (lambda (x)
  2721. (if (or (= (length (car x)) 1)
  2722. (/= (string-to-char (car x)) c))
  2723. nil
  2724. (cons (substring (car x) 1) (cdr x))))
  2725. custom))))
  2726. ((eq c ?*)
  2727. (call-interactively 'org-toggle-sticky-agenda)
  2728. (sit-for 2))
  2729. ((and (not restrict-ok) (memq c '(?1 ?0 ?<)))
  2730. (message "Restriction is only possible in Org-mode buffers")
  2731. (ding) (sit-for 1))
  2732. ((eq c ?1)
  2733. (org-agenda-remove-restriction-lock 'noupdate)
  2734. (setq restriction 'buffer))
  2735. ((eq c ?0)
  2736. (org-agenda-remove-restriction-lock 'noupdate)
  2737. (setq restriction (if region-p 'region 'subtree)))
  2738. ((eq c ?<)
  2739. (org-agenda-remove-restriction-lock 'noupdate)
  2740. (setq restriction
  2741. (cond
  2742. ((eq restriction 'buffer)
  2743. (if region-p 'region 'subtree))
  2744. ((memq restriction '(subtree region))
  2745. nil)
  2746. (t 'buffer))))
  2747. ((eq c ?>)
  2748. (org-agenda-remove-restriction-lock 'noupdate)
  2749. (setq restriction nil))
  2750. ((and (equal selstring "") (memq c '(?s ?S ?a ?t ?m ?L ?C ?e ?T ?M ?# ?! ?/ ??)))
  2751. (throw 'exit (cons (setq selstring (char-to-string c)) restriction)))
  2752. ((and (> (length selstring) 0) (eq c ?\d))
  2753. (delete-window)
  2754. (org-agenda-get-restriction-and-command prefix-descriptions))
  2755. ((equal c ?q) (error "Abort"))
  2756. (t (user-error "Invalid key %c" c))))))))
  2757. (defun org-agenda-fit-window-to-buffer ()
  2758. "Fit the window to the buffer size."
  2759. (and (memq org-agenda-window-setup '(reorganize-frame))
  2760. (fboundp 'fit-window-to-buffer)
  2761. (org-fit-window-to-buffer
  2762. nil
  2763. (floor (* (frame-height) (cdr org-agenda-window-frame-fractions)))
  2764. (floor (* (frame-height) (car org-agenda-window-frame-fractions))))))
  2765. (defvar org-cmd nil)
  2766. (defvar org-agenda-overriding-cmd nil)
  2767. (defvar org-agenda-overriding-arguments nil)
  2768. (defvar org-agenda-overriding-cmd-arguments nil)
  2769. (defun org-agenda-run-series (name series)
  2770. "Run agenda NAME as a SERIES of agenda commands."
  2771. (org-let (nth 1 series) '(org-agenda-prepare name))
  2772. ;; We need to reset agenda markers here, because when constructing a
  2773. ;; block agenda, the individual blocks do not do that.
  2774. (org-agenda-reset-markers)
  2775. (let* ((org-agenda-multi t)
  2776. (redo (list 'org-agenda-run-series name (list 'quote series)))
  2777. (cmds (car series))
  2778. (gprops (nth 1 series))
  2779. match ;; The byte compiler incorrectly complains about this. Keep it!
  2780. org-cmd type lprops)
  2781. (while (setq org-cmd (pop cmds))
  2782. (setq type (car org-cmd)
  2783. match (eval (nth 1 org-cmd))
  2784. lprops (nth 2 org-cmd))
  2785. (let ((org-agenda-overriding-arguments
  2786. (if (eq org-agenda-overriding-cmd org-cmd)
  2787. (or org-agenda-overriding-arguments
  2788. org-agenda-overriding-cmd-arguments))))
  2789. (cond
  2790. ((eq type 'agenda)
  2791. (org-let2 gprops lprops
  2792. '(call-interactively 'org-agenda-list)))
  2793. ((eq type 'agenda*)
  2794. (org-let2 gprops lprops
  2795. '(funcall 'org-agenda-list nil nil t)))
  2796. ((eq type 'alltodo)
  2797. (org-let2 gprops lprops
  2798. '(call-interactively 'org-todo-list)))
  2799. ((eq type 'search)
  2800. (org-let2 gprops lprops
  2801. '(org-search-view current-prefix-arg match nil)))
  2802. ((eq type 'stuck)
  2803. (org-let2 gprops lprops
  2804. '(call-interactively 'org-agenda-list-stuck-projects)))
  2805. ((eq type 'tags)
  2806. (org-let2 gprops lprops
  2807. '(org-tags-view current-prefix-arg match)))
  2808. ((eq type 'tags-todo)
  2809. (org-let2 gprops lprops
  2810. '(org-tags-view '(4) match)))
  2811. ((eq type 'todo)
  2812. (org-let2 gprops lprops
  2813. '(org-todo-list match)))
  2814. ((fboundp type)
  2815. (org-let2 gprops lprops
  2816. '(funcall type match)))
  2817. (t (error "Invalid type in command series")))))
  2818. (widen)
  2819. (let ((inhibit-read-only t))
  2820. (add-text-properties (point-min) (point-max)
  2821. `(org-series t org-series-redo-cmd ,redo)))
  2822. (setq org-agenda-redo-command redo)
  2823. (goto-char (point-min)))
  2824. (org-agenda-fit-window-to-buffer)
  2825. (org-let (nth 1 series) '(org-agenda-finalize)))
  2826. ;;;###autoload
  2827. (defmacro org-batch-agenda (cmd-key &rest parameters)
  2828. "Run an agenda command in batch mode and send the result to STDOUT.
  2829. If CMD-KEY is a string of length 1, it is used as a key in
  2830. `org-agenda-custom-commands' and triggers this command. If it is a
  2831. longer string it is used as a tags/todo match string.
  2832. Parameters are alternating variable names and values that will be bound
  2833. before running the agenda command."
  2834. (org-eval-in-environment (org-make-parameter-alist parameters)
  2835. (let (org-agenda-sticky)
  2836. (if (> (length cmd-key) 2)
  2837. (org-tags-view nil cmd-key)
  2838. (org-agenda nil cmd-key))))
  2839. (set-buffer org-agenda-buffer-name)
  2840. (princ (buffer-string)))
  2841. (defvar org-agenda-info nil)
  2842. ;;;###autoload
  2843. (defmacro org-batch-agenda-csv (cmd-key &rest parameters)
  2844. "Run an agenda command in batch mode and send the result to STDOUT.
  2845. If CMD-KEY is a string of length 1, it is used as a key in
  2846. `org-agenda-custom-commands' and triggers this command. If it is a
  2847. longer string it is used as a tags/todo match string.
  2848. Parameters are alternating variable names and values that will be bound
  2849. before running the agenda command.
  2850. The output gives a line for each selected agenda item. Each
  2851. item is a list of comma-separated values, like this:
  2852. category,head,type,todo,tags,date,time,extra,priority-l,priority-n
  2853. category The category of the item
  2854. head The headline, without TODO kwd, TAGS and PRIORITY
  2855. type The type of the agenda entry, can be
  2856. todo selected in TODO match
  2857. tagsmatch selected in tags match
  2858. diary imported from diary
  2859. deadline a deadline on given date
  2860. scheduled scheduled on given date
  2861. timestamp entry has timestamp on given date
  2862. closed entry was closed on given date
  2863. upcoming-deadline warning about deadline
  2864. past-scheduled forwarded scheduled item
  2865. block entry has date block including g. date
  2866. todo The todo keyword, if any
  2867. tags All tags including inherited ones, separated by colons
  2868. date The relevant date, like 2007-2-14
  2869. time The time, like 15:00-16:50
  2870. extra Sting with extra planning info
  2871. priority-l The priority letter if any was given
  2872. priority-n The computed numerical priority
  2873. agenda-day The day in the agenda where this is listed"
  2874. (org-eval-in-environment (append '((org-agenda-remove-tags t))
  2875. (org-make-parameter-alist parameters))
  2876. (if (> (length cmd-key) 2)
  2877. (org-tags-view nil cmd-key)
  2878. (org-agenda nil cmd-key)))
  2879. (set-buffer org-agenda-buffer-name)
  2880. (let* ((lines (org-split-string (buffer-string) "\n"))
  2881. line)
  2882. (while (setq line (pop lines))
  2883. (catch 'next
  2884. (if (not (get-text-property 0 'org-category line)) (throw 'next nil))
  2885. (setq org-agenda-info
  2886. (org-fix-agenda-info (text-properties-at 0 line)))
  2887. (princ
  2888. (mapconcat 'org-agenda-export-csv-mapper
  2889. '(org-category txt type todo tags date time extra
  2890. priority-letter priority agenda-day)
  2891. ","))
  2892. (princ "\n")))))
  2893. (defun org-fix-agenda-info (props)
  2894. "Make sure all properties on an agenda item have a canonical form.
  2895. This ensures the export commands can easily use it."
  2896. (let (tmp re)
  2897. (when (setq tmp (plist-get props 'tags))
  2898. (setq props (plist-put props 'tags (mapconcat 'identity tmp ":"))))
  2899. (when (setq tmp (plist-get props 'date))
  2900. (if (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
  2901. (let ((calendar-date-display-form '(year "-" month "-" day)))
  2902. '((format "%4d, %9s %2s, %4s" dayname monthname day year))
  2903. (setq tmp (calendar-date-string tmp)))
  2904. (setq props (plist-put props 'date tmp)))
  2905. (when (setq tmp (plist-get props 'day))
  2906. (if (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
  2907. (let ((calendar-date-display-form '(year "-" month "-" day)))
  2908. (setq tmp (calendar-date-string tmp)))
  2909. (setq props (plist-put props 'day tmp))
  2910. (setq props (plist-put props 'agenda-day tmp)))
  2911. (when (setq tmp (plist-get props 'txt))
  2912. (when (string-match "\\[#\\([A-Z0-9]\\)\\] ?" tmp)
  2913. (plist-put props 'priority-letter (match-string 1 tmp))
  2914. (setq tmp (replace-match "" t t tmp)))
  2915. (when (and (setq re (plist-get props 'org-todo-regexp))
  2916. (setq re (concat "\\`\\.*" re " ?"))
  2917. (string-match re tmp))
  2918. (plist-put props 'todo (match-string 1 tmp))
  2919. (setq tmp (replace-match "" t t tmp)))
  2920. (plist-put props 'txt tmp)))
  2921. props)
  2922. (defun org-agenda-export-csv-mapper (prop)
  2923. (let ((res (plist-get org-agenda-info prop)))
  2924. (setq res
  2925. (cond
  2926. ((not res) "")
  2927. ((stringp res) res)
  2928. (t (prin1-to-string res))))
  2929. (while (string-match "," res)
  2930. (setq res (replace-match ";" t t res)))
  2931. (org-trim res)))
  2932. ;;;###autoload
  2933. (defun org-store-agenda-views (&rest parameters)
  2934. "Store agenda views."
  2935. (interactive)
  2936. (eval (list 'org-batch-store-agenda-views)))
  2937. ;;;###autoload
  2938. (defmacro org-batch-store-agenda-views (&rest parameters)
  2939. "Run all custom agenda commands that have a file argument."
  2940. (let ((cmds (org-agenda-normalize-custom-commands org-agenda-custom-commands))
  2941. (pop-up-frames nil)
  2942. (dir default-directory)
  2943. (pars (org-make-parameter-alist parameters))
  2944. cmd thiscmdkey thiscmdcmd match files opts cmd-or-set bufname)
  2945. (save-window-excursion
  2946. (while cmds
  2947. (setq cmd (pop cmds)
  2948. thiscmdkey (car cmd)
  2949. thiscmdcmd (cdr cmd)
  2950. match (nth 2 thiscmdcmd)
  2951. bufname (if org-agenda-sticky
  2952. (or (and (stringp match)
  2953. (format "*Org Agenda(%s:%s)*" thiscmdkey match))
  2954. (format "*Org Agenda(%s)*" thiscmdkey))
  2955. org-agenda-buffer-name)
  2956. cmd-or-set (nth 2 cmd)
  2957. opts (nth (if (listp cmd-or-set) 3 4) cmd)
  2958. files (nth (if (listp cmd-or-set) 4 5) cmd))
  2959. (if (stringp files) (setq files (list files)))
  2960. (when files
  2961. (org-eval-in-environment (append org-agenda-exporter-settings
  2962. opts pars)
  2963. (org-agenda nil thiscmdkey))
  2964. (set-buffer bufname)
  2965. (while files
  2966. (org-eval-in-environment (append org-agenda-exporter-settings
  2967. opts pars)
  2968. (org-agenda-write (expand-file-name (pop files) dir) nil t bufname)))
  2969. (and (get-buffer bufname)
  2970. (kill-buffer bufname)))))))
  2971. (defvar org-agenda-current-span nil
  2972. "The current span used in the agenda view.") ; local variable in the agenda buffer
  2973. (defun org-agenda-mark-header-line (pos)
  2974. "Mark the line at POS as an agenda structure header."
  2975. (save-excursion
  2976. (goto-char pos)
  2977. (put-text-property (point-at-bol) (point-at-eol)
  2978. 'org-agenda-structural-header t)
  2979. (when org-agenda-title-append
  2980. (put-text-property (point-at-bol) (point-at-eol)
  2981. 'org-agenda-title-append org-agenda-title-append))))
  2982. (defvar org-mobile-creating-agendas) ; defined in org-mobile.el
  2983. (defvar org-agenda-write-buffer-name "Agenda View")
  2984. (defun org-agenda-write (file &optional open nosettings agenda-bufname)
  2985. "Write the current buffer (an agenda view) as a file.
  2986. Depending on the extension of the file name, plain text (.txt),
  2987. HTML (.html or .htm), PDF (.pdf) or Postscript (.ps) is produced.
  2988. If the extension is .ics, run icalendar export over all files used
  2989. to construct the agenda and limit the export to entries listed in the
  2990. agenda now.
  2991. If the extension is .org, collect all subtrees corresponding to the
  2992. agenda entries and add them in an .org file.
  2993. With prefix argument OPEN, open the new file immediately.
  2994. If NOSETTINGS is given, do not scope the settings of
  2995. `org-agenda-exporter-settings' into the export commands. This is used when
  2996. the settings have already been scoped and we do not wish to overrule other,
  2997. higher priority settings.
  2998. If AGENDA-BUFFER-NAME, use this as the buffer name for the agenda to write."
  2999. (interactive "FWrite agenda to file: \nP")
  3000. (if (or (not (file-writable-p file))
  3001. (and (file-exists-p file)
  3002. (if (org-called-interactively-p 'any)
  3003. (not (y-or-n-p (format "Overwrite existing file %s? " file))))))
  3004. (user-error "Cannot write agenda to file %s" file))
  3005. (org-let (if nosettings nil org-agenda-exporter-settings)
  3006. '(save-excursion
  3007. (save-window-excursion
  3008. (org-agenda-mark-filtered-text)
  3009. (let ((bs (copy-sequence (buffer-string))) beg content)
  3010. (org-agenda-unmark-filtered-text)
  3011. (with-temp-buffer
  3012. (rename-buffer org-agenda-write-buffer-name t)
  3013. (set-buffer-modified-p nil)
  3014. (insert bs)
  3015. (org-agenda-remove-marked-text 'org-filtered)
  3016. (while (setq beg (text-property-any (point-min) (point-max)
  3017. 'org-filtered t))
  3018. (delete-region
  3019. beg (or (next-single-property-change beg 'org-filtered)
  3020. (point-max))))
  3021. (run-hooks 'org-agenda-before-write-hook)
  3022. (cond
  3023. ((org-bound-and-true-p org-mobile-creating-agendas)
  3024. (org-mobile-write-agenda-for-mobile file))
  3025. ((string-match "\\.org\\'" file)
  3026. (let (content p m message-log-max)
  3027. (goto-char (point-min))
  3028. (while (setq p (next-single-property-change (point) 'org-hd-marker nil))
  3029. (goto-char p)
  3030. (setq m (get-text-property (point) 'org-hd-marker))
  3031. (when m
  3032. (push (save-excursion
  3033. (set-buffer (marker-buffer m))
  3034. (goto-char m)
  3035. (org-copy-subtree 1 nil t t)
  3036. org-subtree-clip)
  3037. content)))
  3038. (find-file file)
  3039. (erase-buffer)
  3040. (mapcar (lambda (s) (org-paste-subtree 1 s)) (reverse content))
  3041. (write-file file)
  3042. (kill-buffer (current-buffer))
  3043. (message "Org file written to %s" file)))
  3044. ((string-match "\\.html?\\'" file)
  3045. (require 'htmlize)
  3046. (set-buffer (htmlize-buffer (current-buffer)))
  3047. (when org-agenda-export-html-style
  3048. ;; replace <style> section with org-agenda-export-html-style
  3049. (goto-char (point-min))
  3050. (kill-region (- (search-forward "<style") 6)
  3051. (search-forward "</style>"))
  3052. (insert org-agenda-export-html-style))
  3053. (write-file file)
  3054. (kill-buffer (current-buffer))
  3055. (message "HTML written to %s" file))
  3056. ((string-match "\\.ps\\'" file)
  3057. (require 'ps-print)
  3058. (ps-print-buffer-with-faces file)
  3059. (message "Postscript written to %s" file))
  3060. ((string-match "\\.pdf\\'" file)
  3061. (require 'ps-print)
  3062. (ps-print-buffer-with-faces
  3063. (concat (file-name-sans-extension file) ".ps"))
  3064. (call-process "ps2pdf" nil nil nil
  3065. (expand-file-name
  3066. (concat (file-name-sans-extension file) ".ps"))
  3067. (expand-file-name file))
  3068. (delete-file (concat (file-name-sans-extension file) ".ps"))
  3069. (message "PDF written to %s" file))
  3070. ((string-match "\\.ics\\'" file)
  3071. (require 'ox-icalendar)
  3072. (org-icalendar-export-current-agenda (expand-file-name file)))
  3073. (t
  3074. (let ((bs (buffer-string)))
  3075. (find-file file)
  3076. (erase-buffer)
  3077. (insert bs)
  3078. (save-buffer 0)
  3079. (kill-buffer (current-buffer))
  3080. (message "Plain text written to %s" file))))))))
  3081. (set-buffer (or agenda-bufname
  3082. (and (org-called-interactively-p 'any) (buffer-name))
  3083. org-agenda-buffer-name)))
  3084. (when open (org-open-file file)))
  3085. (defvar org-agenda-tag-filter-overlays nil)
  3086. (defvar org-agenda-cat-filter-overlays nil)
  3087. (defvar org-agenda-re-filter-overlays nil)
  3088. (defun org-agenda-mark-filtered-text ()
  3089. "Mark all text hidden by filtering with a text property."
  3090. (let ((inhibit-read-only t))
  3091. (mapc
  3092. (lambda (o)
  3093. (when (equal (overlay-buffer o) (current-buffer))
  3094. (put-text-property
  3095. (overlay-start o) (overlay-end o)
  3096. 'org-filtered t)))
  3097. (append org-agenda-tag-filter-overlays
  3098. org-agenda-cat-filter-overlays
  3099. org-agenda-re-filter-overlays))))
  3100. (defun org-agenda-unmark-filtered-text ()
  3101. "Remove the filtering text property."
  3102. (let ((inhibit-read-only t))
  3103. (remove-text-properties (point-min) (point-max) '(org-filtered t))))
  3104. (defun org-agenda-remove-marked-text (property &optional value)
  3105. "Delete all text marked with VALUE of PROPERTY.
  3106. VALUE defaults to t."
  3107. (let (beg)
  3108. (setq value (or value t))
  3109. (while (setq beg (text-property-any (point-min) (point-max)
  3110. property value))
  3111. (delete-region
  3112. beg (or (next-single-property-change beg 'org-filtered)
  3113. (point-max))))))
  3114. (defun org-agenda-add-entry-text ()
  3115. "Add entry text to agenda lines.
  3116. This will add a maximum of `org-agenda-add-entry-text-maxlines' lines of the
  3117. entry text following headings shown in the agenda.
  3118. Drawers will be excluded, also the line with scheduling/deadline info."
  3119. (when (and (> org-agenda-add-entry-text-maxlines 0)
  3120. (not (org-bound-and-true-p org-mobile-creating-agendas)))
  3121. (let (m txt)
  3122. (goto-char (point-min))
  3123. (while (not (eobp))
  3124. (if (not (setq m (org-get-at-bol 'org-hd-marker)))
  3125. (beginning-of-line 2)
  3126. (setq txt (org-agenda-get-some-entry-text
  3127. m org-agenda-add-entry-text-maxlines " > "))
  3128. (end-of-line 1)
  3129. (if (string-match "\\S-" txt)
  3130. (insert "\n" txt)
  3131. (or (eobp) (forward-char 1))))))))
  3132. (defun org-agenda-get-some-entry-text (marker n-lines &optional indent
  3133. &rest keep)
  3134. "Extract entry text from MARKER, at most N-LINES lines.
  3135. This will ignore drawers etc, just get the text.
  3136. If INDENT is given, prefix every line with this string. If KEEP is
  3137. given, it is a list of symbols, defining stuff that should not be
  3138. removed from the entry content. Currently only `planning' is allowed here."
  3139. (let (txt drawer-re kwd-time-re ind)
  3140. (save-excursion
  3141. (with-current-buffer (marker-buffer marker)
  3142. (if (not (derived-mode-p 'org-mode))
  3143. (setq txt "")
  3144. (save-excursion
  3145. (save-restriction
  3146. (widen)
  3147. (goto-char marker)
  3148. (end-of-line 1)
  3149. (setq txt (buffer-substring
  3150. (min (1+ (point)) (point-max))
  3151. (progn (outline-next-heading) (point)))
  3152. drawer-re org-drawer-regexp
  3153. kwd-time-re (concat "^[ \t]*" org-keyword-time-regexp
  3154. ".*\n?"))
  3155. (with-temp-buffer
  3156. (insert txt)
  3157. (when org-agenda-add-entry-text-descriptive-links
  3158. (goto-char (point-min))
  3159. (while (org-activate-bracket-links (point-max))
  3160. (add-text-properties (match-beginning 0) (match-end 0)
  3161. '(face org-link))))
  3162. (goto-char (point-min))
  3163. (while (re-search-forward org-bracket-link-regexp (point-max) t)
  3164. (set-text-properties (match-beginning 0) (match-end 0)
  3165. nil))
  3166. (goto-char (point-min))
  3167. (while (re-search-forward drawer-re nil t)
  3168. (delete-region
  3169. (match-beginning 0)
  3170. (progn (re-search-forward
  3171. "^[ \t]*:END:.*\n?" nil 'move)
  3172. (point))))
  3173. (unless (member 'planning keep)
  3174. (goto-char (point-min))
  3175. (while (re-search-forward kwd-time-re nil t)
  3176. (replace-match "")))
  3177. (goto-char (point-min))
  3178. (when org-agenda-entry-text-exclude-regexps
  3179. (let ((re-list org-agenda-entry-text-exclude-regexps) re)
  3180. (while (setq re (pop re-list))
  3181. (goto-char (point-min))
  3182. (while (re-search-forward re nil t)
  3183. (replace-match "")))))
  3184. (goto-char (point-max))
  3185. (skip-chars-backward " \t\n")
  3186. (if (looking-at "[ \t\n]+\\'") (replace-match ""))
  3187. ;; find and remove min common indentation
  3188. (goto-char (point-min))
  3189. (untabify (point-min) (point-max))
  3190. (setq ind (org-get-indentation))
  3191. (while (not (eobp))
  3192. (unless (looking-at "[ \t]*$")
  3193. (setq ind (min ind (org-get-indentation))))
  3194. (beginning-of-line 2))
  3195. (goto-char (point-min))
  3196. (while (not (eobp))
  3197. (unless (looking-at "[ \t]*$")
  3198. (move-to-column ind)
  3199. (delete-region (point-at-bol) (point)))
  3200. (beginning-of-line 2))
  3201. (run-hooks 'org-agenda-entry-text-cleanup-hook)
  3202. (goto-char (point-min))
  3203. (when indent
  3204. (while (and (not (eobp)) (re-search-forward "^" nil t))
  3205. (replace-match indent t t)))
  3206. (goto-char (point-min))
  3207. (while (looking-at "[ \t]*\n") (replace-match ""))
  3208. (goto-char (point-max))
  3209. (when (> (org-current-line)
  3210. n-lines)
  3211. (org-goto-line (1+ n-lines))
  3212. (backward-char 1))
  3213. (setq txt (buffer-substring (point-min) (point)))))))))
  3214. txt))
  3215. (defun org-check-for-org-mode ()
  3216. "Make sure current buffer is in org-mode. Error if not."
  3217. (or (derived-mode-p 'org-mode)
  3218. (error "Cannot execute org-mode agenda command on buffer in %s"
  3219. major-mode)))
  3220. ;;; Agenda prepare and finalize
  3221. (defvar org-agenda-multi nil) ; dynamically scoped
  3222. (defvar org-agenda-pre-window-conf nil)
  3223. (defvar org-agenda-columns-active nil)
  3224. (defvar org-agenda-name nil)
  3225. (defvar org-agenda-tag-filter nil)
  3226. (defvar org-agenda-category-filter nil)
  3227. (defvar org-agenda-regexp-filter nil)
  3228. (defvar org-agenda-top-headline-filter nil)
  3229. (defvar org-agenda-tag-filter-while-redo nil)
  3230. (defvar org-agenda-tag-filter-preset nil
  3231. "A preset of the tags filter used for secondary agenda filtering.
  3232. This must be a list of strings, each string must be a single tag preceded
  3233. by \"+\" or \"-\".
  3234. This variable should not be set directly, but agenda custom commands can
  3235. bind it in the options section. The preset filter is a global property of
  3236. the entire agenda view. In a block agenda, it will not work reliably to
  3237. define a filter for one of the individual blocks. You need to set it in
  3238. the global options and expect it to be applied to the entire view.")
  3239. (defvar org-agenda-category-filter-preset nil
  3240. "A preset of the category filter used for secondary agenda filtering.
  3241. This must be a list of strings, each string must be a single category
  3242. preceded by \"+\" or \"-\".
  3243. This variable should not be set directly, but agenda custom commands can
  3244. bind it in the options section. The preset filter is a global property of
  3245. the entire agenda view. In a block agenda, it will not work reliably to
  3246. define a filter for one of the individual blocks. You need to set it in
  3247. the global options and expect it to be applied to the entire view.")
  3248. (defvar org-agenda-regexp-filter-preset nil
  3249. "A preset of the regexp filter used for secondary agenda filtering.
  3250. This must be a list of strings, each string must be a single category
  3251. preceded by \"+\" or \"-\".
  3252. This variable should not be set directly, but agenda custom commands can
  3253. bind it in the options section. The preset filter is a global property of
  3254. the entire agenda view. In a block agenda, it will not work reliably to
  3255. define a filter for one of the individual blocks. You need to set it in
  3256. the global options and expect it to be applied to the entire view.")
  3257. (defun org-agenda-use-sticky-p ()
  3258. "Return non-nil if an agenda buffer named
  3259. `org-agenda-buffer-name' exists and should be shown instead of
  3260. generating a new one."
  3261. (and
  3262. ;; turned off by user
  3263. org-agenda-sticky
  3264. ;; For multi-agenda buffer already exists
  3265. (not org-agenda-multi)
  3266. ;; buffer found
  3267. (get-buffer org-agenda-buffer-name)
  3268. ;; C-u parameter is same as last call
  3269. (with-current-buffer (get-buffer org-agenda-buffer-name)
  3270. (and
  3271. (equal current-prefix-arg
  3272. org-agenda-last-prefix-arg)
  3273. ;; In case user turned stickiness on, while having existing
  3274. ;; Agenda buffer active, don't reuse that buffer, because it
  3275. ;; does not have org variables local
  3276. org-agenda-this-buffer-is-sticky))))
  3277. (defun org-agenda-prepare-window (abuf)
  3278. "Setup agenda buffer in the window."
  3279. (let* ((awin (get-buffer-window abuf))
  3280. wconf)
  3281. (cond
  3282. ((equal (current-buffer) abuf) nil)
  3283. (awin (select-window awin))
  3284. ((not (setq wconf (current-window-configuration))))
  3285. ((equal org-agenda-window-setup 'current-window)
  3286. (org-pop-to-buffer-same-window abuf))
  3287. ((equal org-agenda-window-setup 'other-window)
  3288. (org-switch-to-buffer-other-window abuf))
  3289. ((equal org-agenda-window-setup 'other-frame)
  3290. (switch-to-buffer-other-frame abuf))
  3291. ((equal org-agenda-window-setup 'reorganize-frame)
  3292. (delete-other-windows)
  3293. (org-switch-to-buffer-other-window abuf)))
  3294. ;; additional test in case agenda is invoked from within agenda
  3295. ;; buffer via elisp link
  3296. (unless (equal (current-buffer) abuf)
  3297. (org-pop-to-buffer-same-window abuf))
  3298. (setq org-agenda-pre-window-conf
  3299. (or org-agenda-pre-window-conf wconf))))
  3300. (defun org-agenda-prepare (&optional name)
  3301. (if (org-agenda-use-sticky-p)
  3302. (progn
  3303. ;; Popup existing buffer
  3304. (org-agenda-prepare-window (get-buffer org-agenda-buffer-name))
  3305. (message "Sticky Agenda buffer, use `r' to refresh")
  3306. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  3307. (throw 'exit "Sticky Agenda buffer, use `r' to refresh"))
  3308. (setq org-todo-keywords-for-agenda nil)
  3309. (setq org-drawers-for-agenda nil)
  3310. (unless org-agenda-persistent-filter
  3311. (setq org-agenda-tag-filter nil
  3312. org-agenda-category-filter nil
  3313. org-agenda-regexp-filter nil))
  3314. (put 'org-agenda-tag-filter :preset-filter
  3315. org-agenda-tag-filter-preset)
  3316. (put 'org-agenda-category-filter :preset-filter
  3317. org-agenda-category-filter-preset)
  3318. (put 'org-agenda-regexp-filter :preset-filter
  3319. org-agenda-regexp-filter-preset)
  3320. (if org-agenda-multi
  3321. (progn
  3322. (setq buffer-read-only nil)
  3323. (goto-char (point-max))
  3324. (unless (or (bobp) org-agenda-compact-blocks
  3325. (not org-agenda-block-separator))
  3326. (insert "\n"
  3327. (if (stringp org-agenda-block-separator)
  3328. org-agenda-block-separator
  3329. (make-string (window-width) org-agenda-block-separator))
  3330. "\n"))
  3331. (narrow-to-region (point) (point-max)))
  3332. (setq org-done-keywords-for-agenda nil)
  3333. ;; Setting any org variables that are in org-agenda-local-vars
  3334. ;; list need to be done after the prepare call
  3335. (org-agenda-prepare-window (get-buffer-create org-agenda-buffer-name))
  3336. (setq buffer-read-only nil)
  3337. (org-agenda-reset-markers)
  3338. (let ((inhibit-read-only t)) (erase-buffer))
  3339. (org-agenda-mode)
  3340. (setq org-agenda-buffer (current-buffer))
  3341. (setq org-agenda-contributing-files nil)
  3342. (setq org-agenda-columns-active nil)
  3343. (org-agenda-prepare-buffers (org-agenda-files nil 'ifmode))
  3344. (setq org-todo-keywords-for-agenda
  3345. (org-uniquify org-todo-keywords-for-agenda))
  3346. (setq org-done-keywords-for-agenda
  3347. (org-uniquify org-done-keywords-for-agenda))
  3348. (setq org-drawers-for-agenda (org-uniquify org-drawers-for-agenda))
  3349. (setq org-agenda-last-prefix-arg current-prefix-arg)
  3350. (setq org-agenda-this-buffer-name org-agenda-buffer-name)
  3351. (and name (not org-agenda-name)
  3352. (org-set-local 'org-agenda-name name)))
  3353. (setq buffer-read-only nil)))
  3354. (defvar org-agenda-overriding-columns-format) ; From org-colview.el
  3355. (defun org-agenda-finalize ()
  3356. "Finishing touch for the agenda buffer, called just before displaying it."
  3357. (unless org-agenda-multi
  3358. (save-excursion
  3359. (let ((inhibit-read-only t))
  3360. (goto-char (point-min))
  3361. (save-excursion
  3362. (while (org-activate-bracket-links (point-max))
  3363. (add-text-properties (match-beginning 0) (match-end 0)
  3364. '(face org-link))))
  3365. (save-excursion
  3366. (while (org-activate-plain-links (point-max))
  3367. (add-text-properties (match-beginning 0) (match-end 0)
  3368. '(face org-link))))
  3369. (unless (eq org-agenda-remove-tags t)
  3370. (org-agenda-align-tags))
  3371. (unless org-agenda-with-colors
  3372. (remove-text-properties (point-min) (point-max) '(face nil)))
  3373. (if (and (boundp 'org-agenda-overriding-columns-format)
  3374. org-agenda-overriding-columns-format)
  3375. (org-set-local 'org-agenda-overriding-columns-format
  3376. org-agenda-overriding-columns-format))
  3377. (if (and (boundp 'org-agenda-view-columns-initially)
  3378. org-agenda-view-columns-initially)
  3379. (org-agenda-columns))
  3380. (when org-agenda-fontify-priorities
  3381. (org-agenda-fontify-priorities))
  3382. (when (and org-agenda-dim-blocked-tasks org-blocker-hook)
  3383. (org-agenda-dim-blocked-tasks))
  3384. ;; We need to widen when `org-agenda-finalize' is called from
  3385. ;; `org-agenda-change-all-lines' (e.g. in `org-agenda-clock-in')
  3386. (when org-clock-current-task
  3387. (save-restriction
  3388. (widen)
  3389. (org-agenda-mark-clocking-task)))
  3390. (when org-agenda-entry-text-mode
  3391. (org-agenda-entry-text-hide)
  3392. (org-agenda-entry-text-show))
  3393. (if (and (functionp 'org-habit-insert-consistency-graphs)
  3394. (save-excursion (next-single-property-change (point-min) 'org-habit-p)))
  3395. (org-habit-insert-consistency-graphs))
  3396. (setq org-agenda-type (org-get-at-bol 'org-agenda-type))
  3397. (unless (or (eq org-agenda-show-inherited-tags 'always)
  3398. (and (listp org-agenda-show-inherited-tags)
  3399. (memq org-agenda-type org-agenda-show-inherited-tags))
  3400. (and (eq org-agenda-show-inherited-tags t)
  3401. (or (eq org-agenda-use-tag-inheritance t)
  3402. (and (listp org-agenda-use-tag-inheritance)
  3403. (not (memq org-agenda-type
  3404. org-agenda-use-tag-inheritance))))))
  3405. (let (mrk)
  3406. (save-excursion
  3407. (goto-char (point-min))
  3408. (while (equal (forward-line) 0)
  3409. (when (setq mrk (or (get-text-property (point) 'org-hd-marker)
  3410. (get-text-property (point) 'org-hd-marker)))
  3411. (put-text-property (point-at-bol) (point-at-eol)
  3412. 'tags (org-with-point-at mrk
  3413. (delete-dups
  3414. (mapcar 'downcase (org-get-tags-at))))))))))
  3415. (run-hooks 'org-agenda-finalize-hook)
  3416. (when (or org-agenda-tag-filter (get 'org-agenda-tag-filter :preset-filter))
  3417. (org-agenda-filter-apply org-agenda-tag-filter 'tag))
  3418. (when (or org-agenda-category-filter (get 'org-agenda-category-filter :preset-filter))
  3419. (org-agenda-filter-apply org-agenda-category-filter 'category))
  3420. (when (or org-agenda-regexp-filter (get 'org-agenda-regexp-filter :preset-filter))
  3421. (org-agenda-filter-apply org-agenda-regexp-filter 'regexp))
  3422. (org-add-hook 'kill-buffer-hook 'org-agenda-reset-markers 'append 'local)))))
  3423. (defun org-agenda-mark-clocking-task ()
  3424. "Mark the current clock entry in the agenda if it is present."
  3425. (org-agenda-unmark-clocking-task)
  3426. (when (marker-buffer org-clock-hd-marker)
  3427. (save-excursion
  3428. (goto-char (point-min))
  3429. (let (s ov)
  3430. (while (setq s (next-single-property-change (point) 'org-hd-marker))
  3431. (goto-char s)
  3432. (when (equal (org-get-at-bol 'org-hd-marker)
  3433. org-clock-hd-marker)
  3434. (setq ov (make-overlay (point-at-bol) (1+ (point-at-eol))))
  3435. (overlay-put ov 'type 'org-agenda-clocking)
  3436. (overlay-put ov 'face 'org-agenda-clocking)
  3437. (overlay-put ov 'help-echo
  3438. "The clock is running in this item")))))))
  3439. (defun org-agenda-unmark-clocking-task ()
  3440. "Unmark the current clocking task."
  3441. (mapc (lambda (o)
  3442. (if (eq (overlay-get o 'type) 'org-agenda-clocking)
  3443. (delete-overlay o)))
  3444. (overlays-in (point-min) (point-max))))
  3445. (defun org-agenda-fontify-priorities ()
  3446. "Make highest priority lines bold, and lowest italic."
  3447. (interactive)
  3448. (mapc (lambda (o) (if (eq (overlay-get o 'org-type) 'org-priority)
  3449. (delete-overlay o)))
  3450. (overlays-in (point-min) (point-max)))
  3451. (save-excursion
  3452. (let (b e p ov h l)
  3453. (goto-char (point-min))
  3454. (while (re-search-forward "\\[#\\(.\\)\\]" nil t)
  3455. (setq h (or (get-char-property (point) 'org-highest-priority)
  3456. org-highest-priority)
  3457. l (or (get-char-property (point) 'org-lowest-priority)
  3458. org-lowest-priority)
  3459. p (string-to-char (match-string 1))
  3460. b (match-beginning 0)
  3461. e (if (eq org-agenda-fontify-priorities 'cookies)
  3462. (match-end 0)
  3463. (point-at-eol))
  3464. ov (make-overlay b e))
  3465. (overlay-put
  3466. ov 'face
  3467. (cons (cond ((org-face-from-face-or-color
  3468. 'priority nil
  3469. (cdr (assoc p org-priority-faces))))
  3470. ((and (listp org-agenda-fontify-priorities)
  3471. (org-face-from-face-or-color
  3472. 'priority nil
  3473. (cdr (assoc p org-agenda-fontify-priorities)))))
  3474. ((equal p l) 'italic)
  3475. ((equal p h) 'bold))
  3476. 'org-priority))
  3477. (overlay-put ov 'org-type 'org-priority)))))
  3478. (defvar org-depend-tag-blocked)
  3479. (defun org-agenda-dim-blocked-tasks (&optional invisible)
  3480. "Dim currently blocked TODO's in the agenda display.
  3481. When INVISIBLE is non-nil, hide currently blocked TODO instead of
  3482. dimming them."
  3483. (interactive "P")
  3484. (when (org-called-interactively-p 'interactive)
  3485. (message "Dim or hide blocked tasks..."))
  3486. (mapc (lambda (o) (if (eq (overlay-get o 'org-type) 'org-blocked-todo)
  3487. (delete-overlay o)))
  3488. (overlays-in (point-min) (point-max)))
  3489. (save-excursion
  3490. (let ((inhibit-read-only t)
  3491. (org-depend-tag-blocked nil)
  3492. (invis (or (not (null invisible))
  3493. (eq org-agenda-dim-blocked-tasks 'invisible)))
  3494. org-blocked-by-checkboxes
  3495. invis1 b e p ov h l)
  3496. (goto-char (point-min))
  3497. (while (let ((pos (next-single-property-change (point) 'todo-state)))
  3498. (and pos (goto-char (1+ pos))))
  3499. (setq org-blocked-by-checkboxes nil invis1 invis)
  3500. (let ((marker (org-get-at-bol 'org-hd-marker)))
  3501. (when (and marker
  3502. (with-current-buffer (marker-buffer marker)
  3503. (save-excursion (goto-char marker)
  3504. (org-entry-blocked-p))))
  3505. (if org-blocked-by-checkboxes (setq invis1 nil))
  3506. (setq b (if invis1
  3507. (max (point-min) (1- (point-at-bol)))
  3508. (point-at-bol))
  3509. e (point-at-eol)
  3510. ov (make-overlay b e))
  3511. (if invis1
  3512. (overlay-put ov 'invisible t)
  3513. (overlay-put ov 'face 'org-agenda-dimmed-todo-face))
  3514. (overlay-put ov 'org-type 'org-blocked-todo))))))
  3515. (when (org-called-interactively-p 'interactive)
  3516. (message "Dim or hide blocked tasks...done")))
  3517. (defvar org-agenda-skip-function nil
  3518. "Function to be called at each match during agenda construction.
  3519. If this function returns nil, the current match should not be skipped.
  3520. Otherwise, the function must return a position from where the search
  3521. should be continued.
  3522. This may also be a Lisp form, it will be evaluated.
  3523. Never set this variable using `setq' or so, because then it will apply
  3524. to all future agenda commands. If you do want a global skipping condition,
  3525. use the option `org-agenda-skip-function-global' instead.
  3526. The correct usage for `org-agenda-skip-function' is to bind it with
  3527. `let' to scope it dynamically into the agenda-constructing command.
  3528. A good way to set it is through options in `org-agenda-custom-commands'.")
  3529. (defun org-agenda-skip ()
  3530. "Throw to `:skip' in places that should be skipped.
  3531. Also moves point to the end of the skipped region, so that search can
  3532. continue from there."
  3533. (let ((p (point-at-bol)) to)
  3534. (when (or
  3535. (save-excursion (goto-char p) (looking-at comment-start-skip))
  3536. (and org-agenda-skip-archived-trees (not org-agenda-archives-mode)
  3537. (get-text-property p :org-archived)
  3538. (org-end-of-subtree t))
  3539. (and org-agenda-skip-comment-trees
  3540. (get-text-property p :org-comment)
  3541. (org-end-of-subtree t))
  3542. (and (setq to (or (org-agenda-skip-eval org-agenda-skip-function-global)
  3543. (org-agenda-skip-eval org-agenda-skip-function)))
  3544. (goto-char to))
  3545. (org-in-src-block-p t))
  3546. (throw :skip t))))
  3547. (defun org-agenda-skip-eval (form)
  3548. "If FORM is a function or a list, call (or eval) it and return the result.
  3549. `save-excursion' and `save-match-data' are wrapped around the call, so point
  3550. and match data are returned to the previous state no matter what these
  3551. functions do."
  3552. (let (fp)
  3553. (and form
  3554. (or (setq fp (functionp form))
  3555. (consp form))
  3556. (save-excursion
  3557. (save-match-data
  3558. (if fp
  3559. (funcall form)
  3560. (eval form)))))))
  3561. (defvar org-agenda-markers nil
  3562. "List of all currently active markers created by `org-agenda'.")
  3563. (defvar org-agenda-last-marker-time (org-float-time)
  3564. "Creation time of the last agenda marker.")
  3565. (defun org-agenda-new-marker (&optional pos)
  3566. "Return a new agenda marker.
  3567. Org-mode keeps a list of these markers and resets them when they are
  3568. no longer in use."
  3569. (let ((m (copy-marker (or pos (point)))))
  3570. (setq org-agenda-last-marker-time (org-float-time))
  3571. (if org-agenda-buffer
  3572. (with-current-buffer org-agenda-buffer
  3573. (push m org-agenda-markers))
  3574. (push m org-agenda-markers))
  3575. m))
  3576. (defun org-agenda-reset-markers ()
  3577. "Reset markers created by `org-agenda'."
  3578. (while org-agenda-markers
  3579. (move-marker (pop org-agenda-markers) nil)))
  3580. (defun org-agenda-save-markers-for-cut-and-paste (beg end)
  3581. "Save relative positions of markers in region.
  3582. This check for agenda markers in all agenda buffers currently active."
  3583. (dolist (buf (buffer-list))
  3584. (with-current-buffer buf
  3585. (when (eq major-mode 'org-agenda-mode)
  3586. (mapc (lambda (m) (org-check-and-save-marker m beg end))
  3587. org-agenda-markers)))))
  3588. ;;; Entry text mode
  3589. (defun org-agenda-entry-text-show-here ()
  3590. "Add some text from the entry as context to the current line."
  3591. (let (m txt o)
  3592. (setq m (org-get-at-bol 'org-hd-marker))
  3593. (unless (marker-buffer m)
  3594. (error "No marker points to an entry here"))
  3595. (setq txt (concat "\n" (org-no-properties
  3596. (org-agenda-get-some-entry-text
  3597. m org-agenda-entry-text-maxlines
  3598. org-agenda-entry-text-leaders))))
  3599. (when (string-match "\\S-" txt)
  3600. (setq o (make-overlay (point-at-bol) (point-at-eol)))
  3601. (overlay-put o 'evaporate t)
  3602. (overlay-put o 'org-overlay-type 'agenda-entry-content)
  3603. (overlay-put o 'after-string txt))))
  3604. (defun org-agenda-entry-text-show ()
  3605. "Add entry context for all agenda lines."
  3606. (interactive)
  3607. (save-excursion
  3608. (goto-char (point-max))
  3609. (beginning-of-line 1)
  3610. (while (not (bobp))
  3611. (when (org-get-at-bol 'org-hd-marker)
  3612. (org-agenda-entry-text-show-here))
  3613. (beginning-of-line 0))))
  3614. (defun org-agenda-entry-text-hide ()
  3615. "Remove any shown entry context."
  3616. (delq nil
  3617. (mapcar (lambda (o)
  3618. (if (eq (overlay-get o 'org-overlay-type)
  3619. 'agenda-entry-content)
  3620. (progn (delete-overlay o) t)))
  3621. (overlays-in (point-min) (point-max)))))
  3622. (defun org-agenda-get-day-face (date)
  3623. "Return the face DATE should be displayed with."
  3624. (or (and (functionp org-agenda-day-face-function)
  3625. (funcall org-agenda-day-face-function date))
  3626. (cond ((org-agenda-todayp date)
  3627. 'org-agenda-date-today)
  3628. ((member (calendar-day-of-week date) org-agenda-weekend-days)
  3629. 'org-agenda-date-weekend)
  3630. (t 'org-agenda-date))))
  3631. ;;; Agenda timeline
  3632. (defvar org-agenda-only-exact-dates nil) ; dynamically scoped
  3633. (defvar org-agenda-show-log-scoped) ;; dynamically scope in `org-timeline' or `org-agenda-list'
  3634. (defun org-timeline (&optional dotodo)
  3635. "Show a time-sorted view of the entries in the current org file.
  3636. Only entries with a time stamp of today or later will be listed. With
  3637. \\[universal-argument] prefix, all unfinished TODO items will also be shown,
  3638. under the current date.
  3639. If the buffer contains an active region, only check the region for
  3640. dates."
  3641. (interactive "P")
  3642. (let* ((dopast t)
  3643. (org-agenda-show-log-scoped org-agenda-show-log)
  3644. (org-agenda-show-log org-agenda-show-log-scoped)
  3645. (entry (buffer-file-name (or (buffer-base-buffer (current-buffer))
  3646. (current-buffer))))
  3647. (date (calendar-current-date))
  3648. (beg (if (org-region-active-p) (region-beginning) (point-min)))
  3649. (end (if (org-region-active-p) (region-end) (point-max)))
  3650. (day-numbers (org-get-all-dates
  3651. beg end 'no-ranges
  3652. t org-agenda-show-log-scoped ; always include today
  3653. org-timeline-show-empty-dates))
  3654. (org-deadline-warning-days 0)
  3655. (org-agenda-only-exact-dates t)
  3656. (today (org-today))
  3657. (past t)
  3658. args
  3659. s e rtn d emptyp)
  3660. (setq org-agenda-redo-command
  3661. (list 'let
  3662. (list (list 'org-agenda-show-log 'org-agenda-show-log))
  3663. (list 'org-switch-to-buffer-other-window (current-buffer))
  3664. (list 'org-timeline (list 'quote dotodo))))
  3665. (put 'org-agenda-redo-command 'org-lprops nil)
  3666. (if (not dopast)
  3667. ;; Remove past dates from the list of dates.
  3668. (setq day-numbers (delq nil (mapcar (lambda(x)
  3669. (if (>= x today) x nil))
  3670. day-numbers))))
  3671. (org-agenda-prepare (concat "Timeline " (file-name-nondirectory entry)))
  3672. (org-compile-prefix-format 'timeline)
  3673. (org-set-sorting-strategy 'timeline)
  3674. (if org-agenda-show-log-scoped (push :closed args))
  3675. (push :timestamp args)
  3676. (push :deadline args)
  3677. (push :scheduled args)
  3678. (push :sexp args)
  3679. (if dotodo (push :todo args))
  3680. (insert "Timeline of file " entry "\n")
  3681. (add-text-properties (point-min) (point)
  3682. (list 'face 'org-agenda-structure))
  3683. (org-agenda-mark-header-line (point-min))
  3684. (while (setq d (pop day-numbers))
  3685. (if (and (listp d) (eq (car d) :omitted))
  3686. (progn
  3687. (setq s (point))
  3688. (insert (format "\n[... %d empty days omitted]\n\n" (cdr d)))
  3689. (put-text-property s (1- (point)) 'face 'org-agenda-structure))
  3690. (if (listp d) (setq d (car d) emptyp t) (setq emptyp nil))
  3691. (if (and (>= d today)
  3692. dopast
  3693. past)
  3694. (progn
  3695. (setq past nil)
  3696. (insert (make-string 79 ?-) "\n")))
  3697. (setq date (calendar-gregorian-from-absolute d))
  3698. (setq s (point))
  3699. (setq rtn (and (not emptyp)
  3700. (apply 'org-agenda-get-day-entries entry
  3701. date args)))
  3702. (if (or rtn (equal d today) org-timeline-show-empty-dates)
  3703. (progn
  3704. (insert
  3705. (if (stringp org-agenda-format-date)
  3706. (format-time-string org-agenda-format-date
  3707. (org-time-from-absolute date))
  3708. (funcall org-agenda-format-date date))
  3709. "\n")
  3710. (put-text-property s (1- (point)) 'face
  3711. (org-agenda-get-day-face date))
  3712. (put-text-property s (1- (point)) 'org-date-line t)
  3713. (put-text-property s (1- (point)) 'org-agenda-date-header t)
  3714. (if (equal d today)
  3715. (put-text-property s (1- (point)) 'org-today t))
  3716. (and rtn (insert (org-agenda-finalize-entries rtn 'timeline) "\n"))
  3717. (put-text-property s (1- (point)) 'day d)))))
  3718. (goto-char (or (text-property-any (point-min) (point-max) 'org-today t)
  3719. (point-min)))
  3720. (add-text-properties
  3721. (point-min) (point-max)
  3722. `(org-agenda-type timeline org-redo-cmd ,org-agenda-redo-command))
  3723. (org-agenda-finalize)
  3724. (setq buffer-read-only t)))
  3725. (defun org-get-all-dates (beg end &optional no-ranges force-today inactive empty pre-re)
  3726. "Return a list of all relevant day numbers from BEG to END buffer positions.
  3727. If NO-RANGES is non-nil, include only the start and end dates of a range,
  3728. not every single day in the range. If FORCE-TODAY is non-nil, make
  3729. sure that TODAY is included in the list. If INACTIVE is non-nil, also
  3730. inactive time stamps (those in square brackets) are included.
  3731. When EMPTY is non-nil, also include days without any entries."
  3732. (let ((re (concat
  3733. (if pre-re pre-re "")
  3734. (if inactive org-ts-regexp-both org-ts-regexp)))
  3735. dates dates1 date day day1 day2 ts1 ts2 pos)
  3736. (if force-today
  3737. (setq dates (list (org-today))))
  3738. (save-excursion
  3739. (goto-char beg)
  3740. (while (re-search-forward re end t)
  3741. (setq day (time-to-days (org-time-string-to-time
  3742. (substring (match-string 1) 0 10)
  3743. (current-buffer) (match-beginning 0))))
  3744. (or (memq day dates) (push day dates)))
  3745. (unless no-ranges
  3746. (goto-char beg)
  3747. (while (re-search-forward org-tr-regexp end t)
  3748. (setq pos (match-beginning 0))
  3749. (setq ts1 (substring (match-string 1) 0 10)
  3750. ts2 (substring (match-string 2) 0 10)
  3751. day1 (time-to-days (org-time-string-to-time
  3752. ts1 (current-buffer) pos))
  3753. day2 (time-to-days (org-time-string-to-time
  3754. ts2 (current-buffer) pos)))
  3755. (while (< (setq day1 (1+ day1)) day2)
  3756. (or (memq day1 dates) (push day1 dates)))))
  3757. (setq dates (sort dates '<))
  3758. (when empty
  3759. (while (setq day (pop dates))
  3760. (setq day2 (car dates))
  3761. (push day dates1)
  3762. (when (and day2 empty)
  3763. (if (or (eq empty t)
  3764. (and (numberp empty) (<= (- day2 day) empty)))
  3765. (while (< (setq day (1+ day)) day2)
  3766. (push (list day) dates1))
  3767. (push (cons :omitted (- day2 day)) dates1))))
  3768. (setq dates (nreverse dates1)))
  3769. dates)))
  3770. ;;; Agenda Daily/Weekly
  3771. (defvar org-agenda-start-day nil ; dynamically scoped parameter
  3772. "Start day for the agenda view.
  3773. Custom commands can set this variable in the options section.
  3774. This is usually a string like \"2007-11-01\", \"+2d\" or any other
  3775. input allowed when reading a date through the Org calendar.
  3776. See the docstring of `org-read-date' for details.")
  3777. (defvar org-starting-day nil) ; local variable in the agenda buffer
  3778. (defvar org-arg-loc nil) ; local variable
  3779. (defvar org-agenda-buffer-tmp-name nil)
  3780. ;;;###autoload
  3781. (defun org-agenda-list (&optional arg start-day span with-hour)
  3782. "Produce a daily/weekly view from all files in variable `org-agenda-files'.
  3783. The view will be for the current day or week, but from the overview buffer
  3784. you will be able to go to other days/weeks.
  3785. With a numeric prefix argument in an interactive call, the agenda will
  3786. span ARG days. Lisp programs should instead specify SPAN to change
  3787. the number of days. SPAN defaults to `org-agenda-span'.
  3788. START-DAY defaults to TODAY, or to the most recent match for the weekday
  3789. given in `org-agenda-start-on-weekday'.
  3790. When WITH-HOUR is non-nil, only include scheduled and deadline
  3791. items if they have an hour specification like [h]h:mm."
  3792. (interactive "P")
  3793. (if org-agenda-overriding-arguments
  3794. (setq arg (car org-agenda-overriding-arguments)
  3795. start-day (nth 1 org-agenda-overriding-arguments)
  3796. span (nth 2 org-agenda-overriding-arguments)))
  3797. (if (and (integerp arg) (> arg 0))
  3798. (setq span arg arg nil))
  3799. (catch 'exit
  3800. (setq org-agenda-buffer-name
  3801. (or org-agenda-buffer-tmp-name
  3802. (if org-agenda-sticky
  3803. (cond ((and org-keys (stringp org-match))
  3804. (format "*Org Agenda(%s:%s)*" org-keys org-match))
  3805. (org-keys
  3806. (format "*Org Agenda(%s)*" org-keys))
  3807. (t "*Org Agenda(a)*")))
  3808. org-agenda-buffer-name))
  3809. (org-agenda-prepare "Day/Week")
  3810. (setq start-day (or start-day org-agenda-start-day))
  3811. (if (stringp start-day)
  3812. ;; Convert to an absolute day number
  3813. (setq start-day (time-to-days (org-read-date nil t start-day))))
  3814. (org-compile-prefix-format 'agenda)
  3815. (org-set-sorting-strategy 'agenda)
  3816. (let* ((span (org-agenda-ndays-to-span
  3817. (or span org-agenda-ndays org-agenda-span)))
  3818. (today (org-today))
  3819. (sd (or start-day today))
  3820. (ndays (org-agenda-span-to-ndays span sd))
  3821. (org-agenda-start-on-weekday
  3822. (if (or (eq ndays 7) (eq ndays 14))
  3823. org-agenda-start-on-weekday))
  3824. (thefiles (org-agenda-files nil 'ifmode))
  3825. (files thefiles)
  3826. (start (if (or (null org-agenda-start-on-weekday)
  3827. (< ndays 7))
  3828. sd
  3829. (let* ((nt (calendar-day-of-week
  3830. (calendar-gregorian-from-absolute sd)))
  3831. (n1 org-agenda-start-on-weekday)
  3832. (d (- nt n1)))
  3833. (- sd (+ (if (< d 0) 7 0) d)))))
  3834. (day-numbers (list start))
  3835. (day-cnt 0)
  3836. (inhibit-redisplay (not debug-on-error))
  3837. (org-agenda-show-log-scoped org-agenda-show-log)
  3838. s e rtn rtnall file date d start-pos end-pos todayp
  3839. clocktable-start clocktable-end filter)
  3840. (setq org-agenda-redo-command
  3841. (list 'org-agenda-list (list 'quote arg) start-day (list 'quote span) with-hour))
  3842. (dotimes (n (1- ndays))
  3843. (push (1+ (car day-numbers)) day-numbers))
  3844. (setq day-numbers (nreverse day-numbers))
  3845. (setq clocktable-start (car day-numbers)
  3846. clocktable-end (1+ (or (org-last day-numbers) 0)))
  3847. (org-set-local 'org-starting-day (car day-numbers))
  3848. (org-set-local 'org-arg-loc arg)
  3849. (org-set-local 'org-agenda-current-span (org-agenda-ndays-to-span span))
  3850. (unless org-agenda-compact-blocks
  3851. (let* ((d1 (car day-numbers))
  3852. (d2 (org-last day-numbers))
  3853. (w1 (org-days-to-iso-week d1))
  3854. (w2 (org-days-to-iso-week d2)))
  3855. (setq s (point))
  3856. (if org-agenda-overriding-header
  3857. (insert (org-add-props (copy-sequence org-agenda-overriding-header)
  3858. nil 'face 'org-agenda-structure) "\n")
  3859. (insert (org-agenda-span-name span)
  3860. "-agenda"
  3861. (if (< (- d2 d1) 350)
  3862. (if (= w1 w2)
  3863. (format " (W%02d)" w1)
  3864. (format " (W%02d-W%02d)" w1 w2))
  3865. "")
  3866. ":\n")))
  3867. (add-text-properties s (1- (point)) (list 'face 'org-agenda-structure
  3868. 'org-date-line t))
  3869. (org-agenda-mark-header-line s))
  3870. (while (setq d (pop day-numbers))
  3871. (setq date (calendar-gregorian-from-absolute d)
  3872. s (point))
  3873. (if (or (setq todayp (= d today))
  3874. (and (not start-pos) (= d sd)))
  3875. (setq start-pos (point))
  3876. (if (and start-pos (not end-pos))
  3877. (setq end-pos (point))))
  3878. (setq files thefiles
  3879. rtnall nil)
  3880. (while (setq file (pop files))
  3881. (catch 'nextfile
  3882. (org-check-agenda-file file)
  3883. (let ((org-agenda-entry-types org-agenda-entry-types))
  3884. ;; Starred types override non-starred equivalents
  3885. (when (member :deadline* org-agenda-entry-types)
  3886. (setq org-agenda-entry-types
  3887. (delq :deadline org-agenda-entry-types)))
  3888. (when (member :scheduled* org-agenda-entry-types)
  3889. (setq org-agenda-entry-types
  3890. (delq :scheduled org-agenda-entry-types)))
  3891. ;; Honor with-hour
  3892. (when with-hour
  3893. (when (member :deadline org-agenda-entry-types)
  3894. (setq org-agenda-entry-types
  3895. (delq :deadline org-agenda-entry-types))
  3896. (push :deadline* org-agenda-entry-types))
  3897. (when (member :scheduled org-agenda-entry-types)
  3898. (setq org-agenda-entry-types
  3899. (delq :scheduled org-agenda-entry-types))
  3900. (push :scheduled* org-agenda-entry-types)))
  3901. (unless org-agenda-include-deadlines
  3902. (setq org-agenda-entry-types
  3903. (delq :deadline* (delq :deadline org-agenda-entry-types))))
  3904. (cond
  3905. ((memq org-agenda-show-log-scoped '(only clockcheck))
  3906. (setq rtn (org-agenda-get-day-entries
  3907. file date :closed)))
  3908. (org-agenda-show-log-scoped
  3909. (setq rtn (apply 'org-agenda-get-day-entries
  3910. file date
  3911. (append '(:closed) org-agenda-entry-types))))
  3912. (t
  3913. (setq rtn (apply 'org-agenda-get-day-entries
  3914. file date
  3915. org-agenda-entry-types)))))
  3916. (setq rtnall (append rtnall rtn)))) ;; all entries
  3917. (if org-agenda-include-diary
  3918. (let ((org-agenda-search-headline-for-time t))
  3919. (require 'diary-lib)
  3920. (setq rtn (org-get-entries-from-diary date))
  3921. (setq rtnall (append rtnall rtn))))
  3922. (if (or rtnall org-agenda-show-all-dates)
  3923. (progn
  3924. (setq day-cnt (1+ day-cnt))
  3925. (insert
  3926. (if (stringp org-agenda-format-date)
  3927. (format-time-string org-agenda-format-date
  3928. (org-time-from-absolute date))
  3929. (funcall org-agenda-format-date date))
  3930. "\n")
  3931. (put-text-property s (1- (point)) 'face
  3932. (org-agenda-get-day-face date))
  3933. (put-text-property s (1- (point)) 'org-date-line t)
  3934. (put-text-property s (1- (point)) 'org-agenda-date-header t)
  3935. (put-text-property s (1- (point)) 'org-day-cnt day-cnt)
  3936. (when todayp
  3937. (put-text-property s (1- (point)) 'org-today t))
  3938. (setq rtnall
  3939. (org-agenda-add-time-grid-maybe rtnall ndays todayp))
  3940. (if rtnall (insert ;; all entries
  3941. (org-agenda-finalize-entries rtnall 'agenda)
  3942. "\n"))
  3943. (put-text-property s (1- (point)) 'day d)
  3944. (put-text-property s (1- (point)) 'org-day-cnt day-cnt))))
  3945. (when (and org-agenda-clockreport-mode clocktable-start)
  3946. (let ((org-agenda-files (org-agenda-files nil 'ifmode))
  3947. ;; the above line is to ensure the restricted range!
  3948. (p (copy-sequence org-agenda-clockreport-parameter-plist))
  3949. tbl)
  3950. (setq p (org-plist-delete p :block))
  3951. (setq p (plist-put p :tstart clocktable-start))
  3952. (setq p (plist-put p :tend clocktable-end))
  3953. (setq p (plist-put p :scope 'agenda))
  3954. (when (and (eq org-agenda-clockreport-mode 'with-filter)
  3955. (setq filter (or org-agenda-tag-filter-while-redo
  3956. (get 'org-agenda-tag-filter :preset-filter))))
  3957. (setq p (plist-put p :tags (mapconcat (lambda (x)
  3958. (if (string-match "[<>=]" x)
  3959. ""
  3960. x))
  3961. filter ""))))
  3962. (setq tbl (apply 'org-clock-get-clocktable p))
  3963. (insert tbl)))
  3964. (goto-char (point-min))
  3965. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  3966. (unless (and (pos-visible-in-window-p (point-min))
  3967. (pos-visible-in-window-p (point-max)))
  3968. (goto-char (1- (point-max)))
  3969. (recenter -1)
  3970. (if (not (pos-visible-in-window-p (or start-pos 1)))
  3971. (progn
  3972. (goto-char (or start-pos 1))
  3973. (recenter 1))))
  3974. (goto-char (or start-pos 1))
  3975. (add-text-properties (point-min) (point-max)
  3976. `(org-agenda-type agenda
  3977. org-last-args (,arg ,start-day ,span)
  3978. org-redo-cmd ,org-agenda-redo-command
  3979. org-series-cmd ,org-cmd))
  3980. (if (eq org-agenda-show-log-scoped 'clockcheck)
  3981. (org-agenda-show-clocking-issues))
  3982. (org-agenda-finalize)
  3983. (setq buffer-read-only t)
  3984. (message ""))))
  3985. (defun org-agenda-ndays-to-span (n)
  3986. "Return a span symbol for a span of N days, or N if none matches."
  3987. (cond ((symbolp n) n)
  3988. ((= n 1) 'day)
  3989. ((= n 7) 'week)
  3990. ((= n 14) 'fortnight)
  3991. (t n)))
  3992. (defun org-agenda-span-to-ndays (span &optional start-day)
  3993. "Return ndays from SPAN, possibly starting at START-DAY.
  3994. START-DAY is an absolute time value."
  3995. (cond ((numberp span) span)
  3996. ((eq span 'day) 1)
  3997. ((eq span 'week) 7)
  3998. ((eq span 'fortnight) 14)
  3999. ((eq span 'month)
  4000. (let ((date (calendar-gregorian-from-absolute start-day)))
  4001. (calendar-last-day-of-month (car date) (caddr date))))
  4002. ((eq span 'year)
  4003. (let ((date (calendar-gregorian-from-absolute start-day)))
  4004. (if (calendar-leap-year-p (caddr date)) 366 365)))))
  4005. (defun org-agenda-span-name (span)
  4006. "Return a SPAN name."
  4007. (if (null span)
  4008. ""
  4009. (if (symbolp span)
  4010. (capitalize (symbol-name span))
  4011. (format "%d days" span))))
  4012. ;;; Agenda word search
  4013. (defvar org-agenda-search-history nil)
  4014. (defvar org-search-syntax-table nil
  4015. "Special syntax table for org-mode search.
  4016. In this table, we have single quotes not as word constituents, to
  4017. that when \"+Ameli\" is searched as a work, it will also match \"Ameli's\"")
  4018. (defvar org-mode-syntax-table) ; From org.el
  4019. (defun org-search-syntax-table ()
  4020. (unless org-search-syntax-table
  4021. (setq org-search-syntax-table (copy-syntax-table org-mode-syntax-table))
  4022. (modify-syntax-entry ?' "." org-search-syntax-table)
  4023. (modify-syntax-entry ?` "." org-search-syntax-table))
  4024. org-search-syntax-table)
  4025. (defvar org-agenda-last-search-view-search-was-boolean nil)
  4026. ;;;###autoload
  4027. (defun org-search-view (&optional todo-only string edit-at)
  4028. "Show all entries that contain a phrase or words or regular expressions.
  4029. With optional prefix argument TODO-ONLY, only consider entries that are
  4030. TODO entries. The argument STRING can be used to pass a default search
  4031. string into this function. If EDIT-AT is non-nil, it means that the
  4032. user should get a chance to edit this string, with cursor at position
  4033. EDIT-AT.
  4034. The search string can be viewed either as a phrase that should be found as
  4035. is, or it can be broken into a number of snippets, each of which must match
  4036. in a Boolean way to select an entry. The default depends on the variable
  4037. `org-agenda-search-view-always-boolean'.
  4038. Even if this is turned off (the default) you can always switch to
  4039. Boolean search dynamically by preceding the first word with \"+\" or \"-\".
  4040. The default is a direct search of the whole phrase, where each space in
  4041. the search string can expand to an arbitrary amount of whitespace,
  4042. including newlines.
  4043. If using a Boolean search, the search string is split on whitespace and
  4044. each snippet is searched separately, with logical AND to select an entry.
  4045. Words prefixed with a minus must *not* occur in the entry. Words without
  4046. a prefix or prefixed with a plus must occur in the entry. Matching is
  4047. case-insensitive. Words are enclosed by word delimiters (i.e. they must
  4048. match whole words, not parts of a word) if
  4049. `org-agenda-search-view-force-full-words' is set (default is nil).
  4050. Boolean search snippets enclosed by curly braces are interpreted as
  4051. regular expressions that must or (when preceded with \"-\") must not
  4052. match in the entry. Snippets enclosed into double quotes will be taken
  4053. as a whole, to include whitespace.
  4054. - If the search string starts with an asterisk, search only in headlines.
  4055. - If (possibly after the leading star) the search string starts with an
  4056. exclamation mark, this also means to look at TODO entries only, an effect
  4057. that can also be achieved with a prefix argument.
  4058. - If (possibly after star and exclamation mark) the search string starts
  4059. with a colon, this will mean that the (non-regexp) snippets of the
  4060. Boolean search must match as full words.
  4061. This command searches the agenda files, and in addition the files listed
  4062. in `org-agenda-text-search-extra-files'."
  4063. (interactive "P")
  4064. (if org-agenda-overriding-arguments
  4065. (setq todo-only (car org-agenda-overriding-arguments)
  4066. string (nth 1 org-agenda-overriding-arguments)
  4067. edit-at (nth 2 org-agenda-overriding-arguments)))
  4068. (let* ((props (list 'face nil
  4069. 'done-face 'org-agenda-done
  4070. 'org-not-done-regexp org-not-done-regexp
  4071. 'org-todo-regexp org-todo-regexp
  4072. 'org-complex-heading-regexp org-complex-heading-regexp
  4073. 'mouse-face 'highlight
  4074. 'help-echo (format "mouse-2 or RET jump to location")))
  4075. (full-words org-agenda-search-view-force-full-words)
  4076. (org-agenda-text-search-extra-files org-agenda-text-search-extra-files)
  4077. regexp rtn rtnall files file pos inherited-tags
  4078. marker category category-pos level tags c neg re boolean
  4079. ee txt beg end words regexps+ regexps- hdl-only buffer beg1 str)
  4080. (unless (and (not edit-at)
  4081. (stringp string)
  4082. (string-match "\\S-" string))
  4083. (setq string (read-string
  4084. (if org-agenda-search-view-always-boolean
  4085. "[+-]Word/{Regexp} ...: "
  4086. "Phrase or [+-]Word/{Regexp} ...: ")
  4087. (cond
  4088. ((integerp edit-at) (cons string edit-at))
  4089. (edit-at string))
  4090. 'org-agenda-search-history)))
  4091. (catch 'exit
  4092. (if org-agenda-sticky
  4093. (setq org-agenda-buffer-name
  4094. (if (stringp string)
  4095. (format "*Org Agenda(%s:%s)*"
  4096. (or org-keys (or (and todo-only "S") "s")) string)
  4097. (format "*Org Agenda(%s)*" (or (and todo-only "S") "s")))))
  4098. (org-agenda-prepare "SEARCH")
  4099. (org-compile-prefix-format 'search)
  4100. (org-set-sorting-strategy 'search)
  4101. (setq org-agenda-redo-command
  4102. (list 'org-search-view (if todo-only t nil)
  4103. (list 'if 'current-prefix-arg nil string)))
  4104. (setq org-agenda-query-string string)
  4105. (if (equal (string-to-char string) ?*)
  4106. (setq hdl-only t
  4107. words (substring string 1))
  4108. (setq words string))
  4109. (when (equal (string-to-char words) ?!)
  4110. (setq todo-only t
  4111. words (substring words 1)))
  4112. (when (equal (string-to-char words) ?:)
  4113. (setq full-words t
  4114. words (substring words 1)))
  4115. (if (or org-agenda-search-view-always-boolean
  4116. (member (string-to-char words) '(?- ?+ ?\{)))
  4117. (setq boolean t))
  4118. (setq words (org-split-string words))
  4119. (let (www w)
  4120. (while (setq w (pop words))
  4121. (while (and (string-match "\\\\\\'" w) words)
  4122. (setq w (concat (substring w 0 -1) " " (pop words))))
  4123. (push w www))
  4124. (setq words (nreverse www) www nil)
  4125. (while (setq w (pop words))
  4126. (when (and (string-match "\\`[-+]?{" w)
  4127. (not (string-match "}\\'" w)))
  4128. (while (and words (not (string-match "}\\'" (car words))))
  4129. (setq w (concat w " " (pop words))))
  4130. (setq w (concat w " " (pop words))))
  4131. (push w www))
  4132. (setq words (nreverse www)))
  4133. (setq org-agenda-last-search-view-search-was-boolean boolean)
  4134. (when boolean
  4135. (let (wds w)
  4136. (while (setq w (pop words))
  4137. (if (or (equal (substring w 0 1) "\"")
  4138. (and (> (length w) 1)
  4139. (member (substring w 0 1) '("+" "-"))
  4140. (equal (substring w 1 2) "\"")))
  4141. (while (and words (not (equal (substring w -1) "\"")))
  4142. (setq w (concat w " " (pop words)))))
  4143. (and (string-match "\\`\\([-+]?\\)\"" w)
  4144. (setq w (replace-match "\\1" nil nil w)))
  4145. (and (equal (substring w -1) "\"") (setq w (substring w 0 -1)))
  4146. (push w wds))
  4147. (setq words (nreverse wds))))
  4148. (if boolean
  4149. (mapc (lambda (w)
  4150. (setq c (string-to-char w))
  4151. (if (equal c ?-)
  4152. (setq neg t w (substring w 1))
  4153. (if (equal c ?+)
  4154. (setq neg nil w (substring w 1))
  4155. (setq neg nil)))
  4156. (if (string-match "\\`{.*}\\'" w)
  4157. (setq re (substring w 1 -1))
  4158. (if full-words
  4159. (setq re (concat "\\<" (regexp-quote (downcase w)) "\\>"))
  4160. (setq re (regexp-quote (downcase w)))))
  4161. (if neg (push re regexps-) (push re regexps+)))
  4162. words)
  4163. (push (mapconcat (lambda (w) (regexp-quote w)) words "\\s-+")
  4164. regexps+))
  4165. (setq regexps+ (sort regexps+ (lambda (a b) (> (length a) (length b)))))
  4166. (if (not regexps+)
  4167. (setq regexp org-outline-regexp-bol)
  4168. (setq regexp (pop regexps+))
  4169. (if hdl-only (setq regexp (concat org-outline-regexp-bol ".*?"
  4170. regexp))))
  4171. (setq files (org-agenda-files nil 'ifmode))
  4172. (when (eq (car org-agenda-text-search-extra-files) 'agenda-archives)
  4173. (pop org-agenda-text-search-extra-files)
  4174. (setq files (org-add-archive-files files)))
  4175. (setq files (append files org-agenda-text-search-extra-files)
  4176. rtnall nil)
  4177. (while (setq file (pop files))
  4178. (setq ee nil)
  4179. (catch 'nextfile
  4180. (org-check-agenda-file file)
  4181. (setq buffer (if (file-exists-p file)
  4182. (org-get-agenda-file-buffer file)
  4183. (error "No such file %s" file)))
  4184. (if (not buffer)
  4185. ;; If file does not exist, make sure an error message is sent
  4186. (setq rtn (list (format "ORG-AGENDA-ERROR: No such org-file %s"
  4187. file))))
  4188. (with-current-buffer buffer
  4189. (with-syntax-table (org-search-syntax-table)
  4190. (unless (derived-mode-p 'org-mode)
  4191. (error "Agenda file %s is not in `org-mode'" file))
  4192. (let ((case-fold-search t))
  4193. (save-excursion
  4194. (save-restriction
  4195. (if (eq buffer org-agenda-restrict)
  4196. (narrow-to-region org-agenda-restrict-begin
  4197. org-agenda-restrict-end)
  4198. (widen))
  4199. (goto-char (point-min))
  4200. (unless (or (org-at-heading-p)
  4201. (outline-next-heading))
  4202. (throw 'nextfile t))
  4203. (goto-char (max (point-min) (1- (point))))
  4204. (while (re-search-forward regexp nil t)
  4205. (org-back-to-heading t)
  4206. (while (and (not (zerop org-agenda-search-view-max-outline-level))
  4207. (> (org-reduced-level (org-outline-level))
  4208. org-agenda-search-view-max-outline-level)
  4209. (forward-line -1)
  4210. (outline-back-to-heading t)))
  4211. (skip-chars-forward "* ")
  4212. (setq beg (point-at-bol)
  4213. beg1 (point)
  4214. end (progn
  4215. (outline-next-heading)
  4216. (while (and (not (zerop org-agenda-search-view-max-outline-level))
  4217. (> (org-reduced-level (org-outline-level))
  4218. org-agenda-search-view-max-outline-level)
  4219. (forward-line 1)
  4220. (outline-next-heading)))
  4221. (point)))
  4222. (catch :skip
  4223. (goto-char beg)
  4224. (org-agenda-skip)
  4225. (setq str (buffer-substring-no-properties
  4226. (point-at-bol)
  4227. (if hdl-only (point-at-eol) end)))
  4228. (mapc (lambda (wr) (when (string-match wr str)
  4229. (goto-char (1- end))
  4230. (throw :skip t)))
  4231. regexps-)
  4232. (mapc (lambda (wr) (unless (string-match wr str)
  4233. (goto-char (1- end))
  4234. (throw :skip t)))
  4235. (if todo-only
  4236. (cons (concat "^\*+[ \t]+" org-not-done-regexp)
  4237. regexps+)
  4238. regexps+))
  4239. (goto-char beg)
  4240. (setq marker (org-agenda-new-marker (point))
  4241. category (org-get-category)
  4242. level (make-string (org-reduced-level (org-outline-level)) ? )
  4243. category-pos (get-text-property (point) 'org-category-position)
  4244. inherited-tags
  4245. (or (eq org-agenda-show-inherited-tags 'always)
  4246. (and (listp org-agenda-show-inherited-tags)
  4247. (memq 'todo org-agenda-show-inherited-tags))
  4248. (and (eq org-agenda-show-inherited-tags t)
  4249. (or (eq org-agenda-use-tag-inheritance t)
  4250. (memq 'todo org-agenda-use-tag-inheritance))))
  4251. tags (org-get-tags-at nil (not inherited-tags))
  4252. txt (org-agenda-format-item
  4253. ""
  4254. (buffer-substring-no-properties
  4255. beg1 (point-at-eol))
  4256. level category tags t))
  4257. (org-add-props txt props
  4258. 'org-marker marker 'org-hd-marker marker
  4259. 'org-todo-regexp org-todo-regexp
  4260. 'level level
  4261. 'org-complex-heading-regexp org-complex-heading-regexp
  4262. 'priority 1000 'org-category category
  4263. 'org-category-position category-pos
  4264. 'type "search")
  4265. (push txt ee)
  4266. (goto-char (1- end))))))))))
  4267. (setq rtn (nreverse ee))
  4268. (setq rtnall (append rtnall rtn)))
  4269. (if org-agenda-overriding-header
  4270. (insert (org-add-props (copy-sequence org-agenda-overriding-header)
  4271. nil 'face 'org-agenda-structure) "\n")
  4272. (insert "Search words: ")
  4273. (add-text-properties (point-min) (1- (point))
  4274. (list 'face 'org-agenda-structure))
  4275. (setq pos (point))
  4276. (insert string "\n")
  4277. (add-text-properties pos (1- (point)) (list 'face 'org-warning))
  4278. (setq pos (point))
  4279. (unless org-agenda-multi
  4280. (insert "Press `[', `]' to add/sub word, `{', `}' to add/sub regexp, `C-u r' to edit\n")
  4281. (add-text-properties pos (1- (point))
  4282. (list 'face 'org-agenda-structure))))
  4283. (org-agenda-mark-header-line (point-min))
  4284. (when rtnall
  4285. (insert (org-agenda-finalize-entries rtnall 'search) "\n"))
  4286. (goto-char (point-min))
  4287. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4288. (add-text-properties (point-min) (point-max)
  4289. `(org-agenda-type search
  4290. org-last-args (,todo-only ,string ,edit-at)
  4291. org-redo-cmd ,org-agenda-redo-command
  4292. org-series-cmd ,org-cmd))
  4293. (org-agenda-finalize)
  4294. (setq buffer-read-only t))))
  4295. ;;; Agenda TODO list
  4296. (defun org-agenda-propertize-selected-todo-keywords (keywords)
  4297. "Use `org-todo-keyword-faces' for the selected todo KEYWORDS."
  4298. (concat
  4299. (if (or (equal keywords "ALL") (not keywords))
  4300. (propertize "ALL" 'face 'warning)
  4301. (mapconcat
  4302. (lambda (kw)
  4303. (propertize kw 'face (org-get-todo-face kw)))
  4304. (org-split-string keywords "|")
  4305. "|"))
  4306. "\n"))
  4307. (defvar org-select-this-todo-keyword nil)
  4308. (defvar org-last-arg nil)
  4309. ;;;###autoload
  4310. (defun org-todo-list (&optional arg)
  4311. "Show all (not done) TODO entries from all agenda file in a single list.
  4312. The prefix arg can be used to select a specific TODO keyword and limit
  4313. the list to these. When using \\[universal-argument], you will be prompted
  4314. for a keyword. A numeric prefix directly selects the Nth keyword in
  4315. `org-todo-keywords-1'."
  4316. (interactive "P")
  4317. (if org-agenda-overriding-arguments
  4318. (setq arg org-agenda-overriding-arguments))
  4319. (if (and (stringp arg) (not (string-match "\\S-" arg))) (setq arg nil))
  4320. (let* ((today (org-today))
  4321. (date (calendar-gregorian-from-absolute today))
  4322. (kwds org-todo-keywords-for-agenda)
  4323. (completion-ignore-case t)
  4324. (org-select-this-todo-keyword
  4325. (if (stringp arg) arg
  4326. (and arg (integerp arg) (> arg 0)
  4327. (nth (1- arg) kwds))))
  4328. rtn rtnall files file pos)
  4329. (when (equal arg '(4))
  4330. (setq org-select-this-todo-keyword
  4331. (org-icompleting-read "Keyword (or KWD1|K2D2|...): "
  4332. (mapcar 'list kwds) nil nil)))
  4333. (and (equal 0 arg) (setq org-select-this-todo-keyword nil))
  4334. (catch 'exit
  4335. (if org-agenda-sticky
  4336. (setq org-agenda-buffer-name
  4337. (if (stringp org-select-this-todo-keyword)
  4338. (format "*Org Agenda(%s:%s)*" (or org-keys "t")
  4339. org-select-this-todo-keyword)
  4340. (format "*Org Agenda(%s)*" (or org-keys "t")))))
  4341. (org-agenda-prepare "TODO")
  4342. (org-compile-prefix-format 'todo)
  4343. (org-set-sorting-strategy 'todo)
  4344. (setq org-agenda-redo-command
  4345. `(org-todo-list (or (and (numberp current-prefix-arg)
  4346. current-prefix-arg)
  4347. ,org-select-this-todo-keyword
  4348. current-prefix-arg ,arg)))
  4349. (setq files (org-agenda-files nil 'ifmode)
  4350. rtnall nil)
  4351. (while (setq file (pop files))
  4352. (catch 'nextfile
  4353. (org-check-agenda-file file)
  4354. (setq rtn (org-agenda-get-day-entries file date :todo))
  4355. (setq rtnall (append rtnall rtn))))
  4356. (if org-agenda-overriding-header
  4357. (insert (org-add-props (copy-sequence org-agenda-overriding-header)
  4358. nil 'face 'org-agenda-structure) "\n")
  4359. (insert "Global list of TODO items of type: ")
  4360. (add-text-properties (point-min) (1- (point))
  4361. (list 'face 'org-agenda-structure
  4362. 'short-heading
  4363. (concat "ToDo: "
  4364. (or org-select-this-todo-keyword "ALL"))))
  4365. (org-agenda-mark-header-line (point-min))
  4366. (insert (org-agenda-propertize-selected-todo-keywords
  4367. org-select-this-todo-keyword))
  4368. (setq pos (point))
  4369. (unless org-agenda-multi
  4370. (insert "Available with `N r': (0)[ALL]")
  4371. (let ((n 0) s)
  4372. (mapc (lambda (x)
  4373. (setq s (format "(%d)%s" (setq n (1+ n)) x))
  4374. (if (> (+ (current-column) (string-width s) 1) (frame-width))
  4375. (insert "\n "))
  4376. (insert " " s))
  4377. kwds))
  4378. (insert "\n"))
  4379. (add-text-properties pos (1- (point)) (list 'face 'org-agenda-structure)))
  4380. (org-agenda-mark-header-line (point-min))
  4381. (when rtnall
  4382. (insert (org-agenda-finalize-entries rtnall 'todo) "\n"))
  4383. (goto-char (point-min))
  4384. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4385. (add-text-properties (point-min) (point-max)
  4386. `(org-agenda-type todo
  4387. org-last-args ,arg
  4388. org-redo-cmd ,org-agenda-redo-command
  4389. org-series-cmd ,org-cmd))
  4390. (org-agenda-finalize)
  4391. (setq buffer-read-only t))))
  4392. ;;; Agenda tags match
  4393. ;;;###autoload
  4394. (defun org-tags-view (&optional todo-only match)
  4395. "Show all headlines for all `org-agenda-files' matching a TAGS criterion.
  4396. The prefix arg TODO-ONLY limits the search to TODO entries."
  4397. (interactive "P")
  4398. (if org-agenda-overriding-arguments
  4399. (setq todo-only (car org-agenda-overriding-arguments)
  4400. match (nth 1 org-agenda-overriding-arguments)))
  4401. (let* ((org-tags-match-list-sublevels
  4402. org-tags-match-list-sublevels)
  4403. (completion-ignore-case t)
  4404. rtn rtnall files file pos matcher
  4405. buffer)
  4406. (when (and (stringp match) (not (string-match "\\S-" match)))
  4407. (setq match nil))
  4408. (catch 'exit
  4409. (if org-agenda-sticky
  4410. (setq org-agenda-buffer-name
  4411. (if (stringp match)
  4412. (format "*Org Agenda(%s:%s)*"
  4413. (or org-keys (or (and todo-only "M") "m")) match)
  4414. (format "*Org Agenda(%s)*" (or (and todo-only "M") "m")))))
  4415. ;; Prepare agendas (and `org-tag-alist-for-agenda') before
  4416. ;; expanding tags within `org-make-tags-matcher'
  4417. (org-agenda-prepare (concat "TAGS " match))
  4418. (setq matcher (org-make-tags-matcher match)
  4419. match (car matcher) matcher (cdr matcher))
  4420. (org-compile-prefix-format 'tags)
  4421. (org-set-sorting-strategy 'tags)
  4422. (setq org-agenda-query-string match)
  4423. (setq org-agenda-redo-command
  4424. (list 'org-tags-view `(quote ,todo-only)
  4425. (list 'if 'current-prefix-arg nil `(quote ,org-agenda-query-string))))
  4426. (setq files (org-agenda-files nil 'ifmode)
  4427. rtnall nil)
  4428. (while (setq file (pop files))
  4429. (catch 'nextfile
  4430. (org-check-agenda-file file)
  4431. (setq buffer (if (file-exists-p file)
  4432. (org-get-agenda-file-buffer file)
  4433. (error "No such file %s" file)))
  4434. (if (not buffer)
  4435. ;; If file does not exist, error message to agenda
  4436. (setq rtn (list
  4437. (format "ORG-AGENDA-ERROR: No such org-file %s" file))
  4438. rtnall (append rtnall rtn))
  4439. (with-current-buffer buffer
  4440. (unless (derived-mode-p 'org-mode)
  4441. (error "Agenda file %s is not in `org-mode'" file))
  4442. (save-excursion
  4443. (save-restriction
  4444. (if (eq buffer org-agenda-restrict)
  4445. (narrow-to-region org-agenda-restrict-begin
  4446. org-agenda-restrict-end)
  4447. (widen))
  4448. (setq rtn (org-scan-tags 'agenda matcher todo-only))
  4449. (setq rtnall (append rtnall rtn))))))))
  4450. (if org-agenda-overriding-header
  4451. (insert (org-add-props (copy-sequence org-agenda-overriding-header)
  4452. nil 'face 'org-agenda-structure) "\n")
  4453. (insert "Headlines with TAGS match: ")
  4454. (add-text-properties (point-min) (1- (point))
  4455. (list 'face 'org-agenda-structure
  4456. 'short-heading
  4457. (concat "Match: " match)))
  4458. (setq pos (point))
  4459. (insert match "\n")
  4460. (add-text-properties pos (1- (point)) (list 'face 'org-warning))
  4461. (setq pos (point))
  4462. (unless org-agenda-multi
  4463. (insert "Press `C-u r' to search again with new search string\n"))
  4464. (add-text-properties pos (1- (point)) (list 'face 'org-agenda-structure)))
  4465. (org-agenda-mark-header-line (point-min))
  4466. (when rtnall
  4467. (insert (org-agenda-finalize-entries rtnall 'tags) "\n"))
  4468. (goto-char (point-min))
  4469. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4470. (add-text-properties (point-min) (point-max)
  4471. `(org-agenda-type tags
  4472. org-last-args (,todo-only ,match)
  4473. org-redo-cmd ,org-agenda-redo-command
  4474. org-series-cmd ,org-cmd))
  4475. (org-agenda-finalize)
  4476. (setq buffer-read-only t))))
  4477. ;;; Agenda Finding stuck projects
  4478. (defvar org-agenda-skip-regexp nil
  4479. "Regular expression used in skipping subtrees for the agenda.
  4480. This is basically a temporary global variable that can be set and then
  4481. used by user-defined selections using `org-agenda-skip-function'.")
  4482. (defvar org-agenda-overriding-header nil
  4483. "When set during agenda, todo and tags searches it replaces the header.
  4484. This variable should not be set directly, but custom commands can bind it
  4485. in the options section.")
  4486. (defun org-agenda-skip-entry-when-regexp-matches ()
  4487. "Check if the current entry contains match for `org-agenda-skip-regexp'.
  4488. If yes, it returns the end position of this entry, causing agenda commands
  4489. to skip the entry but continuing the search in the subtree. This is a
  4490. function that can be put into `org-agenda-skip-function' for the duration
  4491. of a command."
  4492. (let ((end (save-excursion (org-end-of-subtree t)))
  4493. skip)
  4494. (save-excursion
  4495. (setq skip (re-search-forward org-agenda-skip-regexp end t)))
  4496. (and skip end)))
  4497. (defun org-agenda-skip-subtree-when-regexp-matches ()
  4498. "Check if the current subtree contains match for `org-agenda-skip-regexp'.
  4499. If yes, it returns the end position of this tree, causing agenda commands
  4500. to skip this subtree. This is a function that can be put into
  4501. `org-agenda-skip-function' for the duration of a command."
  4502. (let ((end (save-excursion (org-end-of-subtree t)))
  4503. skip)
  4504. (save-excursion
  4505. (setq skip (re-search-forward org-agenda-skip-regexp end t)))
  4506. (and skip end)))
  4507. (defun org-agenda-skip-entry-when-regexp-matches-in-subtree ()
  4508. "Check if the current subtree contains match for `org-agenda-skip-regexp'.
  4509. If yes, it returns the end position of the current entry (NOT the tree),
  4510. causing agenda commands to skip the entry but continuing the search in
  4511. the subtree. This is a function that can be put into
  4512. `org-agenda-skip-function' for the duration of a command. An important
  4513. use of this function is for the stuck project list."
  4514. (let ((end (save-excursion (org-end-of-subtree t)))
  4515. (entry-end (save-excursion (outline-next-heading) (1- (point))))
  4516. skip)
  4517. (save-excursion
  4518. (setq skip (re-search-forward org-agenda-skip-regexp end t)))
  4519. (and skip entry-end)))
  4520. (defun org-agenda-skip-entry-if (&rest conditions)
  4521. "Skip entry if any of CONDITIONS is true.
  4522. See `org-agenda-skip-if' for details."
  4523. (org-agenda-skip-if nil conditions))
  4524. (defun org-agenda-skip-subtree-if (&rest conditions)
  4525. "Skip entry if any of CONDITIONS is true.
  4526. See `org-agenda-skip-if' for details."
  4527. (org-agenda-skip-if t conditions))
  4528. (defun org-agenda-skip-if (subtree conditions)
  4529. "Checks current entity for CONDITIONS.
  4530. If SUBTREE is non-nil, the entire subtree is checked. Otherwise, only
  4531. the entry (i.e. the text before the next heading) is checked.
  4532. CONDITIONS is a list of symbols, boolean OR is used to combine the results
  4533. from different tests. Valid conditions are:
  4534. scheduled Check if there is a scheduled cookie
  4535. notscheduled Check if there is no scheduled cookie
  4536. deadline Check if there is a deadline
  4537. notdeadline Check if there is no deadline
  4538. timestamp Check if there is a timestamp (also deadline or scheduled)
  4539. nottimestamp Check if there is no timestamp (also deadline or scheduled)
  4540. regexp Check if regexp matches
  4541. notregexp Check if regexp does not match.
  4542. todo Check if TODO keyword matches
  4543. nottodo Check if TODO keyword does not match
  4544. The regexp is taken from the conditions list, it must come right after
  4545. the `regexp' or `notregexp' element.
  4546. `todo' and `nottodo' accept as an argument a list of todo
  4547. keywords, which may include \"*\" to match any todo keyword.
  4548. (org-agenda-skip-entry-if 'todo '(\"TODO\" \"WAITING\"))
  4549. would skip all entries with \"TODO\" or \"WAITING\" keywords.
  4550. Instead of a list, a keyword class may be given. For example:
  4551. (org-agenda-skip-entry-if 'nottodo 'done)
  4552. would skip entries that haven't been marked with any of \"DONE\"
  4553. keywords. Possible classes are: `todo', `done', `any'.
  4554. If any of these conditions is met, this function returns the end point of
  4555. the entity, causing the search to continue from there. This is a function
  4556. that can be put into `org-agenda-skip-function' for the duration of a command."
  4557. (let (beg end m)
  4558. (org-back-to-heading t)
  4559. (setq beg (point)
  4560. end (if subtree
  4561. (progn (org-end-of-subtree t) (point))
  4562. (progn (outline-next-heading) (1- (point)))))
  4563. (goto-char beg)
  4564. (and
  4565. (or
  4566. (and (memq 'scheduled conditions)
  4567. (re-search-forward org-scheduled-time-regexp end t))
  4568. (and (memq 'notscheduled conditions)
  4569. (not (re-search-forward org-scheduled-time-regexp end t)))
  4570. (and (memq 'deadline conditions)
  4571. (re-search-forward org-deadline-time-regexp end t))
  4572. (and (memq 'notdeadline conditions)
  4573. (not (re-search-forward org-deadline-time-regexp end t)))
  4574. (and (memq 'timestamp conditions)
  4575. (re-search-forward org-ts-regexp end t))
  4576. (and (memq 'nottimestamp conditions)
  4577. (not (re-search-forward org-ts-regexp end t)))
  4578. (and (setq m (memq 'regexp conditions))
  4579. (stringp (nth 1 m))
  4580. (re-search-forward (nth 1 m) end t))
  4581. (and (setq m (memq 'notregexp conditions))
  4582. (stringp (nth 1 m))
  4583. (not (re-search-forward (nth 1 m) end t)))
  4584. (and (or
  4585. (setq m (memq 'nottodo conditions))
  4586. (setq m (memq 'todo-unblocked conditions))
  4587. (setq m (memq 'nottodo-unblocked conditions))
  4588. (setq m (memq 'todo conditions)))
  4589. (org-agenda-skip-if-todo m end)))
  4590. end)))
  4591. (defun org-agenda-skip-if-todo (args end)
  4592. "Helper function for `org-agenda-skip-if', do not use it directly.
  4593. ARGS is a list with first element either `todo', `nottodo',
  4594. `todo-unblocked' or `nottodo-unblocked'. The remainder is either
  4595. a list of TODO keywords, or a state symbol `todo' or `done' or
  4596. `any'."
  4597. (let ((kw (car args))
  4598. (arg (cadr args))
  4599. todo-wds todo-re)
  4600. (setq todo-wds
  4601. (org-uniquify
  4602. (cond
  4603. ((listp arg) ;; list of keywords
  4604. (if (member "*" arg)
  4605. (mapcar 'substring-no-properties org-todo-keywords-1)
  4606. arg))
  4607. ((symbolp arg) ;; keyword class name
  4608. (cond
  4609. ((eq arg 'todo)
  4610. (org-delete-all org-done-keywords
  4611. (mapcar 'substring-no-properties
  4612. org-todo-keywords-1)))
  4613. ((eq arg 'done) org-done-keywords)
  4614. ((eq arg 'any)
  4615. (mapcar 'substring-no-properties org-todo-keywords-1)))))))
  4616. (setq todo-re
  4617. (concat "^\\*+[ \t]+\\<\\("
  4618. (mapconcat 'identity todo-wds "\\|")
  4619. "\\)\\>"))
  4620. (cond
  4621. ((eq kw 'todo) (re-search-forward todo-re end t))
  4622. ((eq kw 'nottodo) (not (re-search-forward todo-re end t)))
  4623. ((eq kw 'todo-unblocked)
  4624. (catch 'unblocked
  4625. (while (re-search-forward todo-re end t)
  4626. (or (org-entry-blocked-p) (throw 'unblocked t)))
  4627. nil))
  4628. ((eq kw 'nottodo-unblocked)
  4629. (catch 'unblocked
  4630. (while (re-search-forward todo-re end t)
  4631. (or (org-entry-blocked-p) (throw 'unblocked nil)))
  4632. t))
  4633. )))
  4634. ;;;###autoload
  4635. (defun org-agenda-list-stuck-projects (&rest ignore)
  4636. "Create agenda view for projects that are stuck.
  4637. Stuck projects are project that have no next actions. For the definitions
  4638. of what a project is and how to check if it stuck, customize the variable
  4639. `org-stuck-projects'."
  4640. (interactive)
  4641. (let* ((org-agenda-skip-function
  4642. 'org-agenda-skip-entry-when-regexp-matches-in-subtree)
  4643. ;; We could have used org-agenda-skip-if here.
  4644. (org-agenda-overriding-header
  4645. (or org-agenda-overriding-header "List of stuck projects: "))
  4646. (matcher (nth 0 org-stuck-projects))
  4647. (todo (nth 1 org-stuck-projects))
  4648. (todo-wds (if (member "*" todo)
  4649. (progn
  4650. (org-agenda-prepare-buffers (org-agenda-files
  4651. nil 'ifmode))
  4652. (org-delete-all
  4653. org-done-keywords-for-agenda
  4654. (copy-sequence org-todo-keywords-for-agenda)))
  4655. todo))
  4656. (todo-re (concat "^\\*+[ \t]+\\("
  4657. (mapconcat 'identity todo-wds "\\|")
  4658. "\\)\\>"))
  4659. (tags (nth 2 org-stuck-projects))
  4660. (tags-re (if (member "*" tags)
  4661. (concat org-outline-regexp-bol
  4662. (org-re ".*:[[:alnum:]_@#%]+:[ \t]*$"))
  4663. (if tags
  4664. (concat org-outline-regexp-bol
  4665. ".*:\\("
  4666. (mapconcat 'identity tags "\\|")
  4667. (org-re "\\):[[:alnum:]_@#%:]*[ \t]*$")))))
  4668. (gen-re (nth 3 org-stuck-projects))
  4669. (re-list
  4670. (delq nil
  4671. (list
  4672. (if todo todo-re)
  4673. (if tags tags-re)
  4674. (and gen-re (stringp gen-re) (string-match "\\S-" gen-re)
  4675. gen-re)))))
  4676. (setq org-agenda-skip-regexp
  4677. (if re-list
  4678. (mapconcat 'identity re-list "\\|")
  4679. (error "No information how to identify unstuck projects")))
  4680. (org-tags-view nil matcher)
  4681. (with-current-buffer org-agenda-buffer-name
  4682. (setq org-agenda-redo-command
  4683. `(org-agenda-list-stuck-projects ,current-prefix-arg)))))
  4684. ;;; Diary integration
  4685. (defvar org-disable-agenda-to-diary nil) ;Dynamically-scoped param.
  4686. (defvar diary-list-entries-hook)
  4687. (defvar diary-time-regexp)
  4688. (defun org-get-entries-from-diary (date)
  4689. "Get the (Emacs Calendar) diary entries for DATE."
  4690. (require 'diary-lib)
  4691. (let* ((diary-fancy-buffer "*temporary-fancy-diary-buffer*")
  4692. (diary-display-hook '(fancy-diary-display))
  4693. (diary-display-function 'fancy-diary-display)
  4694. (pop-up-frames nil)
  4695. (diary-list-entries-hook
  4696. (cons 'org-diary-default-entry diary-list-entries-hook))
  4697. (diary-file-name-prefix nil) ; turn this feature off
  4698. (diary-modify-entry-list-string-function 'org-modify-diary-entry-string)
  4699. entries
  4700. (org-disable-agenda-to-diary t))
  4701. (save-excursion
  4702. (save-window-excursion
  4703. (funcall (if (fboundp 'diary-list-entries)
  4704. 'diary-list-entries 'list-diary-entries)
  4705. date 1)))
  4706. (if (not (get-buffer diary-fancy-buffer))
  4707. (setq entries nil)
  4708. (with-current-buffer diary-fancy-buffer
  4709. (setq buffer-read-only nil)
  4710. (if (zerop (buffer-size))
  4711. ;; No entries
  4712. (setq entries nil)
  4713. ;; Omit the date and other unnecessary stuff
  4714. (org-agenda-cleanup-fancy-diary)
  4715. ;; Add prefix to each line and extend the text properties
  4716. (if (zerop (buffer-size))
  4717. (setq entries nil)
  4718. (setq entries (buffer-substring (point-min) (- (point-max) 1)))
  4719. (setq entries
  4720. (with-temp-buffer
  4721. (insert entries) (goto-char (point-min))
  4722. (while (re-search-forward "\n[ \t]+\\(.+\\)$" nil t)
  4723. (unless (save-match-data (string-match diary-time-regexp (match-string 1)))
  4724. (replace-match (concat "; " (match-string 1)))))
  4725. (buffer-string)))))
  4726. (set-buffer-modified-p nil)
  4727. (kill-buffer diary-fancy-buffer)))
  4728. (when entries
  4729. (setq entries (org-split-string entries "\n"))
  4730. (setq entries
  4731. (mapcar
  4732. (lambda (x)
  4733. (setq x (org-agenda-format-item "" x nil "Diary" nil 'time))
  4734. ;; Extend the text properties to the beginning of the line
  4735. (org-add-props x (text-properties-at (1- (length x)) x)
  4736. 'type "diary" 'date date 'face 'org-agenda-diary))
  4737. entries)))))
  4738. (defvar org-agenda-cleanup-fancy-diary-hook nil
  4739. "Hook run when the fancy diary buffer is cleaned up.")
  4740. (defun org-agenda-cleanup-fancy-diary ()
  4741. "Remove unwanted stuff in buffer created by `fancy-diary-display'.
  4742. This gets rid of the date, the underline under the date, and
  4743. the dummy entry installed by `org-mode' to ensure non-empty diary for each
  4744. date. It also removes lines that contain only whitespace."
  4745. (goto-char (point-min))
  4746. (if (looking-at ".*?:[ \t]*")
  4747. (progn
  4748. (replace-match "")
  4749. (re-search-forward "\n=+$" nil t)
  4750. (replace-match "")
  4751. (while (re-search-backward "^ +\n?" nil t) (replace-match "")))
  4752. (re-search-forward "\n=+$" nil t)
  4753. (delete-region (point-min) (min (point-max) (1+ (match-end 0)))))
  4754. (goto-char (point-min))
  4755. (while (re-search-forward "^ +\n" nil t)
  4756. (replace-match ""))
  4757. (goto-char (point-min))
  4758. (if (re-search-forward "^Org-mode dummy\n?" nil t)
  4759. (replace-match ""))
  4760. (run-hooks 'org-agenda-cleanup-fancy-diary-hook))
  4761. ;; Make sure entries from the diary have the right text properties.
  4762. (eval-after-load "diary-lib"
  4763. '(if (boundp 'diary-modify-entry-list-string-function)
  4764. ;; We can rely on the hook, nothing to do
  4765. nil
  4766. ;; Hook not available, must use advice to make this work
  4767. (defadvice add-to-diary-list (before org-mark-diary-entry activate)
  4768. "Make the position visible."
  4769. (if (and org-disable-agenda-to-diary ;; called from org-agenda
  4770. (stringp string)
  4771. buffer-file-name)
  4772. (setq string (org-modify-diary-entry-string string))))))
  4773. (defun org-modify-diary-entry-string (string)
  4774. "Add text properties to string, allowing org-mode to act on it."
  4775. (org-add-props string nil
  4776. 'mouse-face 'highlight
  4777. 'help-echo (if buffer-file-name
  4778. (format "mouse-2 or RET jump to diary file %s"
  4779. (abbreviate-file-name buffer-file-name))
  4780. "")
  4781. 'org-agenda-diary-link t
  4782. 'org-marker (org-agenda-new-marker (point-at-bol))))
  4783. (defun org-diary-default-entry ()
  4784. "Add a dummy entry to the diary.
  4785. Needed to avoid empty dates which mess up holiday display."
  4786. ;; Catch the error if dealing with the new add-to-diary-alist
  4787. (when org-disable-agenda-to-diary
  4788. (condition-case nil
  4789. (org-add-to-diary-list original-date "Org-mode dummy" "")
  4790. (error
  4791. (org-add-to-diary-list original-date "Org-mode dummy" "" nil)))))
  4792. (defun org-add-to-diary-list (&rest args)
  4793. (if (fboundp 'diary-add-to-list)
  4794. (apply 'diary-add-to-list args)
  4795. (apply 'add-to-diary-list args)))
  4796. (defvar org-diary-last-run-time nil)
  4797. ;;;###autoload
  4798. (defun org-diary (&rest args)
  4799. "Return diary information from org files.
  4800. This function can be used in a \"sexp\" diary entry in the Emacs calendar.
  4801. It accesses org files and extracts information from those files to be
  4802. listed in the diary. The function accepts arguments specifying what
  4803. items should be listed. For a list of arguments allowed here, see the
  4804. variable `org-agenda-entry-types'.
  4805. The call in the diary file should look like this:
  4806. &%%(org-diary) ~/path/to/some/orgfile.org
  4807. Use a separate line for each org file to check. Or, if you omit the file name,
  4808. all files listed in `org-agenda-files' will be checked automatically:
  4809. &%%(org-diary)
  4810. If you don't give any arguments (as in the example above), the default value
  4811. of `org-agenda-entry-types' is used: (:deadline :scheduled :timestamp :sexp).
  4812. So the example above may also be written as
  4813. &%%(org-diary :deadline :timestamp :sexp :scheduled)
  4814. The function expects the lisp variables `entry' and `date' to be provided
  4815. by the caller, because this is how the calendar works. Don't use this
  4816. function from a program - use `org-agenda-get-day-entries' instead."
  4817. (when (> (- (org-float-time)
  4818. org-agenda-last-marker-time)
  4819. 5)
  4820. ;; I am not sure if this works with sticky agendas, because the marker
  4821. ;; list is then no longer a global variable.
  4822. (org-agenda-reset-markers))
  4823. (org-compile-prefix-format 'agenda)
  4824. (org-set-sorting-strategy 'agenda)
  4825. (setq args (or args org-agenda-entry-types))
  4826. (let* ((files (if (and entry (stringp entry) (string-match "\\S-" entry))
  4827. (list entry)
  4828. (org-agenda-files t)))
  4829. (time (org-float-time))
  4830. file rtn results)
  4831. (when (or (not org-diary-last-run-time)
  4832. (> (- time
  4833. org-diary-last-run-time)
  4834. 3))
  4835. (org-agenda-prepare-buffers files))
  4836. (setq org-diary-last-run-time time)
  4837. ;; If this is called during org-agenda, don't return any entries to
  4838. ;; the calendar. Org Agenda will list these entries itself.
  4839. (if org-disable-agenda-to-diary (setq files nil))
  4840. (while (setq file (pop files))
  4841. (setq rtn (apply 'org-agenda-get-day-entries file date args))
  4842. (setq results (append results rtn)))
  4843. (when results
  4844. (setq results
  4845. (mapcar (lambda (i) (replace-regexp-in-string
  4846. org-bracket-link-regexp "\\3" i)) results))
  4847. (concat (org-agenda-finalize-entries results) "\n"))))
  4848. ;;; Agenda entry finders
  4849. (defun org-agenda-get-day-entries (file date &rest args)
  4850. "Does the work for `org-diary' and `org-agenda'.
  4851. FILE is the path to a file to be checked for entries. DATE is date like
  4852. the one returned by `calendar-current-date'. ARGS are symbols indicating
  4853. which kind of entries should be extracted. For details about these, see
  4854. the documentation of `org-diary'."
  4855. (setq args (or args org-agenda-entry-types))
  4856. (let* ((org-startup-folded nil)
  4857. (org-startup-align-all-tables nil)
  4858. (buffer (if (file-exists-p file)
  4859. (org-get-agenda-file-buffer file)
  4860. (error "No such file %s" file)))
  4861. arg results rtn deadline-results)
  4862. (if (not buffer)
  4863. ;; If file does not exist, make sure an error message ends up in diary
  4864. (list (format "ORG-AGENDA-ERROR: No such org-file %s" file))
  4865. (with-current-buffer buffer
  4866. (unless (derived-mode-p 'org-mode)
  4867. (error "Agenda file %s is not in `org-mode'" file))
  4868. (setq org-agenda-buffer (or org-agenda-buffer buffer))
  4869. (let ((case-fold-search nil))
  4870. (save-excursion
  4871. (save-restriction
  4872. (if (eq buffer org-agenda-restrict)
  4873. (narrow-to-region org-agenda-restrict-begin
  4874. org-agenda-restrict-end)
  4875. (widen))
  4876. ;; The way we repeatedly append to `results' makes it O(n^2) :-(
  4877. (while (setq arg (pop args))
  4878. (cond
  4879. ((and (eq arg :todo)
  4880. (equal date (calendar-gregorian-from-absolute
  4881. (org-today))))
  4882. (setq rtn (org-agenda-get-todos))
  4883. (setq results (append results rtn)))
  4884. ((eq arg :timestamp)
  4885. (setq rtn (org-agenda-get-blocks))
  4886. (setq results (append results rtn))
  4887. (setq rtn (org-agenda-get-timestamps deadline-results))
  4888. (setq results (append results rtn)))
  4889. ((eq arg :sexp)
  4890. (setq rtn (org-agenda-get-sexps))
  4891. (setq results (append results rtn)))
  4892. ((eq arg :scheduled)
  4893. (setq rtn (org-agenda-get-scheduled deadline-results))
  4894. (setq results (append results rtn)))
  4895. ((eq arg :scheduled*)
  4896. (setq rtn (org-agenda-get-scheduled deadline-results t))
  4897. (setq results (append results rtn)))
  4898. ((eq arg :closed)
  4899. (setq rtn (org-agenda-get-progress))
  4900. (setq results (append results rtn)))
  4901. ((eq arg :deadline)
  4902. (setq rtn (org-agenda-get-deadlines))
  4903. (setq deadline-results (copy-sequence rtn))
  4904. (setq results (append results rtn)))
  4905. ((eq arg :deadline*)
  4906. (setq rtn (org-agenda-get-deadlines t))
  4907. (setq deadline-results (copy-sequence rtn))
  4908. (setq results (append results rtn))))))))
  4909. results))))
  4910. (defsubst org-em (x y list)
  4911. "Is X or Y a member of LIST?"
  4912. (or (memq x list) (memq y list)))
  4913. (defvar org-heading-keyword-regexp-format) ; defined in org.el
  4914. (defvar org-agenda-sorting-strategy-selected nil)
  4915. (defun org-agenda-get-todos ()
  4916. "Return the TODO information for agenda display."
  4917. (let* ((props (list 'face nil
  4918. 'done-face 'org-agenda-done
  4919. 'org-not-done-regexp org-not-done-regexp
  4920. 'org-todo-regexp org-todo-regexp
  4921. 'org-complex-heading-regexp org-complex-heading-regexp
  4922. 'mouse-face 'highlight
  4923. 'help-echo
  4924. (format "mouse-2 or RET jump to org file %s"
  4925. (abbreviate-file-name buffer-file-name))))
  4926. (regexp (format org-heading-keyword-regexp-format
  4927. (cond
  4928. ((and org-select-this-todo-keyword
  4929. (equal org-select-this-todo-keyword "*"))
  4930. org-todo-regexp)
  4931. (org-select-this-todo-keyword
  4932. (concat "\\("
  4933. (mapconcat 'identity
  4934. (org-split-string
  4935. org-select-this-todo-keyword
  4936. "|")
  4937. "\\|") "\\)"))
  4938. (t org-not-done-regexp))))
  4939. marker priority category category-pos level tags todo-state ts-date ts-date-type
  4940. ee txt beg end inherited-tags todo-state-end-pos)
  4941. (goto-char (point-min))
  4942. (while (re-search-forward regexp nil t)
  4943. (catch :skip
  4944. (save-match-data
  4945. (beginning-of-line)
  4946. (org-agenda-skip)
  4947. (setq beg (point) end (save-excursion (outline-next-heading) (point)))
  4948. (unless (and (setq todo-state (org-get-todo-state))
  4949. (setq todo-state-end-pos (match-end 2)))
  4950. (goto-char end)
  4951. (throw :skip nil))
  4952. (when (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item end)
  4953. (goto-char (1+ beg))
  4954. (or org-agenda-todo-list-sublevels (org-end-of-subtree 'invisible))
  4955. (throw :skip nil)))
  4956. (goto-char (match-beginning 2))
  4957. (setq marker (org-agenda-new-marker (match-beginning 0))
  4958. category (org-get-category)
  4959. ts-date (let (ts)
  4960. (save-match-data
  4961. (cond ((org-em 'scheduled-up 'scheduled-down
  4962. org-agenda-sorting-strategy-selected)
  4963. (setq ts (org-entry-get (point) "SCHEDULED")
  4964. ts-date-type " scheduled"))
  4965. ((org-em 'deadline-up 'deadline-down
  4966. org-agenda-sorting-strategy-selected)
  4967. (setq ts (org-entry-get (point) "DEADLINE")
  4968. ts-date-type " deadline"))
  4969. ((org-em 'ts-up 'ts-down
  4970. org-agenda-sorting-strategy-selected)
  4971. (setq ts (org-entry-get (point) "TIMESTAMP")
  4972. ts-date-type " timestamp"))
  4973. ((org-em 'tsia-up 'tsia-down
  4974. org-agenda-sorting-strategy-selected)
  4975. (setq ts (org-entry-get (point) "TIMESTAMP_IA")
  4976. ts-date-type " timestamp_ia"))
  4977. ((org-em 'timestamp-up 'timestamp-down
  4978. org-agenda-sorting-strategy-selected)
  4979. (setq ts (or (org-entry-get (point) "SCHEDULED")
  4980. (org-entry-get (point) "DEADLINE")
  4981. (org-entry-get (point) "TIMESTAMP")
  4982. (org-entry-get (point) "TIMESTAMP_IA"))
  4983. ts-date-type ""))
  4984. (t (setq ts-date-type "")))
  4985. (when ts (ignore-errors (org-time-string-to-absolute ts)))))
  4986. category-pos (get-text-property (point) 'org-category-position)
  4987. txt (org-trim
  4988. (buffer-substring (match-beginning 2) (match-end 0)))
  4989. inherited-tags
  4990. (or (eq org-agenda-show-inherited-tags 'always)
  4991. (and (listp org-agenda-show-inherited-tags)
  4992. (memq 'todo org-agenda-show-inherited-tags))
  4993. (and (eq org-agenda-show-inherited-tags t)
  4994. (or (eq org-agenda-use-tag-inheritance t)
  4995. (memq 'todo org-agenda-use-tag-inheritance))))
  4996. tags (org-get-tags-at nil (not inherited-tags))
  4997. level (make-string (org-reduced-level (org-outline-level)) ? )
  4998. txt (org-agenda-format-item "" txt level category tags t)
  4999. priority (1+ (org-get-priority txt)))
  5000. (org-add-props txt props
  5001. 'org-marker marker 'org-hd-marker marker
  5002. 'priority priority 'org-category category
  5003. 'level level
  5004. 'ts-date ts-date
  5005. 'org-category-position category-pos
  5006. 'type (concat "todo" ts-date-type) 'todo-state todo-state)
  5007. (push txt ee)
  5008. (if org-agenda-todo-list-sublevels
  5009. (goto-char todo-state-end-pos)
  5010. (org-end-of-subtree 'invisible))))
  5011. (nreverse ee)))
  5012. (defun org-agenda-todo-custom-ignore-p (time n)
  5013. "Check whether timestamp is farther away than n number of days.
  5014. This function is invoked if `org-agenda-todo-ignore-deadlines',
  5015. `org-agenda-todo-ignore-scheduled' or
  5016. `org-agenda-todo-ignore-timestamp' is set to an integer."
  5017. (let ((days (org-time-stamp-to-now
  5018. time org-agenda-todo-ignore-time-comparison-use-seconds)))
  5019. (if (>= n 0)
  5020. (>= days n)
  5021. (<= days n))))
  5022. ;;;###autoload
  5023. (defun org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item
  5024. (&optional end)
  5025. "Do we have a reason to ignore this TODO entry because it has a time stamp?"
  5026. (when (or org-agenda-todo-ignore-with-date
  5027. org-agenda-todo-ignore-scheduled
  5028. org-agenda-todo-ignore-deadlines
  5029. org-agenda-todo-ignore-timestamp)
  5030. (setq end (or end (save-excursion (outline-next-heading) (point))))
  5031. (save-excursion
  5032. (or (and org-agenda-todo-ignore-with-date
  5033. (re-search-forward org-ts-regexp end t))
  5034. (and org-agenda-todo-ignore-scheduled
  5035. (re-search-forward org-scheduled-time-regexp end t)
  5036. (cond
  5037. ((eq org-agenda-todo-ignore-scheduled 'future)
  5038. (> (org-time-stamp-to-now
  5039. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5040. ((eq org-agenda-todo-ignore-scheduled 'past)
  5041. (<= (org-time-stamp-to-now
  5042. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5043. ((numberp org-agenda-todo-ignore-scheduled)
  5044. (org-agenda-todo-custom-ignore-p
  5045. (match-string 1) org-agenda-todo-ignore-scheduled))
  5046. (t)))
  5047. (and org-agenda-todo-ignore-deadlines
  5048. (re-search-forward org-deadline-time-regexp end t)
  5049. (cond
  5050. ((memq org-agenda-todo-ignore-deadlines '(t all)) t)
  5051. ((eq org-agenda-todo-ignore-deadlines 'far)
  5052. (not (org-deadline-close (match-string 1))))
  5053. ((eq org-agenda-todo-ignore-deadlines 'future)
  5054. (> (org-time-stamp-to-now
  5055. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5056. ((eq org-agenda-todo-ignore-deadlines 'past)
  5057. (<= (org-time-stamp-to-now
  5058. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5059. ((numberp org-agenda-todo-ignore-deadlines)
  5060. (org-agenda-todo-custom-ignore-p
  5061. (match-string 1) org-agenda-todo-ignore-deadlines))
  5062. (t (org-deadline-close (match-string 1)))))
  5063. (and org-agenda-todo-ignore-timestamp
  5064. (let ((buffer (current-buffer))
  5065. (regexp
  5066. (concat
  5067. org-scheduled-time-regexp "\\|" org-deadline-time-regexp))
  5068. (start (point)))
  5069. ;; Copy current buffer into a temporary one
  5070. (with-temp-buffer
  5071. (insert-buffer-substring buffer start end)
  5072. (goto-char (point-min))
  5073. ;; Delete SCHEDULED and DEADLINE items
  5074. (while (re-search-forward regexp end t)
  5075. (delete-region (match-beginning 0) (match-end 0)))
  5076. (goto-char (point-min))
  5077. ;; No search for timestamp left
  5078. (when (re-search-forward org-ts-regexp nil t)
  5079. (cond
  5080. ((eq org-agenda-todo-ignore-timestamp 'future)
  5081. (> (org-time-stamp-to-now
  5082. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5083. ((eq org-agenda-todo-ignore-timestamp 'past)
  5084. (<= (org-time-stamp-to-now
  5085. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5086. ((numberp org-agenda-todo-ignore-timestamp)
  5087. (org-agenda-todo-custom-ignore-p
  5088. (match-string 1) org-agenda-todo-ignore-timestamp))
  5089. (t))))))))))
  5090. (defun org-agenda-get-timestamps (&optional deadline-results)
  5091. "Return the date stamp information for agenda display."
  5092. (let* ((props (list 'face 'org-agenda-calendar-event
  5093. 'org-not-done-regexp org-not-done-regexp
  5094. 'org-todo-regexp org-todo-regexp
  5095. 'org-complex-heading-regexp org-complex-heading-regexp
  5096. 'mouse-face 'highlight
  5097. 'help-echo
  5098. (format "mouse-2 or RET jump to org file %s"
  5099. (abbreviate-file-name buffer-file-name))))
  5100. (d1 (calendar-absolute-from-gregorian date))
  5101. mm
  5102. (deadline-position-alist
  5103. (mapcar (lambda (a) (and (setq mm (get-text-property
  5104. 0 'org-hd-marker a))
  5105. (cons (marker-position mm) a)))
  5106. deadline-results))
  5107. (remove-re org-ts-regexp)
  5108. (regexp
  5109. (concat
  5110. (if org-agenda-include-inactive-timestamps "[[<]" "<")
  5111. (regexp-quote
  5112. (substring
  5113. (format-time-string
  5114. (car org-time-stamp-formats)
  5115. (apply 'encode-time ; DATE bound by calendar
  5116. (list 0 0 0 (nth 1 date) (car date) (nth 2 date))))
  5117. 1 11))
  5118. "\\|\\(<[0-9]+-[0-9]+-[0-9]+[^>\n]+?\\+[0-9]+[hdwmy]>\\)"
  5119. "\\|\\(<%%\\(([^>\n]+)\\)>\\)"))
  5120. marker hdmarker deadlinep scheduledp clockp closedp inactivep
  5121. donep tmp priority category category-pos level ee txt timestr tags
  5122. b0 b3 e3 head todo-state end-of-match show-all warntime habitp
  5123. inherited-tags ts-date)
  5124. (goto-char (point-min))
  5125. (while (setq end-of-match (re-search-forward regexp nil t))
  5126. (setq b0 (match-beginning 0)
  5127. b3 (match-beginning 3) e3 (match-end 3)
  5128. todo-state (save-match-data (ignore-errors (org-get-todo-state)))
  5129. habitp (and (functionp 'org-is-habit-p) (save-match-data (org-is-habit-p)))
  5130. show-all (or (eq org-agenda-repeating-timestamp-show-all t)
  5131. (member todo-state
  5132. org-agenda-repeating-timestamp-show-all)))
  5133. (catch :skip
  5134. (and (org-at-date-range-p) (throw :skip nil))
  5135. (org-agenda-skip)
  5136. (if (and (match-end 1)
  5137. (not (= d1 (org-time-string-to-absolute
  5138. (match-string 1) d1 nil show-all
  5139. (current-buffer) b0))))
  5140. (throw :skip nil))
  5141. (if (and e3
  5142. (not (org-diary-sexp-entry (buffer-substring b3 e3) "" date)))
  5143. (throw :skip nil))
  5144. (setq tmp (buffer-substring (max (point-min)
  5145. (- b0 org-ds-keyword-length))
  5146. b0)
  5147. timestr (if b3 "" (buffer-substring b0 (point-at-eol)))
  5148. inactivep (= (char-after b0) ?\[)
  5149. deadlinep (string-match org-deadline-regexp tmp)
  5150. scheduledp (string-match org-scheduled-regexp tmp)
  5151. closedp (and org-agenda-include-inactive-timestamps
  5152. (string-match org-closed-string tmp))
  5153. clockp (and org-agenda-include-inactive-timestamps
  5154. (or (string-match org-clock-string tmp)
  5155. (string-match "]-+\\'" tmp)))
  5156. warntime (get-text-property (point) 'org-appt-warntime)
  5157. donep (member todo-state org-done-keywords))
  5158. (if (or scheduledp deadlinep closedp clockp
  5159. (and donep org-agenda-skip-timestamp-if-done))
  5160. (throw :skip t))
  5161. (if (string-match ">" timestr)
  5162. ;; substring should only run to end of time stamp
  5163. (setq timestr (substring timestr 0 (match-end 0))))
  5164. (setq marker (org-agenda-new-marker b0)
  5165. category (org-get-category b0)
  5166. category-pos (get-text-property b0 'org-category-position))
  5167. (save-excursion
  5168. (if (not (re-search-backward org-outline-regexp-bol nil t))
  5169. (throw :skip nil)
  5170. (goto-char (match-beginning 0))
  5171. (if (and (eq t org-agenda-skip-timestamp-if-deadline-is-shown)
  5172. (assoc (point) deadline-position-alist))
  5173. (throw :skip nil))
  5174. (setq hdmarker (org-agenda-new-marker)
  5175. inherited-tags
  5176. (or (eq org-agenda-show-inherited-tags 'always)
  5177. (and (listp org-agenda-show-inherited-tags)
  5178. (memq 'agenda org-agenda-show-inherited-tags))
  5179. (and (eq org-agenda-show-inherited-tags t)
  5180. (or (eq org-agenda-use-tag-inheritance t)
  5181. (memq 'agenda org-agenda-use-tag-inheritance))))
  5182. tags (org-get-tags-at nil (not inherited-tags))
  5183. level (make-string (org-reduced-level (org-outline-level)) ? ))
  5184. (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
  5185. (setq head (or (match-string 1) ""))
  5186. (setq txt (org-agenda-format-item
  5187. (if inactivep org-agenda-inactive-leader nil)
  5188. head level category tags timestr
  5189. remove-re habitp)))
  5190. (setq priority (org-get-priority txt))
  5191. (org-add-props txt props 'priority priority
  5192. 'org-marker marker 'org-hd-marker hdmarker
  5193. 'org-category category 'date date
  5194. 'level level
  5195. 'ts-date
  5196. (ignore-errors (org-time-string-to-absolute timestr))
  5197. 'org-category-position category-pos
  5198. 'todo-state todo-state
  5199. 'warntime warntime
  5200. 'type "timestamp")
  5201. (push txt ee))
  5202. (if org-agenda-skip-additional-timestamps-same-entry
  5203. (outline-next-heading)
  5204. (goto-char end-of-match))))
  5205. (nreverse ee)))
  5206. (defun org-agenda-get-sexps ()
  5207. "Return the sexp information for agenda display."
  5208. (require 'diary-lib)
  5209. (let* ((props (list 'face 'org-agenda-calendar-sexp
  5210. 'mouse-face 'highlight
  5211. 'help-echo
  5212. (format "mouse-2 or RET jump to org file %s"
  5213. (abbreviate-file-name buffer-file-name))))
  5214. (regexp "^&?%%(")
  5215. marker category extra category-pos level ee txt tags entry
  5216. result beg b sexp sexp-entry todo-state warntime inherited-tags)
  5217. (goto-char (point-min))
  5218. (while (re-search-forward regexp nil t)
  5219. (catch :skip
  5220. (org-agenda-skip)
  5221. (setq beg (match-beginning 0))
  5222. (goto-char (1- (match-end 0)))
  5223. (setq b (point))
  5224. (forward-sexp 1)
  5225. (setq sexp (buffer-substring b (point)))
  5226. (setq sexp-entry (if (looking-at "[ \t]*\\(\\S-.*\\)")
  5227. (org-trim (match-string 1))
  5228. ""))
  5229. (setq result (org-diary-sexp-entry sexp sexp-entry date))
  5230. (when result
  5231. (setq marker (org-agenda-new-marker beg)
  5232. level (make-string (org-reduced-level (org-outline-level)) ? )
  5233. category (org-get-category beg)
  5234. category-pos (get-text-property beg 'org-category-position)
  5235. inherited-tags
  5236. (or (eq org-agenda-show-inherited-tags 'always)
  5237. (and (listp org-agenda-show-inherited-tags)
  5238. (memq 'agenda org-agenda-show-inherited-tags))
  5239. (and (eq org-agenda-show-inherited-tags t)
  5240. (or (eq org-agenda-use-tag-inheritance t)
  5241. (memq 'agenda org-agenda-use-tag-inheritance))))
  5242. tags (org-get-tags-at nil (not inherited-tags))
  5243. todo-state (org-get-todo-state)
  5244. warntime (get-text-property (point) 'org-appt-warntime)
  5245. extra nil)
  5246. (dolist (r (if (stringp result)
  5247. (list result)
  5248. result)) ;; we expect a list here
  5249. (when (and org-agenda-diary-sexp-prefix
  5250. (string-match org-agenda-diary-sexp-prefix r))
  5251. (setq extra (match-string 0 r)
  5252. r (replace-match "" nil nil r)))
  5253. (if (string-match "\\S-" r)
  5254. (setq txt r)
  5255. (setq txt "SEXP entry returned empty string"))
  5256. (setq txt (org-agenda-format-item extra txt level category tags 'time))
  5257. (org-add-props txt props 'org-marker marker
  5258. 'org-category category 'date date 'todo-state todo-state
  5259. 'org-category-position category-pos 'tags tags
  5260. 'level level
  5261. 'type "sexp" 'warntime warntime)
  5262. (push txt ee)))))
  5263. (nreverse ee)))
  5264. ;; Calendar sanity: define some functions that are independent of
  5265. ;; `calendar-date-style'.
  5266. ;; Normally I would like to use ISO format when calling the diary functions,
  5267. ;; but to make sure we still have Emacs 22 compatibility we bind
  5268. ;; also `european-calendar-style' and use european format
  5269. (defun org-anniversary (year month day &optional mark)
  5270. "Like `diary-anniversary', but with fixed (ISO) order of arguments."
  5271. (org-no-warnings
  5272. (let ((calendar-date-style 'european) (european-calendar-style t))
  5273. (diary-anniversary day month year mark))))
  5274. (defun org-cyclic (N year month day &optional mark)
  5275. "Like `diary-cyclic', but with fixed (ISO) order of arguments."
  5276. (org-no-warnings
  5277. (let ((calendar-date-style 'european) (european-calendar-style t))
  5278. (diary-cyclic N day month year mark))))
  5279. (defun org-block (Y1 M1 D1 Y2 M2 D2 &optional mark)
  5280. "Like `diary-block', but with fixed (ISO) order of arguments."
  5281. (org-no-warnings
  5282. (let ((calendar-date-style 'european) (european-calendar-style t))
  5283. (diary-block D1 M1 Y1 D2 M2 Y2 mark))))
  5284. (defun org-date (year month day &optional mark)
  5285. "Like `diary-date', but with fixed (ISO) order of arguments."
  5286. (org-no-warnings
  5287. (let ((calendar-date-style 'european) (european-calendar-style t))
  5288. (diary-date day month year mark))))
  5289. ;; Define the` org-class' function
  5290. (defun org-class (y1 m1 d1 y2 m2 d2 dayname &rest skip-weeks)
  5291. "Entry applies if date is between dates on DAYNAME, but skips SKIP-WEEKS.
  5292. DAYNAME is a number between 0 (Sunday) and 6 (Saturday).
  5293. SKIP-WEEKS is any number of ISO weeks in the block period for which the
  5294. item should be skipped. If any of the SKIP-WEEKS arguments is the symbol
  5295. `holidays', then any date that is known by the Emacs calendar to be a
  5296. holiday will also be skipped. If SKIP-WEEKS arguments are holiday strings,
  5297. then those holidays will be skipped."
  5298. (let* ((date1 (calendar-absolute-from-gregorian (list m1 d1 y1)))
  5299. (date2 (calendar-absolute-from-gregorian (list m2 d2 y2)))
  5300. (d (calendar-absolute-from-gregorian date))
  5301. (h (when skip-weeks (calendar-check-holidays date))))
  5302. (and
  5303. (<= date1 d)
  5304. (<= d date2)
  5305. (= (calendar-day-of-week date) dayname)
  5306. (or (not skip-weeks)
  5307. (progn
  5308. (require 'cal-iso)
  5309. (not (member (car (calendar-iso-from-absolute d)) skip-weeks))))
  5310. (not (or (and h (memq 'holidays skip-weeks))
  5311. (delq nil (mapcar (lambda(g) (member g skip-weeks)) h))))
  5312. entry)))
  5313. (defun org-diary-class (m1 d1 y1 m2 d2 y2 dayname &rest skip-weeks)
  5314. "Like `org-class', but honor `calendar-date-style'.
  5315. The order of the first 2 times 3 arguments depends on the variable
  5316. `calendar-date-style' or, if that is not defined, on `european-calendar-style'.
  5317. So for American calendars, give this as MONTH DAY YEAR, for European as
  5318. DAY MONTH YEAR, and for ISO as YEAR MONTH DAY.
  5319. DAYNAME is a number between 0 (Sunday) and 6 (Saturday). SKIP-WEEKS
  5320. is any number of ISO weeks in the block period for which the item should
  5321. be skipped.
  5322. This function is here only for backward compatibility and it is deprecated,
  5323. please use `org-class' instead."
  5324. (let* ((date1 (org-order-calendar-date-args m1 d1 y1))
  5325. (date2 (org-order-calendar-date-args m2 d2 y2)))
  5326. (org-class
  5327. (nth 2 date1) (car date1) (nth 1 date1)
  5328. (nth 2 date2) (car date2) (nth 1 date2)
  5329. dayname skip-weeks)))
  5330. (make-obsolete 'org-diary-class 'org-class "")
  5331. (defalias 'org-get-closed 'org-agenda-get-progress)
  5332. (defun org-agenda-get-progress ()
  5333. "Return the logged TODO entries for agenda display."
  5334. (let* ((props (list 'mouse-face 'highlight
  5335. 'org-not-done-regexp org-not-done-regexp
  5336. 'org-todo-regexp org-todo-regexp
  5337. 'org-complex-heading-regexp org-complex-heading-regexp
  5338. 'help-echo
  5339. (format "mouse-2 or RET jump to org file %s"
  5340. (abbreviate-file-name buffer-file-name))))
  5341. (items (if (consp org-agenda-show-log-scoped)
  5342. org-agenda-show-log-scoped
  5343. (if (eq org-agenda-show-log-scoped 'clockcheck)
  5344. '(clock)
  5345. org-agenda-log-mode-items)))
  5346. (parts
  5347. (delq nil
  5348. (list
  5349. (if (memq 'closed items) (concat "\\<" org-closed-string))
  5350. (if (memq 'clock items) (concat "\\<" org-clock-string))
  5351. (if (memq 'state items) "- State \"\\([a-zA-Z0-9]+\\)\".*?"))))
  5352. (parts-re (if parts (mapconcat 'identity parts "\\|")
  5353. (error "`org-agenda-log-mode-items' is empty")))
  5354. (regexp (concat
  5355. "\\(" parts-re "\\)"
  5356. " *\\["
  5357. (regexp-quote
  5358. (substring
  5359. (format-time-string
  5360. (car org-time-stamp-formats)
  5361. (apply 'encode-time ; DATE bound by calendar
  5362. (list 0 0 0 (nth 1 date) (car date) (nth 2 date))))
  5363. 1 11))))
  5364. (org-agenda-search-headline-for-time nil)
  5365. marker hdmarker priority category category-pos level tags closedp
  5366. statep clockp state ee txt extra timestr rest clocked inherited-tags)
  5367. (goto-char (point-min))
  5368. (while (re-search-forward regexp nil t)
  5369. (catch :skip
  5370. (org-agenda-skip)
  5371. (setq marker (org-agenda-new-marker (match-beginning 0))
  5372. closedp (equal (match-string 1) org-closed-string)
  5373. statep (equal (string-to-char (match-string 1)) ?-)
  5374. clockp (not (or closedp statep))
  5375. state (and statep (match-string 2))
  5376. category (org-get-category (match-beginning 0))
  5377. category-pos (get-text-property (match-beginning 0) 'org-category-position)
  5378. timestr (buffer-substring (match-beginning 0) (point-at-eol)))
  5379. (when (string-match "\\]" timestr)
  5380. ;; substring should only run to end of time stamp
  5381. (setq rest (substring timestr (match-end 0))
  5382. timestr (substring timestr 0 (match-end 0)))
  5383. (if (and (not closedp) (not statep)
  5384. (string-match "\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)\\].*?\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)"
  5385. rest))
  5386. (progn (setq timestr (concat (substring timestr 0 -1)
  5387. "-" (match-string 1 rest) "]"))
  5388. (setq clocked (match-string 2 rest)))
  5389. (setq clocked "-")))
  5390. (save-excursion
  5391. (setq extra
  5392. (cond
  5393. ((not org-agenda-log-mode-add-notes) nil)
  5394. (statep
  5395. (and (looking-at ".*\\\\\n[ \t]*\\([^-\n \t].*?\\)[ \t]*$")
  5396. (match-string 1)))
  5397. (clockp
  5398. (and (looking-at ".*\n[ \t]*-[ \t]+\\([^-\n \t].*?\\)[ \t]*$")
  5399. (match-string 1)))))
  5400. (if (not (re-search-backward org-outline-regexp-bol nil t))
  5401. (throw :skip nil)
  5402. (goto-char (match-beginning 0))
  5403. (setq hdmarker (org-agenda-new-marker)
  5404. inherited-tags
  5405. (or (eq org-agenda-show-inherited-tags 'always)
  5406. (and (listp org-agenda-show-inherited-tags)
  5407. (memq 'todo org-agenda-show-inherited-tags))
  5408. (and (eq org-agenda-show-inherited-tags t)
  5409. (or (eq org-agenda-use-tag-inheritance t)
  5410. (memq 'todo org-agenda-use-tag-inheritance))))
  5411. tags (org-get-tags-at nil (not inherited-tags))
  5412. level (make-string (org-reduced-level (org-outline-level)) ? ))
  5413. (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
  5414. (setq txt (match-string 1))
  5415. (when extra
  5416. (if (string-match "\\([ \t]+\\)\\(:[^ \n\t]*?:\\)[ \t]*$" txt)
  5417. (setq txt (concat (substring txt 0 (match-beginning 1))
  5418. " - " extra " " (match-string 2 txt)))
  5419. (setq txt (concat txt " - " extra))))
  5420. (setq txt (org-agenda-format-item
  5421. (cond
  5422. (closedp "Closed: ")
  5423. (statep (concat "State: (" state ")"))
  5424. (t (concat "Clocked: (" clocked ")")))
  5425. txt level category tags timestr)))
  5426. (setq priority 100000)
  5427. (org-add-props txt props
  5428. 'org-marker marker 'org-hd-marker hdmarker 'face 'org-agenda-done
  5429. 'priority priority 'org-category category
  5430. 'org-category-position category-pos
  5431. 'level level
  5432. 'type "closed" 'date date
  5433. 'undone-face 'org-warning 'done-face 'org-agenda-done)
  5434. (push txt ee))
  5435. (goto-char (point-at-eol))))
  5436. (nreverse ee)))
  5437. (defun org-agenda-show-clocking-issues ()
  5438. "Add overlays, showing issues with clocking.
  5439. See also the user option `org-agenda-clock-consistency-checks'."
  5440. (interactive)
  5441. (let* ((org-time-clocksum-use-effort-durations nil)
  5442. (pl org-agenda-clock-consistency-checks)
  5443. (re (concat "^[ \t]*"
  5444. org-clock-string
  5445. "[ \t]+"
  5446. "\\(\\[.*?\\]\\)" ; group 1 is first stamp
  5447. "\\(-\\{1,3\\}\\(\\[.*?\\]\\)\\)?")) ; group 3 is second
  5448. (tlstart 0.)
  5449. (tlend 0.)
  5450. (maxtime (org-hh:mm-string-to-minutes
  5451. (or (plist-get pl :max-duration) "24:00")))
  5452. (mintime (org-hh:mm-string-to-minutes
  5453. (or (plist-get pl :min-duration) 0)))
  5454. (maxgap (org-hh:mm-string-to-minutes
  5455. ;; default 30:00 means never complain
  5456. (or (plist-get pl :max-gap) "30:00")))
  5457. (gapok (mapcar 'org-hh:mm-string-to-minutes
  5458. (plist-get pl :gap-ok-around)))
  5459. (def-face (or (plist-get pl :default-face)
  5460. '((:background "DarkRed") (:foreground "white"))))
  5461. issue face m te ts dt ov)
  5462. (goto-char (point-min))
  5463. (while (re-search-forward " Clocked: +(-\\|\\([0-9]+:[0-9]+\\))" nil t)
  5464. (setq issue nil face def-face)
  5465. (catch 'next
  5466. (setq m (org-get-at-bol 'org-marker)
  5467. te nil ts nil)
  5468. (unless (and m (markerp m))
  5469. (setq issue "No valid clock line") (throw 'next t))
  5470. (org-with-point-at m
  5471. (save-excursion
  5472. (goto-char (point-at-bol))
  5473. (unless (looking-at re)
  5474. (error "No valid Clock line")
  5475. (throw 'next t))
  5476. (unless (match-end 3)
  5477. (setq issue "No end time"
  5478. face (or (plist-get pl :no-end-time-face) face))
  5479. (throw 'next t))
  5480. (setq ts (match-string 1)
  5481. te (match-string 3)
  5482. ts (org-float-time
  5483. (apply 'encode-time (org-parse-time-string ts)))
  5484. te (org-float-time
  5485. (apply 'encode-time (org-parse-time-string te)))
  5486. dt (- te ts))))
  5487. (cond
  5488. ((> dt (* 60 maxtime))
  5489. ;; a very long clocking chunk
  5490. (setq issue (format "Clocking interval is very long: %s"
  5491. (org-minutes-to-clocksum-string
  5492. (floor (/ (float dt) 60.))))
  5493. face (or (plist-get pl :long-face) face)))
  5494. ((< dt (* 60 mintime))
  5495. ;; a very short clocking chunk
  5496. (setq issue (format "Clocking interval is very short: %s"
  5497. (org-minutes-to-clocksum-string
  5498. (floor (/ (float dt) 60.))))
  5499. face (or (plist-get pl :short-face) face)))
  5500. ((and (> tlend 0) (< ts tlend))
  5501. ;; Two clock entries are overlapping
  5502. (setq issue (format "Clocking overlap: %d minutes"
  5503. (/ (- tlend ts) 60))
  5504. face (or (plist-get pl :overlap-face) face)))
  5505. ((and (> tlend 0) (> ts (+ tlend (* 60 maxgap))))
  5506. ;; There is a gap, lets see if we need to report it
  5507. (unless (org-agenda-check-clock-gap tlend ts gapok)
  5508. (setq issue (format "Clocking gap: %d minutes"
  5509. (/ (- ts tlend) 60))
  5510. face (or (plist-get pl :gap-face) face))))
  5511. (t nil)))
  5512. (setq tlend (or te tlend) tlstart (or ts tlstart))
  5513. (when issue
  5514. ;; OK, there was some issue, add an overlay to show the issue
  5515. (setq ov (make-overlay (point-at-bol) (point-at-eol)))
  5516. (overlay-put ov 'before-string
  5517. (concat
  5518. (org-add-props
  5519. (format "%-43s" (concat " " issue))
  5520. nil
  5521. 'face face)
  5522. "\n"))
  5523. (overlay-put ov 'evaporate t)))))
  5524. (defun org-agenda-check-clock-gap (t1 t2 ok-list)
  5525. "Check if gap T1 -> T2 contains one of the OK-LIST time-of-day values."
  5526. (catch 'exit
  5527. (unless ok-list
  5528. ;; there are no OK times for gaps...
  5529. (throw 'exit nil))
  5530. (if (> (- (/ t2 36000) (/ t1 36000)) 24)
  5531. ;; This is more than 24 hours, so it is OK.
  5532. ;; because we have at least one OK time, that must be in the
  5533. ;; 24 hour interval.
  5534. (throw 'exit t))
  5535. ;; We have a shorter gap.
  5536. ;; Now we have to get the minute of the day when these times are
  5537. (let* ((t1dec (decode-time (seconds-to-time t1)))
  5538. (t2dec (decode-time (seconds-to-time t2)))
  5539. ;; compute the minute on the day
  5540. (min1 (+ (nth 1 t1dec) (* 60 (nth 2 t1dec))))
  5541. (min2 (+ (nth 1 t2dec) (* 60 (nth 2 t2dec)))))
  5542. (when (< min2 min1)
  5543. ;; if min2 is smaller than min1, this means it is on the next day.
  5544. ;; Wrap it to after midnight.
  5545. (setq min2 (+ min2 1440)))
  5546. ;; Now check if any of the OK times is in the gap
  5547. (mapc (lambda (x)
  5548. ;; Wrap the time to after midnight if necessary
  5549. (if (< x min1) (setq x (+ x 1440)))
  5550. ;; Check if in interval
  5551. (and (<= min1 x) (>= min2 x) (throw 'exit t)))
  5552. ok-list)
  5553. ;; Nope, this gap is not OK
  5554. nil)))
  5555. (defun org-agenda-get-deadlines (&optional with-hour)
  5556. "Return the deadline information for agenda display.
  5557. When WITH-HOUR is non-nil, only return deadlines with an hour
  5558. specification like [h]h:mm."
  5559. (let* ((props (list 'mouse-face 'highlight
  5560. 'org-not-done-regexp org-not-done-regexp
  5561. 'org-todo-regexp org-todo-regexp
  5562. 'org-complex-heading-regexp org-complex-heading-regexp
  5563. 'help-echo
  5564. (format "mouse-2 or RET jump to org file %s"
  5565. (abbreviate-file-name buffer-file-name))))
  5566. (regexp (if with-hour
  5567. org-deadline-time-hour-regexp
  5568. org-deadline-time-regexp))
  5569. (todayp (org-agenda-todayp date)) ; DATE bound by calendar
  5570. (d1 (calendar-absolute-from-gregorian date)) ; DATE bound by calendar
  5571. (dl0 (car org-agenda-deadline-leaders))
  5572. (dl1 (nth 1 org-agenda-deadline-leaders))
  5573. (dl2 (or (nth 2 org-agenda-deadline-leaders) dl1))
  5574. d2 diff dfrac wdays pos pos1 category category-pos level
  5575. tags suppress-prewarning ee txt head face s todo-state
  5576. show-all upcomingp donep timestr warntime inherited-tags ts-date)
  5577. (goto-char (point-min))
  5578. (while (re-search-forward regexp nil t)
  5579. (catch :skip
  5580. (org-agenda-skip)
  5581. (setq s (match-string 1)
  5582. txt nil
  5583. pos (1- (match-beginning 1))
  5584. todo-state (save-match-data (org-get-todo-state))
  5585. show-all (or (eq org-agenda-repeating-timestamp-show-all t)
  5586. (member todo-state
  5587. org-agenda-repeating-timestamp-show-all))
  5588. d2 (org-time-string-to-absolute
  5589. s d1 'past show-all (current-buffer) pos)
  5590. diff (- d2 d1))
  5591. (setq suppress-prewarning
  5592. (let ((ds (and org-agenda-skip-deadline-prewarning-if-scheduled
  5593. (let ((item (buffer-substring (point-at-bol)
  5594. (point-at-eol))))
  5595. (save-match-data
  5596. (and (string-match
  5597. org-scheduled-time-regexp item)
  5598. (match-string 1 item)))))))
  5599. (cond
  5600. ((not ds) nil)
  5601. ;; The current item has a scheduled date (in ds), so
  5602. ;; evaluate its prewarning lead time.
  5603. ((integerp org-agenda-skip-deadline-prewarning-if-scheduled)
  5604. ;; Use global prewarning-restart lead time.
  5605. org-agenda-skip-deadline-prewarning-if-scheduled)
  5606. ((eq org-agenda-skip-deadline-prewarning-if-scheduled
  5607. 'pre-scheduled)
  5608. ;; Set prewarning to no earlier than scheduled.
  5609. (min (- d2 (org-time-string-to-absolute
  5610. ds d1 'past show-all (current-buffer) pos))
  5611. org-deadline-warning-days))
  5612. ;; Set prewarning to deadline.
  5613. (t 0))))
  5614. (setq wdays (if suppress-prewarning
  5615. (let ((org-deadline-warning-days suppress-prewarning))
  5616. (org-get-wdays s))
  5617. (org-get-wdays s))
  5618. dfrac (- 1 (/ (* 1.0 diff) (max wdays 1)))
  5619. upcomingp (and todayp (> diff 0)))
  5620. ;; When to show a deadline in the calendar:
  5621. ;; If the expiration is within wdays warning time.
  5622. ;; Past-due deadlines are only shown on the current date
  5623. (if (and (or (and (<= diff wdays)
  5624. (and todayp (not org-agenda-only-exact-dates)))
  5625. (= diff 0)))
  5626. (save-excursion
  5627. ;; (setq todo-state (org-get-todo-state))
  5628. (setq donep (member todo-state org-done-keywords))
  5629. (if (and donep
  5630. (or org-agenda-skip-deadline-if-done
  5631. (not (= diff 0))))
  5632. (setq txt nil)
  5633. (setq category (org-get-category)
  5634. warntime (get-text-property (point) 'org-appt-warntime)
  5635. category-pos (get-text-property (point) 'org-category-position))
  5636. (if (not (re-search-backward "^\\*+[ \t]+" nil t))
  5637. (throw :skip nil)
  5638. (goto-char (match-end 0))
  5639. (setq pos1 (match-beginning 0))
  5640. (setq level (make-string (org-reduced-level (org-outline-level)) ? ))
  5641. (setq inherited-tags
  5642. (or (eq org-agenda-show-inherited-tags 'always)
  5643. (and (listp org-agenda-show-inherited-tags)
  5644. (memq 'agenda org-agenda-show-inherited-tags))
  5645. (and (eq org-agenda-show-inherited-tags t)
  5646. (or (eq org-agenda-use-tag-inheritance t)
  5647. (memq 'agenda org-agenda-use-tag-inheritance))))
  5648. tags (org-get-tags-at pos1 (not inherited-tags)))
  5649. (setq head (buffer-substring
  5650. (point)
  5651. (progn (skip-chars-forward "^\r\n")
  5652. (point))))
  5653. (if (string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
  5654. (setq timestr
  5655. (concat (substring s (match-beginning 1)) " "))
  5656. (setq timestr 'time))
  5657. (setq txt (org-agenda-format-item
  5658. (cond ((= diff 0) dl0)
  5659. ((> diff 0)
  5660. (if (functionp dl1)
  5661. (funcall dl1 diff date)
  5662. (format dl1 diff)))
  5663. (t
  5664. (if (functionp dl2)
  5665. (funcall dl2 diff date)
  5666. (format dl2 (if (string= dl2 dl1)
  5667. diff (abs diff))))))
  5668. head level category tags
  5669. (if (not (= diff 0)) nil timestr)))))
  5670. (when txt
  5671. (setq face (org-agenda-deadline-face dfrac))
  5672. (org-add-props txt props
  5673. 'org-marker (org-agenda-new-marker pos)
  5674. 'warntime warntime
  5675. 'level level
  5676. 'ts-date d2
  5677. 'org-hd-marker (org-agenda-new-marker pos1)
  5678. 'priority (+ (- diff)
  5679. (org-get-priority txt))
  5680. 'org-category category
  5681. 'org-category-position category-pos
  5682. 'todo-state todo-state
  5683. 'type (if upcomingp "upcoming-deadline" "deadline")
  5684. 'date (if upcomingp date d2)
  5685. 'face (if donep 'org-agenda-done face)
  5686. 'undone-face face 'done-face 'org-agenda-done)
  5687. (push txt ee))))))
  5688. (nreverse ee)))
  5689. (defun org-agenda-deadline-face (fraction)
  5690. "Return the face to displaying a deadline item.
  5691. FRACTION is what fraction of the head-warning time has passed."
  5692. (let ((faces org-agenda-deadline-faces) f)
  5693. (catch 'exit
  5694. (while (setq f (pop faces))
  5695. (if (>= fraction (car f)) (throw 'exit (cdr f)))))))
  5696. (defun org-agenda-get-scheduled (&optional deadline-results with-hour)
  5697. "Return the scheduled information for agenda display.
  5698. When WITH-HOUR is non-nil, only return scheduled items with
  5699. an hour specification like [h]h:mm."
  5700. (let* ((props (list 'org-not-done-regexp org-not-done-regexp
  5701. 'org-todo-regexp org-todo-regexp
  5702. 'org-complex-heading-regexp org-complex-heading-regexp
  5703. 'done-face 'org-agenda-done
  5704. 'mouse-face 'highlight
  5705. 'help-echo
  5706. (format "mouse-2 or RET jump to org file %s"
  5707. (abbreviate-file-name buffer-file-name))))
  5708. (regexp (if with-hour
  5709. org-scheduled-time-hour-regexp
  5710. org-scheduled-time-regexp))
  5711. (todayp (org-agenda-todayp date)) ; DATE bound by calendar
  5712. (d1 (calendar-absolute-from-gregorian date)) ; DATE bound by calendar
  5713. mm
  5714. (deadline-position-alist
  5715. (mapcar (lambda (a) (and (setq mm (get-text-property
  5716. 0 'org-hd-marker a))
  5717. (cons (marker-position mm) a)))
  5718. deadline-results))
  5719. d2 diff pos pos1 category category-pos level tags donep
  5720. ee txt head pastschedp todo-state face timestr s habitp show-all
  5721. did-habit-check-p warntime inherited-tags ts-date suppress-delay
  5722. ddays)
  5723. (goto-char (point-min))
  5724. (while (re-search-forward regexp nil t)
  5725. (catch :skip
  5726. (org-agenda-skip)
  5727. (setq s (match-string 1)
  5728. txt nil
  5729. pos (1- (match-beginning 1))
  5730. todo-state (save-match-data (org-get-todo-state))
  5731. show-all (or (eq org-agenda-repeating-timestamp-show-all t)
  5732. (member todo-state
  5733. org-agenda-repeating-timestamp-show-all))
  5734. d2 (org-time-string-to-absolute
  5735. s d1 'past show-all (current-buffer) pos)
  5736. diff (- d2 d1)
  5737. warntime (get-text-property (point) 'org-appt-warntime))
  5738. (setq pastschedp (and todayp (< diff 0)))
  5739. (setq did-habit-check-p nil)
  5740. (setq suppress-delay
  5741. (let ((ds (and org-agenda-skip-scheduled-delay-if-deadline
  5742. (let ((item (buffer-substring (point-at-bol) (point-at-eol))))
  5743. (save-match-data
  5744. (and (string-match
  5745. org-deadline-time-regexp item)
  5746. (match-string 1 item)))))))
  5747. (cond
  5748. ((not ds) nil)
  5749. ;; The current item has a deadline date (in ds), so
  5750. ;; evaluate its delay time.
  5751. ((integerp org-agenda-skip-scheduled-delay-if-deadline)
  5752. ;; Use global delay time.
  5753. (- org-agenda-skip-scheduled-delay-if-deadline))
  5754. ((eq org-agenda-skip-scheduled-delay-if-deadline
  5755. 'post-deadline)
  5756. ;; Set delay to no later than deadline.
  5757. (min (- d2 (org-time-string-to-absolute
  5758. ds d1 'past show-all (current-buffer) pos))
  5759. org-scheduled-delay-days))
  5760. (t 0))))
  5761. (setq ddays (if suppress-delay
  5762. (let ((org-scheduled-delay-days suppress-delay))
  5763. (org-get-wdays s t t))
  5764. (org-get-wdays s t)))
  5765. ;; Use a delay of 0 when there is a repeater and the delay is
  5766. ;; of the form --3d
  5767. (when (and (save-match-data (string-match "--[0-9]+[hdwmy]" s))
  5768. (< (org-time-string-to-absolute s)
  5769. (org-time-string-to-absolute
  5770. s d2 'past nil (current-buffer) pos)))
  5771. (setq ddays 0))
  5772. ;; When to show a scheduled item in the calendar:
  5773. ;; If it is on or past the date.
  5774. (when (or (and (> ddays 0) (= diff (- ddays)))
  5775. (and (zerop ddays) (= diff 0))
  5776. (and (< (+ diff ddays) 0)
  5777. (< (abs diff) org-scheduled-past-days)
  5778. (and todayp (not org-agenda-only-exact-dates)))
  5779. ;; org-is-habit-p uses org-entry-get, which is expansive
  5780. ;; so we go extra mile to only call it once
  5781. (and todayp
  5782. (boundp 'org-habit-show-all-today)
  5783. org-habit-show-all-today
  5784. (setq did-habit-check-p t)
  5785. (setq habitp (and (functionp 'org-is-habit-p)
  5786. (org-is-habit-p)))))
  5787. (save-excursion
  5788. (setq donep (member todo-state org-done-keywords))
  5789. (if (and donep
  5790. (or org-agenda-skip-scheduled-if-done
  5791. (not (= diff 0))
  5792. (and (functionp 'org-is-habit-p)
  5793. (org-is-habit-p))))
  5794. (setq txt nil)
  5795. (setq habitp (if did-habit-check-p habitp
  5796. (and (functionp 'org-is-habit-p)
  5797. (org-is-habit-p))))
  5798. (setq category (org-get-category)
  5799. category-pos (get-text-property (point) 'org-category-position))
  5800. (if (and (eq org-agenda-skip-scheduled-if-deadline-is-shown
  5801. 'repeated-after-deadline)
  5802. (<= 0 (- d2 (time-to-days (org-get-deadline-time (point))))))
  5803. (throw :skip nil))
  5804. (if (not (re-search-backward "^\\*+[ \t]+" nil t))
  5805. (throw :skip nil)
  5806. (goto-char (match-end 0))
  5807. (setq pos1 (match-beginning 0))
  5808. (if habitp
  5809. (if (or (not org-habit-show-habits)
  5810. (and (not todayp)
  5811. (boundp 'org-habit-show-habits-only-for-today)
  5812. org-habit-show-habits-only-for-today))
  5813. (throw :skip nil))
  5814. (if (and
  5815. (or (eq t org-agenda-skip-scheduled-if-deadline-is-shown)
  5816. (and (eq org-agenda-skip-scheduled-if-deadline-is-shown 'not-today)
  5817. pastschedp))
  5818. (setq mm (assoc pos1 deadline-position-alist)))
  5819. (throw :skip nil)))
  5820. (setq inherited-tags
  5821. (or (eq org-agenda-show-inherited-tags 'always)
  5822. (and (listp org-agenda-show-inherited-tags)
  5823. (memq 'agenda org-agenda-show-inherited-tags))
  5824. (and (eq org-agenda-show-inherited-tags t)
  5825. (or (eq org-agenda-use-tag-inheritance t)
  5826. (memq 'agenda org-agenda-use-tag-inheritance))))
  5827. tags (org-get-tags-at nil (not inherited-tags)))
  5828. (setq level (make-string (org-reduced-level (org-outline-level)) ? ))
  5829. (setq head (buffer-substring
  5830. (point)
  5831. (progn (skip-chars-forward "^\r\n") (point))))
  5832. (if (string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
  5833. (setq timestr
  5834. (concat (substring s (match-beginning 1)) " "))
  5835. (setq timestr 'time))
  5836. (setq txt (org-agenda-format-item
  5837. (if (= diff 0)
  5838. (car org-agenda-scheduled-leaders)
  5839. (format (nth 1 org-agenda-scheduled-leaders)
  5840. (- 1 diff)))
  5841. head level category tags
  5842. (if (not (= diff 0)) nil timestr)
  5843. nil habitp))))
  5844. (when txt
  5845. (setq face
  5846. (cond
  5847. ((and (not habitp) pastschedp)
  5848. 'org-scheduled-previously)
  5849. (todayp 'org-scheduled-today)
  5850. (t 'org-scheduled))
  5851. habitp (and habitp (org-habit-parse-todo)))
  5852. (org-add-props txt props
  5853. 'undone-face face
  5854. 'face (if donep 'org-agenda-done face)
  5855. 'org-marker (org-agenda-new-marker pos)
  5856. 'org-hd-marker (org-agenda-new-marker pos1)
  5857. 'type (if pastschedp "past-scheduled" "scheduled")
  5858. 'date (if pastschedp d2 date)
  5859. 'ts-date d2
  5860. 'warntime warntime
  5861. 'level level
  5862. 'priority (if habitp
  5863. (org-habit-get-priority habitp)
  5864. (+ 94 (- 5 diff) (org-get-priority txt)))
  5865. 'org-category category
  5866. 'category-position category-pos
  5867. 'org-habit-p habitp
  5868. 'todo-state todo-state)
  5869. (push txt ee))))))
  5870. (nreverse ee)))
  5871. (defun org-agenda-get-blocks ()
  5872. "Return the date-range information for agenda display."
  5873. (let* ((props (list 'face nil
  5874. 'org-not-done-regexp org-not-done-regexp
  5875. 'org-todo-regexp org-todo-regexp
  5876. 'org-complex-heading-regexp org-complex-heading-regexp
  5877. 'mouse-face 'highlight
  5878. 'help-echo
  5879. (format "mouse-2 or RET jump to org file %s"
  5880. (abbreviate-file-name buffer-file-name))))
  5881. (regexp org-tr-regexp)
  5882. (d0 (calendar-absolute-from-gregorian date))
  5883. marker hdmarker ee txt d1 d2 s1 s2 category category-pos
  5884. level todo-state tags pos head donep inherited-tags)
  5885. (goto-char (point-min))
  5886. (while (re-search-forward regexp nil t)
  5887. (catch :skip
  5888. (org-agenda-skip)
  5889. (setq pos (point))
  5890. (let ((start-time (match-string 1))
  5891. (end-time (match-string 2)))
  5892. (setq s1 (match-string 1)
  5893. s2 (match-string 2)
  5894. d1 (time-to-days (org-time-string-to-time s1 (current-buffer) pos))
  5895. d2 (time-to-days (org-time-string-to-time s2 (current-buffer) pos)))
  5896. (if (and (> (- d0 d1) -1) (> (- d2 d0) -1))
  5897. ;; Only allow days between the limits, because the normal
  5898. ;; date stamps will catch the limits.
  5899. (save-excursion
  5900. (setq todo-state (org-get-todo-state))
  5901. (setq donep (member todo-state org-done-keywords))
  5902. (if (and donep org-agenda-skip-timestamp-if-done)
  5903. (throw :skip t))
  5904. (setq marker (org-agenda-new-marker (point)))
  5905. (setq category (org-get-category)
  5906. category-pos (get-text-property (point) 'org-category-position))
  5907. (if (not (re-search-backward org-outline-regexp-bol nil t))
  5908. (throw :skip nil)
  5909. (goto-char (match-beginning 0))
  5910. (setq hdmarker (org-agenda-new-marker (point))
  5911. inherited-tags
  5912. (or (eq org-agenda-show-inherited-tags 'always)
  5913. (and (listp org-agenda-show-inherited-tags)
  5914. (memq 'agenda org-agenda-show-inherited-tags))
  5915. (and (eq org-agenda-show-inherited-tags t)
  5916. (or (eq org-agenda-use-tag-inheritance t)
  5917. (memq 'agenda org-agenda-use-tag-inheritance))))
  5918. tags (org-get-tags-at nil (not inherited-tags)))
  5919. (setq level (make-string (org-reduced-level (org-outline-level)) ? ))
  5920. (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
  5921. (setq head (match-string 1))
  5922. (let ((remove-re
  5923. (if org-agenda-remove-timeranges-from-blocks
  5924. (concat
  5925. "<" (regexp-quote s1) ".*?>"
  5926. "--"
  5927. "<" (regexp-quote s2) ".*?>")
  5928. nil)))
  5929. (setq txt (org-agenda-format-item
  5930. (format
  5931. (nth (if (= d1 d2) 0 1)
  5932. org-agenda-timerange-leaders)
  5933. (1+ (- d0 d1)) (1+ (- d2 d1)))
  5934. head level category tags
  5935. (cond ((and (= d1 d0) (= d2 d0))
  5936. (concat "<" start-time ">--<" end-time ">"))
  5937. ((= d1 d0)
  5938. (concat "<" start-time ">"))
  5939. ((= d2 d0)
  5940. (concat "<" end-time ">")))
  5941. remove-re))))
  5942. (org-add-props txt props
  5943. 'org-marker marker 'org-hd-marker hdmarker
  5944. 'type "block" 'date date
  5945. 'level level
  5946. 'todo-state todo-state
  5947. 'priority (org-get-priority txt) 'org-category category
  5948. 'org-category-position category-pos)
  5949. (push txt ee))))
  5950. (goto-char pos)))
  5951. ;; Sort the entries by expiration date.
  5952. (nreverse ee)))
  5953. ;;; Agenda presentation and sorting
  5954. (defvar org-prefix-has-time nil
  5955. "A flag, set by `org-compile-prefix-format'.
  5956. The flag is set if the currently compiled format contains a `%t'.")
  5957. (defvar org-prefix-has-tag nil
  5958. "A flag, set by `org-compile-prefix-format'.
  5959. The flag is set if the currently compiled format contains a `%T'.")
  5960. (defvar org-prefix-has-effort nil
  5961. "A flag, set by `org-compile-prefix-format'.
  5962. The flag is set if the currently compiled format contains a `%e'.")
  5963. (defvar org-prefix-has-breadcrumbs nil
  5964. "A flag, set by `org-compile-prefix-format'.
  5965. The flag is set if the currently compiled format contains a `%b'.")
  5966. (defvar org-prefix-category-length nil
  5967. "Used by `org-compile-prefix-format' to remember the category field width.")
  5968. (defvar org-prefix-category-max-length nil
  5969. "Used by `org-compile-prefix-format' to remember the category field width.")
  5970. (defun org-agenda-get-category-icon (category)
  5971. "Return an image for CATEGORY according to `org-agenda-category-icon-alist'."
  5972. (dolist (entry org-agenda-category-icon-alist)
  5973. (when (org-string-match-p (car entry) category)
  5974. (if (listp (cadr entry))
  5975. (return (cadr entry))
  5976. (return (apply 'create-image (cdr entry)))))))
  5977. (defun org-agenda-format-item (extra txt &optional level category tags dotime
  5978. remove-re habitp)
  5979. "Format TXT to be inserted into the agenda buffer.
  5980. In particular, add the prefix and corresponding text properties.
  5981. EXTRA must be a string to replace the `%s' specifier in the prefix format.
  5982. LEVEL may be a string to replace the `%l' specifier.
  5983. CATEGORY (a string, a symbol or nil) may be used to overrule the default
  5984. category taken from local variable or file name. It will replace the `%c'
  5985. specifier in the format.
  5986. DOTIME, when non-nil, indicates that a time-of-day should be extracted from
  5987. TXT for sorting of this entry, and for the `%t' specifier in the format.
  5988. When DOTIME is a string, this string is searched for a time before TXT is.
  5989. TAGS can be the tags of the headline.
  5990. Any match of REMOVE-RE will be removed from TXT."
  5991. ;; We keep the org-prefix-* variable values along with a compiled
  5992. ;; formatter, so that multiple agendas existing at the same time do
  5993. ;; not step on each other toes.
  5994. ;;
  5995. ;; It was inconvenient to make these variables buffer local in
  5996. ;; Agenda buffers, because this function expects to be called with
  5997. ;; the buffer where item comes from being current, and not agenda
  5998. ;; buffer
  5999. (let* ((bindings (car org-prefix-format-compiled))
  6000. (formatter (cadr org-prefix-format-compiled)))
  6001. (loop for (var value) in bindings
  6002. do (set var value))
  6003. (save-match-data
  6004. ;; Diary entries sometimes have extra whitespace at the beginning
  6005. (setq txt (org-trim txt))
  6006. ;; Fix the tags part in txt
  6007. (setq txt (org-agenda-fix-displayed-tags
  6008. txt tags
  6009. org-agenda-show-inherited-tags
  6010. org-agenda-hide-tags-regexp))
  6011. (let* ((category (or category
  6012. (if (stringp org-category)
  6013. org-category
  6014. (and org-category (symbol-name org-category)))
  6015. (if buffer-file-name
  6016. (file-name-sans-extension
  6017. (file-name-nondirectory buffer-file-name))
  6018. "")))
  6019. (category-icon (org-agenda-get-category-icon category))
  6020. (category-icon (if category-icon
  6021. (propertize " " 'display category-icon)
  6022. ""))
  6023. ;; time, tag, effort are needed for the eval of the prefix format
  6024. (tag (if tags (nth (1- (length tags)) tags) ""))
  6025. time effort neffort
  6026. (ts (if dotime (concat
  6027. (if (stringp dotime) dotime "")
  6028. (and org-agenda-search-headline-for-time txt))))
  6029. (time-of-day (and dotime (org-get-time-of-day ts)))
  6030. stamp plain s0 s1 s2 rtn srp l
  6031. duration thecategory breadcrumbs)
  6032. (and (derived-mode-p 'org-mode) buffer-file-name
  6033. (add-to-list 'org-agenda-contributing-files buffer-file-name))
  6034. (when (and dotime time-of-day)
  6035. ;; Extract starting and ending time and move them to prefix
  6036. (when (or (setq stamp (string-match org-stamp-time-of-day-regexp ts))
  6037. (setq plain (string-match org-plain-time-of-day-regexp ts)))
  6038. (setq s0 (match-string 0 ts)
  6039. srp (and stamp (match-end 3))
  6040. s1 (match-string (if plain 1 2) ts)
  6041. s2 (match-string (if plain 8 (if srp 4 6)) ts))
  6042. ;; If the times are in TXT (not in DOTIMES), and the prefix will list
  6043. ;; them, we might want to remove them there to avoid duplication.
  6044. ;; The user can turn this off with a variable.
  6045. (if (and org-prefix-has-time
  6046. org-agenda-remove-times-when-in-prefix (or stamp plain)
  6047. (string-match (concat (regexp-quote s0) " *") txt)
  6048. (not (equal ?\] (string-to-char (substring txt (match-end 0)))))
  6049. (if (eq org-agenda-remove-times-when-in-prefix 'beg)
  6050. (= (match-beginning 0) 0)
  6051. t))
  6052. (setq txt (replace-match "" nil nil txt))))
  6053. ;; Normalize the time(s) to 24 hour
  6054. (if s1 (setq s1 (org-get-time-of-day s1 'string t)))
  6055. (if s2 (setq s2 (org-get-time-of-day s2 'string t)))
  6056. ;; Try to set s2 if s1 and `org-agenda-default-appointment-duration' are set
  6057. (let (org-time-clocksum-use-effort-durations)
  6058. (when (and s1 (not s2) org-agenda-default-appointment-duration)
  6059. (setq s2
  6060. (org-minutes-to-clocksum-string
  6061. (+ (org-hh:mm-string-to-minutes s1)
  6062. org-agenda-default-appointment-duration)))))
  6063. ;; Compute the duration
  6064. (when s2
  6065. (setq duration (- (org-hh:mm-string-to-minutes s2)
  6066. (org-hh:mm-string-to-minutes s1)))))
  6067. (when (string-match (org-re "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$")
  6068. txt)
  6069. ;; Tags are in the string
  6070. (if (or (eq org-agenda-remove-tags t)
  6071. (and org-agenda-remove-tags
  6072. org-prefix-has-tag))
  6073. (setq txt (replace-match "" t t txt))
  6074. (setq txt (replace-match
  6075. (concat (make-string (max (- 50 (length txt)) 1) ?\ )
  6076. (match-string 2 txt))
  6077. t t txt))))
  6078. (when (derived-mode-p 'org-mode)
  6079. (setq effort (ignore-errors (get-text-property 0 'org-effort txt))))
  6080. ;; org-agenda-add-time-grid-maybe calls us with *Agenda* as
  6081. ;; current buffer, so move this check outside of above
  6082. (if effort
  6083. (setq neffort (org-duration-string-to-minutes effort)
  6084. effort (setq effort (concat "[" effort "]")))
  6085. ;; prevent erroring out with %e format when there is no effort
  6086. (setq effort ""))
  6087. (when remove-re
  6088. (while (string-match remove-re txt)
  6089. (setq txt (replace-match "" t t txt))))
  6090. ;; Set org-heading property on `txt' to mark the start of the
  6091. ;; heading.
  6092. (add-text-properties 0 (length txt) '(org-heading t) txt)
  6093. ;; Prepare the variables needed in the eval of the compiled format
  6094. (if org-prefix-has-breadcrumbs
  6095. (setq breadcrumbs (org-with-point-at (org-get-at-bol 'org-marker)
  6096. (let ((s (org-display-outline-path nil nil "->" t)))
  6097. (if (eq "" s) "" (concat s "->"))))))
  6098. (setq time (cond (s2 (concat
  6099. (org-agenda-time-of-day-to-ampm-maybe s1)
  6100. "-" (org-agenda-time-of-day-to-ampm-maybe s2)
  6101. (if org-agenda-timegrid-use-ampm " ")))
  6102. (s1 (concat
  6103. (org-agenda-time-of-day-to-ampm-maybe s1)
  6104. (if org-agenda-timegrid-use-ampm
  6105. "........ "
  6106. "......")))
  6107. (t ""))
  6108. extra (or (and (not habitp) extra) "")
  6109. category (if (symbolp category) (symbol-name category) category)
  6110. thecategory (copy-sequence category)
  6111. level (or level ""))
  6112. (if (string-match org-bracket-link-regexp category)
  6113. (progn
  6114. (setq l (if (match-end 3)
  6115. (- (match-end 3) (match-beginning 3))
  6116. (- (match-end 1) (match-beginning 1))))
  6117. (when (< l (or org-prefix-category-length 0))
  6118. (setq category (copy-sequence category))
  6119. (org-add-props category nil
  6120. 'extra-space (make-string
  6121. (- org-prefix-category-length l 1) ?\ ))))
  6122. (if (and org-prefix-category-max-length
  6123. (>= (length category) org-prefix-category-max-length))
  6124. (setq category (substring category 0 (1- org-prefix-category-max-length)))))
  6125. ;; Evaluate the compiled format
  6126. (setq rtn (concat (eval formatter) txt))
  6127. ;; And finally add the text properties
  6128. (remove-text-properties 0 (length rtn) '(line-prefix t wrap-prefix t) rtn)
  6129. (org-add-props rtn nil
  6130. 'org-category (if thecategory (downcase thecategory) category)
  6131. 'tags (mapcar 'org-downcase-keep-props tags)
  6132. 'org-highest-priority org-highest-priority
  6133. 'org-lowest-priority org-lowest-priority
  6134. 'time-of-day time-of-day
  6135. 'duration duration
  6136. 'effort effort
  6137. 'effort-minutes neffort
  6138. 'breadcrumbs breadcrumbs
  6139. 'txt txt
  6140. 'level level
  6141. 'time time
  6142. 'extra extra
  6143. 'format org-prefix-format-compiled
  6144. 'dotime dotime)))))
  6145. (defun org-agenda-fix-displayed-tags (txt tags add-inherited hide-re)
  6146. "Remove tags string from TXT, and add a modified list of tags.
  6147. The modified list may contain inherited tags, and tags matched by
  6148. `org-agenda-hide-tags-regexp' will be removed."
  6149. (when (or add-inherited hide-re)
  6150. (if (string-match (org-re "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$") txt)
  6151. (setq txt (substring txt 0 (match-beginning 0))))
  6152. (setq tags
  6153. (delq nil
  6154. (mapcar (lambda (tg)
  6155. (if (or (and hide-re (string-match hide-re tg))
  6156. (and (not add-inherited)
  6157. (get-text-property 0 'inherited tg)))
  6158. nil
  6159. tg))
  6160. tags)))
  6161. (when tags
  6162. (let ((have-i (get-text-property 0 'inherited (car tags)))
  6163. i)
  6164. (setq txt (concat txt " :"
  6165. (mapconcat
  6166. (lambda (x)
  6167. (setq i (get-text-property 0 'inherited x))
  6168. (if (and have-i (not i))
  6169. (progn
  6170. (setq have-i nil)
  6171. (concat ":" x))
  6172. x))
  6173. tags ":")
  6174. (if have-i "::" ":"))))))
  6175. txt)
  6176. (defun org-downcase-keep-props (s)
  6177. (let ((props (text-properties-at 0 s)))
  6178. (setq s (downcase s))
  6179. (add-text-properties 0 (length s) props s)
  6180. s))
  6181. (defvar org-agenda-sorting-strategy) ;; because the def is in a let form
  6182. (defun org-agenda-add-time-grid-maybe (list ndays todayp)
  6183. "Add a time-grid for agenda items which need it.
  6184. LIST is the list of agenda items formatted by `org-agenda-list'.
  6185. NDAYS is the span of the current agenda view.
  6186. TODAYP is `t' when the current agenda view is on today."
  6187. (catch 'exit
  6188. (cond ((not org-agenda-use-time-grid) (throw 'exit list))
  6189. ((and todayp (member 'today (car org-agenda-time-grid))))
  6190. ((and (= ndays 1) (member 'daily (car org-agenda-time-grid))))
  6191. ((member 'weekly (car org-agenda-time-grid)))
  6192. (t (throw 'exit list)))
  6193. (let* ((have (delq nil (mapcar
  6194. (lambda (x) (get-text-property 1 'time-of-day x))
  6195. list)))
  6196. (string (nth 1 org-agenda-time-grid))
  6197. (gridtimes (nth 2 org-agenda-time-grid))
  6198. (req (car org-agenda-time-grid))
  6199. (remove (member 'remove-match req))
  6200. new time)
  6201. (if (and (member 'require-timed req) (not have))
  6202. ;; don't show empty grid
  6203. (throw 'exit list))
  6204. (while (setq time (pop gridtimes))
  6205. (unless (and remove (member time have))
  6206. (setq time (replace-regexp-in-string " " "0" (format "%04s" time)))
  6207. (push (org-agenda-format-item
  6208. nil string nil "" nil
  6209. (concat (substring time 0 -2) ":" (substring time -2)))
  6210. new)
  6211. (put-text-property
  6212. 2 (length (car new)) 'face 'org-time-grid (car new))))
  6213. (when (and todayp org-agenda-show-current-time-in-grid)
  6214. (push (org-agenda-format-item
  6215. nil org-agenda-current-time-string nil "" nil
  6216. (format-time-string "%H:%M "))
  6217. new)
  6218. (put-text-property
  6219. 2 (length (car new)) 'face 'org-agenda-current-time (car new)))
  6220. (if (member 'time-up org-agenda-sorting-strategy-selected)
  6221. (append new list)
  6222. (append list new)))))
  6223. (defun org-compile-prefix-format (key)
  6224. "Compile the prefix format into a Lisp form that can be evaluated.
  6225. The resulting form and associated variable bindings is returned
  6226. and stored in the variable `org-prefix-format-compiled'."
  6227. (setq org-prefix-has-time nil
  6228. org-prefix-has-tag nil
  6229. org-prefix-category-length nil
  6230. org-prefix-has-effort nil
  6231. org-prefix-has-breadcrumbs nil)
  6232. (let ((s (cond
  6233. ((stringp org-agenda-prefix-format)
  6234. org-agenda-prefix-format)
  6235. ((assq key org-agenda-prefix-format)
  6236. (cdr (assq key org-agenda-prefix-format)))
  6237. (t " %-12:c%?-12t% s")))
  6238. (start 0)
  6239. varform vars var e c f opt)
  6240. (while (string-match "%\\(\\?\\)?\\([-+]?[0-9.]*\\)\\([ .;,:!?=|/<>]?\\)\\([cltseib]\\|(.+)\\)"
  6241. s start)
  6242. (setq var (or (cdr (assoc (match-string 4 s)
  6243. '(("c" . category) ("t" . time) ("l" . level) ("s" . extra)
  6244. ("i" . category-icon) ("T" . tag) ("e" . effort) ("b" . breadcrumbs))))
  6245. 'eval)
  6246. c (or (match-string 3 s) "")
  6247. opt (match-beginning 1)
  6248. start (1+ (match-beginning 0)))
  6249. (if (equal var 'time) (setq org-prefix-has-time t))
  6250. (if (equal var 'tag) (setq org-prefix-has-tag t))
  6251. (if (equal var 'effort) (setq org-prefix-has-effort t))
  6252. (if (equal var 'breadcrumbs) (setq org-prefix-has-breadcrumbs t))
  6253. (setq f (concat "%" (match-string 2 s) "s"))
  6254. (when (equal var 'category)
  6255. (setq org-prefix-category-length
  6256. (floor (abs (string-to-number (match-string 2 s)))))
  6257. (setq org-prefix-category-max-length
  6258. (let ((x (match-string 2 s)))
  6259. (save-match-data
  6260. (if (string-match "\\.[0-9]+" x)
  6261. (string-to-number (substring (match-string 0 x) 1)))))))
  6262. (if (eq var 'eval)
  6263. (setq varform `(format ,f (org-eval ,(read (match-string 4 s)))))
  6264. (if opt
  6265. (setq varform
  6266. `(if (equal "" ,var)
  6267. ""
  6268. (format ,f (if (equal "" ,var) "" (concat ,var ,c)))))
  6269. (setq varform `(format ,f (if (equal ,var "") "" (concat ,var ,c (get-text-property 0 'extra-space ,var)))))))
  6270. (setq s (replace-match "%s" t nil s))
  6271. (push varform vars))
  6272. (setq vars (nreverse vars))
  6273. (with-current-buffer (or org-agenda-buffer (current-buffer))
  6274. (setq org-prefix-format-compiled
  6275. (list
  6276. `((org-prefix-has-time ,org-prefix-has-time)
  6277. (org-prefix-has-tag ,org-prefix-has-tag)
  6278. (org-prefix-category-length ,org-prefix-category-length)
  6279. (org-prefix-has-effort ,org-prefix-has-effort)
  6280. (org-prefix-has-breadcrumbs ,org-prefix-has-breadcrumbs))
  6281. `(format ,s ,@vars))))))
  6282. (defun org-set-sorting-strategy (key)
  6283. (if (symbolp (car org-agenda-sorting-strategy))
  6284. ;; the old format
  6285. (setq org-agenda-sorting-strategy-selected org-agenda-sorting-strategy)
  6286. (setq org-agenda-sorting-strategy-selected
  6287. (or (cdr (assq key org-agenda-sorting-strategy))
  6288. (cdr (assq 'agenda org-agenda-sorting-strategy))
  6289. '(time-up category-keep priority-down)))))
  6290. (defun org-get-time-of-day (s &optional string mod24)
  6291. "Check string S for a time of day.
  6292. If found, return it as a military time number between 0 and 2400.
  6293. If not found, return nil.
  6294. The optional STRING argument forces conversion into a 5 character wide string
  6295. HH:MM."
  6296. (save-match-data
  6297. (when
  6298. (or (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)\\([AaPp][Mm]\\)?\\> *" s)
  6299. (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?\\([AaPp][Mm]\\)\\> *" s))
  6300. (let* ((h (string-to-number (match-string 1 s)))
  6301. (m (if (match-end 3) (string-to-number (match-string 3 s)) 0))
  6302. (ampm (if (match-end 4) (downcase (match-string 4 s))))
  6303. (am-p (equal ampm "am"))
  6304. (h1 (cond ((not ampm) h)
  6305. ((= h 12) (if am-p 0 12))
  6306. (t (+ h (if am-p 0 12)))))
  6307. (h2 (if (and string mod24 (not (and (= m 0) (= h1 24))))
  6308. (mod h1 24) h1))
  6309. (t0 (+ (* 100 h2) m))
  6310. (t1 (concat (if (>= h1 24) "+" " ")
  6311. (if (and org-agenda-time-leading-zero
  6312. (< t0 1000)) "0" "")
  6313. (if (< t0 100) "0" "")
  6314. (if (< t0 10) "0" "")
  6315. (int-to-string t0))))
  6316. (if string (concat (substring t1 -4 -2) ":" (substring t1 -2)) t0)))))
  6317. (defvar org-agenda-before-sorting-filter-function nil
  6318. "Function to be applied to agenda items prior to sorting.
  6319. Prior to sorting also means just before they are inserted into the agenda.
  6320. To aid sorting, you may revisit the original entries and add more text
  6321. properties which will later be used by the sorting functions.
  6322. The function should take a string argument, an agenda line.
  6323. It has access to the text properties in that line, which contain among
  6324. other things, the property `org-hd-marker' that points to the entry
  6325. where the line comes from. Note that not all lines going into the agenda
  6326. have this property, only most.
  6327. The function should return the modified string. It is probably best
  6328. to ONLY change text properties.
  6329. You can also use this function as a filter, by returning nil for lines
  6330. you don't want to have in the agenda at all. For this application, you
  6331. could bind the variable in the options section of a custom command.")
  6332. (defun org-agenda-finalize-entries (list &optional type)
  6333. "Sort, limit and concatenate the LIST of agenda items.
  6334. The optional argument TYPE tells the agenda type."
  6335. (let ((max-effort (cond ((listp org-agenda-max-effort)
  6336. (cdr (assoc type org-agenda-max-effort)))
  6337. (t org-agenda-max-effort)))
  6338. (max-todo (cond ((listp org-agenda-max-todos)
  6339. (cdr (assoc type org-agenda-max-todos)))
  6340. (t org-agenda-max-todos)))
  6341. (max-tags (cond ((listp org-agenda-max-tags)
  6342. (cdr (assoc type org-agenda-max-tags)))
  6343. (t org-agenda-max-tags)))
  6344. (max-entries (cond ((listp org-agenda-max-entries)
  6345. (cdr (assoc type org-agenda-max-entries)))
  6346. (t org-agenda-max-entries))) l)
  6347. (when org-agenda-before-sorting-filter-function
  6348. (setq list
  6349. (delq nil
  6350. (mapcar
  6351. org-agenda-before-sorting-filter-function list))))
  6352. (setq list (mapcar 'org-agenda-highlight-todo list)
  6353. list (mapcar 'identity (sort list 'org-entries-lessp)))
  6354. (when max-effort
  6355. (setq list (org-agenda-limit-entries
  6356. list 'effort-minutes max-effort 'identity)))
  6357. (when max-todo
  6358. (setq list (org-agenda-limit-entries list 'todo-state max-todo)))
  6359. (when max-tags
  6360. (setq list (org-agenda-limit-entries list 'tags max-tags)))
  6361. (when max-entries
  6362. (setq list (org-agenda-limit-entries list 'org-hd-marker max-entries)))
  6363. (mapconcat 'identity list "\n")))
  6364. (defun org-agenda-limit-entries (list prop limit &optional fn)
  6365. "Limit the number of agenda entries."
  6366. (let ((include (and limit (< limit 0))))
  6367. (if limit
  6368. (let ((fun (or fn (lambda (p) (if p 1))))
  6369. (lim 0))
  6370. (delq nil
  6371. (mapcar
  6372. (lambda (e)
  6373. (let ((pval (funcall fun (get-text-property 1 prop e))))
  6374. (if pval (setq lim (+ lim pval)))
  6375. (cond ((and pval (<= lim (abs limit))) e)
  6376. ((and include (not pval)) e))))
  6377. list)))
  6378. list)))
  6379. (defun org-agenda-limit-interactively ()
  6380. "In agenda, interactively limit entries to various maximums."
  6381. (interactive)
  6382. (let* ((max (read-char "Number of [e]ntries [t]odos [T]ags [E]ffort? "))
  6383. (num (string-to-number (read-from-minibuffer "How many? "))))
  6384. (cond ((equal max ?e)
  6385. (let ((org-agenda-max-entries num)) (org-agenda-redo)))
  6386. ((equal max ?t)
  6387. (let ((org-agenda-max-todos num)) (org-agenda-redo)))
  6388. ((equal max ?T)
  6389. (let ((org-agenda-max-tags num)) (org-agenda-redo)))
  6390. ((equal max ?E)
  6391. (let ((org-agenda-max-effort num)) (org-agenda-redo)))))
  6392. (org-agenda-fit-window-to-buffer))
  6393. (defun org-agenda-highlight-todo (x)
  6394. (let ((org-done-keywords org-done-keywords-for-agenda)
  6395. (case-fold-search nil)
  6396. re)
  6397. (if (eq x 'line)
  6398. (save-excursion
  6399. (beginning-of-line 1)
  6400. (setq re (org-get-at-bol 'org-todo-regexp))
  6401. (goto-char (or (text-property-any (point-at-bol) (point-at-eol) 'org-heading t) (point)))
  6402. (when (looking-at (concat "[ \t]*\\.*\\(" re "\\) +"))
  6403. (add-text-properties (match-beginning 0) (match-end 1)
  6404. (list 'face (org-get-todo-face 1)))
  6405. (let ((s (buffer-substring (match-beginning 1) (match-end 1))))
  6406. (delete-region (match-beginning 1) (1- (match-end 0)))
  6407. (goto-char (match-beginning 1))
  6408. (insert (format org-agenda-todo-keyword-format s)))))
  6409. (let ((pl (text-property-any 0 (length x) 'org-heading t x)))
  6410. (setq re (get-text-property 0 'org-todo-regexp x))
  6411. (when (and re
  6412. ;; Test `pl' because if there's no heading content,
  6413. ;; there's no point matching to highlight. Note
  6414. ;; that if we didn't test `pl' first, and there
  6415. ;; happened to be no keyword from `org-todo-regexp'
  6416. ;; on this heading line, then the `equal' comparison
  6417. ;; afterwards would spuriously succeed in the case
  6418. ;; where `pl' is nil -- causing an args-out-of-range
  6419. ;; error when we try to add text properties to text
  6420. ;; that isn't there.
  6421. pl
  6422. (equal (string-match (concat "\\(\\.*\\)" re "\\( +\\)")
  6423. x pl) pl))
  6424. (add-text-properties
  6425. (or (match-end 1) (match-end 0)) (match-end 0)
  6426. (list 'face (org-get-todo-face (match-string 2 x)))
  6427. x)
  6428. (when (match-end 1)
  6429. (setq x (concat (substring x 0 (match-end 1))
  6430. (format org-agenda-todo-keyword-format
  6431. (match-string 2 x))
  6432. (org-add-props " " (text-properties-at 0 x))
  6433. (substring x (match-end 3)))))))
  6434. x)))
  6435. (defsubst org-cmp-priority (a b)
  6436. "Compare the priorities of string A and B."
  6437. (let ((pa (or (get-text-property 1 'priority a) 0))
  6438. (pb (or (get-text-property 1 'priority b) 0)))
  6439. (cond ((> pa pb) +1)
  6440. ((< pa pb) -1))))
  6441. (defsubst org-cmp-effort (a b)
  6442. "Compare the effort values of string A and B."
  6443. (let* ((def (if org-sort-agenda-noeffort-is-high 32767 -1))
  6444. (ea (or (get-text-property 1 'effort-minutes a) def))
  6445. (eb (or (get-text-property 1 'effort-minutes b) def)))
  6446. (cond ((> ea eb) +1)
  6447. ((< ea eb) -1))))
  6448. (defsubst org-cmp-category (a b)
  6449. "Compare the string values of categories of strings A and B."
  6450. (let ((ca (or (get-text-property 1 'org-category a) ""))
  6451. (cb (or (get-text-property 1 'org-category b) "")))
  6452. (cond ((string-lessp ca cb) -1)
  6453. ((string-lessp cb ca) +1))))
  6454. (defsubst org-cmp-todo-state (a b)
  6455. "Compare the todo states of strings A and B."
  6456. (let* ((ma (or (get-text-property 1 'org-marker a)
  6457. (get-text-property 1 'org-hd-marker a)))
  6458. (mb (or (get-text-property 1 'org-marker b)
  6459. (get-text-property 1 'org-hd-marker b)))
  6460. (fa (and ma (marker-buffer ma)))
  6461. (fb (and mb (marker-buffer mb)))
  6462. (todo-kwds
  6463. (or (and fa (with-current-buffer fa org-todo-keywords-1))
  6464. (and fb (with-current-buffer fb org-todo-keywords-1))))
  6465. (ta (or (get-text-property 1 'todo-state a) ""))
  6466. (tb (or (get-text-property 1 'todo-state b) ""))
  6467. (la (- (length (member ta todo-kwds))))
  6468. (lb (- (length (member tb todo-kwds))))
  6469. (donepa (member ta org-done-keywords-for-agenda))
  6470. (donepb (member tb org-done-keywords-for-agenda)))
  6471. (cond ((and donepa (not donepb)) -1)
  6472. ((and (not donepa) donepb) +1)
  6473. ((< la lb) -1)
  6474. ((< lb la) +1))))
  6475. (defsubst org-cmp-alpha (a b)
  6476. "Compare the headlines, alphabetically."
  6477. (let* ((pla (text-property-any 0 (length a) 'org-heading t a))
  6478. (plb (text-property-any 0 (length b) 'org-heading t b))
  6479. (ta (and pla (substring a pla)))
  6480. (tb (and plb (substring b plb))))
  6481. (when pla
  6482. (if (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp a) "")
  6483. "\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *") ta)
  6484. (setq ta (substring ta (match-end 0))))
  6485. (setq ta (downcase ta)))
  6486. (when plb
  6487. (if (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp b) "")
  6488. "\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *") tb)
  6489. (setq tb (substring tb (match-end 0))))
  6490. (setq tb (downcase tb)))
  6491. (cond ((not ta) +1)
  6492. ((not tb) -1)
  6493. ((string-lessp ta tb) -1)
  6494. ((string-lessp tb ta) +1))))
  6495. (defsubst org-cmp-tag (a b)
  6496. "Compare the string values of the first tags of A and B."
  6497. (let ((ta (car (last (get-text-property 1 'tags a))))
  6498. (tb (car (last (get-text-property 1 'tags b)))))
  6499. (cond ((not ta) +1)
  6500. ((not tb) -1)
  6501. ((string-lessp ta tb) -1)
  6502. ((string-lessp tb ta) +1))))
  6503. (defsubst org-cmp-time (a b)
  6504. "Compare the time-of-day values of strings A and B."
  6505. (let* ((def (if org-sort-agenda-notime-is-late 9901 -1))
  6506. (ta (or (get-text-property 1 'time-of-day a) def))
  6507. (tb (or (get-text-property 1 'time-of-day b) def)))
  6508. (cond ((< ta tb) -1)
  6509. ((< tb ta) +1))))
  6510. (defsubst org-cmp-ts (a b &optional type)
  6511. "Compare the timestamps values of entries A and B.
  6512. When TYPE is \"scheduled\", \"deadline\", \"timestamp\" or
  6513. \"timestamp_ia\", compare within each of these type. When TYPE
  6514. is the empty string, compare all timestamps without respect of
  6515. their type."
  6516. (let* ((def (if org-sort-agenda-notime-is-late most-positive-fixnum -1))
  6517. (ta (or (and (string-match type (or (get-text-property 1 'type a) ""))
  6518. (get-text-property 1 'ts-date a)) def))
  6519. (tb (or (and (string-match type (or (get-text-property 1 'type b) ""))
  6520. (get-text-property 1 'ts-date b)) def)))
  6521. (cond ((< ta tb) -1)
  6522. ((< tb ta) +1))))
  6523. (defsubst org-cmp-habit-p (a b)
  6524. "Compare the todo states of strings A and B."
  6525. (let ((ha (get-text-property 1 'org-habit-p a))
  6526. (hb (get-text-property 1 'org-habit-p b)))
  6527. (cond ((and ha (not hb)) -1)
  6528. ((and (not ha) hb) +1))))
  6529. (defun org-entries-lessp (a b)
  6530. "Predicate for sorting agenda entries."
  6531. ;; The following variables will be used when the form is evaluated.
  6532. ;; So even though the compiler complains, keep them.
  6533. (let* ((ss org-agenda-sorting-strategy-selected)
  6534. (timestamp-up (and (org-em 'timestamp-up 'timestamp-down ss)
  6535. (org-cmp-ts a b "")))
  6536. (timestamp-down (if timestamp-up (- timestamp-up) nil))
  6537. (scheduled-up (and (org-em 'scheduled-up 'scheduled-down ss)
  6538. (org-cmp-ts a b "scheduled")))
  6539. (scheduled-down (if scheduled-up (- scheduled-up) nil))
  6540. (deadline-up (and (org-em 'deadline-up 'deadline-down ss)
  6541. (org-cmp-ts a b "deadline")))
  6542. (deadline-down (if deadline-up (- deadline-up) nil))
  6543. (tsia-up (and (org-em 'tsia-up 'tsia-down ss)
  6544. (org-cmp-ts a b "iatimestamp_ia")))
  6545. (tsia-down (if tsia-up (- tsia-up) nil))
  6546. (ts-up (and (org-em 'ts-up 'ts-down ss)
  6547. (org-cmp-ts a b "timestamp")))
  6548. (ts-down (if ts-up (- ts-up) nil))
  6549. (time-up (and (org-em 'time-up 'time-down ss)
  6550. (org-cmp-time a b)))
  6551. (time-down (if time-up (- time-up) nil))
  6552. (priority-up (and (org-em 'priority-up 'priority-down ss)
  6553. (org-cmp-priority a b)))
  6554. (priority-down (if priority-up (- priority-up) nil))
  6555. (effort-up (and (org-em 'effort-up 'effort-down ss)
  6556. (org-cmp-effort a b)))
  6557. (effort-down (if effort-up (- effort-up) nil))
  6558. (category-up (and (or (org-em 'category-up 'category-down ss)
  6559. (memq 'category-keep ss))
  6560. (org-cmp-category a b)))
  6561. (category-down (if category-up (- category-up) nil))
  6562. (category-keep (if category-up +1 nil))
  6563. (tag-up (and (org-em 'tag-up 'tag-down ss)
  6564. (org-cmp-tag a b)))
  6565. (tag-down (if tag-up (- tag-up) nil))
  6566. (todo-state-up (and (org-em 'todo-state-up 'todo-state-down ss)
  6567. (org-cmp-todo-state a b)))
  6568. (todo-state-down (if todo-state-up (- todo-state-up) nil))
  6569. (habit-up (and (org-em 'habit-up 'habit-down ss)
  6570. (org-cmp-habit-p a b)))
  6571. (habit-down (if habit-up (- habit-up) nil))
  6572. (alpha-up (and (org-em 'alpha-up 'alpha-down ss)
  6573. (org-cmp-alpha a b)))
  6574. (alpha-down (if alpha-up (- alpha-up) nil))
  6575. (need-user-cmp (org-em 'user-defined-up 'user-defined-down ss))
  6576. user-defined-up user-defined-down)
  6577. (if (and need-user-cmp org-agenda-cmp-user-defined
  6578. (functionp org-agenda-cmp-user-defined))
  6579. (setq user-defined-up
  6580. (funcall org-agenda-cmp-user-defined a b)
  6581. user-defined-down (if user-defined-up (- user-defined-up) nil)))
  6582. (cdr (assoc
  6583. (eval (cons 'or org-agenda-sorting-strategy-selected))
  6584. '((-1 . t) (1 . nil) (nil . nil))))))
  6585. ;;; Agenda restriction lock
  6586. (defvar org-agenda-restriction-lock-overlay (make-overlay 1 1)
  6587. "Overlay to mark the headline to which agenda commands are restricted.")
  6588. (overlay-put org-agenda-restriction-lock-overlay
  6589. 'face 'org-agenda-restriction-lock)
  6590. (overlay-put org-agenda-restriction-lock-overlay
  6591. 'help-echo "Agendas are currently limited to this subtree.")
  6592. (org-detach-overlay org-agenda-restriction-lock-overlay)
  6593. ;;;###autoload
  6594. (defun org-agenda-set-restriction-lock (&optional type)
  6595. "Set restriction lock for agenda, to current subtree or file.
  6596. Restriction will be the file if TYPE is `file', or if type is the
  6597. universal prefix '(4), or if the cursor is before the first headline
  6598. in the file. Otherwise, restriction will be to the current subtree."
  6599. (interactive "P")
  6600. (and (equal type '(4)) (setq type 'file))
  6601. (setq type (cond
  6602. (type type)
  6603. ((org-at-heading-p) 'subtree)
  6604. ((condition-case nil (org-back-to-heading t) (error nil))
  6605. 'subtree)
  6606. (t 'file)))
  6607. (if (eq type 'subtree)
  6608. (progn
  6609. (setq org-agenda-restrict (current-buffer))
  6610. (setq org-agenda-overriding-restriction 'subtree)
  6611. (put 'org-agenda-files 'org-restrict
  6612. (list (buffer-file-name (buffer-base-buffer))))
  6613. (org-back-to-heading t)
  6614. (move-overlay org-agenda-restriction-lock-overlay
  6615. (point)
  6616. (if org-agenda-restriction-lock-highlight-subtree
  6617. (save-excursion (org-end-of-subtree t t) (point))
  6618. (point-at-eol)))
  6619. (move-marker org-agenda-restrict-begin (point))
  6620. (move-marker org-agenda-restrict-end
  6621. (save-excursion (org-end-of-subtree t t)))
  6622. (message "Locking agenda restriction to subtree"))
  6623. (put 'org-agenda-files 'org-restrict
  6624. (list (buffer-file-name (buffer-base-buffer))))
  6625. (setq org-agenda-restrict nil)
  6626. (setq org-agenda-overriding-restriction 'file)
  6627. (move-marker org-agenda-restrict-begin nil)
  6628. (move-marker org-agenda-restrict-end nil)
  6629. (message "Locking agenda restriction to file"))
  6630. (setq current-prefix-arg nil)
  6631. (org-agenda-maybe-redo))
  6632. (defun org-agenda-remove-restriction-lock (&optional noupdate)
  6633. "Remove the agenda restriction lock."
  6634. (interactive "P")
  6635. (org-detach-overlay org-agenda-restriction-lock-overlay)
  6636. (org-detach-overlay org-speedbar-restriction-lock-overlay)
  6637. (setq org-agenda-overriding-restriction nil)
  6638. (setq org-agenda-restrict nil)
  6639. (put 'org-agenda-files 'org-restrict nil)
  6640. (move-marker org-agenda-restrict-begin nil)
  6641. (move-marker org-agenda-restrict-end nil)
  6642. (setq current-prefix-arg nil)
  6643. (message "Agenda restriction lock removed")
  6644. (or noupdate (org-agenda-maybe-redo)))
  6645. (defun org-agenda-maybe-redo ()
  6646. "If there is any window showing the agenda view, update it."
  6647. (let ((w (get-buffer-window org-agenda-buffer-name t))
  6648. (w0 (selected-window)))
  6649. (when w
  6650. (select-window w)
  6651. (org-agenda-redo)
  6652. (select-window w0)
  6653. (if org-agenda-overriding-restriction
  6654. (message "Agenda view shifted to new %s restriction"
  6655. org-agenda-overriding-restriction)
  6656. (message "Agenda restriction lock removed")))))
  6657. ;;; Agenda commands
  6658. (defun org-agenda-check-type (error &rest types)
  6659. "Check if agenda buffer is of allowed type.
  6660. If ERROR is non-nil, throw an error, otherwise just return nil.
  6661. Allowed types are 'agenda 'timeline 'todo 'tags 'search."
  6662. (if (not org-agenda-type)
  6663. (error "No Org agenda currently displayed")
  6664. (if (memq org-agenda-type types)
  6665. t
  6666. (if error
  6667. (error "Not allowed in %s-type agenda buffers" org-agenda-type)
  6668. nil))))
  6669. (defun org-agenda-Quit ()
  6670. "Exit the agenda and kill buffers loaded by `org-agenda'.
  6671. Also restore the window configuration."
  6672. (interactive)
  6673. (if org-agenda-columns-active
  6674. (org-columns-quit)
  6675. (let ((buf (current-buffer)))
  6676. (if (eq org-agenda-window-setup 'other-frame)
  6677. (progn
  6678. (org-agenda-reset-markers)
  6679. (kill-buffer buf)
  6680. (org-columns-remove-overlays)
  6681. (setq org-agenda-archives-mode nil)
  6682. (delete-frame))
  6683. (and (not (eq org-agenda-window-setup 'current-window))
  6684. (not (one-window-p))
  6685. (delete-window))
  6686. (org-agenda-reset-markers)
  6687. (kill-buffer buf)
  6688. (org-columns-remove-overlays)
  6689. (setq org-agenda-archives-mode nil)))
  6690. (setq org-agenda-buffer nil)
  6691. ;; Maybe restore the pre-agenda window configuration.
  6692. (and org-agenda-restore-windows-after-quit
  6693. (not (eq org-agenda-window-setup 'other-frame))
  6694. org-agenda-pre-window-conf
  6695. (set-window-configuration org-agenda-pre-window-conf)
  6696. (setq org-agenda-pre-window-conf nil))))
  6697. (defun org-agenda-quit ()
  6698. "Exit the agenda and restore the window configuration.
  6699. When `org-agenda-sticky' is non-nil, only bury the agenda."
  6700. (interactive)
  6701. (if (and (eq org-indirect-buffer-display 'other-window)
  6702. org-last-indirect-buffer)
  6703. (let ((org-last-indirect-window
  6704. (get-buffer-window org-last-indirect-buffer)))
  6705. (if org-last-indirect-window
  6706. (delete-window org-last-indirect-window))))
  6707. (if org-agenda-columns-active
  6708. (org-columns-quit)
  6709. (if org-agenda-sticky
  6710. (let ((buf (current-buffer)))
  6711. (if (eq org-agenda-window-setup 'other-frame)
  6712. (progn
  6713. (delete-frame))
  6714. (and (not (eq org-agenda-window-setup 'current-window))
  6715. (not (one-window-p))
  6716. (delete-window)))
  6717. (with-current-buffer buf
  6718. (bury-buffer)
  6719. ;; Maybe restore the pre-agenda window configuration.
  6720. (and org-agenda-restore-windows-after-quit
  6721. (not (eq org-agenda-window-setup 'other-frame))
  6722. org-agenda-pre-window-conf
  6723. (set-window-configuration org-agenda-pre-window-conf)
  6724. (setq org-agenda-pre-window-conf nil))))
  6725. (org-agenda-Quit))))
  6726. (defun org-agenda-exit ()
  6727. "Exit the agenda and restore the window configuration.
  6728. Also kill Org-mode buffers loaded by `org-agenda'. Org-mode
  6729. buffers visited directly by the user will not be touched."
  6730. (interactive)
  6731. (org-release-buffers org-agenda-new-buffers)
  6732. (setq org-agenda-new-buffers nil)
  6733. (org-agenda-Quit))
  6734. (defun org-agenda-kill-all-agenda-buffers ()
  6735. "Kill all buffers in `org-agenda-mode'.
  6736. This is used when toggling sticky agendas.
  6737. You can also explicitly invoke it with `C-c a C-k'."
  6738. (interactive)
  6739. (let (blist)
  6740. (dolist (buf (buffer-list))
  6741. (when (with-current-buffer buf (eq major-mode 'org-agenda-mode))
  6742. (push buf blist)))
  6743. (mapc 'kill-buffer blist)))
  6744. (defun org-agenda-execute (arg)
  6745. "Execute another agenda command, keeping same window.
  6746. So this is just a shortcut for \\<global-map>`\\[org-agenda]', available
  6747. in the agenda."
  6748. (interactive "P")
  6749. (let ((org-agenda-window-setup 'current-window))
  6750. (org-agenda arg)))
  6751. (defun org-agenda-redo (&optional all)
  6752. "Rebuild possibly ALL agenda view(s) in the current buffer."
  6753. (interactive "P")
  6754. (let* ((p (or (and (looking-at "\\'") (1- (point))) (point)))
  6755. (cpa (unless (eq all t) current-prefix-arg))
  6756. (org-agenda-doing-sticky-redo org-agenda-sticky)
  6757. (org-agenda-sticky nil)
  6758. (org-agenda-buffer-name (or org-agenda-this-buffer-name
  6759. org-agenda-buffer-name))
  6760. (org-agenda-keep-modes t)
  6761. (tag-filter org-agenda-tag-filter)
  6762. (tag-preset (get 'org-agenda-tag-filter :preset-filter))
  6763. (top-hl-filter org-agenda-top-headline-filter)
  6764. (cat-filter org-agenda-category-filter)
  6765. (cat-preset (get 'org-agenda-category-filter :preset-filter))
  6766. (re-filter org-agenda-regexp-filter)
  6767. (re-preset (get 'org-agenda-regexp-filter :preset-filter))
  6768. (org-agenda-tag-filter-while-redo (or tag-filter tag-preset))
  6769. (cols org-agenda-columns-active)
  6770. (line (org-current-line))
  6771. (window-line (- line (org-current-line (window-start))))
  6772. (lprops (get 'org-agenda-redo-command 'org-lprops))
  6773. (redo-cmd (get-text-property p 'org-redo-cmd))
  6774. (last-args (get-text-property p 'org-last-args))
  6775. (org-agenda-overriding-cmd (get-text-property p 'org-series-cmd))
  6776. (org-agenda-overriding-cmd-arguments
  6777. (unless (eq all t)
  6778. (cond ((listp last-args)
  6779. (cons (or cpa (car last-args)) (cdr last-args)))
  6780. ((stringp last-args)
  6781. last-args))))
  6782. (series-redo-cmd (get-text-property p 'org-series-redo-cmd)))
  6783. (put 'org-agenda-tag-filter :preset-filter nil)
  6784. (put 'org-agenda-category-filter :preset-filter nil)
  6785. (put 'org-agenda-regexp-filter :preset-filter nil)
  6786. (and cols (org-columns-quit))
  6787. (message "Rebuilding agenda buffer...")
  6788. (if series-redo-cmd
  6789. (eval series-redo-cmd)
  6790. (org-let lprops redo-cmd))
  6791. (setq org-agenda-undo-list nil
  6792. org-agenda-pending-undo-list nil
  6793. org-agenda-tag-filter tag-filter
  6794. org-agenda-category-filter cat-filter
  6795. org-agenda-regexp-filter re-filter
  6796. org-agenda-top-headline-filter top-hl-filter)
  6797. (message "Rebuilding agenda buffer...done")
  6798. (put 'org-agenda-tag-filter :preset-filter tag-preset)
  6799. (put 'org-agenda-category-filter :preset-filter cat-preset)
  6800. (put 'org-agenda-regexp-filter :preset-filter re-preset)
  6801. (and (or tag-filter tag-preset) (org-agenda-filter-apply tag-filter 'tag))
  6802. (and (or cat-filter cat-preset) (org-agenda-filter-apply cat-filter 'category))
  6803. (and (or re-filter re-preset) (org-agenda-filter-apply re-filter 'regexp))
  6804. (and top-hl-filter (org-agenda-filter-top-headline-apply top-hl-filter))
  6805. (and cols (org-called-interactively-p 'any) (org-agenda-columns))
  6806. (org-goto-line line)
  6807. (recenter window-line)))
  6808. (defvar org-global-tags-completion-table nil)
  6809. (defvar org-agenda-filter-form nil)
  6810. (defvar org-agenda-filtered-by-category nil)
  6811. (defun org-agenda-filter-by-category (strip)
  6812. "Keep only those lines in the agenda buffer that have a specific category.
  6813. The category is that of the current line."
  6814. (interactive "P")
  6815. (if (and org-agenda-filtered-by-category
  6816. org-agenda-category-filter)
  6817. (org-agenda-filter-show-all-cat)
  6818. (let ((cat (org-no-properties (get-text-property (point) 'org-category))))
  6819. (cond
  6820. ((and cat strip)
  6821. (org-agenda-filter-apply
  6822. (push (concat "-" cat) org-agenda-category-filter) 'category))
  6823. ((and cat)
  6824. (org-agenda-filter-apply
  6825. (setq org-agenda-category-filter
  6826. (list (concat "+" cat))) 'category))
  6827. ((error "No category at point"))))))
  6828. (defun org-find-top-headline (&optional pos)
  6829. "Find the topmost parent headline and return it."
  6830. (save-excursion
  6831. (with-current-buffer (if pos (marker-buffer pos) (current-buffer))
  6832. (if pos (goto-char pos))
  6833. ;; Skip up to the topmost parent
  6834. (while (ignore-errors (outline-up-heading 1) t))
  6835. (ignore-errors
  6836. (nth 4 (org-heading-components))))))
  6837. (defvar org-agenda-filtered-by-top-headline nil)
  6838. (defun org-agenda-filter-by-top-headline (strip)
  6839. "Keep only those lines that are descendants from the same top headline.
  6840. The top headline is that of the current line."
  6841. (interactive "P")
  6842. (if org-agenda-filtered-by-top-headline
  6843. (progn
  6844. (setq org-agenda-filtered-by-top-headline nil
  6845. org-agenda-top-headline-filter nil)
  6846. (org-agenda-filter-show-all-cat))
  6847. (let ((cat (org-find-top-headline (org-get-at-bol 'org-hd-marker))))
  6848. (if cat (org-agenda-filter-top-headline-apply cat strip)
  6849. (error "No top-level category at point")))))
  6850. (defvar org-agenda-regexp-filter nil)
  6851. (defun org-agenda-filter-by-regexp (strip)
  6852. "Filter agenda entries by a regular expression.
  6853. Regexp filters are cumulative.
  6854. With no prefix argument, keep entries matching the regexp.
  6855. With one prefix argument, filter out entries matching the regexp.
  6856. With two prefix arguments, remove the regexp filters."
  6857. (interactive "P")
  6858. (if (not (equal strip '(16)))
  6859. (let ((flt (concat (if (equal strip '(4)) "-" "+")
  6860. (read-from-minibuffer
  6861. (if (equal strip '(4))
  6862. "Filter out entries matching regexp: "
  6863. "Narrow to entries matching regexp: ")))))
  6864. (push flt org-agenda-regexp-filter)
  6865. (org-agenda-filter-apply org-agenda-regexp-filter 'regexp))
  6866. (org-agenda-filter-show-all-re)
  6867. (message "Regexp filter removed")))
  6868. (defun org-agenda-filter-remove-all ()
  6869. "Remove all filters from the current agenda buffer."
  6870. (interactive)
  6871. (when org-agenda-tag-filter
  6872. (org-agenda-filter-show-all-tag))
  6873. (when org-agenda-category-filter
  6874. (org-agenda-filter-show-all-cat))
  6875. (when org-agenda-regexp-filter
  6876. (org-agenda-filter-show-all-re)))
  6877. (defun org-agenda-filter-by-tag (strip &optional char narrow)
  6878. "Keep only those lines in the agenda buffer that have a specific tag.
  6879. The tag is selected with its fast selection letter, as configured.
  6880. With prefix argument STRIP, remove all lines that do have the tag.
  6881. A lisp caller can specify CHAR. NARROW means that the new tag should be
  6882. used to narrow the search - the interactive user can also press `-' or `+'
  6883. to switch to narrowing."
  6884. (interactive "P")
  6885. (let* ((alist org-tag-alist-for-agenda)
  6886. (tag-chars (mapconcat
  6887. (lambda (x) (if (and (not (symbolp (car x)))
  6888. (cdr x))
  6889. (char-to-string (cdr x))
  6890. ""))
  6891. alist ""))
  6892. (efforts (org-split-string
  6893. (or (cdr (assoc (concat org-effort-property "_ALL")
  6894. org-global-properties))
  6895. "0 0:10 0:30 1:00 2:00 3:00 4:00 5:00 6:00 7:00 8:00"
  6896. "")))
  6897. (effort-op org-agenda-filter-effort-default-operator)
  6898. (effort-prompt "")
  6899. (inhibit-read-only t)
  6900. (current org-agenda-tag-filter)
  6901. maybe-refresh a n tag)
  6902. (unless char
  6903. (message
  6904. "%s by tag [%s ], [TAB], %s[/]:off, [+-]:narrow, [>=<?]:effort: "
  6905. (if narrow "Narrow" "Filter") tag-chars
  6906. (if org-agenda-auto-exclude-function "[RET], " ""))
  6907. (setq char (read-char-exclusive)))
  6908. (when (member char '(?+ ?-))
  6909. ;; Narrowing down
  6910. (cond ((equal char ?-) (setq strip t narrow t))
  6911. ((equal char ?+) (setq strip nil narrow t)))
  6912. (message
  6913. "Narrow by tag [%s ], [TAB], [/]:off, [>=<]:effort: " tag-chars)
  6914. (setq char (read-char-exclusive)))
  6915. (when (member char '(?< ?> ?= ??))
  6916. ;; An effort operator
  6917. (setq effort-op (char-to-string char))
  6918. (setq alist nil) ; to make sure it will be interpreted as effort.
  6919. (unless (equal char ??)
  6920. (loop for i from 0 to 9 do
  6921. (setq effort-prompt
  6922. (concat
  6923. effort-prompt " ["
  6924. (if (= i 9) "0" (int-to-string (1+ i)))
  6925. "]" (nth i efforts))))
  6926. (message "Effort%s: %s " effort-op effort-prompt)
  6927. (setq char (read-char-exclusive))
  6928. (when (or (< char ?0) (> char ?9))
  6929. (error "Need 1-9,0 to select effort"))))
  6930. (when (equal char ?\t)
  6931. (unless (local-variable-p 'org-global-tags-completion-table (current-buffer))
  6932. (org-set-local 'org-global-tags-completion-table
  6933. (org-global-tags-completion-table)))
  6934. (let ((completion-ignore-case t))
  6935. (setq tag (org-icompleting-read
  6936. "Tag: " org-global-tags-completion-table))))
  6937. (cond
  6938. ((equal char ?\r)
  6939. (org-agenda-filter-show-all-tag)
  6940. (when org-agenda-auto-exclude-function
  6941. (setq org-agenda-tag-filter nil)
  6942. (dolist (tag (org-agenda-get-represented-tags))
  6943. (let ((modifier (funcall org-agenda-auto-exclude-function tag)))
  6944. (if modifier
  6945. (push modifier org-agenda-tag-filter))))
  6946. (if (not (null org-agenda-tag-filter))
  6947. (org-agenda-filter-apply org-agenda-tag-filter 'tag)))
  6948. (setq maybe-refresh t))
  6949. ((equal char ?/)
  6950. (org-agenda-filter-show-all-tag)
  6951. (when (get 'org-agenda-tag-filter :preset-filter)
  6952. (org-agenda-filter-apply org-agenda-tag-filter 'tag))
  6953. (setq maybe-refresh t))
  6954. ((equal char ?. )
  6955. (setq org-agenda-tag-filter
  6956. (mapcar (lambda(tag) (concat "+" tag))
  6957. (org-get-at-bol 'tags)))
  6958. (org-agenda-filter-apply org-agenda-tag-filter 'tag)
  6959. (setq maybe-refresh t))
  6960. ((or (equal char ?\ )
  6961. (setq a (rassoc char alist))
  6962. (and (>= char ?0) (<= char ?9)
  6963. (setq n (if (= char ?0) 9 (- char ?0 1))
  6964. tag (concat effort-op (nth n efforts))
  6965. a (cons tag nil)))
  6966. (and (= char ??)
  6967. (setq tag "?eff")
  6968. a (cons tag nil))
  6969. (and tag (setq a (cons tag nil))))
  6970. (org-agenda-filter-show-all-tag)
  6971. (setq tag (car a))
  6972. (setq org-agenda-tag-filter
  6973. (cons (concat (if strip "-" "+") tag)
  6974. (if narrow current nil)))
  6975. (org-agenda-filter-apply org-agenda-tag-filter 'tag)
  6976. (setq maybe-refresh t))
  6977. (t (error "Invalid tag selection character %c" char)))
  6978. (when (and maybe-refresh
  6979. (eq org-agenda-clockreport-mode 'with-filter))
  6980. (org-agenda-redo))))
  6981. (defun org-agenda-get-represented-tags ()
  6982. "Get a list of all tags currently represented in the agenda."
  6983. (let (p tags)
  6984. (save-excursion
  6985. (goto-char (point-min))
  6986. (while (setq p (next-single-property-change (point) 'tags))
  6987. (goto-char p)
  6988. (mapc (lambda (x) (add-to-list 'tags x))
  6989. (get-text-property (point) 'tags))))
  6990. tags))
  6991. (defun org-agenda-filter-by-tag-refine (strip &optional char)
  6992. "Refine the current filter. See `org-agenda-filter-by-tag'."
  6993. (interactive "P")
  6994. (org-agenda-filter-by-tag strip char 'refine))
  6995. (defun org-agenda-filter-make-matcher (filter type)
  6996. "Create the form that tests a line for agenda filter."
  6997. (let (f f1)
  6998. (cond
  6999. ;; Tag filter
  7000. ((eq type 'tag)
  7001. (setq filter
  7002. (delete-dups
  7003. (append (get 'org-agenda-tag-filter :preset-filter)
  7004. filter)))
  7005. (dolist (x filter)
  7006. (let ((nfilter (org-agenda-filter-expand-tags filter)) nf nf1
  7007. (ffunc
  7008. (lambda (nf0 nf01 fltr notgroup op)
  7009. (dolist (x fltr)
  7010. (if (member x '("-" "+"))
  7011. (setq nf01 (if (equal x "-") 'tags '(not tags)))
  7012. (if (string-match "[<=>?]" x)
  7013. (setq nf01 (org-agenda-filter-effort-form x))
  7014. (setq nf01 (list 'member (downcase (substring x 1))
  7015. 'tags)))
  7016. (when (equal (string-to-char x) ?-)
  7017. (setq nf01 (list 'not nf01))
  7018. (when (not notgroup) (setq op 'and))))
  7019. (push nf01 nf0))
  7020. (if notgroup
  7021. (push (cons 'and nf0) f)
  7022. (push (cons (or op 'or) nf0) f)))))
  7023. (cond ((equal filter '("+"))
  7024. (setq f (list (list 'not 'tags))))
  7025. ((equal nfilter filter)
  7026. (funcall ffunc f1 f filter t nil))
  7027. (t (funcall ffunc nf1 nf nfilter nil nil))))))
  7028. ;; Category filter
  7029. ((eq type 'category)
  7030. (setq filter
  7031. (delete-dups
  7032. (append (get 'org-agenda-category-filter :preset-filter)
  7033. filter)))
  7034. (dolist (x filter)
  7035. (if (equal "-" (substring x 0 1))
  7036. (setq f1 (list 'not (list 'equal (substring x 1) 'cat)))
  7037. (setq f1 (list 'equal (substring x 1) 'cat)))
  7038. (push f1 f)))
  7039. ;; Regexp filter
  7040. ((eq type 'regexp)
  7041. (setq filter
  7042. (delete-dups
  7043. (append (get 'org-agenda-regexp-filter :preset-filter)
  7044. filter)))
  7045. (dolist (x filter)
  7046. (if (equal "-" (substring x 0 1))
  7047. (setq f1 (list 'not (list 'string-match (substring x 1) 'txt)))
  7048. (setq f1 (list 'string-match (substring x 1) 'txt)))
  7049. (push f1 f))))
  7050. (cons 'and (nreverse f))))
  7051. (defun org-agenda-filter-effort-form (e)
  7052. "Return the form to compare the effort of the current line with what E says.
  7053. E looks like \"+<2:25\"."
  7054. (let (op)
  7055. (setq e (substring e 1))
  7056. (setq op (string-to-char e) e (substring e 1))
  7057. (setq op (cond ((equal op ?<) '<=)
  7058. ((equal op ?>) '>=)
  7059. ((equal op ??) op)
  7060. (t '=)))
  7061. (list 'org-agenda-compare-effort (list 'quote op)
  7062. (org-duration-string-to-minutes e))))
  7063. (defun org-agenda-compare-effort (op value)
  7064. "Compare the effort of the current line with VALUE, using OP.
  7065. If the line does not have an effort defined, return nil."
  7066. (let ((eff (org-get-at-bol 'effort-minutes)))
  7067. (if (equal op ??)
  7068. (not eff)
  7069. (funcall op (or eff (if org-sort-agenda-noeffort-is-high 32767 0))
  7070. value))))
  7071. (defun org-agenda-filter-expand-tags (filter &optional no-operator)
  7072. "Expand group tags in FILTER for the agenda.
  7073. When NO-OPERATOR is non-nil, do not add the + operator to returned tags."
  7074. (if org-group-tags
  7075. (let ((case-fold-search t) rtn)
  7076. (mapc
  7077. (lambda (f)
  7078. (let (f0 dir)
  7079. (if (string-match "^\\([+-]\\)\\(.+\\)" f)
  7080. (setq dir (match-string 1 f) f0 (match-string 2 f))
  7081. (setq dir (if no-operator "" "+") f0 f))
  7082. (setq rtn (append (mapcar (lambda(f1) (concat dir f1))
  7083. (org-tags-expand f0 t t))
  7084. rtn))))
  7085. filter)
  7086. (reverse rtn))
  7087. filter))
  7088. (defun org-agenda-filter-apply (filter type)
  7089. "Set FILTER as the new agenda filter and apply it."
  7090. ;; Deactivate `org-agenda-entry-text-mode' when filtering
  7091. (if org-agenda-entry-text-mode (org-agenda-entry-text-mode))
  7092. (let (tags cat txt)
  7093. (setq org-agenda-filter-form
  7094. (org-agenda-filter-make-matcher filter type))
  7095. (if (and (eq type 'category)
  7096. (not (equal (substring (car filter) 0 1) "-")))
  7097. ;; Only set `org-agenda-filtered-by-category' to t
  7098. ;; when a unique category is used as the filter
  7099. (setq org-agenda-filtered-by-category t))
  7100. (org-agenda-set-mode-name)
  7101. (save-excursion
  7102. (goto-char (point-min))
  7103. (while (not (eobp))
  7104. (if (org-get-at-bol 'org-marker)
  7105. (progn
  7106. (setq tags ; used in eval
  7107. (apply 'append
  7108. (mapcar (lambda (f)
  7109. (org-agenda-filter-expand-tags (list f) t))
  7110. (org-get-at-bol 'tags)))
  7111. cat (get-text-property (point) 'org-category)
  7112. txt (get-text-property (point) 'txt))
  7113. (if (not (eval org-agenda-filter-form))
  7114. (org-agenda-filter-hide-line type))
  7115. (beginning-of-line 2))
  7116. (beginning-of-line 2))))
  7117. (if (get-char-property (point) 'invisible)
  7118. (ignore-errors (org-agenda-previous-line)))))
  7119. (defun org-agenda-filter-top-headline-apply (hl &optional negative)
  7120. "Filter by top headline HL."
  7121. (org-agenda-set-mode-name)
  7122. (save-excursion
  7123. (goto-char (point-min))
  7124. (while (not (eobp))
  7125. (let* ((pos (org-get-at-bol 'org-hd-marker))
  7126. (tophl (and pos (org-find-top-headline pos))))
  7127. (if (and tophl (funcall (if negative 'identity 'not)
  7128. (string= hl tophl)))
  7129. (org-agenda-filter-hide-line 'category)))
  7130. (beginning-of-line 2)))
  7131. (if (get-char-property (point) 'invisible)
  7132. (org-agenda-previous-line))
  7133. (setq org-agenda-top-headline-filter hl
  7134. org-agenda-filtered-by-top-headline t))
  7135. (defun org-agenda-filter-hide-line (type)
  7136. "Hide lines with TYPE in the agenda buffer."
  7137. (let (ov)
  7138. (setq ov (make-overlay (max (point-min) (1- (point-at-bol)))
  7139. (point-at-eol)))
  7140. (overlay-put ov 'invisible t)
  7141. (overlay-put ov 'type type)
  7142. (cond ((eq type 'tag) (push ov org-agenda-tag-filter-overlays))
  7143. ((eq type 'category) (push ov org-agenda-cat-filter-overlays))
  7144. ((eq type 'regexp) (push ov org-agenda-re-filter-overlays)))))
  7145. (defun org-agenda-fix-tags-filter-overlays-at (&optional pos)
  7146. (setq pos (or pos (point)))
  7147. (save-excursion
  7148. (dolist (ov (overlays-at pos))
  7149. (when (and (overlay-get ov 'invisible)
  7150. (eq (overlay-get ov 'type) 'tag))
  7151. (goto-char pos)
  7152. (if (< (overlay-start ov) (point-at-eol))
  7153. (move-overlay ov (point-at-eol)
  7154. (overlay-end ov)))))))
  7155. (defun org-agenda-filter-show-all-tag nil
  7156. "Remove tag filter overlays from the agenda buffer."
  7157. (mapc 'delete-overlay org-agenda-tag-filter-overlays)
  7158. (setq org-agenda-tag-filter-overlays nil
  7159. org-agenda-tag-filter nil
  7160. org-agenda-filter-form nil)
  7161. (org-agenda-set-mode-name))
  7162. (defun org-agenda-filter-show-all-re nil
  7163. "Remove regexp filter overlays from the agenda buffer."
  7164. (mapc 'delete-overlay org-agenda-re-filter-overlays)
  7165. (setq org-agenda-re-filter-overlays nil
  7166. org-agenda-regexp-filter nil
  7167. org-agenda-filter-form nil)
  7168. (org-agenda-set-mode-name))
  7169. (defun org-agenda-filter-show-all-cat nil
  7170. "Remove category filter overlays from the agenda buffer."
  7171. (mapc 'delete-overlay org-agenda-cat-filter-overlays)
  7172. (setq org-agenda-cat-filter-overlays nil
  7173. org-agenda-filtered-by-category nil
  7174. org-agenda-category-filter nil
  7175. org-agenda-filter-form nil)
  7176. (org-agenda-set-mode-name))
  7177. (defun org-agenda-manipulate-query-add ()
  7178. "Manipulate the query by adding a search term with positive selection.
  7179. Positive selection means the term must be matched for selection of an entry."
  7180. (interactive)
  7181. (org-agenda-manipulate-query ?\[))
  7182. (defun org-agenda-manipulate-query-subtract ()
  7183. "Manipulate the query by adding a search term with negative selection.
  7184. Negative selection means term must not be matched for selection of an entry."
  7185. (interactive)
  7186. (org-agenda-manipulate-query ?\]))
  7187. (defun org-agenda-manipulate-query-add-re ()
  7188. "Manipulate the query by adding a search regexp with positive selection.
  7189. Positive selection means the regexp must match for selection of an entry."
  7190. (interactive)
  7191. (org-agenda-manipulate-query ?\{))
  7192. (defun org-agenda-manipulate-query-subtract-re ()
  7193. "Manipulate the query by adding a search regexp with negative selection.
  7194. Negative selection means regexp must not match for selection of an entry."
  7195. (interactive)
  7196. (org-agenda-manipulate-query ?\}))
  7197. (defun org-agenda-manipulate-query (char)
  7198. (cond
  7199. ((memq org-agenda-type '(timeline agenda))
  7200. (let ((org-agenda-include-inactive-timestamps t))
  7201. (org-agenda-redo))
  7202. (message "Display now includes inactive timestamps as well"))
  7203. ((eq org-agenda-type 'search)
  7204. (org-add-to-string
  7205. 'org-agenda-query-string
  7206. (if org-agenda-last-search-view-search-was-boolean
  7207. (cdr (assoc char '((?\[ . " +") (?\] . " -")
  7208. (?\{ . " +{}") (?\} . " -{}"))))
  7209. " "))
  7210. (setq org-agenda-redo-command
  7211. (list 'org-search-view
  7212. (car (get-text-property (min (1- (point-max)) (point))
  7213. 'org-last-args))
  7214. org-agenda-query-string
  7215. (+ (length org-agenda-query-string)
  7216. (if (member char '(?\{ ?\})) 0 1))))
  7217. (set-register org-agenda-query-register org-agenda-query-string)
  7218. (let ((org-agenda-overriding-arguments
  7219. (cdr org-agenda-redo-command)))
  7220. (org-agenda-redo)))
  7221. (t (error "Cannot manipulate query for %s-type agenda buffers"
  7222. org-agenda-type))))
  7223. (defun org-add-to-string (var string)
  7224. (set var (concat (symbol-value var) string)))
  7225. (defun org-agenda-goto-date (span)
  7226. "Jump to DATE in agenda."
  7227. (interactive "P")
  7228. (let* ((org-read-date-prefer-future
  7229. (eval org-agenda-jump-prefer-future))
  7230. (date (org-read-date))
  7231. (day (time-to-days (org-time-string-to-time date)))
  7232. (org-agenda-sticky-orig org-agenda-sticky)
  7233. (org-agenda-buffer-tmp-name (buffer-name))
  7234. (args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7235. (0-arg (or current-prefix-arg (car args)))
  7236. (2-arg (nth 2 args))
  7237. (with-hour-p (nth 4 org-agenda-redo-command))
  7238. (newcmd (list 'org-agenda-list 0-arg date
  7239. (org-agenda-span-to-ndays
  7240. 2-arg (org-time-string-to-absolute date))
  7241. with-hour-p))
  7242. (newargs (cdr newcmd))
  7243. (inhibit-read-only t)
  7244. org-agenda-sticky)
  7245. (if (not (org-agenda-check-type t 'agenda))
  7246. (error "Not available in non-agenda views")
  7247. (add-text-properties (point-min) (point-max)
  7248. `(org-redo-cmd ,newcmd org-last-args ,newargs))
  7249. (org-agenda-redo)
  7250. (goto-char (point-min))
  7251. (while (not (or (= (or (get-text-property (point) 'day) 0) day)
  7252. (save-excursion (move-beginning-of-line 2) (eobp))))
  7253. (move-beginning-of-line 2))
  7254. (setq org-agenda-sticky org-agenda-sticky-orig
  7255. org-agenda-this-buffer-is-sticky org-agenda-sticky))))
  7256. (defun org-agenda-goto-today ()
  7257. "Go to today."
  7258. (interactive)
  7259. (org-agenda-check-type t 'timeline 'agenda)
  7260. (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7261. (curspan (nth 2 args))
  7262. (tdpos (text-property-any (point-min) (point-max) 'org-today t)))
  7263. (cond
  7264. (tdpos (goto-char tdpos))
  7265. ((eq org-agenda-type 'agenda)
  7266. (let* ((sd (org-agenda-compute-starting-span
  7267. (org-today) (or curspan org-agenda-ndays org-agenda-span)))
  7268. (org-agenda-overriding-arguments args))
  7269. (setf (nth 1 org-agenda-overriding-arguments) sd)
  7270. (org-agenda-redo)
  7271. (org-agenda-find-same-or-today-or-agenda)))
  7272. (t (error "Cannot find today")))))
  7273. (defun org-agenda-find-same-or-today-or-agenda (&optional cnt)
  7274. (goto-char
  7275. (or (and cnt (text-property-any (point-min) (point-max) 'org-day-cnt cnt))
  7276. (text-property-any (point-min) (point-max) 'org-today t)
  7277. (text-property-any (point-min) (point-max) 'org-agenda-type 'agenda)
  7278. (and (get-text-property (min (1- (point-max)) (point)) 'org-series)
  7279. (org-agenda-goto-block-beginning))
  7280. (point-min))))
  7281. (defun org-agenda-goto-block-beginning ()
  7282. "Go the agenda block beginning."
  7283. (interactive)
  7284. (if (not (derived-mode-p 'org-agenda-mode))
  7285. (error "Cannot execute this command outside of org-agenda-mode buffers")
  7286. (let (dest)
  7287. (save-excursion
  7288. (unless (looking-at "\\'")
  7289. (forward-char))
  7290. (let* ((prop 'org-agenda-structural-header)
  7291. (p (previous-single-property-change (point) prop))
  7292. (n (next-single-property-change (or (and (looking-at "\\`") 1)
  7293. (1- (point))) prop)))
  7294. (setq dest (cond ((eq n (point-at-eol)) (1- n)) (p (1- p))))))
  7295. (if (not dest)
  7296. (error "Cannot find the beginning of the blog")
  7297. (goto-char dest)
  7298. (move-beginning-of-line 1)))))
  7299. (defun org-agenda-later (arg)
  7300. "Go forward in time by the current span.
  7301. With prefix ARG, go forward that many times the current span."
  7302. (interactive "p")
  7303. (org-agenda-check-type t 'agenda)
  7304. (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7305. (span (or (nth 2 args) org-agenda-current-span))
  7306. (sd (or (nth 1 args) (org-get-at-bol 'day) org-starting-day))
  7307. (greg (calendar-gregorian-from-absolute sd))
  7308. (cnt (org-get-at-bol 'org-day-cnt))
  7309. greg2)
  7310. (cond
  7311. ((numberp span)
  7312. (setq sd (+ (* span arg) sd)))
  7313. ((eq span 'day)
  7314. (setq sd (+ arg sd)))
  7315. ((eq span 'week)
  7316. (setq sd (+ (* 7 arg) sd)))
  7317. ((eq span 'fortnight)
  7318. (setq sd (+ (* 14 arg) sd)))
  7319. ((eq span 'month)
  7320. (setq greg2 (list (+ (car greg) arg) (nth 1 greg) (nth 2 greg))
  7321. sd (calendar-absolute-from-gregorian greg2))
  7322. (setcar greg2 (1+ (car greg2))))
  7323. ((eq span 'year)
  7324. (setq greg2 (list (car greg) (nth 1 greg) (+ arg (nth 2 greg)))
  7325. sd (calendar-absolute-from-gregorian greg2))
  7326. (setcar (nthcdr 2 greg2) (1+ (nth 2 greg2))))
  7327. (t
  7328. (setq sd (+ (* span arg) sd))))
  7329. (let ((org-agenda-overriding-cmd
  7330. ;; `cmd' may have been set by `org-agenda-run-series' which
  7331. ;; uses `org-agenda-overriding-cmd' to decide whether
  7332. ;; overriding is allowed for `cmd'
  7333. (get-text-property (min (1- (point-max)) (point)) 'org-series-cmd))
  7334. (org-agenda-overriding-arguments
  7335. (list (car args) sd span)))
  7336. (org-agenda-redo)
  7337. (org-agenda-find-same-or-today-or-agenda cnt))))
  7338. (defun org-agenda-earlier (arg)
  7339. "Go backward in time by the current span.
  7340. With prefix ARG, go backward that many times the current span."
  7341. (interactive "p")
  7342. (org-agenda-later (- arg)))
  7343. (defun org-agenda-view-mode-dispatch ()
  7344. "Call one of the view mode commands."
  7345. (interactive)
  7346. (message "View: [d]ay [w]eek for[t]night [m]onth [y]ear [SPC]reset [q]uit/abort
  7347. time[G]rid [[]inactive [f]ollow [l]og [L]og-all [c]lockcheck
  7348. [a]rch-trees [A]rch-files clock[R]eport include[D]iary [E]ntryText")
  7349. (let ((a (read-char-exclusive)))
  7350. (case a
  7351. (?\ (call-interactively 'org-agenda-reset-view))
  7352. (?d (call-interactively 'org-agenda-day-view))
  7353. (?w (call-interactively 'org-agenda-week-view))
  7354. (?t (call-interactively 'org-agenda-fortnight-view))
  7355. (?m (call-interactively 'org-agenda-month-view))
  7356. (?y (call-interactively 'org-agenda-year-view))
  7357. (?l (call-interactively 'org-agenda-log-mode))
  7358. (?L (org-agenda-log-mode '(4)))
  7359. (?c (org-agenda-log-mode 'clockcheck))
  7360. ((?F ?f) (call-interactively 'org-agenda-follow-mode))
  7361. (?a (call-interactively 'org-agenda-archives-mode))
  7362. (?A (org-agenda-archives-mode 'files))
  7363. ((?R ?r) (call-interactively 'org-agenda-clockreport-mode))
  7364. ((?E ?e) (call-interactively 'org-agenda-entry-text-mode))
  7365. (?G (call-interactively 'org-agenda-toggle-time-grid))
  7366. (?D (call-interactively 'org-agenda-toggle-diary))
  7367. (?\! (call-interactively 'org-agenda-toggle-deadlines))
  7368. (?\[ (let ((org-agenda-include-inactive-timestamps t))
  7369. (org-agenda-check-type t 'timeline 'agenda)
  7370. (org-agenda-redo))
  7371. (message "Display now includes inactive timestamps as well"))
  7372. (?q (message "Abort"))
  7373. (otherwise (error "Invalid key" )))))
  7374. (defun org-agenda-reset-view ()
  7375. "Switch to default view for agenda."
  7376. (interactive)
  7377. (org-agenda-change-time-span (or org-agenda-ndays org-agenda-span)))
  7378. (defun org-agenda-day-view (&optional day-of-month)
  7379. "Switch to daily view for agenda.
  7380. With argument DAY-OF-MONTH, switch to that day of the month."
  7381. (interactive "P")
  7382. (org-agenda-change-time-span 'day day-of-month))
  7383. (defun org-agenda-week-view (&optional iso-week)
  7384. "Switch to daily view for agenda.
  7385. With argument ISO-WEEK, switch to the corresponding ISO week.
  7386. If ISO-WEEK has more then 2 digits, only the last two encode the
  7387. week. Any digits before this encode a year. So 200712 means
  7388. week 12 of year 2007. Years in the range 1938-2037 can also be
  7389. written as 2-digit years."
  7390. (interactive "P")
  7391. (org-agenda-change-time-span 'week iso-week))
  7392. (defun org-agenda-fortnight-view (&optional iso-week)
  7393. "Switch to daily view for agenda.
  7394. With argument ISO-WEEK, switch to the corresponding ISO week.
  7395. If ISO-WEEK has more then 2 digits, only the last two encode the
  7396. week. Any digits before this encode a year. So 200712 means
  7397. week 12 of year 2007. Years in the range 1938-2037 can also be
  7398. written as 2-digit years."
  7399. (interactive "P")
  7400. (org-agenda-change-time-span 'fortnight iso-week))
  7401. (defun org-agenda-month-view (&optional month)
  7402. "Switch to monthly view for agenda.
  7403. With argument MONTH, switch to that month."
  7404. (interactive "P")
  7405. (org-agenda-change-time-span 'month month))
  7406. (defun org-agenda-year-view (&optional year)
  7407. "Switch to yearly view for agenda.
  7408. With argument YEAR, switch to that year.
  7409. If MONTH has more then 2 digits, only the last two encode the
  7410. month. Any digits before this encode a year. So 200712 means
  7411. December year 2007. Years in the range 1938-2037 can also be
  7412. written as 2-digit years."
  7413. (interactive "P")
  7414. (when year
  7415. (setq year (org-small-year-to-year year)))
  7416. (if (y-or-n-p "Are you sure you want to compute the agenda for an entire year? ")
  7417. (org-agenda-change-time-span 'year year)
  7418. (error "Abort")))
  7419. (defun org-agenda-change-time-span (span &optional n)
  7420. "Change the agenda view to SPAN.
  7421. SPAN may be `day', `week', `fortnight', `month', `year'."
  7422. (org-agenda-check-type t 'agenda)
  7423. (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7424. (curspan (nth 2 args)))
  7425. (if (and (not n) (equal curspan span))
  7426. (error "Viewing span is already \"%s\"" span))
  7427. (let* ((sd (or (org-get-at-bol 'day)
  7428. (nth 1 args)
  7429. org-starting-day))
  7430. (sd (org-agenda-compute-starting-span sd span n))
  7431. (org-agenda-overriding-cmd
  7432. (get-text-property (min (1- (point-max)) (point)) 'org-series-cmd))
  7433. (org-agenda-overriding-arguments
  7434. (list (car args) sd span)))
  7435. (org-agenda-redo)
  7436. (org-agenda-find-same-or-today-or-agenda))
  7437. (org-agenda-set-mode-name)
  7438. (message "Switched to %s view" span)))
  7439. (defun org-agenda-compute-starting-span (sd span &optional n)
  7440. "Compute starting date for agenda.
  7441. SPAN may be `day', `week', `fortnight', `month', `year'. The return value
  7442. is a cons cell with the starting date and the number of days,
  7443. so that the date SD will be in that range."
  7444. (let* ((greg (calendar-gregorian-from-absolute sd))
  7445. (dg (nth 1 greg))
  7446. (mg (car greg))
  7447. (yg (nth 2 greg)))
  7448. (cond
  7449. ((eq span 'day)
  7450. (when n
  7451. (setq sd (+ (calendar-absolute-from-gregorian
  7452. (list mg 1 yg))
  7453. n -1))))
  7454. ((or (eq span 'week) (eq span 'fortnight))
  7455. (let* ((nt (calendar-day-of-week
  7456. (calendar-gregorian-from-absolute sd)))
  7457. (d (if org-agenda-start-on-weekday
  7458. (- nt org-agenda-start-on-weekday)
  7459. 0))
  7460. y1)
  7461. (setq sd (- sd (+ (if (< d 0) 7 0) d)))
  7462. (when n
  7463. (require 'cal-iso)
  7464. (when (> n 99)
  7465. (setq y1 (org-small-year-to-year (/ n 100))
  7466. n (mod n 100)))
  7467. (setq sd
  7468. (calendar-absolute-from-iso
  7469. (list n 1
  7470. (or y1 (nth 2 (calendar-iso-from-absolute sd)))))))))
  7471. ((eq span 'month)
  7472. (let (y1)
  7473. (when (and n (> n 99))
  7474. (setq y1 (org-small-year-to-year (/ n 100))
  7475. n (mod n 100)))
  7476. (setq sd (calendar-absolute-from-gregorian
  7477. (list (or n mg) 1 (or y1 yg))))))
  7478. ((eq span 'year)
  7479. (setq sd (calendar-absolute-from-gregorian
  7480. (list 1 1 (or n yg))))))
  7481. sd))
  7482. (defun org-agenda-next-date-line (&optional arg)
  7483. "Jump to the next line indicating a date in agenda buffer."
  7484. (interactive "p")
  7485. (org-agenda-check-type t 'agenda 'timeline)
  7486. (beginning-of-line 1)
  7487. ;; This does not work if user makes date format that starts with a blank
  7488. (if (looking-at "^\\S-") (forward-char 1))
  7489. (if (not (re-search-forward "^\\S-" nil t arg))
  7490. (progn
  7491. (backward-char 1)
  7492. (error "No next date after this line in this buffer")))
  7493. (goto-char (match-beginning 0)))
  7494. (defun org-agenda-previous-date-line (&optional arg)
  7495. "Jump to the previous line indicating a date in agenda buffer."
  7496. (interactive "p")
  7497. (org-agenda-check-type t 'agenda 'timeline)
  7498. (beginning-of-line 1)
  7499. (if (not (re-search-backward "^\\S-" nil t arg))
  7500. (error "No previous date before this line in this buffer")))
  7501. ;; Initialize the highlight
  7502. (defvar org-hl (make-overlay 1 1))
  7503. (overlay-put org-hl 'face 'highlight)
  7504. (defun org-highlight (begin end &optional buffer)
  7505. "Highlight a region with overlay."
  7506. (move-overlay org-hl begin end (or buffer (current-buffer))))
  7507. (defun org-unhighlight ()
  7508. "Detach overlay INDEX."
  7509. (org-detach-overlay org-hl))
  7510. (defun org-unhighlight-once ()
  7511. "Remove the highlight from its position, and this function from the hook."
  7512. (remove-hook 'pre-command-hook 'org-unhighlight-once)
  7513. (org-unhighlight))
  7514. (defvar org-agenda-pre-follow-window-conf nil)
  7515. (defun org-agenda-follow-mode ()
  7516. "Toggle follow mode in an agenda buffer."
  7517. (interactive)
  7518. (unless org-agenda-follow-mode
  7519. (setq org-agenda-pre-follow-window-conf
  7520. (current-window-configuration)))
  7521. (setq org-agenda-follow-mode (not org-agenda-follow-mode))
  7522. (unless org-agenda-follow-mode
  7523. (set-window-configuration org-agenda-pre-follow-window-conf))
  7524. (org-agenda-set-mode-name)
  7525. (org-agenda-do-context-action)
  7526. (message "Follow mode is %s"
  7527. (if org-agenda-follow-mode "on" "off")))
  7528. (defun org-agenda-entry-text-mode (&optional arg)
  7529. "Toggle entry text mode in an agenda buffer."
  7530. (interactive "P")
  7531. (if (or org-agenda-tag-filter
  7532. org-agenda-category-filter
  7533. org-agenda-regexp-filter
  7534. org-agenda-top-headline-filter)
  7535. (user-error "Can't show entry text in filtered views")
  7536. (setq org-agenda-entry-text-mode (or (integerp arg)
  7537. (not org-agenda-entry-text-mode)))
  7538. (org-agenda-entry-text-hide)
  7539. (and org-agenda-entry-text-mode
  7540. (let ((org-agenda-entry-text-maxlines
  7541. (if (integerp arg) arg org-agenda-entry-text-maxlines)))
  7542. (org-agenda-entry-text-show)))
  7543. (org-agenda-set-mode-name)
  7544. (message "Entry text mode is %s%s"
  7545. (if org-agenda-entry-text-mode "on" "off")
  7546. (if (not org-agenda-entry-text-mode) ""
  7547. (format " (maximum number of lines is %d)"
  7548. (if (integerp arg) arg org-agenda-entry-text-maxlines))))))
  7549. (defun org-agenda-clockreport-mode (&optional with-filter)
  7550. "Toggle clocktable mode in an agenda buffer.
  7551. With prefix arg WITH-FILTER, make the clocktable respect the current
  7552. agenda filter."
  7553. (interactive "P")
  7554. (org-agenda-check-type t 'agenda)
  7555. (if with-filter
  7556. (setq org-agenda-clockreport-mode 'with-filter)
  7557. (setq org-agenda-clockreport-mode (not org-agenda-clockreport-mode)))
  7558. (org-agenda-set-mode-name)
  7559. (org-agenda-redo)
  7560. (message "Clocktable mode is %s"
  7561. (if org-agenda-clockreport-mode "on" "off")))
  7562. (defun org-agenda-log-mode (&optional special)
  7563. "Toggle log mode in an agenda buffer.
  7564. With argument SPECIAL, show all possible log items, not only the ones
  7565. configured in `org-agenda-log-mode-items'.
  7566. With a double `C-u' prefix arg, show *only* log items, nothing else."
  7567. (interactive "P")
  7568. (org-agenda-check-type t 'agenda 'timeline)
  7569. (setq org-agenda-show-log
  7570. (cond
  7571. ((equal special '(16)) 'only)
  7572. ((eq special 'clockcheck)
  7573. (if (eq org-agenda-show-log 'clockcheck)
  7574. nil 'clockcheck))
  7575. (special '(closed clock state))
  7576. (t (not org-agenda-show-log))))
  7577. (org-agenda-set-mode-name)
  7578. (org-agenda-redo)
  7579. (message "Log mode is %s"
  7580. (if org-agenda-show-log "on" "off")))
  7581. (defun org-agenda-archives-mode (&optional with-files)
  7582. "Toggle inclusion of items in trees marked with :ARCHIVE:.
  7583. When called with a prefix argument, include all archive files as well."
  7584. (interactive "P")
  7585. (setq org-agenda-archives-mode
  7586. (if with-files t (if org-agenda-archives-mode nil 'trees)))
  7587. (org-agenda-set-mode-name)
  7588. (org-agenda-redo)
  7589. (message
  7590. "%s"
  7591. (cond
  7592. ((eq org-agenda-archives-mode nil)
  7593. "No archives are included")
  7594. ((eq org-agenda-archives-mode 'trees)
  7595. (format "Trees with :%s: tag are included" org-archive-tag))
  7596. ((eq org-agenda-archives-mode t)
  7597. (format "Trees with :%s: tag and all active archive files are included"
  7598. org-archive-tag)))))
  7599. (defun org-agenda-toggle-diary ()
  7600. "Toggle diary inclusion in an agenda buffer."
  7601. (interactive)
  7602. (org-agenda-check-type t 'agenda)
  7603. (setq org-agenda-include-diary (not org-agenda-include-diary))
  7604. (org-agenda-redo)
  7605. (org-agenda-set-mode-name)
  7606. (message "Diary inclusion turned %s"
  7607. (if org-agenda-include-diary "on" "off")))
  7608. (defun org-agenda-toggle-deadlines ()
  7609. "Toggle inclusion of entries with a deadline in an agenda buffer."
  7610. (interactive)
  7611. (org-agenda-check-type t 'agenda)
  7612. (setq org-agenda-include-deadlines (not org-agenda-include-deadlines))
  7613. (org-agenda-redo)
  7614. (org-agenda-set-mode-name)
  7615. (message "Deadlines inclusion turned %s"
  7616. (if org-agenda-include-deadlines "on" "off")))
  7617. (defun org-agenda-toggle-time-grid ()
  7618. "Toggle time grid in an agenda buffer."
  7619. (interactive)
  7620. (org-agenda-check-type t 'agenda)
  7621. (setq org-agenda-use-time-grid (not org-agenda-use-time-grid))
  7622. (org-agenda-redo)
  7623. (org-agenda-set-mode-name)
  7624. (message "Time-grid turned %s"
  7625. (if org-agenda-use-time-grid "on" "off")))
  7626. (defun org-agenda-set-mode-name ()
  7627. "Set the mode name to indicate all the small mode settings."
  7628. (setq mode-name
  7629. (list "Org-Agenda"
  7630. (if (get 'org-agenda-files 'org-restrict) " []" "")
  7631. " "
  7632. '(:eval (org-agenda-span-name org-agenda-current-span))
  7633. (if org-agenda-follow-mode " Follow" "")
  7634. (if org-agenda-entry-text-mode " ETxt" "")
  7635. (if org-agenda-include-diary " Diary" "")
  7636. (if org-agenda-include-deadlines " Ddl" "")
  7637. (if org-agenda-use-time-grid " Grid" "")
  7638. (if (and (boundp 'org-habit-show-habits)
  7639. org-habit-show-habits) " Habit" "")
  7640. (cond
  7641. ((consp org-agenda-show-log) " LogAll")
  7642. ((eq org-agenda-show-log 'clockcheck) " ClkCk")
  7643. (org-agenda-show-log " Log")
  7644. (t ""))
  7645. (if (or org-agenda-category-filter
  7646. (get 'org-agenda-category-filter :preset-filter))
  7647. '(:eval (org-propertize
  7648. (concat " <"
  7649. (mapconcat
  7650. 'identity
  7651. (append
  7652. (get 'org-agenda-category-filter :preset-filter)
  7653. org-agenda-category-filter)
  7654. "")
  7655. ">")
  7656. 'face 'org-agenda-filter-category
  7657. 'help-echo "Category used in filtering")) "")
  7658. (if (or org-agenda-tag-filter
  7659. (get 'org-agenda-tag-filter :preset-filter))
  7660. '(:eval (org-propertize
  7661. (concat " {"
  7662. (mapconcat
  7663. 'identity
  7664. (append
  7665. (get 'org-agenda-tag-filter :preset-filter)
  7666. org-agenda-tag-filter)
  7667. "")
  7668. "}")
  7669. 'face 'org-agenda-filter-tags
  7670. 'help-echo "Tags used in filtering")) "")
  7671. (if (or org-agenda-regexp-filter
  7672. (get 'org-agenda-regexp-filter :preset-filter))
  7673. '(:eval (org-propertize
  7674. (concat " ["
  7675. (mapconcat
  7676. 'identity
  7677. (append
  7678. (get 'org-agenda-regexp-filter :preset-filter)
  7679. org-agenda-regexp-filter)
  7680. "")
  7681. "]")
  7682. 'face 'org-agenda-filter-regexp
  7683. 'help-echo "Regexp used in filtering")) "")
  7684. (if org-agenda-archives-mode
  7685. (if (eq org-agenda-archives-mode t)
  7686. " Archives"
  7687. (format " :%s:" org-archive-tag))
  7688. "")
  7689. (if org-agenda-clockreport-mode
  7690. (if (eq org-agenda-clockreport-mode 'with-filter)
  7691. " Clock{}" " Clock")
  7692. "")))
  7693. (force-mode-line-update))
  7694. (define-obsolete-function-alias
  7695. 'org-agenda-post-command-hook 'org-agenda-update-agenda-type "24.3")
  7696. (defun org-agenda-update-agenda-type ()
  7697. "Update the agenda type after each command."
  7698. (setq org-agenda-type
  7699. (or (get-text-property (point) 'org-agenda-type)
  7700. (get-text-property (max (point-min) (1- (point))) 'org-agenda-type))))
  7701. (defun org-agenda-next-line ()
  7702. "Move cursor to the next line, and show if follow mode is active."
  7703. (interactive)
  7704. (call-interactively 'next-line)
  7705. (org-agenda-do-context-action))
  7706. (defun org-agenda-previous-line ()
  7707. "Move cursor to the previous line, and show if follow-mode is active."
  7708. (interactive)
  7709. (call-interactively 'previous-line)
  7710. (org-agenda-do-context-action))
  7711. (defun org-agenda-next-item (n)
  7712. "Move cursor to next agenda item."
  7713. (interactive "p")
  7714. (let ((col (current-column)))
  7715. (dotimes (c n)
  7716. (when (next-single-property-change (point-at-eol) 'org-marker)
  7717. (move-end-of-line 1)
  7718. (goto-char (next-single-property-change (point) 'org-marker))))
  7719. (org-move-to-column col))
  7720. (org-agenda-do-context-action))
  7721. (defun org-agenda-previous-item (n)
  7722. "Move cursor to next agenda item."
  7723. (interactive "p")
  7724. (dotimes (c n)
  7725. (let ((col (current-column))
  7726. (goto (save-excursion
  7727. (move-end-of-line 0)
  7728. (previous-single-property-change (point) 'org-marker))))
  7729. (if goto (goto-char goto))
  7730. (org-move-to-column col)))
  7731. (org-agenda-do-context-action))
  7732. (defun org-agenda-do-context-action ()
  7733. "Show outline path and, maybe, follow mode window."
  7734. (let ((m (org-get-at-bol 'org-marker)))
  7735. (when (and (markerp m) (marker-buffer m))
  7736. (and org-agenda-follow-mode
  7737. (if org-agenda-follow-indirect
  7738. (org-agenda-tree-to-indirect-buffer nil)
  7739. (org-agenda-show)))
  7740. (and org-agenda-show-outline-path
  7741. (org-with-point-at m (org-display-outline-path t))))))
  7742. (defun org-agenda-show-tags ()
  7743. "Show the tags applicable to the current item."
  7744. (interactive)
  7745. (let* ((tags (org-get-at-bol 'tags)))
  7746. (if tags
  7747. (message "Tags are :%s:"
  7748. (org-no-properties (mapconcat 'identity tags ":")))
  7749. (message "No tags associated with this line"))))
  7750. (defun org-agenda-goto (&optional highlight)
  7751. "Go to the Org-mode file which contains the item at point."
  7752. (interactive)
  7753. (let* ((marker (or (org-get-at-bol 'org-marker)
  7754. (org-agenda-error)))
  7755. (buffer (marker-buffer marker))
  7756. (pos (marker-position marker)))
  7757. (switch-to-buffer-other-window buffer)
  7758. (widen)
  7759. (push-mark)
  7760. (goto-char pos)
  7761. (when (derived-mode-p 'org-mode)
  7762. (org-show-context 'agenda)
  7763. (save-excursion
  7764. (and (outline-next-heading)
  7765. (org-flag-heading nil)))) ; show the next heading
  7766. (when (outline-invisible-p)
  7767. (show-entry)) ; display invisible text
  7768. (recenter (/ (window-height) 2))
  7769. (run-hooks 'org-agenda-after-show-hook)
  7770. (and highlight (org-highlight (point-at-bol) (point-at-eol)))))
  7771. (defvar org-agenda-after-show-hook nil
  7772. "Normal hook run after an item has been shown from the agenda.
  7773. Point is in the buffer where the item originated.")
  7774. (defun org-agenda-kill ()
  7775. "Kill the entry or subtree belonging to the current agenda entry."
  7776. (interactive)
  7777. (or (eq major-mode 'org-agenda-mode) (error "Not in agenda"))
  7778. (let* ((bufname-orig (buffer-name))
  7779. (marker (or (org-get-at-bol 'org-marker)
  7780. (org-agenda-error)))
  7781. (buffer (marker-buffer marker))
  7782. (pos (marker-position marker))
  7783. (type (org-get-at-bol 'type))
  7784. dbeg dend (n 0) conf)
  7785. (org-with-remote-undo buffer
  7786. (with-current-buffer buffer
  7787. (save-excursion
  7788. (goto-char pos)
  7789. (if (and (derived-mode-p 'org-mode) (not (member type '("sexp"))))
  7790. (setq dbeg (progn (org-back-to-heading t) (point))
  7791. dend (org-end-of-subtree t t))
  7792. (setq dbeg (point-at-bol)
  7793. dend (min (point-max) (1+ (point-at-eol)))))
  7794. (goto-char dbeg)
  7795. (while (re-search-forward "^[ \t]*\\S-" dend t) (setq n (1+ n)))))
  7796. (setq conf (or (eq t org-agenda-confirm-kill)
  7797. (and (numberp org-agenda-confirm-kill)
  7798. (> n org-agenda-confirm-kill))))
  7799. (and conf
  7800. (not (y-or-n-p
  7801. (format "Delete entry with %d lines in buffer \"%s\"? "
  7802. n (buffer-name buffer))))
  7803. (error "Abort"))
  7804. (let ((org-agenda-buffer-name bufname-orig))
  7805. (org-remove-subtree-entries-from-agenda buffer dbeg dend))
  7806. (with-current-buffer buffer (delete-region dbeg dend))
  7807. (message "Agenda item and source killed"))))
  7808. (defvar org-archive-default-command) ; defined in org-archive.el
  7809. (defun org-agenda-archive-default ()
  7810. "Archive the entry or subtree belonging to the current agenda entry."
  7811. (interactive)
  7812. (require 'org-archive)
  7813. (org-agenda-archive-with org-archive-default-command))
  7814. (defun org-agenda-archive-default-with-confirmation ()
  7815. "Archive the entry or subtree belonging to the current agenda entry."
  7816. (interactive)
  7817. (require 'org-archive)
  7818. (org-agenda-archive-with org-archive-default-command 'confirm))
  7819. (defun org-agenda-archive ()
  7820. "Archive the entry or subtree belonging to the current agenda entry."
  7821. (interactive)
  7822. (org-agenda-archive-with 'org-archive-subtree))
  7823. (defun org-agenda-archive-to-archive-sibling ()
  7824. "Move the entry to the archive sibling."
  7825. (interactive)
  7826. (org-agenda-archive-with 'org-archive-to-archive-sibling))
  7827. (defun org-agenda-archive-with (cmd &optional confirm)
  7828. "Move the entry to the archive sibling."
  7829. (interactive)
  7830. (or (eq major-mode 'org-agenda-mode) (error "Not in agenda"))
  7831. (let* ((bufname-orig (buffer-name))
  7832. (marker (or (org-get-at-bol 'org-marker)
  7833. (org-agenda-error)))
  7834. (buffer (marker-buffer marker))
  7835. (pos (marker-position marker)))
  7836. (org-with-remote-undo buffer
  7837. (with-current-buffer buffer
  7838. (if (derived-mode-p 'org-mode)
  7839. (if (and confirm
  7840. (not (y-or-n-p "Archive this subtree or entry? ")))
  7841. (error "Abort")
  7842. (save-window-excursion
  7843. (goto-char pos)
  7844. (let ((org-agenda-buffer-name bufname-orig))
  7845. (org-remove-subtree-entries-from-agenda))
  7846. (org-back-to-heading t)
  7847. (funcall cmd)))
  7848. (error "Archiving works only in Org-mode files"))))))
  7849. (defun org-remove-subtree-entries-from-agenda (&optional buf beg end)
  7850. "Remove all lines in the agenda that correspond to a given subtree.
  7851. The subtree is the one in buffer BUF, starting at BEG and ending at END.
  7852. If this information is not given, the function uses the tree at point."
  7853. (let ((buf (or buf (current-buffer))) m p)
  7854. (save-excursion
  7855. (unless (and beg end)
  7856. (org-back-to-heading t)
  7857. (setq beg (point))
  7858. (org-end-of-subtree t)
  7859. (setq end (point)))
  7860. (set-buffer (get-buffer org-agenda-buffer-name))
  7861. (save-excursion
  7862. (goto-char (point-max))
  7863. (beginning-of-line 1)
  7864. (while (not (bobp))
  7865. (when (and (setq m (org-get-at-bol 'org-marker))
  7866. (equal buf (marker-buffer m))
  7867. (setq p (marker-position m))
  7868. (>= p beg)
  7869. (< p end))
  7870. (let ((inhibit-read-only t))
  7871. (delete-region (point-at-bol) (1+ (point-at-eol)))))
  7872. (beginning-of-line 0))))))
  7873. (defun org-agenda-refile (&optional goto rfloc no-update)
  7874. "Refile the item at point.
  7875. When GOTO is 0 or '(64), clear the refile cache.
  7876. When GOTO is '(16), go to the location of the last refiled item.
  7877. RFLOC can be a refile location obtained in a different way.
  7878. When NO-UPDATE is non-nil, don't redo the agenda buffer."
  7879. (interactive "P")
  7880. (cond
  7881. ((member goto '(0 (64)))
  7882. (org-refile-cache-clear))
  7883. ((equal goto '(16))
  7884. (org-refile-goto-last-stored))
  7885. (t
  7886. (let* ((buffer-orig (buffer-name))
  7887. (marker (or (org-get-at-bol 'org-hd-marker)
  7888. (org-agenda-error)))
  7889. (buffer (marker-buffer marker))
  7890. (pos (marker-position marker))
  7891. (rfloc (or rfloc
  7892. (org-refile-get-location
  7893. (if goto "Goto" "Refile to") buffer
  7894. org-refile-allow-creating-parent-nodes))))
  7895. (with-current-buffer buffer
  7896. (save-excursion
  7897. (save-restriction
  7898. (widen)
  7899. (goto-char marker)
  7900. (let ((org-agenda-buffer-name buffer-orig))
  7901. (org-remove-subtree-entries-from-agenda))
  7902. (org-refile goto buffer rfloc)))))
  7903. (unless no-update (org-agenda-redo)))))
  7904. (defun org-agenda-open-link (&optional arg)
  7905. "Open the link(s) in the current entry, if any.
  7906. This looks for a link in the displayed line in the agenda.
  7907. It also looks at the text of the entry itself."
  7908. (interactive "P")
  7909. (let* ((marker (or (org-get-at-bol 'org-hd-marker)
  7910. (org-get-at-bol 'org-marker)))
  7911. (buffer (and marker (marker-buffer marker)))
  7912. (prefix (buffer-substring (point-at-bol) (point-at-eol)))
  7913. (lkall (org-offer-links-in-entry buffer marker arg prefix))
  7914. (lk0 (car lkall))
  7915. (lk (if (stringp lk0) (list lk0) lk0))
  7916. (lkend (cdr lkall))
  7917. trg)
  7918. (cond
  7919. ((and buffer lk)
  7920. (mapcar (lambda(l)
  7921. (with-current-buffer buffer
  7922. (setq trg (and (string-match org-bracket-link-regexp l)
  7923. (match-string 1 l)))
  7924. (if (or (not trg) (string-match org-any-link-re trg))
  7925. (save-excursion
  7926. (save-restriction
  7927. (widen)
  7928. (goto-char marker)
  7929. (when (search-forward l nil lkend)
  7930. (goto-char (match-beginning 0))
  7931. (org-open-at-point))))
  7932. ;; This is an internal link, widen the buffer
  7933. (switch-to-buffer-other-window buffer)
  7934. (widen)
  7935. (goto-char marker)
  7936. (when (search-forward l nil lkend)
  7937. (goto-char (match-beginning 0))
  7938. (org-open-at-point)))))
  7939. lk))
  7940. ((or (org-in-regexp (concat "\\(" org-bracket-link-regexp "\\)"))
  7941. (save-excursion
  7942. (beginning-of-line 1)
  7943. (looking-at (concat ".*?\\(" org-bracket-link-regexp "\\)"))))
  7944. (org-open-link-from-string (match-string 1)))
  7945. (t (message "No link to open here")))))
  7946. (defun org-agenda-copy-local-variable (var)
  7947. "Get a variable from a referenced buffer and install it here."
  7948. (let ((m (org-get-at-bol 'org-marker)))
  7949. (when (and m (buffer-live-p (marker-buffer m)))
  7950. (org-set-local var (with-current-buffer (marker-buffer m)
  7951. (symbol-value var))))))
  7952. (defun org-agenda-switch-to (&optional delete-other-windows)
  7953. "Go to the Org-mode file which contains the item at point."
  7954. (interactive)
  7955. (if (and org-return-follows-link
  7956. (not (org-get-at-bol 'org-marker))
  7957. (org-in-regexp org-bracket-link-regexp))
  7958. (org-open-link-from-string (match-string 0))
  7959. (let* ((marker (or (org-get-at-bol 'org-marker)
  7960. (org-agenda-error)))
  7961. (buffer (marker-buffer marker))
  7962. (pos (marker-position marker)))
  7963. (org-pop-to-buffer-same-window buffer)
  7964. (and delete-other-windows (delete-other-windows))
  7965. (widen)
  7966. (goto-char pos)
  7967. (when (derived-mode-p 'org-mode)
  7968. (org-show-context 'agenda)
  7969. (save-excursion
  7970. (and (outline-next-heading)
  7971. (org-flag-heading nil))) ; show the next heading
  7972. (when (outline-invisible-p)
  7973. (show-entry)) ; display invisible text
  7974. (run-hooks 'org-agenda-after-show-hook)))))
  7975. (defun org-agenda-goto-mouse (ev)
  7976. "Go to the Org-mode file which contains the item at the mouse click."
  7977. (interactive "e")
  7978. (mouse-set-point ev)
  7979. (org-agenda-goto))
  7980. (defun org-agenda-show (&optional full-entry)
  7981. "Display the Org-mode file which contains the item at point.
  7982. With prefix argument FULL-ENTRY, make the entire entry visible
  7983. if it was hidden in the outline."
  7984. (interactive "P")
  7985. (let ((win (selected-window)))
  7986. (if full-entry
  7987. (let ((org-show-entry-below t))
  7988. (org-agenda-goto t))
  7989. (org-agenda-goto t))
  7990. (select-window win)))
  7991. (defvar org-agenda-show-window nil)
  7992. (defun org-agenda-show-and-scroll-up (&optional arg)
  7993. "Display the Org-mode file which contains the item at point.
  7994. When called repeatedly, scroll the window that is displaying the buffer.
  7995. With a \\[universal-argument] prefix, use `org-show-entry' instead of
  7996. `show-subtree' to display the item, so that drawers and logbooks stay
  7997. folded."
  7998. (interactive "P")
  7999. (let ((win (selected-window)))
  8000. (if (and (window-live-p org-agenda-show-window)
  8001. (eq this-command last-command))
  8002. (progn
  8003. (select-window org-agenda-show-window)
  8004. (ignore-errors (scroll-up)))
  8005. (org-agenda-goto t)
  8006. (if arg (org-show-entry) (show-subtree))
  8007. (setq org-agenda-show-window (selected-window)))
  8008. (select-window win)))
  8009. (defun org-agenda-show-scroll-down ()
  8010. "Scroll down the window showing the agenda."
  8011. (interactive)
  8012. (let ((win (selected-window)))
  8013. (when (window-live-p org-agenda-show-window)
  8014. (select-window org-agenda-show-window)
  8015. (ignore-errors (scroll-down))
  8016. (select-window win))))
  8017. (defun org-agenda-show-1 (&optional more)
  8018. "Display the Org-mode file which contains the item at point.
  8019. The prefix arg selects the amount of information to display:
  8020. 0 hide the subtree
  8021. 1 just show the entry according to defaults.
  8022. 2 show the children view
  8023. 3 show the subtree view
  8024. 4 show the entire subtree and any LOGBOOK drawers
  8025. 5 show the entire subtree and any drawers
  8026. With prefix argument FULL-ENTRY, make the entire entry visible
  8027. if it was hidden in the outline."
  8028. (interactive "p")
  8029. (let ((win (selected-window)))
  8030. (org-agenda-goto t)
  8031. (org-recenter-heading 1)
  8032. (cond
  8033. ((= more 0)
  8034. (hide-subtree)
  8035. (save-excursion
  8036. (org-back-to-heading)
  8037. (run-hook-with-args 'org-cycle-hook 'folded))
  8038. (message "Remote: FOLDED"))
  8039. ((and (org-called-interactively-p 'any) (= more 1))
  8040. (message "Remote: show with default settings"))
  8041. ((= more 2)
  8042. (show-entry)
  8043. (show-children)
  8044. (save-excursion
  8045. (org-back-to-heading)
  8046. (run-hook-with-args 'org-cycle-hook 'children))
  8047. (message "Remote: CHILDREN"))
  8048. ((= more 3)
  8049. (show-subtree)
  8050. (save-excursion
  8051. (org-back-to-heading)
  8052. (run-hook-with-args 'org-cycle-hook 'subtree))
  8053. (message "Remote: SUBTREE"))
  8054. ((= more 4)
  8055. (let* ((org-drawers (delete "LOGBOOK" (copy-sequence org-drawers)))
  8056. (org-drawer-regexp
  8057. (concat "^[ \t]*:\\("
  8058. (mapconcat 'regexp-quote org-drawers "\\|")
  8059. "\\):[ \t]*$")))
  8060. (show-subtree)
  8061. (save-excursion
  8062. (org-back-to-heading)
  8063. (org-cycle-hide-drawers 'subtree)))
  8064. (message "Remote: SUBTREE AND LOGBOOK"))
  8065. ((> more 4)
  8066. (show-subtree)
  8067. (message "Remote: SUBTREE AND ALL DRAWERS")))
  8068. (select-window win)))
  8069. (defun org-recenter-heading (n)
  8070. (save-excursion
  8071. (org-back-to-heading)
  8072. (recenter n)))
  8073. (defvar org-agenda-cycle-counter nil)
  8074. (defun org-agenda-cycle-show (&optional n)
  8075. "Show the current entry in another window, with default settings.
  8076. Default settings are taken from `org-show-hierarchy-above' and siblings.
  8077. When use repeatedly in immediate succession, the remote entry will cycle
  8078. through visibility
  8079. children -> subtree -> folded
  8080. When called with a numeric prefix arg, that arg will be passed through to
  8081. `org-agenda-show-1'. For the interpretation of that argument, see the
  8082. docstring of `org-agenda-show-1'."
  8083. (interactive "P")
  8084. (if (integerp n)
  8085. (setq org-agenda-cycle-counter n)
  8086. (if (not (eq last-command this-command))
  8087. (setq org-agenda-cycle-counter 1)
  8088. (if (equal org-agenda-cycle-counter 0)
  8089. (setq org-agenda-cycle-counter 2)
  8090. (setq org-agenda-cycle-counter (1+ org-agenda-cycle-counter))
  8091. (if (> org-agenda-cycle-counter 3)
  8092. (setq org-agenda-cycle-counter 0)))))
  8093. (org-agenda-show-1 org-agenda-cycle-counter))
  8094. (defun org-agenda-recenter (arg)
  8095. "Display the Org-mode file which contains the item at point and recenter."
  8096. (interactive "P")
  8097. (let ((win (selected-window)))
  8098. (org-agenda-goto t)
  8099. (recenter arg)
  8100. (select-window win)))
  8101. (defun org-agenda-show-mouse (ev)
  8102. "Display the Org-mode file which contains the item at the mouse click."
  8103. (interactive "e")
  8104. (mouse-set-point ev)
  8105. (org-agenda-show))
  8106. (defun org-agenda-check-no-diary ()
  8107. "Check if the entry is a diary link and abort if yes."
  8108. (if (org-get-at-bol 'org-agenda-diary-link)
  8109. (org-agenda-error)))
  8110. (defun org-agenda-error ()
  8111. (error "Command not allowed in this line"))
  8112. (defun org-agenda-tree-to-indirect-buffer (arg)
  8113. "Show the subtree corresponding to the current entry in an indirect buffer.
  8114. This calls the command `org-tree-to-indirect-buffer' from the original buffer.
  8115. With a numerical prefix ARG, go up to this level and then take that tree.
  8116. With a negative numeric ARG, go up by this number of levels.
  8117. With a \\[universal-argument] prefix, make a separate frame for this tree (i.e. don't
  8118. use the dedicated frame)."
  8119. (interactive "P")
  8120. (if current-prefix-arg
  8121. (org-agenda-do-tree-to-indirect-buffer arg)
  8122. (let ((agenda-buffer (buffer-name))
  8123. (agenda-window (selected-window))
  8124. (indirect-window
  8125. (and org-last-indirect-buffer
  8126. (get-buffer-window org-last-indirect-buffer))))
  8127. (save-window-excursion (org-agenda-do-tree-to-indirect-buffer arg))
  8128. (unless (or (eq org-indirect-buffer-display 'new-frame)
  8129. (eq org-indirect-buffer-display 'dedicated-frame))
  8130. (unwind-protect
  8131. (unless (and indirect-window (window-live-p indirect-window))
  8132. (setq indirect-window (split-window agenda-window)))
  8133. (and indirect-window (select-window indirect-window))
  8134. (switch-to-buffer org-last-indirect-buffer :norecord)
  8135. (fit-window-to-buffer indirect-window)))
  8136. (select-window (get-buffer-window agenda-buffer)))))
  8137. (defun org-agenda-do-tree-to-indirect-buffer (arg)
  8138. "Same as `org-agenda-tree-to-indirect-buffer' without saving window."
  8139. (org-agenda-check-no-diary)
  8140. (let* ((marker (or (org-get-at-bol 'org-marker)
  8141. (org-agenda-error)))
  8142. (buffer (marker-buffer marker))
  8143. (pos (marker-position marker)))
  8144. (with-current-buffer buffer
  8145. (save-excursion
  8146. (goto-char pos)
  8147. (funcall 'org-tree-to-indirect-buffer arg)))))
  8148. (defvar org-last-heading-marker (make-marker)
  8149. "Marker pointing to the headline that last changed its TODO state
  8150. by a remote command from the agenda.")
  8151. (defun org-agenda-todo-nextset ()
  8152. "Switch TODO entry to next sequence."
  8153. (interactive)
  8154. (org-agenda-todo 'nextset))
  8155. (defun org-agenda-todo-previousset ()
  8156. "Switch TODO entry to previous sequence."
  8157. (interactive)
  8158. (org-agenda-todo 'previousset))
  8159. (defun org-agenda-todo (&optional arg)
  8160. "Cycle TODO state of line at point, also in Org-mode file.
  8161. This changes the line at point, all other lines in the agenda referring to
  8162. the same tree node, and the headline of the tree node in the Org-mode file."
  8163. (interactive "P")
  8164. (org-agenda-check-no-diary)
  8165. (let* ((col (current-column))
  8166. (marker (or (org-get-at-bol 'org-marker)
  8167. (org-agenda-error)))
  8168. (buffer (marker-buffer marker))
  8169. (pos (marker-position marker))
  8170. (hdmarker (org-get-at-bol 'org-hd-marker))
  8171. (todayp (org-agenda-todayp (org-get-at-bol 'day)))
  8172. (inhibit-read-only t)
  8173. org-agenda-headline-snapshot-before-repeat newhead just-one)
  8174. (org-with-remote-undo buffer
  8175. (with-current-buffer buffer
  8176. (widen)
  8177. (goto-char pos)
  8178. (org-show-context 'agenda)
  8179. (save-excursion
  8180. (and (outline-next-heading)
  8181. (org-flag-heading nil))) ; show the next heading
  8182. (let ((current-prefix-arg arg))
  8183. (call-interactively 'org-todo))
  8184. (and (bolp) (forward-char 1))
  8185. (setq newhead (org-get-heading))
  8186. (when (and (org-bound-and-true-p
  8187. org-agenda-headline-snapshot-before-repeat)
  8188. (not (equal org-agenda-headline-snapshot-before-repeat
  8189. newhead))
  8190. todayp)
  8191. (setq newhead org-agenda-headline-snapshot-before-repeat
  8192. just-one t))
  8193. (save-excursion
  8194. (org-back-to-heading)
  8195. (move-marker org-last-heading-marker (point))))
  8196. (beginning-of-line 1)
  8197. (save-excursion
  8198. (org-agenda-change-all-lines newhead hdmarker 'fixface just-one))
  8199. (org-move-to-column col))))
  8200. (defun org-agenda-add-note (&optional arg)
  8201. "Add a time-stamped note to the entry at point."
  8202. (interactive "P")
  8203. (org-agenda-check-no-diary)
  8204. (let* ((marker (or (org-get-at-bol 'org-marker)
  8205. (org-agenda-error)))
  8206. (buffer (marker-buffer marker))
  8207. (pos (marker-position marker))
  8208. (hdmarker (org-get-at-bol 'org-hd-marker))
  8209. (inhibit-read-only t))
  8210. (with-current-buffer buffer
  8211. (widen)
  8212. (goto-char pos)
  8213. (org-show-context 'agenda)
  8214. (save-excursion
  8215. (and (outline-next-heading)
  8216. (org-flag-heading nil))) ; show the next heading
  8217. (org-add-note))))
  8218. (defun org-agenda-change-all-lines (newhead hdmarker
  8219. &optional fixface just-this)
  8220. "Change all lines in the agenda buffer which match HDMARKER.
  8221. The new content of the line will be NEWHEAD (as modified by
  8222. `org-agenda-format-item'). HDMARKER is checked with
  8223. `equal' against all `org-hd-marker' text properties in the file.
  8224. If FIXFACE is non-nil, the face of each item is modified according to
  8225. the new TODO state.
  8226. If JUST-THIS is non-nil, change just the current line, not all.
  8227. If FORCE-TAGS is non nil, the car of it returns the new tags."
  8228. (let* ((inhibit-read-only t)
  8229. (line (org-current-line))
  8230. (org-agenda-buffer (current-buffer))
  8231. (thetags (with-current-buffer (marker-buffer hdmarker)
  8232. (save-excursion (save-restriction (widen)
  8233. (goto-char hdmarker)
  8234. (org-get-tags-at)))))
  8235. props m pl undone-face done-face finish new dotime level cat tags)
  8236. (save-excursion
  8237. (goto-char (point-max))
  8238. (beginning-of-line 1)
  8239. (while (not finish)
  8240. (setq finish (bobp))
  8241. (when (and (setq m (org-get-at-bol 'org-hd-marker))
  8242. (or (not just-this) (= (org-current-line) line))
  8243. (equal m hdmarker))
  8244. (setq props (text-properties-at (point))
  8245. dotime (org-get-at-bol 'dotime)
  8246. cat (org-get-at-bol 'org-category)
  8247. level (org-get-at-bol 'level)
  8248. tags thetags
  8249. new
  8250. (let ((org-prefix-format-compiled
  8251. (or (get-text-property (min (1- (point-max)) (point)) 'format)
  8252. org-prefix-format-compiled))
  8253. (extra (org-get-at-bol 'extra)))
  8254. (with-current-buffer (marker-buffer hdmarker)
  8255. (save-excursion
  8256. (save-restriction
  8257. (widen)
  8258. (org-agenda-format-item extra newhead level cat tags dotime)))))
  8259. pl (text-property-any (point-at-bol) (point-at-eol) 'org-heading t)
  8260. undone-face (org-get-at-bol 'undone-face)
  8261. done-face (org-get-at-bol 'done-face))
  8262. (beginning-of-line 1)
  8263. (cond
  8264. ((equal new "")
  8265. (and (looking-at ".*\n?") (replace-match "")))
  8266. ((looking-at ".*")
  8267. (replace-match new t t)
  8268. (beginning-of-line 1)
  8269. (add-text-properties (point-at-bol) (point-at-eol) props)
  8270. (when fixface
  8271. (add-text-properties
  8272. (point-at-bol) (point-at-eol)
  8273. (list 'face
  8274. (if org-last-todo-state-is-todo
  8275. undone-face done-face))))
  8276. (org-agenda-highlight-todo 'line)
  8277. (beginning-of-line 1))
  8278. (t (error "Line update did not work")))
  8279. (save-restriction
  8280. (narrow-to-region (point-at-bol) (point-at-eol))
  8281. (org-agenda-finalize)))
  8282. (beginning-of-line 0)))))
  8283. (defun org-agenda-align-tags (&optional line)
  8284. "Align all tags in agenda items to `org-agenda-tags-column'."
  8285. (let ((inhibit-read-only t) l c)
  8286. (save-excursion
  8287. (goto-char (if line (point-at-bol) (point-min)))
  8288. (while (re-search-forward (org-re "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$")
  8289. (if line (point-at-eol) nil) t)
  8290. (add-text-properties
  8291. (match-beginning 2) (match-end 2)
  8292. (list 'face (delq nil (let ((prop (get-text-property
  8293. (match-beginning 2) 'face)))
  8294. (or (listp prop) (setq prop (list prop)))
  8295. (if (memq 'org-tag prop)
  8296. prop
  8297. (cons 'org-tag prop))))))
  8298. (setq l (- (match-end 2) (match-beginning 2))
  8299. c (if (< org-agenda-tags-column 0)
  8300. (- (abs org-agenda-tags-column) l)
  8301. org-agenda-tags-column))
  8302. (delete-region (match-beginning 1) (match-end 1))
  8303. (goto-char (match-beginning 1))
  8304. (insert (org-add-props
  8305. (make-string (max 1 (- c (current-column))) ?\ )
  8306. (plist-put (copy-sequence (text-properties-at (point)))
  8307. 'face nil))))
  8308. (goto-char (point-min))
  8309. (org-font-lock-add-tag-faces (point-max)))))
  8310. (defun org-agenda-priority-up ()
  8311. "Increase the priority of line at point, also in Org-mode file."
  8312. (interactive)
  8313. (org-agenda-priority 'up))
  8314. (defun org-agenda-priority-down ()
  8315. "Decrease the priority of line at point, also in Org-mode file."
  8316. (interactive)
  8317. (org-agenda-priority 'down))
  8318. (defun org-agenda-priority (&optional force-direction)
  8319. "Set the priority of line at point, also in Org-mode file.
  8320. This changes the line at point, all other lines in the agenda referring to
  8321. the same tree node, and the headline of the tree node in the Org-mode file.
  8322. Called with a universal prefix arg, show the priority instead of setting it."
  8323. (interactive "P")
  8324. (if (equal force-direction '(4))
  8325. (org-show-priority)
  8326. (unless org-enable-priority-commands
  8327. (error "Priority commands are disabled"))
  8328. (org-agenda-check-no-diary)
  8329. (let* ((marker (or (org-get-at-bol 'org-marker)
  8330. (org-agenda-error)))
  8331. (hdmarker (org-get-at-bol 'org-hd-marker))
  8332. (buffer (marker-buffer hdmarker))
  8333. (pos (marker-position hdmarker))
  8334. (inhibit-read-only t)
  8335. newhead)
  8336. (org-with-remote-undo buffer
  8337. (with-current-buffer buffer
  8338. (widen)
  8339. (goto-char pos)
  8340. (org-show-context 'agenda)
  8341. (save-excursion
  8342. (and (outline-next-heading)
  8343. (org-flag-heading nil))) ; show the next heading
  8344. (funcall 'org-priority force-direction)
  8345. (end-of-line 1)
  8346. (setq newhead (org-get-heading)))
  8347. (org-agenda-change-all-lines newhead hdmarker)
  8348. (beginning-of-line 1)))))
  8349. ;; FIXME: should fix the tags property of the agenda line.
  8350. (defun org-agenda-set-tags (&optional tag onoff)
  8351. "Set tags for the current headline."
  8352. (interactive)
  8353. (org-agenda-check-no-diary)
  8354. (if (and (org-region-active-p) (org-called-interactively-p 'any))
  8355. (call-interactively 'org-change-tag-in-region)
  8356. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8357. (org-agenda-error)))
  8358. (buffer (marker-buffer hdmarker))
  8359. (pos (marker-position hdmarker))
  8360. (inhibit-read-only t)
  8361. newhead)
  8362. (org-with-remote-undo buffer
  8363. (with-current-buffer buffer
  8364. (widen)
  8365. (goto-char pos)
  8366. (save-excursion
  8367. (org-show-context 'agenda))
  8368. (save-excursion
  8369. (and (outline-next-heading)
  8370. (org-flag-heading nil))) ; show the next heading
  8371. (goto-char pos)
  8372. (if tag
  8373. (org-toggle-tag tag onoff)
  8374. (call-interactively 'org-set-tags))
  8375. (end-of-line 1)
  8376. (setq newhead (org-get-heading)))
  8377. (org-agenda-change-all-lines newhead hdmarker)
  8378. (beginning-of-line 1)))))
  8379. (defun org-agenda-set-property ()
  8380. "Set a property for the current headline."
  8381. (interactive)
  8382. (org-agenda-check-no-diary)
  8383. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8384. (org-agenda-error)))
  8385. (buffer (marker-buffer hdmarker))
  8386. (pos (marker-position hdmarker))
  8387. (inhibit-read-only t)
  8388. newhead)
  8389. (org-with-remote-undo buffer
  8390. (with-current-buffer buffer
  8391. (widen)
  8392. (goto-char pos)
  8393. (save-excursion
  8394. (org-show-context 'agenda))
  8395. (save-excursion
  8396. (and (outline-next-heading)
  8397. (org-flag-heading nil))) ; show the next heading
  8398. (goto-char pos)
  8399. (call-interactively 'org-set-property)))))
  8400. (defun org-agenda-set-effort ()
  8401. "Set the effort property for the current headline."
  8402. (interactive)
  8403. (org-agenda-check-no-diary)
  8404. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8405. (org-agenda-error)))
  8406. (buffer (marker-buffer hdmarker))
  8407. (pos (marker-position hdmarker))
  8408. (inhibit-read-only t)
  8409. newhead)
  8410. (org-with-remote-undo buffer
  8411. (with-current-buffer buffer
  8412. (widen)
  8413. (goto-char pos)
  8414. (save-excursion
  8415. (org-show-context 'agenda))
  8416. (save-excursion
  8417. (and (outline-next-heading)
  8418. (org-flag-heading nil))) ; show the next heading
  8419. (goto-char pos)
  8420. (call-interactively 'org-set-effort)
  8421. (end-of-line 1)
  8422. (setq newhead (org-get-heading)))
  8423. (org-agenda-change-all-lines newhead hdmarker))))
  8424. (defun org-agenda-toggle-archive-tag ()
  8425. "Toggle the archive tag for the current entry."
  8426. (interactive)
  8427. (org-agenda-check-no-diary)
  8428. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8429. (org-agenda-error)))
  8430. (buffer (marker-buffer hdmarker))
  8431. (pos (marker-position hdmarker))
  8432. (inhibit-read-only t)
  8433. newhead)
  8434. (org-with-remote-undo buffer
  8435. (with-current-buffer buffer
  8436. (widen)
  8437. (goto-char pos)
  8438. (org-show-context 'agenda)
  8439. (save-excursion
  8440. (and (outline-next-heading)
  8441. (org-flag-heading nil))) ; show the next heading
  8442. (call-interactively 'org-toggle-archive-tag)
  8443. (end-of-line 1)
  8444. (setq newhead (org-get-heading)))
  8445. (org-agenda-change-all-lines newhead hdmarker)
  8446. (beginning-of-line 1))))
  8447. (defun org-agenda-do-date-later (arg)
  8448. (interactive "P")
  8449. (cond
  8450. ((or (equal arg '(16))
  8451. (memq last-command
  8452. '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
  8453. (setq this-command 'org-agenda-date-later-minutes)
  8454. (org-agenda-date-later-minutes 1))
  8455. ((or (equal arg '(4))
  8456. (memq last-command
  8457. '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
  8458. (setq this-command 'org-agenda-date-later-hours)
  8459. (org-agenda-date-later-hours 1))
  8460. (t
  8461. (org-agenda-date-later (prefix-numeric-value arg)))))
  8462. (defun org-agenda-do-date-earlier (arg)
  8463. (interactive "P")
  8464. (cond
  8465. ((or (equal arg '(16))
  8466. (memq last-command
  8467. '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
  8468. (setq this-command 'org-agenda-date-earlier-minutes)
  8469. (org-agenda-date-earlier-minutes 1))
  8470. ((or (equal arg '(4))
  8471. (memq last-command
  8472. '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
  8473. (setq this-command 'org-agenda-date-earlier-hours)
  8474. (org-agenda-date-earlier-hours 1))
  8475. (t
  8476. (org-agenda-date-earlier (prefix-numeric-value arg)))))
  8477. (defun org-agenda-date-later (arg &optional what)
  8478. "Change the date of this item to ARG day(s) later."
  8479. (interactive "p")
  8480. (org-agenda-check-type t 'agenda 'timeline)
  8481. (org-agenda-check-no-diary)
  8482. (let* ((marker (or (org-get-at-bol 'org-marker)
  8483. (org-agenda-error)))
  8484. (buffer (marker-buffer marker))
  8485. (pos (marker-position marker))
  8486. cdate today)
  8487. (org-with-remote-undo buffer
  8488. (with-current-buffer buffer
  8489. (widen)
  8490. (goto-char pos)
  8491. (if (not (org-at-timestamp-p))
  8492. (error "Cannot find time stamp"))
  8493. (when (and org-agenda-move-date-from-past-immediately-to-today
  8494. (equal arg 1)
  8495. (or (not what) (eq what 'day))
  8496. (not (save-match-data (org-at-date-range-p))))
  8497. (setq cdate (org-parse-time-string (match-string 0) 'nodefault)
  8498. cdate (calendar-absolute-from-gregorian
  8499. (list (nth 4 cdate) (nth 3 cdate) (nth 5 cdate)))
  8500. today (org-today))
  8501. (if (> today cdate)
  8502. ;; immediately shift to today
  8503. (setq arg (- today cdate))))
  8504. (org-timestamp-change arg (or what 'day))
  8505. (when (and (org-at-date-range-p)
  8506. (re-search-backward org-tr-regexp-both (point-at-bol)))
  8507. (let ((end org-last-changed-timestamp))
  8508. (org-timestamp-change arg (or what 'day))
  8509. (setq org-last-changed-timestamp
  8510. (concat org-last-changed-timestamp "--" end)))))
  8511. (org-agenda-show-new-time marker org-last-changed-timestamp))
  8512. (message "Time stamp changed to %s" org-last-changed-timestamp)))
  8513. (defun org-agenda-date-earlier (arg &optional what)
  8514. "Change the date of this item to ARG day(s) earlier."
  8515. (interactive "p")
  8516. (org-agenda-date-later (- arg) what))
  8517. (defun org-agenda-date-later-minutes (arg)
  8518. "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
  8519. (interactive "p")
  8520. (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
  8521. (org-agenda-date-later arg 'minute))
  8522. (defun org-agenda-date-earlier-minutes (arg)
  8523. "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
  8524. (interactive "p")
  8525. (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
  8526. (org-agenda-date-earlier arg 'minute))
  8527. (defun org-agenda-date-later-hours (arg)
  8528. "Change the time of this item, in hour steps."
  8529. (interactive "p")
  8530. (org-agenda-date-later arg 'hour))
  8531. (defun org-agenda-date-earlier-hours (arg)
  8532. "Change the time of this item, in hour steps."
  8533. (interactive "p")
  8534. (org-agenda-date-earlier arg 'hour))
  8535. (defun org-agenda-show-new-time (marker stamp &optional prefix)
  8536. "Show new date stamp via text properties."
  8537. ;; We use text properties to make this undoable
  8538. (let ((inhibit-read-only t))
  8539. (setq stamp (concat prefix " => " stamp " "))
  8540. (save-excursion
  8541. (goto-char (point-max))
  8542. (while (not (bobp))
  8543. (when (equal marker (org-get-at-bol 'org-marker))
  8544. (org-move-to-column (- (window-width) (length stamp)) t nil t)
  8545. (org-agenda-fix-tags-filter-overlays-at (point))
  8546. (if (featurep 'xemacs)
  8547. ;; Use `duplicable' property to trigger undo recording
  8548. (let ((ex (make-extent nil nil))
  8549. (gl (make-glyph stamp)))
  8550. (set-glyph-face gl 'secondary-selection)
  8551. (set-extent-properties
  8552. ex (list 'invisible t 'end-glyph gl 'duplicable t))
  8553. (insert-extent ex (1- (point)) (point-at-eol)))
  8554. (add-text-properties
  8555. (1- (point)) (point-at-eol)
  8556. (list 'display (org-add-props stamp nil
  8557. 'face 'secondary-selection))))
  8558. (beginning-of-line 1))
  8559. (beginning-of-line 0)))))
  8560. (defun org-agenda-date-prompt (arg)
  8561. "Change the date of this item. Date is prompted for, with default today.
  8562. The prefix ARG is passed to the `org-time-stamp' command and can therefore
  8563. be used to request time specification in the time stamp."
  8564. (interactive "P")
  8565. (org-agenda-check-type t 'agenda 'timeline)
  8566. (org-agenda-check-no-diary)
  8567. (let* ((marker (or (org-get-at-bol 'org-marker)
  8568. (org-agenda-error)))
  8569. (buffer (marker-buffer marker))
  8570. (pos (marker-position marker)))
  8571. (org-with-remote-undo buffer
  8572. (with-current-buffer buffer
  8573. (widen)
  8574. (goto-char pos)
  8575. (if (not (org-at-timestamp-p t))
  8576. (error "Cannot find time stamp"))
  8577. (org-time-stamp arg (equal (char-after (match-beginning 0)) ?\[)))
  8578. (org-agenda-show-new-time marker org-last-changed-timestamp))
  8579. (message "Time stamp changed to %s" org-last-changed-timestamp)))
  8580. (defun org-agenda-schedule (arg &optional time)
  8581. "Schedule the item at point.
  8582. ARG is passed through to `org-schedule'."
  8583. (interactive "P")
  8584. (org-agenda-check-type t 'agenda 'timeline 'todo 'tags 'search)
  8585. (org-agenda-check-no-diary)
  8586. (let* ((marker (or (org-get-at-bol 'org-marker)
  8587. (org-agenda-error)))
  8588. (type (marker-insertion-type marker))
  8589. (buffer (marker-buffer marker))
  8590. (pos (marker-position marker))
  8591. (org-insert-labeled-timestamps-at-point nil)
  8592. ts)
  8593. (set-marker-insertion-type marker t)
  8594. (org-with-remote-undo buffer
  8595. (with-current-buffer buffer
  8596. (widen)
  8597. (goto-char pos)
  8598. (setq ts (org-schedule arg time)))
  8599. (org-agenda-show-new-time marker ts " S"))
  8600. (message "%s" ts)))
  8601. (defun org-agenda-deadline (arg &optional time)
  8602. "Schedule the item at point.
  8603. ARG is passed through to `org-deadline'."
  8604. (interactive "P")
  8605. (org-agenda-check-type t 'agenda 'timeline 'todo 'tags 'search)
  8606. (org-agenda-check-no-diary)
  8607. (let* ((marker (or (org-get-at-bol 'org-marker)
  8608. (org-agenda-error)))
  8609. (buffer (marker-buffer marker))
  8610. (pos (marker-position marker))
  8611. (org-insert-labeled-timestamps-at-point nil)
  8612. ts)
  8613. (org-with-remote-undo buffer
  8614. (with-current-buffer buffer
  8615. (widen)
  8616. (goto-char pos)
  8617. (setq ts (org-deadline arg time)))
  8618. (org-agenda-show-new-time marker ts " D"))
  8619. (message "%s" ts)))
  8620. (defun org-agenda-clock-in (&optional arg)
  8621. "Start the clock on the currently selected item."
  8622. (interactive "P")
  8623. (org-agenda-check-no-diary)
  8624. (if (equal arg '(4))
  8625. (org-clock-in arg)
  8626. (let* ((marker (or (org-get-at-bol 'org-marker)
  8627. (org-agenda-error)))
  8628. (hdmarker (or (org-get-at-bol 'org-hd-marker) marker))
  8629. (pos (marker-position marker))
  8630. (col (current-column))
  8631. newhead)
  8632. (org-with-remote-undo (marker-buffer marker)
  8633. (with-current-buffer (marker-buffer marker)
  8634. (widen)
  8635. (goto-char pos)
  8636. (org-show-context 'agenda)
  8637. (org-show-entry)
  8638. (org-cycle-hide-drawers 'children)
  8639. (org-clock-in arg)
  8640. (setq newhead (org-get-heading)))
  8641. (org-agenda-change-all-lines newhead hdmarker))
  8642. (org-move-to-column col))))
  8643. (defun org-agenda-clock-out ()
  8644. "Stop the currently running clock."
  8645. (interactive)
  8646. (unless (marker-buffer org-clock-marker)
  8647. (error "No running clock"))
  8648. (let ((marker (make-marker)) (col (current-column)) newhead)
  8649. (org-with-remote-undo (marker-buffer org-clock-marker)
  8650. (with-current-buffer (marker-buffer org-clock-marker)
  8651. (save-excursion
  8652. (save-restriction
  8653. (widen)
  8654. (goto-char org-clock-marker)
  8655. (org-back-to-heading t)
  8656. (move-marker marker (point))
  8657. (org-clock-out)
  8658. (setq newhead (org-get-heading))))))
  8659. (org-agenda-change-all-lines newhead marker)
  8660. (move-marker marker nil)
  8661. (org-move-to-column col)
  8662. (org-agenda-unmark-clocking-task)))
  8663. (defun org-agenda-clock-cancel (&optional arg)
  8664. "Cancel the currently running clock."
  8665. (interactive "P")
  8666. (unless (marker-buffer org-clock-marker)
  8667. (user-error "No running clock"))
  8668. (org-with-remote-undo (marker-buffer org-clock-marker)
  8669. (org-clock-cancel)))
  8670. (defun org-agenda-clock-goto ()
  8671. "Jump to the currently clocked in task within the agenda.
  8672. If the currently clocked in task is not listed in the agenda
  8673. buffer, display it in another window."
  8674. (interactive)
  8675. (let (pos)
  8676. (mapc (lambda (o)
  8677. (if (eq (overlay-get o 'type) 'org-agenda-clocking)
  8678. (setq pos (overlay-start o))))
  8679. (overlays-in (point-min) (point-max)))
  8680. (cond (pos (goto-char pos))
  8681. ;; If the currently clocked entry is not in the agenda
  8682. ;; buffer, we visit it in another window:
  8683. (org-clock-current-task
  8684. (org-switch-to-buffer-other-window (org-clock-goto)))
  8685. (t (message "No running clock, use `C-c C-x C-j' to jump to the most recent one")))))
  8686. (defun org-agenda-diary-entry-in-org-file ()
  8687. "Make a diary entry in the file `org-agenda-diary-file'."
  8688. (let (d1 d2 char (text "") dp1 dp2)
  8689. (if (equal (buffer-name) "*Calendar*")
  8690. (setq d1 (calendar-cursor-to-date t)
  8691. d2 (car calendar-mark-ring))
  8692. (setq dp1 (get-text-property (point-at-bol) 'day))
  8693. (unless dp1 (user-error "No date defined in current line"))
  8694. (setq d1 (calendar-gregorian-from-absolute dp1)
  8695. d2 (and (ignore-errors (mark))
  8696. (save-excursion
  8697. (goto-char (mark))
  8698. (setq dp2 (get-text-property (point-at-bol) 'day)))
  8699. (calendar-gregorian-from-absolute dp2))))
  8700. (message "Diary entry: [d]ay [a]nniversary [b]lock [j]ump to date tree")
  8701. (setq char (read-char-exclusive))
  8702. (cond
  8703. ((equal char ?d)
  8704. (setq text (read-string "Day entry: "))
  8705. (org-agenda-add-entry-to-org-agenda-diary-file 'day text d1)
  8706. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  8707. ((equal char ?a)
  8708. (setq d1 (list (car d1) (nth 1 d1)
  8709. (read-number (format "Reference year [%d]: " (nth 2 d1))
  8710. (nth 2 d1))))
  8711. (setq text (read-string "Anniversary (use %d to show years): "))
  8712. (org-agenda-add-entry-to-org-agenda-diary-file 'anniversary text d1)
  8713. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  8714. ((equal char ?b)
  8715. (setq text (read-string "Block entry: "))
  8716. (unless (and d1 d2 (not (equal d1 d2)))
  8717. (user-error "No block of days selected"))
  8718. (org-agenda-add-entry-to-org-agenda-diary-file 'block text d1 d2)
  8719. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  8720. ((equal char ?j)
  8721. (org-switch-to-buffer-other-window
  8722. (find-file-noselect org-agenda-diary-file))
  8723. (require 'org-datetree)
  8724. (org-datetree-find-date-create d1)
  8725. (org-reveal t))
  8726. (t (user-error "Invalid selection character `%c'" char)))))
  8727. (defcustom org-agenda-insert-diary-strategy 'date-tree
  8728. "Where in `org-agenda-diary-file' should new entries be added?
  8729. Valid values:
  8730. date-tree in the date tree, as child of the date
  8731. top-level as top-level entries at the end of the file."
  8732. :group 'org-agenda
  8733. :type '(choice
  8734. (const :tag "in a date tree" date-tree)
  8735. (const :tag "as top level at end of file" top-level)))
  8736. (defcustom org-agenda-insert-diary-extract-time nil
  8737. "Non-nil means extract any time specification from the diary entry."
  8738. :group 'org-agenda
  8739. :version "24.1"
  8740. :type 'boolean)
  8741. (defcustom org-agenda-bulk-mark-char ">"
  8742. "A single-character string to be used as the bulk mark."
  8743. :group 'org-agenda
  8744. :version "24.1"
  8745. :type 'string)
  8746. (defun org-agenda-add-entry-to-org-agenda-diary-file (type text &optional d1 d2)
  8747. "Add a diary entry with TYPE to `org-agenda-diary-file'.
  8748. If TEXT is not empty, it will become the headline of the new entry, and
  8749. the resulting entry will not be shown. When TEXT is empty, switch to
  8750. `org-agenda-diary-file' and let the user finish the entry there."
  8751. (let ((cw (current-window-configuration)))
  8752. (org-switch-to-buffer-other-window
  8753. (find-file-noselect org-agenda-diary-file))
  8754. (widen)
  8755. (goto-char (point-min))
  8756. (cond
  8757. ((eq type 'anniversary)
  8758. (or (re-search-forward "^*[ \t]+Anniversaries" nil t)
  8759. (progn
  8760. (or (org-at-heading-p t)
  8761. (progn
  8762. (outline-next-heading)
  8763. (insert "* Anniversaries\n\n")
  8764. (beginning-of-line -1)))))
  8765. (outline-next-heading)
  8766. (org-back-over-empty-lines)
  8767. (backward-char 1)
  8768. (insert "\n")
  8769. (insert (format "%%%%(org-anniversary %d %2d %2d) %s"
  8770. (nth 2 d1) (car d1) (nth 1 d1) text)))
  8771. ((eq type 'day)
  8772. (let ((org-prefix-has-time t)
  8773. (org-agenda-time-leading-zero t)
  8774. fmt time time2)
  8775. (if org-agenda-insert-diary-extract-time
  8776. ;; Use org-agenda-format-item to parse text for a time-range and
  8777. ;; remove it. FIXME: This is a hack, we should refactor
  8778. ;; that function to make time extraction available separately
  8779. (setq fmt (org-agenda-format-item nil text nil nil nil t)
  8780. time (get-text-property 0 'time fmt)
  8781. time2 (if (> (length time) 0)
  8782. ;; split-string removes trailing ...... if
  8783. ;; no end time given. First space
  8784. ;; separates time from date.
  8785. (concat " " (car (split-string time "\\.")))
  8786. nil)
  8787. text (get-text-property 0 'txt fmt)))
  8788. (if (eq org-agenda-insert-diary-strategy 'top-level)
  8789. (org-agenda-insert-diary-as-top-level text)
  8790. (require 'org-datetree)
  8791. (org-datetree-find-date-create d1)
  8792. (org-agenda-insert-diary-make-new-entry text))
  8793. (org-insert-time-stamp (org-time-from-absolute
  8794. (calendar-absolute-from-gregorian d1))
  8795. nil nil nil nil time2))
  8796. (end-of-line 0))
  8797. ((eq type 'block)
  8798. (if (> (calendar-absolute-from-gregorian d1)
  8799. (calendar-absolute-from-gregorian d2))
  8800. (setq d1 (prog1 d2 (setq d2 d1))))
  8801. (if (eq org-agenda-insert-diary-strategy 'top-level)
  8802. (org-agenda-insert-diary-as-top-level text)
  8803. (require 'org-datetree)
  8804. (org-datetree-find-date-create d1)
  8805. (org-agenda-insert-diary-make-new-entry text))
  8806. (org-insert-time-stamp (org-time-from-absolute
  8807. (calendar-absolute-from-gregorian d1)))
  8808. (insert "--")
  8809. (org-insert-time-stamp (org-time-from-absolute
  8810. (calendar-absolute-from-gregorian d2)))
  8811. (end-of-line 0)))
  8812. (if (string-match "\\S-" text)
  8813. (progn
  8814. (set-window-configuration cw)
  8815. (message "%s entry added to %s"
  8816. (capitalize (symbol-name type))
  8817. (abbreviate-file-name org-agenda-diary-file)))
  8818. (org-reveal t)
  8819. (message "Please finish entry here"))))
  8820. (defun org-agenda-insert-diary-as-top-level (text)
  8821. "Make new entry as a top-level entry at the end of the file.
  8822. Add TEXT as headline, and position the cursor in the second line so that
  8823. a timestamp can be added there."
  8824. (widen)
  8825. (goto-char (point-max))
  8826. (or (bolp) (insert "\n"))
  8827. (insert "* " text "\n")
  8828. (if org-adapt-indentation (org-indent-to-column 2)))
  8829. (defun org-agenda-insert-diary-make-new-entry (text)
  8830. "Make new entry as last child of current entry.
  8831. Add TEXT as headline, and position the cursor in the second line so that
  8832. a timestamp can be added there."
  8833. (let ((org-show-following-heading t)
  8834. (org-show-siblings t)
  8835. (org-show-hierarchy-above t)
  8836. (org-show-entry-below t)
  8837. col)
  8838. (outline-next-heading)
  8839. (org-back-over-empty-lines)
  8840. (or (looking-at "[ \t]*$")
  8841. (progn (insert "\n") (backward-char 1)))
  8842. (org-insert-heading nil t)
  8843. (org-do-demote)
  8844. (setq col (current-column))
  8845. (insert text "\n")
  8846. (if org-adapt-indentation (org-indent-to-column col))
  8847. (let ((org-show-following-heading t)
  8848. (org-show-siblings t)
  8849. (org-show-hierarchy-above t)
  8850. (org-show-entry-below t))
  8851. (org-show-context))))
  8852. (defun org-agenda-diary-entry ()
  8853. "Make a diary entry, like the `i' command from the calendar.
  8854. All the standard commands work: block, weekly etc.
  8855. When `org-agenda-diary-file' points to a file,
  8856. `org-agenda-diary-entry-in-org-file' is called instead to create
  8857. entries in that Org-mode file."
  8858. (interactive)
  8859. (if (not (eq org-agenda-diary-file 'diary-file))
  8860. (org-agenda-diary-entry-in-org-file)
  8861. (require 'diary-lib)
  8862. (let* ((char (progn
  8863. (message "Diary entry: [d]ay [w]eekly [m]onthly [y]early [a]nniversary [b]lock [c]yclic")
  8864. (read-char-exclusive)))
  8865. (cmd (cdr (assoc char
  8866. '((?d . insert-diary-entry)
  8867. (?w . insert-weekly-diary-entry)
  8868. (?m . insert-monthly-diary-entry)
  8869. (?y . insert-yearly-diary-entry)
  8870. (?a . insert-anniversary-diary-entry)
  8871. (?b . insert-block-diary-entry)
  8872. (?c . insert-cyclic-diary-entry)))))
  8873. (oldf (symbol-function 'calendar-cursor-to-date))
  8874. ;; (buf (get-file-buffer (substitute-in-file-name diary-file)))
  8875. (point (point))
  8876. (mark (or (mark t) (point))))
  8877. (unless cmd
  8878. (user-error "No command associated with <%c>" char))
  8879. (unless (and (get-text-property point 'day)
  8880. (or (not (equal ?b char))
  8881. (get-text-property mark 'day)))
  8882. (user-error "Don't know which date to use for diary entry"))
  8883. ;; We implement this by hacking the `calendar-cursor-to-date' function
  8884. ;; and the `calendar-mark-ring' variable. Saves a lot of code.
  8885. (let ((calendar-mark-ring
  8886. (list (calendar-gregorian-from-absolute
  8887. (or (get-text-property mark 'day)
  8888. (get-text-property point 'day))))))
  8889. (unwind-protect
  8890. (progn
  8891. (fset 'calendar-cursor-to-date
  8892. (lambda (&optional error dummy)
  8893. (calendar-gregorian-from-absolute
  8894. (get-text-property point 'day))))
  8895. (call-interactively cmd))
  8896. (fset 'calendar-cursor-to-date oldf))))))
  8897. (defun org-agenda-execute-calendar-command (cmd)
  8898. "Execute a calendar command from the agenda with date from cursor."
  8899. (org-agenda-check-type t 'agenda 'timeline)
  8900. (require 'diary-lib)
  8901. (unless (get-text-property (min (1- (point-max)) (point)) 'day)
  8902. (user-error "Don't know which date to use for the calendar command"))
  8903. (let* ((oldf (symbol-function 'calendar-cursor-to-date))
  8904. (point (point))
  8905. (date (calendar-gregorian-from-absolute
  8906. (get-text-property point 'day)))
  8907. ;; the following 2 vars are needed in the calendar
  8908. (displayed-month (car date))
  8909. (displayed-year (nth 2 date)))
  8910. (unwind-protect
  8911. (progn
  8912. (fset 'calendar-cursor-to-date
  8913. (lambda (&optional error dummy)
  8914. (calendar-gregorian-from-absolute
  8915. (get-text-property point 'day))))
  8916. (call-interactively cmd))
  8917. (fset 'calendar-cursor-to-date oldf))))
  8918. (defun org-agenda-phases-of-moon ()
  8919. "Display the phases of the moon for the 3 months around the cursor date."
  8920. (interactive)
  8921. (org-agenda-execute-calendar-command 'calendar-phases-of-moon))
  8922. (defun org-agenda-holidays ()
  8923. "Display the holidays for the 3 months around the cursor date."
  8924. (interactive)
  8925. (org-agenda-execute-calendar-command 'list-calendar-holidays))
  8926. (defvar calendar-longitude) ; defined in calendar.el
  8927. (defvar calendar-latitude) ; defined in calendar.el
  8928. (defvar calendar-location-name) ; defined in calendar.el
  8929. (defun org-agenda-sunrise-sunset (arg)
  8930. "Display sunrise and sunset for the cursor date.
  8931. Latitude and longitude can be specified with the variables
  8932. `calendar-latitude' and `calendar-longitude'. When called with prefix
  8933. argument, latitude and longitude will be prompted for."
  8934. (interactive "P")
  8935. (require 'solar)
  8936. (let ((calendar-longitude (if arg nil calendar-longitude))
  8937. (calendar-latitude (if arg nil calendar-latitude))
  8938. (calendar-location-name
  8939. (if arg "the given coordinates" calendar-location-name)))
  8940. (org-agenda-execute-calendar-command 'calendar-sunrise-sunset)))
  8941. (defun org-agenda-goto-calendar ()
  8942. "Open the Emacs calendar with the date at the cursor."
  8943. (interactive)
  8944. (org-agenda-check-type t 'agenda 'timeline)
  8945. (let* ((day (or (get-text-property (min (1- (point-max)) (point)) 'day)
  8946. (user-error "Don't know which date to open in calendar")))
  8947. (date (calendar-gregorian-from-absolute day))
  8948. (calendar-move-hook nil)
  8949. (calendar-view-holidays-initially-flag nil)
  8950. (calendar-view-diary-initially-flag nil))
  8951. (calendar)
  8952. (calendar-goto-date date)))
  8953. ;;;###autoload
  8954. (defun org-calendar-goto-agenda ()
  8955. "Compute the Org-mode agenda for the calendar date displayed at the cursor.
  8956. This is a command that has to be installed in `calendar-mode-map'."
  8957. (interactive)
  8958. (org-agenda-list nil (calendar-absolute-from-gregorian
  8959. (calendar-cursor-to-date))
  8960. nil))
  8961. (defun org-agenda-convert-date ()
  8962. (interactive)
  8963. (org-agenda-check-type t 'agenda 'timeline)
  8964. (let ((day (get-text-property (min (1- (point-max)) (point)) 'day))
  8965. date s)
  8966. (unless day
  8967. (user-error "Don't know which date to convert"))
  8968. (setq date (calendar-gregorian-from-absolute day))
  8969. (setq s (concat
  8970. "Gregorian: " (calendar-date-string date) "\n"
  8971. "ISO: " (calendar-iso-date-string date) "\n"
  8972. "Day of Yr: " (calendar-day-of-year-string date) "\n"
  8973. "Julian: " (calendar-julian-date-string date) "\n"
  8974. "Astron. JD: " (calendar-astro-date-string date)
  8975. " (Julian date number at noon UTC)\n"
  8976. "Hebrew: " (calendar-hebrew-date-string date) " (until sunset)\n"
  8977. "Islamic: " (calendar-islamic-date-string date) " (until sunset)\n"
  8978. "French: " (calendar-french-date-string date) "\n"
  8979. "Baha'i: " (calendar-bahai-date-string date) " (until sunset)\n"
  8980. "Mayan: " (calendar-mayan-date-string date) "\n"
  8981. "Coptic: " (calendar-coptic-date-string date) "\n"
  8982. "Ethiopic: " (calendar-ethiopic-date-string date) "\n"
  8983. "Persian: " (calendar-persian-date-string date) "\n"
  8984. "Chinese: " (calendar-chinese-date-string date) "\n"))
  8985. (with-output-to-temp-buffer "*Dates*"
  8986. (princ s))
  8987. (org-fit-window-to-buffer (get-buffer-window "*Dates*"))))
  8988. ;;; Bulk commands
  8989. (defun org-agenda-bulk-marked-p ()
  8990. (eq (get-char-property (point-at-bol) 'type)
  8991. 'org-marked-entry-overlay))
  8992. (defun org-agenda-bulk-mark (&optional arg)
  8993. "Mark the entry at point for future bulk action."
  8994. (interactive "p")
  8995. (dotimes (i (or arg 1))
  8996. (unless (org-get-at-bol 'org-agenda-diary-link)
  8997. (let* ((m (org-get-at-bol 'org-hd-marker))
  8998. ov)
  8999. (unless (org-agenda-bulk-marked-p)
  9000. (unless m (user-error "Nothing to mark at point"))
  9001. (push m org-agenda-bulk-marked-entries)
  9002. (setq ov (make-overlay (point-at-bol) (+ 2 (point-at-bol))))
  9003. (org-overlay-display ov (concat org-agenda-bulk-mark-char " ")
  9004. (org-get-todo-face "TODO")
  9005. 'evaporate)
  9006. (overlay-put ov 'type 'org-marked-entry-overlay))
  9007. (end-of-line 1)
  9008. (or (ignore-errors
  9009. (goto-char (next-single-property-change (point) 'txt)))
  9010. (beginning-of-line 2))
  9011. (while (and (get-char-property (point) 'invisible) (not (eobp)))
  9012. (beginning-of-line 2))
  9013. (message "%d entries marked for bulk action"
  9014. (length org-agenda-bulk-marked-entries))))))
  9015. (defun org-agenda-bulk-mark-all ()
  9016. "Mark all entries for future agenda bulk action."
  9017. (interactive)
  9018. (org-agenda-bulk-mark-regexp "."))
  9019. (defun org-agenda-bulk-mark-regexp (regexp)
  9020. "Mark entries matching REGEXP for future agenda bulk action."
  9021. (interactive "sMark entries matching regexp: ")
  9022. (let ((entries-marked 0) txt-at-point)
  9023. (save-excursion
  9024. (goto-char (point-min))
  9025. (goto-char (next-single-property-change (point) 'txt))
  9026. (while (and (re-search-forward regexp nil t)
  9027. (setq txt-at-point (get-text-property (point) 'txt)))
  9028. (when (string-match regexp txt-at-point)
  9029. (setq entries-marked (1+ entries-marked))
  9030. (call-interactively 'org-agenda-bulk-mark))))
  9031. (if (not entries-marked)
  9032. (message "No entry matching this regexp."))))
  9033. (defun org-agenda-bulk-unmark (&optional arg)
  9034. "Unmark the entry at point for future bulk action."
  9035. (interactive "P")
  9036. (if arg
  9037. (org-agenda-bulk-unmark-all)
  9038. (cond ((org-agenda-bulk-marked-p)
  9039. (org-agenda-bulk-remove-overlays
  9040. (point-at-bol) (+ 2 (point-at-bol)))
  9041. (setq org-agenda-bulk-marked-entries
  9042. (delete (org-get-at-bol 'org-hd-marker)
  9043. org-agenda-bulk-marked-entries))
  9044. (end-of-line 1)
  9045. (or (ignore-errors
  9046. (goto-char (next-single-property-change (point) 'txt)))
  9047. (beginning-of-line 2))
  9048. (while (and (get-char-property (point) 'invisible) (not (eobp)))
  9049. (beginning-of-line 2))
  9050. (message "%d entries left marked for bulk action"
  9051. (length org-agenda-bulk-marked-entries)))
  9052. (t (message "No entry to unmark here")))))
  9053. (defun org-agenda-bulk-toggle-all ()
  9054. "Toggle all marks for bulk action."
  9055. (interactive)
  9056. (save-excursion
  9057. (goto-char (point-min))
  9058. (while (ignore-errors
  9059. (goto-char (next-single-property-change (point) 'txt)))
  9060. (org-agenda-bulk-toggle))))
  9061. (defun org-agenda-bulk-toggle ()
  9062. "Toggle the mark at point for bulk action."
  9063. (interactive)
  9064. (if (org-agenda-bulk-marked-p)
  9065. (org-agenda-bulk-unmark)
  9066. (org-agenda-bulk-mark)))
  9067. (defun org-agenda-bulk-remove-overlays (&optional beg end)
  9068. "Remove the mark overlays between BEG and END in the agenda buffer.
  9069. BEG and END default to the buffer limits.
  9070. This only removes the overlays, it does not remove the markers
  9071. from the list in `org-agenda-bulk-marked-entries'."
  9072. (interactive)
  9073. (mapc (lambda (ov)
  9074. (and (eq (overlay-get ov 'type) 'org-marked-entry-overlay)
  9075. (delete-overlay ov)))
  9076. (overlays-in (or beg (point-min)) (or end (point-max)))))
  9077. (defun org-agenda-bulk-unmark-all ()
  9078. "Remove all marks in the agenda buffer.
  9079. This will remove the markers and the overlays."
  9080. (interactive)
  9081. (if (null org-agenda-bulk-marked-entries)
  9082. (message "No entry to unmark")
  9083. (mapc (lambda (m) (move-marker m nil)) org-agenda-bulk-marked-entries)
  9084. (setq org-agenda-bulk-marked-entries nil)
  9085. (org-agenda-bulk-remove-overlays (point-min) (point-max))))
  9086. (defcustom org-agenda-persistent-marks nil
  9087. "Non-nil means marked items will stay marked after a bulk action.
  9088. You can toggle this interactively by typing `p' when prompted for a
  9089. bulk action."
  9090. :group 'org-agenda
  9091. :version "24.1"
  9092. :type 'boolean)
  9093. (defun org-agenda-bulk-action (&optional arg)
  9094. "Execute an remote-editing action on all marked entries.
  9095. The prefix arg is passed through to the command if possible."
  9096. (interactive "P")
  9097. ;; Make sure we have markers, and only valid ones
  9098. (unless org-agenda-bulk-marked-entries (user-error "No entries are marked"))
  9099. (mapc
  9100. (lambda (m)
  9101. (unless (and (markerp m)
  9102. (marker-buffer m)
  9103. (buffer-live-p (marker-buffer m))
  9104. (marker-position m))
  9105. (user-error "Marker %s for bulk command is invalid" m)))
  9106. org-agenda-bulk-marked-entries)
  9107. ;; Prompt for the bulk command
  9108. (let* ((msg (if org-agenda-persistent-marks "Bulk (persistent): " "Bulk: ")))
  9109. (message (concat msg "[$]arch [A]rch->sib [t]odo [+/-]tag [s]chd [d]eadline [r]efile "
  9110. "[S]catter [f]unction "
  9111. (when org-agenda-bulk-custom-functions
  9112. (concat " Custom: ["
  9113. (mapconcat (lambda(f) (char-to-string (car f)))
  9114. org-agenda-bulk-custom-functions "")
  9115. "]"))))
  9116. (catch 'exit
  9117. (let* ((action (read-char-exclusive))
  9118. (org-log-refile (if org-log-refile 'time nil))
  9119. (entries (reverse org-agenda-bulk-marked-entries))
  9120. (org-overriding-default-time
  9121. (if (get-text-property (point) 'org-agenda-date-header)
  9122. (org-get-cursor-date)))
  9123. redo-at-end
  9124. cmd rfloc state e tag pos (cnt 0) (cntskip 0))
  9125. (cond
  9126. ((equal action ?p)
  9127. (let ((org-agenda-persistent-marks
  9128. (not org-agenda-persistent-marks)))
  9129. (org-agenda-bulk-action)
  9130. (throw 'exit nil)))
  9131. ((equal action ?$)
  9132. (setq cmd '(org-agenda-archive)))
  9133. ((equal action ?A)
  9134. (setq cmd '(org-agenda-archive-to-archive-sibling)))
  9135. ((member action '(?r ?w))
  9136. (setq rfloc (org-refile-get-location
  9137. "Refile to"
  9138. (marker-buffer (car entries))
  9139. org-refile-allow-creating-parent-nodes))
  9140. (if (nth 3 rfloc)
  9141. (setcar (nthcdr 3 rfloc)
  9142. (move-marker (make-marker) (nth 3 rfloc)
  9143. (or (get-file-buffer (nth 1 rfloc))
  9144. (find-buffer-visiting (nth 1 rfloc))
  9145. (error "This should not happen")))))
  9146. (setq cmd (list 'org-agenda-refile nil (list 'quote rfloc) t)
  9147. redo-at-end t))
  9148. ((equal action ?t)
  9149. (setq state (org-icompleting-read
  9150. "Todo state: "
  9151. (with-current-buffer (marker-buffer (car entries))
  9152. (mapcar 'list org-todo-keywords-1))))
  9153. (setq cmd `(let ((org-inhibit-blocking t)
  9154. (org-inhibit-logging 'note))
  9155. (org-agenda-todo ,state))))
  9156. ((memq action '(?- ?+))
  9157. (setq tag (org-icompleting-read
  9158. (format "Tag to %s: " (if (eq action ?+) "add" "remove"))
  9159. (with-current-buffer (marker-buffer (car entries))
  9160. (delq nil
  9161. (mapcar (lambda (x)
  9162. (if (stringp (car x)) x)) org-tag-alist)))))
  9163. (setq cmd `(org-agenda-set-tags ,tag ,(if (eq action ?+) ''on ''off))))
  9164. ((memq action '(?s ?d))
  9165. (let* ((time
  9166. (unless arg
  9167. (org-read-date
  9168. nil nil nil
  9169. (if (eq action ?s) "(Re)Schedule to" "(Re)Set Deadline to")
  9170. org-overriding-default-time)))
  9171. (c1 (if (eq action ?s) 'org-agenda-schedule 'org-agenda-deadline)))
  9172. (setq cmd `(eval '(,c1 arg ,time)))))
  9173. ((equal action ?S)
  9174. (if (not (org-agenda-check-type nil 'agenda 'timeline 'todo))
  9175. (user-error "Can't scatter tasks in \"%s\" agenda view" org-agenda-type)
  9176. (let ((days (read-number
  9177. (format "Scatter tasks across how many %sdays: "
  9178. (if arg "week" "")) 7)))
  9179. (setq cmd
  9180. `(let ((distance (1+ (random ,days))))
  9181. (if arg
  9182. (let ((dist distance)
  9183. (day-of-week
  9184. (calendar-day-of-week
  9185. (calendar-gregorian-from-absolute (org-today)))))
  9186. (dotimes (i (1+ dist))
  9187. (while (member day-of-week org-agenda-weekend-days)
  9188. (incf distance)
  9189. (incf day-of-week)
  9190. (if (= day-of-week 7)
  9191. (setq day-of-week 0)))
  9192. (incf day-of-week)
  9193. (if (= day-of-week 7)
  9194. (setq day-of-week 0)))))
  9195. ;; silently fail when try to replan a sexp entry
  9196. (condition-case nil
  9197. (let* ((date (calendar-gregorian-from-absolute
  9198. (+ (org-today) distance)))
  9199. (time (encode-time 0 0 0 (nth 1 date) (nth 0 date)
  9200. (nth 2 date))))
  9201. (org-agenda-schedule nil time))
  9202. (error nil)))))))
  9203. ((assoc action org-agenda-bulk-custom-functions)
  9204. (setq cmd (list (cadr (assoc action org-agenda-bulk-custom-functions)))
  9205. redo-at-end t))
  9206. ((equal action ?f)
  9207. (setq cmd (list (intern
  9208. (org-icompleting-read "Function: "
  9209. obarray 'fboundp t nil nil)))))
  9210. (t (user-error "Invalid bulk action")))
  9211. ;; Sort the markers, to make sure that parents are handled before children
  9212. (setq entries (sort entries
  9213. (lambda (a b)
  9214. (cond
  9215. ((equal (marker-buffer a) (marker-buffer b))
  9216. (< (marker-position a) (marker-position b)))
  9217. (t
  9218. (string< (buffer-name (marker-buffer a))
  9219. (buffer-name (marker-buffer b))))))))
  9220. ;; Now loop over all markers and apply cmd
  9221. (while (setq e (pop entries))
  9222. (setq pos (text-property-any (point-min) (point-max) 'org-hd-marker e))
  9223. (if (not pos)
  9224. (progn (message "Skipping removed entry at %s" e)
  9225. (setq cntskip (1+ cntskip)))
  9226. (goto-char pos)
  9227. (let (org-loop-over-headlines-in-active-region)
  9228. (eval cmd))
  9229. (setq cnt (1+ cnt))))
  9230. (when redo-at-end (org-agenda-redo))
  9231. (unless org-agenda-persistent-marks
  9232. (org-agenda-bulk-unmark-all))
  9233. (message "Acted on %d entries%s%s"
  9234. cnt
  9235. (if (= cntskip 0)
  9236. ""
  9237. (format ", skipped %d (disappeared before their turn)"
  9238. cntskip))
  9239. (if (not org-agenda-persistent-marks)
  9240. "" " (kept marked)"))))))
  9241. (defun org-agenda-capture (&optional with-time)
  9242. "Call `org-capture' with the date at point.
  9243. With a `C-1' prefix, use the HH:MM value at point (if any) or the
  9244. current HH:MM time."
  9245. (interactive "P")
  9246. (if (not (eq major-mode 'org-agenda-mode))
  9247. (user-error "You cannot do this outside of agenda buffers")
  9248. (let ((org-overriding-default-time
  9249. (org-get-cursor-date (equal with-time 1))))
  9250. (call-interactively 'org-capture))))
  9251. ;;; Dragging agenda lines forward/backward
  9252. (defun org-agenda-drag-line-forward (arg)
  9253. "Drag an agenda line forward by ARG lines."
  9254. (interactive "p")
  9255. (let ((inhibit-read-only t) lst)
  9256. (if (or (not (get-text-property (point) 'txt))
  9257. (save-excursion
  9258. (dotimes (n arg)
  9259. (move-beginning-of-line 2)
  9260. (push (not (get-text-property (point) 'txt)) lst))
  9261. (delq nil lst)))
  9262. (message "Cannot move line forward")
  9263. (org-drag-line-forward arg))))
  9264. (defun org-agenda-drag-line-backward (arg)
  9265. "Drag an agenda line backward by ARG lines."
  9266. (interactive "p")
  9267. (let ((inhibit-read-only t) lst)
  9268. (if (or (not (get-text-property (point) 'txt))
  9269. (save-excursion
  9270. (dotimes (n arg)
  9271. (move-beginning-of-line 0)
  9272. (push (not (get-text-property (point) 'txt)) lst))
  9273. (delq nil lst)))
  9274. (message "Cannot move line backward")
  9275. (org-drag-line-backward arg))))
  9276. ;;; Flagging notes
  9277. (defun org-agenda-show-the-flagging-note ()
  9278. "Display the flagging note in the other window.
  9279. When called a second time in direct sequence, offer to remove the FLAGGING
  9280. tag and (if present) the flagging note."
  9281. (interactive)
  9282. (let ((hdmarker (org-get-at-bol 'org-hd-marker))
  9283. (win (selected-window))
  9284. note heading newhead)
  9285. (unless hdmarker
  9286. (user-error "No linked entry at point"))
  9287. (if (and (eq this-command last-command)
  9288. (y-or-n-p "Unflag and remove any flagging note? "))
  9289. (progn
  9290. (org-agenda-remove-flag hdmarker)
  9291. (let ((win (get-buffer-window "*Flagging Note*")))
  9292. (and win (delete-window win)))
  9293. (message "Entry unflagged"))
  9294. (setq note (org-entry-get hdmarker "THEFLAGGINGNOTE"))
  9295. (unless note
  9296. (user-error "No flagging note"))
  9297. (org-kill-new note)
  9298. (org-switch-to-buffer-other-window "*Flagging Note*")
  9299. (erase-buffer)
  9300. (insert note)
  9301. (goto-char (point-min))
  9302. (while (re-search-forward "\\\\n" nil t)
  9303. (replace-match "\n" t t))
  9304. (goto-char (point-min))
  9305. (select-window win)
  9306. (message "Flagging note pushed to kill ring. Press [?] again to remove tag and note"))))
  9307. (defun org-agenda-remove-flag (marker)
  9308. "Remove the FLAGGED tag and any flagging note in the entry."
  9309. (let (newhead)
  9310. (org-with-point-at marker
  9311. (org-toggle-tag "FLAGGED" 'off)
  9312. (org-entry-delete nil "THEFLAGGINGNOTE")
  9313. (setq newhead (org-get-heading)))
  9314. (org-agenda-change-all-lines newhead marker)
  9315. (message "Entry unflagged")))
  9316. (defun org-agenda-get-any-marker (&optional pos)
  9317. (or (get-text-property (or pos (point-at-bol)) 'org-hd-marker)
  9318. (get-text-property (or pos (point-at-bol)) 'org-marker)))
  9319. ;;; Appointment reminders
  9320. (defvar appt-time-msg-list) ; defined in appt.el
  9321. ;;;###autoload
  9322. (defun org-agenda-to-appt (&optional refresh filter &rest args)
  9323. "Activate appointments found in `org-agenda-files'.
  9324. With a \\[universal-argument] prefix, refresh the list of
  9325. appointments.
  9326. If FILTER is t, interactively prompt the user for a regular
  9327. expression, and filter out entries that don't match it.
  9328. If FILTER is a string, use this string as a regular expression
  9329. for filtering entries out.
  9330. If FILTER is a function, filter out entries against which
  9331. calling the function returns nil. This function takes one
  9332. argument: an entry from `org-agenda-get-day-entries'.
  9333. FILTER can also be an alist with the car of each cell being
  9334. either 'headline or 'category. For example:
  9335. '((headline \"IMPORTANT\")
  9336. (category \"Work\"))
  9337. will only add headlines containing IMPORTANT or headlines
  9338. belonging to the \"Work\" category.
  9339. ARGS are symbols indicating what kind of entries to consider.
  9340. By default `org-agenda-to-appt' will use :deadline*, :scheduled*
  9341. \(i.e., deadlines and scheduled items with a hh:mm specification)
  9342. and :timestamp entries. See the docstring of `org-diary' for
  9343. details and examples.
  9344. If an entry has a APPT_WARNTIME property, its value will be used
  9345. to override `appt-message-warning-time'."
  9346. (interactive "P")
  9347. (if refresh (setq appt-time-msg-list nil))
  9348. (if (eq filter t)
  9349. (setq filter (read-from-minibuffer "Regexp filter: ")))
  9350. (let* ((cnt 0) ; count added events
  9351. (scope (or args '(:deadline* :scheduled* :timestamp)))
  9352. (org-agenda-new-buffers nil)
  9353. (org-deadline-warning-days 0)
  9354. ;; Do not use `org-today' here because appt only takes
  9355. ;; time and without date as argument, so it may pass wrong
  9356. ;; information otherwise
  9357. (today (org-date-to-gregorian
  9358. (time-to-days (current-time))))
  9359. (org-agenda-restrict nil)
  9360. (files (org-agenda-files 'unrestricted)) entries file
  9361. (org-agenda-buffer nil))
  9362. ;; Get all entries which may contain an appt
  9363. (org-agenda-prepare-buffers files)
  9364. (while (setq file (pop files))
  9365. (setq entries
  9366. (delq nil
  9367. (append entries
  9368. (apply 'org-agenda-get-day-entries
  9369. file today scope)))))
  9370. ;; Map thru entries and find if we should filter them out
  9371. (mapc
  9372. (lambda(x)
  9373. (let* ((evt (org-trim
  9374. (replace-regexp-in-string
  9375. org-bracket-link-regexp "\\3"
  9376. (or (get-text-property 1 'txt x) ""))))
  9377. (cat (get-text-property 1 'org-category x))
  9378. (tod (get-text-property 1 'time-of-day x))
  9379. (ok (or (null filter)
  9380. (and (stringp filter) (string-match filter evt))
  9381. (and (functionp filter) (funcall filter x))
  9382. (and (listp filter)
  9383. (let ((cat-filter (cadr (assoc 'category filter)))
  9384. (evt-filter (cadr (assoc 'headline filter))))
  9385. (or (and (stringp cat-filter)
  9386. (string-match cat-filter cat))
  9387. (and (stringp evt-filter)
  9388. (string-match evt-filter evt)))))))
  9389. (wrn (get-text-property 1 'warntime x)))
  9390. ;; FIXME: Shall we remove text-properties for the appt text?
  9391. ;; (setq evt (set-text-properties 0 (length evt) nil evt))
  9392. (when (and ok tod)
  9393. (setq tod (concat "00" (number-to-string tod))
  9394. tod (when (string-match
  9395. "\\([0-9]\\{1,2\\}\\)\\([0-9]\\{2\\}\\)\\'" tod)
  9396. (concat (match-string 1 tod) ":"
  9397. (match-string 2 tod))))
  9398. (if (version< emacs-version "23.3")
  9399. (appt-add tod evt)
  9400. (appt-add tod evt wrn))
  9401. (setq cnt (1+ cnt))))) entries)
  9402. (org-release-buffers org-agenda-new-buffers)
  9403. (if (eq cnt 0)
  9404. (message "No event to add")
  9405. (message "Added %d event%s for today" cnt (if (> cnt 1) "s" "")))))
  9406. (defun org-agenda-todayp (date)
  9407. "Does DATE mean today, when considering `org-extend-today-until'?"
  9408. (let ((today (org-today))
  9409. (date (if (and date (listp date)) (calendar-absolute-from-gregorian date)
  9410. date)))
  9411. (eq date today)))
  9412. (defun org-agenda-todo-yesterday (&optional arg)
  9413. "Like `org-agenda-todo' but the time of change will be 23:59 of yesterday."
  9414. (interactive "P")
  9415. (let* ((hour (third (decode-time
  9416. (org-current-time))))
  9417. (org-extend-today-until (1+ hour)))
  9418. (org-agenda-todo arg)))
  9419. (provide 'org-agenda)
  9420. ;;; org-agenda.el ends here