org-agenda.el 415 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777
  1. ;;; org-agenda.el --- Dynamic task and appointment lists for Org
  2. ;; Copyright (C) 2004-2021 Free Software Foundation, Inc.
  3. ;; Author: Carsten Dominik <carsten at orgmode dot org>
  4. ;; Keywords: outlines, hypermedia, calendar, wp
  5. ;; Homepage: https://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 <https://www.gnu.org/licenses/>.
  19. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  20. ;;
  21. ;;; Commentary:
  22. ;; This file contains the code for creating and using the Agenda for Org.
  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 'cl-lib)
  42. (require 'ol)
  43. (require 'org)
  44. (require 'org-macs)
  45. (require 'org-refile)
  46. (declare-function diary-add-to-list "diary-lib"
  47. (date string specifier &optional marker globcolor literal))
  48. (declare-function calendar-iso-to-absolute "cal-iso" (date))
  49. (declare-function calendar-astro-date-string "cal-julian" (&optional date))
  50. (declare-function calendar-bahai-date-string "cal-bahai" (&optional date))
  51. (declare-function calendar-chinese-date-string "cal-china" (&optional date))
  52. (declare-function calendar-coptic-date-string "cal-coptic" (&optional date))
  53. (declare-function calendar-ethiopic-date-string "cal-coptic" (&optional date))
  54. (declare-function calendar-french-date-string "cal-french" (&optional date))
  55. (declare-function calendar-goto-date "cal-move" (date))
  56. (declare-function calendar-hebrew-date-string "cal-hebrew" (&optional date))
  57. (declare-function calendar-islamic-date-string "cal-islam" (&optional date))
  58. (declare-function calendar-iso-date-string "cal-iso" (&optional date))
  59. (declare-function calendar-iso-from-absolute "cal-iso" (date))
  60. (declare-function calendar-julian-date-string "cal-julian" (&optional date))
  61. (declare-function calendar-mayan-date-string "cal-mayan" (&optional date))
  62. (declare-function calendar-persian-date-string "cal-persia" (&optional date))
  63. (declare-function calendar-check-holidays "holidays" (date))
  64. (declare-function org-columns-remove-overlays "org-colview" ())
  65. (declare-function org-datetree-find-date-create "org-datetree"
  66. (date &optional keep-restriction))
  67. (declare-function org-columns-quit "org-colview" ())
  68. (declare-function diary-date-display-form "diary-lib" (&optional type))
  69. (declare-function org-mobile-write-agenda-for-mobile "org-mobile" (file))
  70. (declare-function org-habit-insert-consistency-graphs
  71. "org-habit" (&optional line))
  72. (declare-function org-is-habit-p "org-habit" (&optional pom))
  73. (declare-function org-habit-parse-todo "org-habit" (&optional pom))
  74. (declare-function org-habit-get-priority "org-habit" (habit &optional moment))
  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. (declare-function org-clock-modify-effort-estimate "org-clock" (&optional value))
  79. (defvar calendar-mode-map)
  80. (defvar org-clock-current-task)
  81. (defvar org-current-tag-alist)
  82. (defvar org-mobile-force-id-on-agenda-items)
  83. (defvar org-habit-show-habits)
  84. (defvar org-habit-show-habits-only-for-today)
  85. (defvar org-habit-show-all-today)
  86. (defvar org-habit-scheduled-past-days)
  87. ;; Defined somewhere in this file, but used before definition.
  88. (defvar org-agenda-buffer-name "*Org Agenda*")
  89. (defvar org-agenda-overriding-header nil)
  90. (defvar org-agenda-title-append nil)
  91. (with-no-warnings (defvar entry)) ;; unprefixed, from calendar.el
  92. (with-no-warnings (defvar date)) ;; unprefixed, from calendar.el
  93. (defvar original-date) ; dynamically scoped, calendar.el does scope this
  94. (defvar org-agenda-undo-list nil
  95. "List of undoable operations in the agenda since last refresh.")
  96. (defvar org-agenda-pending-undo-list nil
  97. "In a series of undo commands, this is the list of remaining undo items.")
  98. (defcustom org-agenda-confirm-kill 1
  99. "When set, remote killing from the agenda buffer needs confirmation.
  100. When t, a confirmation is always needed. When a number N, confirmation is
  101. only needed when the text to be killed contains more than N non-white lines."
  102. :group 'org-agenda
  103. :type '(choice
  104. (const :tag "Never" nil)
  105. (const :tag "Always" t)
  106. (integer :tag "When more than N lines")))
  107. (defcustom org-agenda-compact-blocks nil
  108. "Non-nil means make the block agenda more compact.
  109. This is done globally by leaving out lines like the agenda span
  110. name and week number or the separator lines."
  111. :group 'org-agenda
  112. :type 'boolean)
  113. (defcustom org-agenda-block-separator ?=
  114. "The separator between blocks in the agenda.
  115. If this is a string, it will be used as the separator, with a newline added.
  116. If it is a character, it will be repeated to fill the window width.
  117. If nil the separator is disabled. In `org-agenda-custom-commands' this
  118. addresses the separator between the current and the previous block."
  119. :group 'org-agenda
  120. :type '(choice
  121. (const :tag "Disabled" nil)
  122. (character)
  123. (string)))
  124. (defgroup org-agenda-export nil
  125. "Options concerning exporting agenda views in Org mode."
  126. :tag "Org Agenda Export"
  127. :group 'org-agenda)
  128. (defcustom org-agenda-with-colors t
  129. "Non-nil means use colors in agenda views."
  130. :group 'org-agenda-export
  131. :type 'boolean)
  132. (defcustom org-agenda-exporter-settings nil
  133. "Alist of variable/value pairs that should be active during agenda export.
  134. This is a good place to set options for ps-print and for htmlize.
  135. Note that the way this is implemented, the values will be evaluated
  136. before assigned to the variables. So make sure to quote values you do
  137. *not* want evaluated, for example
  138. (setq org-agenda-exporter-settings
  139. \\='((ps-print-color-p \\='black-white)))"
  140. :group 'org-agenda-export
  141. :type '(repeat
  142. (list
  143. (variable)
  144. (sexp :tag "Value"))))
  145. (defcustom org-agenda-before-write-hook '(org-agenda-add-entry-text)
  146. "Hook run in a temporary buffer before writing the agenda to an export file.
  147. A useful function for this hook is `org-agenda-add-entry-text'."
  148. :group 'org-agenda-export
  149. :type 'hook
  150. :options '(org-agenda-add-entry-text))
  151. (defcustom org-agenda-add-entry-text-maxlines 0
  152. "Maximum number of entry text lines to be added to agenda.
  153. This is only relevant when `org-agenda-add-entry-text' is part of
  154. `org-agenda-before-write-hook', which is the default.
  155. When this is 0, nothing will happen. When it is greater than 0, it
  156. specifies the maximum number of lines that will be added for each entry
  157. that is listed in the agenda view.
  158. Note that this variable is not used during display, only when exporting
  159. the agenda. For agenda display, see the variables `org-agenda-entry-text-mode'
  160. and `org-agenda-entry-text-maxlines'."
  161. :group 'org-agenda
  162. :type 'integer)
  163. (defcustom org-agenda-add-entry-text-descriptive-links t
  164. "Non-nil means export org-links as descriptive links in agenda added text.
  165. This variable applies to the text added to the agenda when
  166. `org-agenda-add-entry-text-maxlines' is larger than 0.
  167. When this variable is nil, the URL will (also) be shown."
  168. :group 'org-agenda
  169. :type 'boolean)
  170. (defcustom org-agenda-export-html-style nil
  171. "The style specification for exported HTML Agenda files.
  172. If this variable contains a string, it will replace the default <style>
  173. section as produced by `htmlize'.
  174. Since there are different ways of setting style information, this variable
  175. needs to contain the full HTML structure to provide a style, including the
  176. surrounding HTML tags. The style specifications should include definitions
  177. the fonts used by the agenda, here is an example:
  178. <style type=\"text/css\">
  179. p { font-weight: normal; color: gray; }
  180. .org-agenda-structure {
  181. font-size: 110%;
  182. color: #003399;
  183. font-weight: 600;
  184. }
  185. .org-todo {
  186. color: #cc6666;
  187. font-weight: bold;
  188. }
  189. .org-agenda-done {
  190. color: #339933;
  191. }
  192. .org-done {
  193. color: #339933;
  194. }
  195. .title { text-align: center; }
  196. .todo, .deadline { color: red; }
  197. .done { color: green; }
  198. </style>
  199. or, if you want to keep the style in a file,
  200. <link rel=\"stylesheet\" type=\"text/css\" href=\"mystyles.css\">
  201. As the value of this option simply gets inserted into the HTML <head> header,
  202. you can \"misuse\" it to also add other text to the header."
  203. :group 'org-agenda-export
  204. :group 'org-export-html
  205. :type '(choice
  206. (const nil)
  207. (string)))
  208. (defcustom org-agenda-persistent-filter nil
  209. "When set, keep filters from one agenda view to the next."
  210. :group 'org-agenda
  211. :type 'boolean)
  212. (defgroup org-agenda-custom-commands nil
  213. "Options concerning agenda views in Org mode."
  214. :tag "Org Agenda Custom Commands"
  215. :group 'org-agenda)
  216. (defconst org-sorting-choice
  217. '(choice
  218. (const time-up) (const time-down)
  219. (const timestamp-up) (const timestamp-down)
  220. (const scheduled-up) (const scheduled-down)
  221. (const deadline-up) (const deadline-down)
  222. (const ts-up) (const ts-down)
  223. (const tsia-up) (const tsia-down)
  224. (const category-keep) (const category-up) (const category-down)
  225. (const tag-down) (const tag-up)
  226. (const priority-up) (const priority-down)
  227. (const todo-state-up) (const todo-state-down)
  228. (const effort-up) (const effort-down)
  229. (const habit-up) (const habit-down)
  230. (const alpha-up) (const alpha-down)
  231. (const user-defined-up) (const user-defined-down))
  232. "Sorting choices.")
  233. ;; Keep custom values for `org-agenda-filter-preset' compatible with
  234. ;; the new variable `org-agenda-tag-filter-preset'.
  235. (defvaralias 'org-agenda-filter-preset 'org-agenda-tag-filter-preset)
  236. (defvaralias 'org-agenda-filter 'org-agenda-tag-filter)
  237. (defvar org-agenda-entry-types '(:deadline :scheduled :timestamp :sexp)
  238. "List of types searched for when creating the daily/weekly agenda.
  239. This variable is a list of symbols that controls the types of
  240. items that appear in the daily/weekly agenda. Allowed symbols in this
  241. list are
  242. :timestamp List items containing a date stamp or date range matching
  243. the selected date. This includes sexp entries in angular
  244. brackets.
  245. :sexp List entries resulting from plain diary-like sexps.
  246. :deadline List deadline due on that date. When the date is today,
  247. also list any deadlines past due, or due within
  248. `org-deadline-warning-days'.
  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. (list
  289. (const :format "" quote)
  290. (choice (const :tag "Day" day)
  291. (const :tag "Week" week)
  292. (const :tag "Fortnight" fortnight)
  293. (const :tag "Month" month)
  294. (const :tag "Year" year)
  295. (integer :tag "Custom"))))
  296. (list :tag "Fixed starting date"
  297. (const org-agenda-start-day)
  298. (string :value "2007-11-01"))
  299. (list :tag "Start on day of week"
  300. (const org-agenda-start-on-weekday)
  301. (choice :value 1
  302. (const :tag "Today" nil)
  303. (integer :tag "Weekday No.")))
  304. (list :tag "Include data from diary"
  305. (const org-agenda-include-diary)
  306. (boolean))
  307. (list :tag "Deadline Warning days"
  308. (const org-deadline-warning-days)
  309. (integer :value 1))
  310. (list :tag "Category filter preset"
  311. (const org-agenda-category-filter-preset)
  312. (list
  313. (const :format "" quote)
  314. (repeat
  315. (string :tag "+category or -category"))))
  316. (list :tag "Tags filter preset"
  317. (const org-agenda-tag-filter-preset)
  318. (list
  319. (const :format "" quote)
  320. (repeat
  321. (string :tag "+tag or -tag"))))
  322. (list :tag "Effort filter preset"
  323. (const org-agenda-effort-filter-preset)
  324. (list
  325. (const :format "" quote)
  326. (repeat
  327. (string :tag "+=10 or -=10 or +<10 or ->10"))))
  328. (list :tag "Regexp filter preset"
  329. (const org-agenda-regexp-filter-preset)
  330. (list
  331. (const :format "" quote)
  332. (repeat
  333. (string :tag "+regexp or -regexp"))))
  334. (list :tag "Set daily/weekly entry types"
  335. (const org-agenda-entry-types)
  336. (list
  337. (const :format "" quote)
  338. (set :greedy t :value ,org-agenda-entry-types
  339. (const :deadline)
  340. (const :scheduled)
  341. (const :deadline*)
  342. (const :scheduled*)
  343. (const :timestamp)
  344. (const :sexp))))
  345. (list :tag "Columns format"
  346. (const org-overriding-columns-format)
  347. (string :tag "Format"))
  348. (list :tag "Standard skipping condition"
  349. :value (org-agenda-skip-function '(org-agenda-skip-entry-if))
  350. (const org-agenda-skip-function)
  351. (list
  352. (const :format "" quote)
  353. (list
  354. (choice
  355. :tag "Skipping range"
  356. (const :tag "Skip entry" org-agenda-skip-entry-if)
  357. (const :tag "Skip subtree" org-agenda-skip-subtree-if))
  358. (repeat :inline t :tag "Conditions for skipping"
  359. (choice
  360. :tag "Condition type"
  361. (list :tag "Regexp matches" :inline t
  362. (const :format "" regexp)
  363. (regexp))
  364. (list :tag "Regexp does not match" :inline t
  365. (const :format "" notregexp)
  366. (regexp))
  367. (list :tag "TODO state is" :inline t
  368. (const todo)
  369. (choice
  370. (const :tag "Any not-done state" todo)
  371. (const :tag "Any done state" done)
  372. (const :tag "Any state" any)
  373. (list :tag "Keyword list"
  374. (const :format "" quote)
  375. (repeat (string :tag "Keyword")))))
  376. (list :tag "TODO state is not" :inline t
  377. (const nottodo)
  378. (choice
  379. (const :tag "Any not-done state" todo)
  380. (const :tag "Any done state" done)
  381. (const :tag "Any state" any)
  382. (list :tag "Keyword list"
  383. (const :format "" quote)
  384. (repeat (string :tag "Keyword")))))
  385. (const :tag "scheduled" scheduled)
  386. (const :tag "not scheduled" notscheduled)
  387. (const :tag "deadline" deadline)
  388. (const :tag "no deadline" notdeadline)
  389. (const :tag "timestamp" timestamp)
  390. (const :tag "no timestamp" nottimestamp))))))
  391. (list :tag "Non-standard skipping condition"
  392. :value (org-agenda-skip-function)
  393. (const org-agenda-skip-function)
  394. (sexp :tag "Function or form (quoted!)"))
  395. (list :tag "Any variable"
  396. (variable :tag "Variable")
  397. (sexp :tag "Value (sexp)"))))
  398. "Selection of examples for agenda command settings.
  399. This will be spliced into the custom type of
  400. `org-agenda-custom-commands'.")
  401. (defcustom org-agenda-custom-commands
  402. '(("n" "Agenda and all TODOs" ((agenda "") (alltodo ""))))
  403. "Custom commands for the agenda.
  404. \\<org-mode-map>
  405. These commands will be offered on the splash screen displayed by the
  406. agenda dispatcher `\\[org-agenda]'. Each entry is a list like this:
  407. (key desc type match settings files)
  408. key The key (one or more characters as a string) to be associated
  409. with the command.
  410. desc A description of the command, when omitted or nil, a default
  411. description is built using MATCH.
  412. type The command type, any of the following symbols:
  413. agenda The daily/weekly agenda.
  414. todo Entries with a specific TODO keyword, in all agenda files.
  415. search Entries containing search words entry or headline.
  416. tags Tags/Property/TODO match in all agenda files.
  417. tags-todo Tags/P/T match in all agenda files, TODO entries only.
  418. todo-tree Sparse tree of specific TODO keyword in *current* file.
  419. tags-tree Sparse tree with all tags matches in *current* file.
  420. occur-tree Occur sparse tree for *current* file.
  421. ... A user-defined function.
  422. match What to search for:
  423. - a single keyword for TODO keyword searches
  424. - a tags/property/todo match expression for searches
  425. - a word search expression for text searches.
  426. - a regular expression for occur searches
  427. For all other commands, this should be the empty string.
  428. settings A list of option settings, similar to that in a let form, so like
  429. this: ((opt1 val1) (opt2 val2) ...). The values will be
  430. evaluated at the moment of execution, so quote them when needed.
  431. files A list of files to write the produced agenda buffer to with
  432. the command `org-store-agenda-views'.
  433. If a file name ends in \".html\", an HTML version of the buffer
  434. is written out. If it ends in \".ps\", a postscript version is
  435. produced. Otherwise, only the plain text is written to the file.
  436. You can also define a set of commands, to create a composite agenda buffer.
  437. In this case, an entry looks like this:
  438. (key desc (cmd1 cmd2 ...) general-settings-for-whole-set files)
  439. where
  440. desc A description string to be displayed in the dispatcher menu.
  441. cmd An agenda command, similar to the above. However, tree commands
  442. are not allowed, but instead you can get agenda and global todo list.
  443. So valid commands for a set are:
  444. (agenda \"\" settings)
  445. (alltodo \"\" settings)
  446. (stuck \"\" settings)
  447. (todo \"match\" settings files)
  448. (search \"match\" settings files)
  449. (tags \"match\" settings files)
  450. (tags-todo \"match\" settings files)
  451. Each command can carry a list of options, and another set of options can be
  452. given for the whole set of commands. Individual command options take
  453. precedence over the general options.
  454. When using several characters as key to a command, the first characters
  455. are prefix commands. For the dispatcher to display useful information, you
  456. should provide a description for the prefix, like
  457. (setq org-agenda-custom-commands
  458. \\='((\"h\" . \"HOME + Name tag searches\") ; describe prefix \"h\"
  459. (\"hl\" tags \"+HOME+Lisa\")
  460. (\"hp\" tags \"+HOME+Peter\")
  461. (\"hk\" tags \"+HOME+Kim\")))"
  462. :group 'org-agenda-custom-commands
  463. :type `(repeat
  464. (choice :value ("x" "Describe command here" tags "" nil)
  465. (list :tag "Single command"
  466. (string :tag "Access Key(s) ")
  467. (option (string :tag "Description"))
  468. (choice
  469. (const :tag "Agenda" agenda)
  470. (const :tag "TODO list" alltodo)
  471. (const :tag "Search words" search)
  472. (const :tag "Stuck projects" stuck)
  473. (const :tag "Tags/Property match (all agenda files)" tags)
  474. (const :tag "Tags/Property match of TODO entries (all agenda files)" tags-todo)
  475. (const :tag "TODO keyword search (all agenda files)" todo)
  476. (const :tag "Tags sparse tree (current buffer)" tags-tree)
  477. (const :tag "TODO keyword tree (current buffer)" todo-tree)
  478. (const :tag "Occur tree (current buffer)" occur-tree)
  479. (sexp :tag "Other, user-defined function"))
  480. (string :tag "Match (only for some commands)")
  481. ,org-agenda-custom-commands-local-options
  482. (option (repeat :tag "Export" (file :tag "Export to"))))
  483. (list :tag "Command series, all agenda files"
  484. (string :tag "Access Key(s)")
  485. (string :tag "Description ")
  486. (repeat :tag "Component"
  487. (choice
  488. (list :tag "Agenda"
  489. (const :format "" agenda)
  490. (const :tag "" :format "" "")
  491. ,org-agenda-custom-commands-local-options)
  492. (list :tag "TODO list (all keywords)"
  493. (const :format "" alltodo)
  494. (const :tag "" :format "" "")
  495. ,org-agenda-custom-commands-local-options)
  496. (list :tag "Search words"
  497. (const :format "" search)
  498. (string :tag "Match")
  499. ,org-agenda-custom-commands-local-options)
  500. (list :tag "Stuck projects"
  501. (const :format "" stuck)
  502. (const :tag "" :format "" "")
  503. ,org-agenda-custom-commands-local-options)
  504. (list :tag "Tags/Property match (all agenda files)"
  505. (const :format "" tags)
  506. (string :tag "Match")
  507. ,org-agenda-custom-commands-local-options)
  508. (list :tag "Tags/Property match of TODO entries (all agenda files)"
  509. (const :format "" tags-todo)
  510. (string :tag "Match")
  511. ,org-agenda-custom-commands-local-options)
  512. (list :tag "TODO keyword search"
  513. (const :format "" todo)
  514. (string :tag "Match")
  515. ,org-agenda-custom-commands-local-options)
  516. (list :tag "Other, user-defined function"
  517. (symbol :tag "function")
  518. (string :tag "Match")
  519. ,org-agenda-custom-commands-local-options)))
  520. (repeat :tag "Settings for entire command set"
  521. (list (variable :tag "Any variable")
  522. (sexp :tag "Value")))
  523. (option (repeat :tag "Export" (file :tag "Export to"))))
  524. (cons :tag "Prefix key documentation"
  525. (string :tag "Access Key(s)")
  526. (string :tag "Description ")))))
  527. (defcustom org-agenda-query-register ?o
  528. "The register holding the current query string.
  529. The purpose of this is that if you construct a query string interactively,
  530. you can then use it to define a custom command."
  531. :group 'org-agenda-custom-commands
  532. :type 'character)
  533. (defcustom org-stuck-projects
  534. '("+LEVEL=2/-DONE" ("TODO" "NEXT" "NEXTACTION") nil "")
  535. "How to identify stuck projects.
  536. This is a list of four items:
  537. 1. A tags/todo/property matcher string that is used to identify a project.
  538. See the manual for a description of tag and property searches.
  539. The entire tree below a headline matched by this is considered one project.
  540. 2. A list of TODO keywords identifying non-stuck projects.
  541. If the project subtree contains any headline with one of these todo
  542. keywords, the project is considered to be not stuck. If you specify
  543. \"*\" as a keyword, any TODO keyword will mark the project unstuck.
  544. 3. A list of tags identifying non-stuck projects.
  545. If the project subtree contains any headline with one of these tags,
  546. the project is considered to be not stuck. If you specify \"*\" as
  547. a tag, any tag will mark the project unstuck. Note that this is about
  548. the explicit presence of a tag somewhere in the subtree, inherited
  549. tags do not count here. If inherited tags make a project not stuck,
  550. use \"-TAG\" in the tags part of the matcher under (1.) above.
  551. 4. An arbitrary regular expression matching non-stuck projects.
  552. If the project turns out to be not stuck, search continues also in the
  553. subtree to see if any of the subtasks have project status.
  554. See also the variable `org-tags-match-list-sublevels' which applies
  555. to projects matched by this search as well.
  556. After defining this variable, you may use `org-agenda-list-stuck-projects'
  557. \(bound to `\\[org-agenda] #') to produce the list."
  558. :group 'org-agenda-custom-commands
  559. :type '(list
  560. (string :tag "Tags/TODO match to identify a project")
  561. (repeat :tag "Projects are *not* stuck if they have an entry with \
  562. TODO keyword any of" (string))
  563. (repeat :tag "Projects are *not* stuck if they have an entry with \
  564. TAG being any of" (string))
  565. (regexp :tag "Projects are *not* stuck if this regexp matches inside \
  566. the subtree")))
  567. (defgroup org-agenda-skip nil
  568. "Options concerning skipping parts of agenda files."
  569. :tag "Org Agenda Skip"
  570. :group 'org-agenda)
  571. (defcustom org-agenda-skip-function-global nil
  572. "Function to be called at each match during agenda construction.
  573. If this function returns nil, the current match should not be skipped.
  574. If the function decided to skip an agenda match, is must return the
  575. buffer position from which the search should be continued.
  576. This may also be a Lisp form, which will be evaluated.
  577. This variable will be applied to every agenda match, including
  578. tags/property searches and TODO lists. So try to make the test function
  579. do its checking as efficiently as possible. To implement a skipping
  580. condition just for specific agenda commands, use the variable
  581. `org-agenda-skip-function' which can be set in the options section
  582. of custom agenda commands."
  583. :group 'org-agenda-skip
  584. :type 'sexp)
  585. (defgroup org-agenda-daily/weekly nil
  586. "Options concerning the daily/weekly agenda."
  587. :tag "Org Agenda Daily/Weekly"
  588. :group 'org-agenda)
  589. (defgroup org-agenda-todo-list nil
  590. "Options concerning the global todo list agenda view."
  591. :tag "Org Agenda Todo List"
  592. :group 'org-agenda)
  593. (defgroup org-agenda-match-view nil
  594. "Options concerning the general tags/property/todo match agenda view."
  595. :tag "Org Agenda Match View"
  596. :group 'org-agenda)
  597. (defgroup org-agenda-search-view nil
  598. "Options concerning the search agenda view."
  599. :tag "Org Agenda Search View"
  600. :group 'org-agenda)
  601. (defvar org-agenda-archives-mode nil
  602. "Non-nil means the agenda will include archived items.
  603. If this is the symbol `trees', trees in the selected agenda scope
  604. that are marked with the ARCHIVE tag will be included anyway. When this is
  605. t, also all archive files associated with the current selection of agenda
  606. files will be included.")
  607. (defcustom org-agenda-restriction-lock-highlight-subtree t
  608. "Non-nil means highlight the whole subtree when restriction is active.
  609. Otherwise only highlight the headline. Highlighting the whole subtree is
  610. useful to ensure no edits happen beyond the restricted region."
  611. :group 'org-agenda
  612. :type 'boolean)
  613. (defcustom org-agenda-skip-comment-trees t
  614. "Non-nil means skip trees that start with the COMMENT keyword.
  615. When nil, these trees are also scanned by agenda commands."
  616. :group 'org-agenda-skip
  617. :type 'boolean)
  618. (defcustom org-agenda-todo-list-sublevels t
  619. "Non-nil means check also the sublevels of a TODO entry for TODO entries.
  620. When nil, the sublevels of a TODO entry are not checked, resulting in
  621. potentially much shorter TODO lists."
  622. :group 'org-agenda-skip
  623. :group 'org-agenda-todo-list
  624. :type 'boolean)
  625. (defcustom org-agenda-todo-ignore-with-date nil
  626. "Non-nil means don't show entries with a date in the global todo list.
  627. You can use this if you prefer to mark mere appointments with a TODO keyword,
  628. but don't want them to show up in the TODO list.
  629. When this is set, it also covers deadlines and scheduled items, the settings
  630. of `org-agenda-todo-ignore-scheduled' and `org-agenda-todo-ignore-deadlines'
  631. will be ignored.
  632. See also the variable `org-agenda-tags-todo-honor-ignore-options'."
  633. :group 'org-agenda-skip
  634. :group 'org-agenda-todo-list
  635. :type 'boolean)
  636. (defcustom org-agenda-todo-ignore-timestamp nil
  637. "Non-nil means don't show entries with a timestamp.
  638. This applies when creating the global todo list.
  639. Valid values are:
  640. past Don't show entries for today or in the past.
  641. future Don't show entries with a timestamp in the future.
  642. The idea behind this is that if it has a future
  643. timestamp, you don't want to think about it until the
  644. date.
  645. all Don't show any entries with a timestamp in the global todo list.
  646. The idea behind this is that by setting a timestamp, you
  647. have already \"taken care\" of this item.
  648. This variable can also have an integer as a value. If positive (N),
  649. todos with a timestamp N or more days in the future will be ignored. If
  650. negative (-N), todos with a timestamp N or more days in the past will be
  651. ignored. If 0, todos with a timestamp either today or in the future will
  652. be ignored. For example, a value of -1 will exclude todos with a
  653. timestamp in the past (yesterday or earlier), while a value of 7 will
  654. exclude todos with a timestamp a week or more in the future.
  655. See also `org-agenda-todo-ignore-with-date'.
  656. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  657. to make his option also apply to the tags-todo list."
  658. :group 'org-agenda-skip
  659. :group 'org-agenda-todo-list
  660. :version "24.1"
  661. :type '(choice
  662. (const :tag "Ignore future timestamp todos" future)
  663. (const :tag "Ignore past or present timestamp todos" past)
  664. (const :tag "Ignore all timestamp todos" all)
  665. (const :tag "Show timestamp todos" nil)
  666. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  667. (defcustom org-agenda-todo-ignore-scheduled nil
  668. "Non-nil means, ignore some scheduled TODO items when making TODO list.
  669. This applies when creating the global todo list.
  670. Valid values are:
  671. past Don't show entries scheduled today or in the past.
  672. future Don't show entries scheduled in the future.
  673. The idea behind this is that by scheduling it, you don't want to
  674. think about it until the scheduled date.
  675. all Don't show any scheduled entries in the global todo list.
  676. The idea behind this is that by scheduling it, you have already
  677. \"taken care\" of this item.
  678. t Same as `all', for backward compatibility.
  679. This variable can also have an integer as a value. See
  680. `org-agenda-todo-ignore-timestamp' for more details.
  681. See also `org-agenda-todo-ignore-with-date'.
  682. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  683. to make his option also apply to the tags-todo list."
  684. :group 'org-agenda-skip
  685. :group 'org-agenda-todo-list
  686. :type '(choice
  687. (const :tag "Ignore future-scheduled todos" future)
  688. (const :tag "Ignore past- or present-scheduled todos" past)
  689. (const :tag "Ignore all scheduled todos" all)
  690. (const :tag "Ignore all scheduled todos (compatibility)" t)
  691. (const :tag "Show scheduled todos" nil)
  692. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  693. (defcustom org-agenda-todo-ignore-deadlines nil
  694. "Non-nil means ignore some deadline TODO items when making TODO list.
  695. There are different motivations for using different values, please think
  696. carefully when configuring this variable.
  697. This applies when creating the global TODO list.
  698. Valid values are:
  699. near Don't show near deadline entries. A deadline is near when it is
  700. closer than `org-deadline-warning-days' days. The idea behind this
  701. is that such items will appear in the agenda anyway.
  702. far Don't show TODO entries where a deadline has been defined, but
  703. is not going to happen anytime soon. This is useful if you want to use
  704. the TODO list to figure out what to do now.
  705. past Don't show entries with a deadline timestamp for today or in the past.
  706. future Don't show entries with a deadline timestamp in the future, not even
  707. when they become `near' ones. Use it with caution.
  708. all Ignore all TODO entries that do have a deadline.
  709. t Same as `near', for backward compatibility.
  710. This variable can also have an integer as a value. See
  711. `org-agenda-todo-ignore-timestamp' for more details.
  712. See also `org-agenda-todo-ignore-with-date'.
  713. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  714. to make his option also apply to the tags-todo list."
  715. :group 'org-agenda-skip
  716. :group 'org-agenda-todo-list
  717. :type '(choice
  718. (const :tag "Ignore near deadlines" near)
  719. (const :tag "Ignore near deadlines (compatibility)" t)
  720. (const :tag "Ignore far deadlines" far)
  721. (const :tag "Ignore all TODOs with a deadlines" all)
  722. (const :tag "Show all TODOs, even if they have a deadline" nil)
  723. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  724. (defcustom org-agenda-todo-ignore-time-comparison-use-seconds nil
  725. "Time unit to use when possibly ignoring an agenda item.
  726. See the docstring of various `org-agenda-todo-ignore-*' options.
  727. The default is to compare time stamps using days. An item is thus
  728. considered to be in the future if it is at least one day after today.
  729. Non-nil means to compare time stamps using seconds. An item is then
  730. considered future if it has a time value later than current time."
  731. :group 'org-agenda-skip
  732. :group 'org-agenda-todo-list
  733. :version "24.4"
  734. :package-version '(Org . "8.0")
  735. :type '(choice
  736. (const :tag "Compare time with days" nil)
  737. (const :tag "Compare time with seconds" t)))
  738. (defcustom org-agenda-tags-todo-honor-ignore-options nil
  739. "Non-nil means honor todo-list ignores options also in tags-todo search.
  740. The variables
  741. `org-agenda-todo-ignore-with-date',
  742. `org-agenda-todo-ignore-timestamp',
  743. `org-agenda-todo-ignore-scheduled',
  744. `org-agenda-todo-ignore-deadlines'
  745. make the global TODO list skip entries that have time stamps of certain
  746. kinds. If this option is set, the same options will also apply for the
  747. tags-todo search, which is the general tags/property matcher
  748. restricted to unfinished TODO entries only."
  749. :group 'org-agenda-skip
  750. :group 'org-agenda-todo-list
  751. :group 'org-agenda-match-view
  752. :type 'boolean)
  753. (defcustom org-agenda-skip-scheduled-if-done nil
  754. "Non-nil means don't show scheduled items in agenda when they are done.
  755. This is relevant for the daily/weekly agenda, not for the TODO list. It
  756. applies only to the actual date of the scheduling. Warnings about an item
  757. with a past scheduling dates are always turned off when the item is DONE."
  758. :group 'org-agenda-skip
  759. :group 'org-agenda-daily/weekly
  760. :type 'boolean)
  761. (defcustom org-agenda-skip-scheduled-if-deadline-is-shown nil
  762. "Non-nil means skip scheduling line if same entry shows because of deadline.
  763. In the agenda of today, an entry can show up multiple times
  764. because it is both scheduled and has a nearby deadline, and maybe
  765. a plain time stamp as well.
  766. When this variable is nil, the entry will be shown several times.
  767. When set to t, then only the deadline is shown and the fact that
  768. the entry is scheduled today or was scheduled previously is not
  769. shown.
  770. When set to the symbol `not-today', skip scheduled previously,
  771. but not scheduled today.
  772. When set to the symbol `repeated-after-deadline', skip scheduled
  773. items if they are repeated beyond the current deadline."
  774. :group 'org-agenda-skip
  775. :group 'org-agenda-daily/weekly
  776. :type '(choice
  777. (const :tag "Never" nil)
  778. (const :tag "Always" t)
  779. (const :tag "Not when scheduled today" not-today)
  780. (const :tag "When repeated past deadline" repeated-after-deadline)))
  781. (defcustom org-agenda-skip-timestamp-if-deadline-is-shown nil
  782. "Non-nil means skip timestamp line if same entry shows because of deadline.
  783. In the agenda of today, an entry can show up multiple times
  784. because it has both a plain timestamp and has a nearby deadline.
  785. When this variable is t, then only the deadline is shown and the
  786. fact that the entry has a timestamp for or including today is not
  787. shown. When this variable is nil, the entry will be shown
  788. several times."
  789. :group 'org-agenda-skip
  790. :group 'org-agenda-daily/weekly
  791. :version "24.1"
  792. :type '(choice
  793. (const :tag "Never" nil)
  794. (const :tag "Always" t)))
  795. (defcustom org-agenda-skip-deadline-if-done nil
  796. "Non-nil means don't show deadlines when the corresponding item is done.
  797. When nil, the deadline is still shown and should give you a happy feeling.
  798. This is relevant for the daily/weekly agenda. It applies only to the
  799. actual date of the deadline. Warnings about approaching and past-due
  800. deadlines are always turned off when the item is DONE."
  801. :group 'org-agenda-skip
  802. :group 'org-agenda-daily/weekly
  803. :type 'boolean)
  804. (defcustom org-agenda-skip-deadline-prewarning-if-scheduled nil
  805. "Non-nil means skip deadline prewarning when entry is also scheduled.
  806. This will apply on all days where a prewarning for the deadline would
  807. be shown, but not at the day when the entry is actually due. On that day,
  808. the deadline will be shown anyway.
  809. This variable may be set to nil, t, the symbol `pre-scheduled',
  810. or a number which will then give the number of days before the actual
  811. deadline when the prewarnings should resume. The symbol `pre-scheduled'
  812. eliminates the deadline prewarning only prior to the scheduled date.
  813. This can be used in a workflow where the first showing of the deadline will
  814. trigger you to schedule it, and then you don't want to be reminded of it
  815. because you will take care of it on the day when scheduled."
  816. :group 'org-agenda-skip
  817. :group 'org-agenda-daily/weekly
  818. :version "24.1"
  819. :type '(choice
  820. (const :tag "Always show prewarning" nil)
  821. (const :tag "Remove prewarning prior to scheduled date" pre-scheduled)
  822. (const :tag "Remove prewarning if entry is scheduled" t)
  823. (integer :tag "Restart prewarning N days before deadline")))
  824. (defcustom org-agenda-skip-scheduled-delay-if-deadline nil
  825. "Non-nil means skip scheduled delay when entry also has a deadline.
  826. This variable may be set to nil, t, the symbol `post-deadline',
  827. or a number which will then give the number of days after the actual
  828. scheduled date when the delay should expire. The symbol `post-deadline'
  829. eliminates the schedule delay when the date is posterior to the deadline."
  830. :group 'org-agenda-skip
  831. :group 'org-agenda-daily/weekly
  832. :version "24.4"
  833. :package-version '(Org . "8.0")
  834. :type '(choice
  835. (const :tag "Always honor delay" nil)
  836. (const :tag "Ignore delay if posterior to the deadline" post-deadline)
  837. (const :tag "Ignore delay if entry has a deadline" t)
  838. (integer :tag "Honor delay up until N days after the scheduled date")))
  839. (defcustom org-agenda-skip-additional-timestamps-same-entry nil
  840. "When nil, multiple same-day timestamps in entry make multiple agenda lines.
  841. When non-nil, after the search for timestamps has matched once in an
  842. entry, the rest of the entry will not be searched."
  843. :group 'org-agenda-skip
  844. :type 'boolean)
  845. (defcustom org-agenda-skip-timestamp-if-done nil
  846. "Non-nil means don't select item by timestamp or -range if it is DONE."
  847. :group 'org-agenda-skip
  848. :group 'org-agenda-daily/weekly
  849. :type 'boolean)
  850. (defcustom org-agenda-dim-blocked-tasks t
  851. "Non-nil means dim blocked tasks in the agenda display.
  852. This causes some overhead during agenda construction, but if you
  853. have turned on `org-enforce-todo-dependencies',
  854. `org-enforce-todo-checkbox-dependencies', or any other blocking
  855. mechanism, this will create useful feedback in the agenda.
  856. Instead of t, this variable can also have the value `invisible'.
  857. Then blocked tasks will be invisible and only become visible when
  858. they become unblocked. An exemption to this behavior is when a task is
  859. blocked because of unchecked checkboxes below it. Since checkboxes do
  860. not show up in the agenda views, making this task invisible you remove any
  861. trace from agenda views that there is something to do. Therefore, a task
  862. that is blocked because of checkboxes will never be made invisible, it
  863. will only be dimmed."
  864. :group 'org-agenda-daily/weekly
  865. :group 'org-agenda-todo-list
  866. :version "24.3"
  867. :type '(choice
  868. (const :tag "Do not dim" nil)
  869. (const :tag "Dim to a gray face" t)
  870. (const :tag "Make invisible" invisible)))
  871. (defgroup org-agenda-startup nil
  872. "Options concerning initial settings in the Agenda in Org Mode."
  873. :tag "Org Agenda Startup"
  874. :group 'org-agenda)
  875. (defcustom org-agenda-menu-show-matcher t
  876. "Non-nil means show the match string in the agenda dispatcher menu.
  877. When nil, the matcher string is not shown, but is put into the help-echo
  878. property so than moving the mouse over the command shows it.
  879. Setting it to nil is good if matcher strings are very long and/or if
  880. you want to use two-columns display (see `org-agenda-menu-two-columns')."
  881. :group 'org-agenda
  882. :version "24.1"
  883. :type 'boolean)
  884. (defcustom org-agenda-menu-two-columns nil
  885. "Non-nil means, use two columns to show custom commands in the dispatcher.
  886. If you use this, you probably want to set `org-agenda-menu-show-matcher'
  887. to nil."
  888. :group 'org-agenda
  889. :version "24.1"
  890. :type 'boolean)
  891. (defcustom org-agenda-finalize-hook nil
  892. "Hook run just before displaying an agenda buffer.
  893. The buffer is still writable when the hook is called.
  894. You can modify some of the buffer substrings but you should be
  895. extra careful not to modify the text properties of the agenda
  896. headlines as the agenda display heavily relies on them."
  897. :group 'org-agenda-startup
  898. :type 'hook)
  899. (defcustom org-agenda-filter-hook nil
  900. "Hook run just after filtering with `org-agenda-filter'."
  901. :group 'org-agenda-startup
  902. :package-version '(Org . "9.4")
  903. :type 'hook)
  904. (defcustom org-agenda-mouse-1-follows-link nil
  905. "Non-nil means mouse-1 on a link will follow the link in the agenda.
  906. A longer mouse click will still set point. Needs to be set
  907. before org.el is loaded."
  908. :group 'org-agenda-startup
  909. :type 'boolean)
  910. (defcustom org-agenda-start-with-follow-mode nil
  911. "The initial value of follow mode in a newly created agenda window."
  912. :group 'org-agenda-startup
  913. :type 'boolean)
  914. (defcustom org-agenda-follow-indirect nil
  915. "Non-nil means `org-agenda-follow-mode' displays only the
  916. current item's tree, in an indirect buffer."
  917. :group 'org-agenda
  918. :version "24.1"
  919. :type 'boolean)
  920. (defcustom org-agenda-show-outline-path t
  921. "Non-nil means show outline path in echo area after line motion."
  922. :group 'org-agenda-startup
  923. :type 'boolean)
  924. (defcustom org-agenda-start-with-entry-text-mode nil
  925. "The initial value of entry-text-mode in a newly created agenda window."
  926. :group 'org-agenda-startup
  927. :type 'boolean)
  928. (defcustom org-agenda-entry-text-maxlines 5
  929. "Number of text lines to be added when `E' is pressed in the agenda.
  930. Note that this variable only used during agenda display. To add entry text
  931. when exporting the agenda, configure the variable
  932. `org-agenda-add-entry-text-maxlines'."
  933. :group 'org-agenda
  934. :type 'integer)
  935. (defcustom org-agenda-entry-text-exclude-regexps nil
  936. "List of regular expressions to clean up entry text.
  937. The complete matches of all regular expressions in this list will be
  938. removed from entry text before it is shown in the agenda."
  939. :group 'org-agenda
  940. :type '(repeat (regexp)))
  941. (defcustom org-agenda-entry-text-leaders " > "
  942. "Text prepended to the entry text in agenda buffers."
  943. :version "24.4"
  944. :package-version '(Org . "8.0")
  945. :group 'org-agenda
  946. :type 'string)
  947. (defvar org-agenda-entry-text-cleanup-hook nil
  948. "Hook that is run after basic cleanup of entry text to be shown in agenda.
  949. This cleanup is done in a temporary buffer, so the function may inspect and
  950. change the entire buffer.
  951. Some default stuff like drawers and scheduling/deadline dates will already
  952. have been removed when this is called, as will any matches for regular
  953. expressions listed in `org-agenda-entry-text-exclude-regexps'.")
  954. (defvar org-agenda-include-inactive-timestamps nil
  955. "Non-nil means include inactive time stamps in agenda.
  956. Dynamically scoped.")
  957. (defgroup org-agenda-windows nil
  958. "Options concerning the windows used by the Agenda in Org Mode."
  959. :tag "Org Agenda Windows"
  960. :group 'org-agenda)
  961. (defcustom org-agenda-window-setup 'reorganize-frame
  962. "How the agenda buffer should be displayed.
  963. Possible values for this option are:
  964. current-window Show agenda in the current window, keeping all other windows.
  965. other-window Use `switch-to-buffer-other-window' to display agenda.
  966. only-window Show agenda, deleting all other windows.
  967. reorganize-frame Show only two windows on the current frame, the current
  968. window and the agenda.
  969. other-frame Use `switch-to-buffer-other-frame' to display agenda.
  970. Also, when exiting the agenda, kill that frame.
  971. other-tab Use `switch-to-buffer-other-tab' to display the
  972. agenda, making use of the `tab-bar-mode' introduced
  973. in Emacs version 27.1. Also, kill that tab when
  974. exiting the agenda view.
  975. See also the variable `org-agenda-restore-windows-after-quit'."
  976. :group 'org-agenda-windows
  977. :type '(choice
  978. (const current-window)
  979. (const other-frame)
  980. (const other-tab)
  981. (const other-window)
  982. (const only-window)
  983. (const reorganize-frame))
  984. :package-version '(Org . "9.4"))
  985. (defcustom org-agenda-window-frame-fractions '(0.5 . 0.75)
  986. "The min and max height of the agenda window as a fraction of frame height.
  987. The value of the variable is a cons cell with two numbers between 0 and 1.
  988. It only matters if `org-agenda-window-setup' is `reorganize-frame'."
  989. :group 'org-agenda-windows
  990. :type '(cons (number :tag "Minimum") (number :tag "Maximum")))
  991. (defcustom org-agenda-restore-windows-after-quit nil
  992. "Non-nil means restore window configuration upon exiting agenda.
  993. Before the window configuration is changed for displaying the
  994. agenda, the current status is recorded. When the agenda is
  995. exited with `q' or `x' and this option is set, the old state is
  996. restored. If `org-agenda-window-setup' is `other-frame' or
  997. `other-tab', the value of this option will be ignored."
  998. :group 'org-agenda-windows
  999. :type 'boolean)
  1000. (defcustom org-agenda-span 'week
  1001. "Number of days to include in overview display.
  1002. Can be day, week, month, year, or any number of days.
  1003. Custom commands can set this variable in the options section."
  1004. :group 'org-agenda-daily/weekly
  1005. :type '(choice (const :tag "Day" day)
  1006. (const :tag "Week" week)
  1007. (const :tag "Fortnight" fortnight)
  1008. (const :tag "Month" month)
  1009. (const :tag "Year" year)
  1010. (integer :tag "Custom")))
  1011. (defcustom org-agenda-start-on-weekday 1
  1012. "Non-nil means start the overview always on the specified weekday.
  1013. 0 denotes Sunday, 1 denotes Monday, etc.
  1014. When nil, always start on the current day.
  1015. Custom commands can set this variable in the options section."
  1016. :group 'org-agenda-daily/weekly
  1017. :type '(choice (const :tag "Today" nil)
  1018. (integer :tag "Weekday No.")))
  1019. (defcustom org-agenda-show-all-dates t
  1020. "Non-nil means `org-agenda' shows every day in the selected range.
  1021. When nil, only the days which actually have entries are shown."
  1022. :group 'org-agenda-daily/weekly
  1023. :type 'boolean)
  1024. (defcustom org-agenda-format-date 'org-agenda-format-date-aligned
  1025. "Format string for displaying dates in the agenda.
  1026. Used by the daily/weekly agenda. This should be a format string
  1027. understood by `format-time-string', or a function returning the
  1028. formatted date as a string. The function must take a single
  1029. argument, a calendar-style date list like (month day year)."
  1030. :group 'org-agenda-daily/weekly
  1031. :type '(choice
  1032. (string :tag "Format string")
  1033. (function :tag "Function")))
  1034. (defun org-agenda-end-of-line ()
  1035. "Go to the end of visible line."
  1036. (interactive)
  1037. (goto-char (line-end-position)))
  1038. (defun org-agenda-format-date-aligned (date)
  1039. "Format a DATE string for display in the daily/weekly agenda.
  1040. This function makes sure that dates are aligned for easy reading."
  1041. (require 'cal-iso)
  1042. (let* ((dayname (calendar-day-name date))
  1043. (day (cadr date))
  1044. (day-of-week (calendar-day-of-week date))
  1045. (month (car date))
  1046. (monthname (calendar-month-name month))
  1047. (year (nth 2 date))
  1048. (iso-week (org-days-to-iso-week
  1049. (calendar-absolute-from-gregorian date)))
  1050. (weekyear (cond ((and (= month 1) (>= iso-week 52))
  1051. (1- year))
  1052. ((and (= month 12) (<= iso-week 1))
  1053. (1+ year))
  1054. (t year)))
  1055. (weekstring (if (= day-of-week 1)
  1056. (format " W%02d" iso-week)
  1057. "")))
  1058. (format "%-10s %2d %s %4d%s"
  1059. dayname day monthname year weekstring)))
  1060. (defcustom org-agenda-time-leading-zero nil
  1061. "Non-nil means use leading zero for military times in agenda.
  1062. For example, 9:30am would become 09:30 rather than 9:30."
  1063. :group 'org-agenda-daily/weekly
  1064. :version "24.1"
  1065. :type 'boolean)
  1066. (defcustom org-agenda-timegrid-use-ampm nil
  1067. "When set, show AM/PM style timestamps on the timegrid."
  1068. :group 'org-agenda
  1069. :version "24.1"
  1070. :type 'boolean)
  1071. (defun org-agenda-time-of-day-to-ampm (time)
  1072. "Convert TIME of a string like \"13:45\" to an AM/PM style time string."
  1073. (let* ((hour-number (string-to-number (substring time 0 -3)))
  1074. (minute (substring time -2))
  1075. (ampm "am"))
  1076. (cond
  1077. ((equal hour-number 12)
  1078. (setq ampm "pm"))
  1079. ((> hour-number 12)
  1080. (setq ampm "pm")
  1081. (setq hour-number (- hour-number 12))))
  1082. (concat
  1083. (if org-agenda-time-leading-zero
  1084. (format "%02d" hour-number)
  1085. (format "%02s" (number-to-string hour-number)))
  1086. ":" minute ampm)))
  1087. (defun org-agenda-time-of-day-to-ampm-maybe (time)
  1088. "Conditionally convert TIME to AM/PM format based on `org-agenda-timegrid-use-ampm'."
  1089. (if org-agenda-timegrid-use-ampm
  1090. (org-agenda-time-of-day-to-ampm time)
  1091. time))
  1092. (defcustom org-agenda-weekend-days '(6 0)
  1093. "Which days are weekend?
  1094. These days get the special face `org-agenda-date-weekend' in the agenda."
  1095. :group 'org-agenda-daily/weekly
  1096. :type '(set :greedy t
  1097. (const :tag "Monday" 1)
  1098. (const :tag "Tuesday" 2)
  1099. (const :tag "Wednesday" 3)
  1100. (const :tag "Thursday" 4)
  1101. (const :tag "Friday" 5)
  1102. (const :tag "Saturday" 6)
  1103. (const :tag "Sunday" 0)))
  1104. (defcustom org-agenda-move-date-from-past-immediately-to-today t
  1105. "Non-nil means jump to today when moving a past date forward in time.
  1106. When using S-right in the agenda to move a date forward, and the date
  1107. stamp currently points to the past, the first key press will move it
  1108. to today. When nil, just move one day forward even if the date stays
  1109. in the past."
  1110. :group 'org-agenda-daily/weekly
  1111. :version "24.1"
  1112. :type 'boolean)
  1113. (defcustom org-agenda-diary-file 'diary-file
  1114. "File to which to add new entries with the `i' key in agenda and calendar.
  1115. When this is the symbol `diary-file', the functionality in the Emacs
  1116. calendar will be used to add entries to the `diary-file'. But when this
  1117. points to a file, `org-agenda-diary-entry' will be used instead."
  1118. :group 'org-agenda
  1119. :type '(choice
  1120. (const :tag "The standard Emacs diary file" diary-file)
  1121. (file :tag "Special Org file diary entries")))
  1122. (defcustom org-agenda-include-diary nil
  1123. "If non-nil, include in the agenda entries from the Emacs Calendar's diary.
  1124. Custom commands can set this variable in the options section."
  1125. :group 'org-agenda-daily/weekly
  1126. :type 'boolean)
  1127. (defcustom org-agenda-include-deadlines t
  1128. "If non-nil, include entries within their deadline warning period.
  1129. Custom commands can set this variable in the options section."
  1130. :group 'org-agenda-daily/weekly
  1131. :version "24.1"
  1132. :type 'boolean)
  1133. (defcustom org-agenda-show-future-repeats t
  1134. "Non-nil shows repeated entries in the future part of the agenda.
  1135. When set to the symbol `next' only the first future repeat is shown."
  1136. :group 'org-agenda-daily/weekly
  1137. :type '(choice
  1138. (const :tag "Show all repeated entries" t)
  1139. (const :tag "Show next repeated entry" next)
  1140. (const :tag "Do not show repeated entries" nil))
  1141. :version "26.1"
  1142. :package-version '(Org . "9.1")
  1143. :safe #'symbolp)
  1144. (defcustom org-agenda-prefer-last-repeat nil
  1145. "Non-nil sets date for repeated entries to their last repeat.
  1146. When nil, display SCHEDULED and DEADLINE dates at their base
  1147. date, and in today's agenda, as a reminder. Display plain
  1148. time-stamps, on the other hand, at every repeat date in the past
  1149. in addition to the base date.
  1150. When non-nil, show a repeated entry at its latest repeat date,
  1151. possibly being today even if it wasn't marked as done. This
  1152. setting is useful if you do not always mark repeated entries as
  1153. done and, yet, consider that reaching repeat date starts the task
  1154. anew.
  1155. When set to a list of strings, prefer last repeats only for
  1156. entries with these TODO keywords."
  1157. :group 'org-agenda-daily/weekly
  1158. :type '(choice
  1159. (const :tag "Prefer last repeat" t)
  1160. (const :tag "Prefer base date" nil)
  1161. (repeat :tag "Prefer last repeat for entries with these TODO keywords"
  1162. (string :tag "TODO keyword")))
  1163. :version "26.1"
  1164. :package-version '(Org . "9.1")
  1165. :safe (lambda (x) (or (booleanp x) (consp x))))
  1166. (defcustom org-scheduled-past-days 10000
  1167. "Number of days to continue listing scheduled items not marked DONE.
  1168. When an item is scheduled on a date, it shows up in the agenda on
  1169. this day and will be listed until it is marked done or for the
  1170. number of days given here."
  1171. :group 'org-agenda-daily/weekly
  1172. :type 'integer
  1173. :safe 'integerp)
  1174. (defcustom org-deadline-past-days 10000
  1175. "Number of days to warn about missed deadlines.
  1176. When an item has deadline on a date, it shows up in the agenda on
  1177. this day and will appear as a reminder until it is marked DONE or
  1178. for the number of days given here."
  1179. :group 'org-agenda-daily/weekly
  1180. :type 'integer
  1181. :version "26.1"
  1182. :package-version '(Org . "9.1")
  1183. :safe 'integerp)
  1184. (defcustom org-agenda-log-mode-items '(closed clock)
  1185. "List of items that should be shown in agenda log mode.
  1186. \\<org-agenda-mode-map>\
  1187. This list may contain the following symbols:
  1188. closed Show entries that have been closed on that day.
  1189. clock Show entries that have received clocked time on that day.
  1190. state Show all logged state changes.
  1191. Note that instead of changing this variable, you can also press \
  1192. `\\[universal-argument] \\[org-agenda-log-mode]' in
  1193. the agenda to display all available LOG items temporarily."
  1194. :group 'org-agenda-daily/weekly
  1195. :type '(set :greedy t (const closed) (const clock) (const state)))
  1196. (defcustom org-agenda-clock-consistency-checks
  1197. '(:max-duration "10:00" :min-duration 0 :max-gap "0:05"
  1198. :gap-ok-around ("4:00")
  1199. :default-face ((:background "DarkRed") (:foreground "white"))
  1200. :overlap-face nil :gap-face nil :no-end-time-face nil
  1201. :long-face nil :short-face nil)
  1202. "This is a property list, with the following keys:
  1203. :max-duration Mark clocking chunks that are longer than this time.
  1204. This is a time string like \"HH:MM\", or the number
  1205. of minutes as an integer.
  1206. :min-duration Mark clocking chunks that are shorter that this.
  1207. This is a time string like \"HH:MM\", or the number
  1208. of minutes as an integer.
  1209. :max-gap Mark gaps between clocking chunks that are longer than
  1210. this duration. A number of minutes, or a string
  1211. like \"HH:MM\".
  1212. :gap-ok-around List of times during the day which are usually not working
  1213. times. When a gap is detected, but the gap contains any
  1214. of these times, the gap is *not* reported. For example,
  1215. if this is (\"4:00\" \"13:00\") then gaps that contain
  1216. 4:00 in the morning (i.e. the night) and 13:00
  1217. (i.e. a typical lunch time) do not cause a warning.
  1218. You should have at least one time during the night in this
  1219. list, or otherwise the first task each morning will trigger
  1220. a warning because it follows a long gap.
  1221. Furthermore, the following properties can be used to define faces for
  1222. issue display.
  1223. :default-face the default face, if the specific face is undefined
  1224. :overlap-face face for overlapping clocks
  1225. :gap-face face for gaps between clocks
  1226. :no-end-time-face face for incomplete clocks
  1227. :long-face face for clock intervals that are too long
  1228. :short-face face for clock intervals that are too short"
  1229. :group 'org-agenda-daily/weekly
  1230. :group 'org-clock
  1231. :version "24.1"
  1232. :type 'plist)
  1233. (defcustom org-agenda-log-mode-add-notes t
  1234. "Non-nil means add first line of notes to log entries in agenda views.
  1235. If a log item like a state change or a clock entry is associated with
  1236. notes, the first line of these notes will be added to the entry in the
  1237. agenda display."
  1238. :group 'org-agenda-daily/weekly
  1239. :type 'boolean)
  1240. (defcustom org-agenda-start-with-log-mode nil
  1241. "The initial value of log-mode in a newly created agenda window.
  1242. See `org-agenda-log-mode' and `org-agenda-log-mode-items' for further
  1243. explanations on the possible values."
  1244. :group 'org-agenda-startup
  1245. :group 'org-agenda-daily/weekly
  1246. :type '(choice (const :tag "Don't show log items" nil)
  1247. (const :tag "Show only log items" only)
  1248. (const :tag "Show all possible log items" clockcheck)
  1249. (repeat :tag "Choose among possible values for `org-agenda-log-mode-items'"
  1250. (choice (const :tag "Show closed log items" closed)
  1251. (const :tag "Show clocked log items" clock)
  1252. (const :tag "Show all logged state changes" state)))))
  1253. (defcustom org-agenda-start-with-clockreport-mode nil
  1254. "The initial value of clockreport-mode in a newly created agenda window."
  1255. :group 'org-agenda-startup
  1256. :group 'org-agenda-daily/weekly
  1257. :type 'boolean)
  1258. (defcustom org-agenda-clockreport-parameter-plist '(:link t :maxlevel 2)
  1259. "Property list with parameters for the clocktable in clockreport mode.
  1260. This is the display mode that shows a clock table in the daily/weekly
  1261. agenda, the properties for this dynamic block can be set here.
  1262. The usual clocktable parameters are allowed here, but you cannot set
  1263. the properties :name, :tstart, :tend, :block, and :scope - these will
  1264. be overwritten to make sure the content accurately reflects the
  1265. current display in the agenda."
  1266. :group 'org-agenda-daily/weekly
  1267. :type 'plist)
  1268. (defvaralias 'org-agenda-search-view-search-words-only
  1269. 'org-agenda-search-view-always-boolean)
  1270. (defcustom org-agenda-search-view-always-boolean nil
  1271. "Non-nil means the search string is interpreted as individual parts.
  1272. The search string for search view can either be interpreted as a phrase,
  1273. or as a list of snippets that define a boolean search for a number of
  1274. strings.
  1275. When this is non-nil, the string will be split on whitespace, and each
  1276. snippet will be searched individually, and all must match in order to
  1277. select an entry. A snippet is then a single string of non-white
  1278. characters, or a string in double quotes, or a regexp in {} braces.
  1279. If a snippet is preceded by \"-\", the snippet must *not* match.
  1280. \"+\" is syntactic sugar for positive selection. Each snippet may
  1281. be found as a full word or a partial word, but see the variable
  1282. `org-agenda-search-view-force-full-words'.
  1283. When this is nil, search will look for the entire search phrase as one,
  1284. with each space character matching any amount of whitespace, including
  1285. line breaks.
  1286. Even when this is nil, you can still switch to Boolean search dynamically
  1287. by preceding the first snippet with \"+\" or \"-\". If the first snippet
  1288. is a regexp marked with braces like \"{abc}\", this will also switch to
  1289. boolean search."
  1290. :group 'org-agenda-search-view
  1291. :version "24.1"
  1292. :type 'boolean)
  1293. (defcustom org-agenda-search-view-force-full-words nil
  1294. "Non-nil means, search words must be matches as complete words.
  1295. When nil, they may also match part of a word."
  1296. :group 'org-agenda-search-view
  1297. :version "24.1"
  1298. :type 'boolean)
  1299. (defcustom org-agenda-search-view-max-outline-level 0
  1300. "Maximum outline level to display in search view.
  1301. E.g. when this is set to 1, the search view will only
  1302. show headlines of level 1. When set to 0, the default
  1303. value, don't limit agenda view by outline level."
  1304. :group 'org-agenda-search-view
  1305. :version "26.1"
  1306. :package-version '(Org . "8.3")
  1307. :type 'integer)
  1308. (defgroup org-agenda-time-grid nil
  1309. "Options concerning the time grid in the Org Agenda."
  1310. :tag "Org Agenda Time Grid"
  1311. :group 'org-agenda)
  1312. (defcustom org-agenda-search-headline-for-time t
  1313. "Non-nil means search headline for a time-of-day.
  1314. If the headline contains a time-of-day in one format or another, it will
  1315. be used to sort the entry into the time sequence of items for a day.
  1316. Some people have time stamps in the headline that refer to the creation
  1317. time or so, and then this produces an unwanted side effect. If this is
  1318. the case for your, use this variable to turn off searching the headline
  1319. for a time."
  1320. :group 'org-agenda-time-grid
  1321. :type 'boolean)
  1322. (defcustom org-agenda-use-time-grid t
  1323. "Non-nil means show a time grid in the agenda schedule.
  1324. A time grid is a set of lines for specific times (like every two hours between
  1325. 8:00 and 20:00). The items scheduled for a day at specific times are
  1326. sorted in between these lines.
  1327. For details about when the grid will be shown, and what it will look like, see
  1328. the variable `org-agenda-time-grid'."
  1329. :group 'org-agenda-time-grid
  1330. :type 'boolean)
  1331. (defcustom org-agenda-time-grid
  1332. '((daily today require-timed)
  1333. (800 1000 1200 1400 1600 1800 2000)
  1334. "......"
  1335. "----------------")
  1336. "The settings for time grid for agenda display.
  1337. This is a list of four items. The first item is again a list. It contains
  1338. symbols specifying conditions when the grid should be displayed:
  1339. daily if the agenda shows a single day
  1340. weekly if the agenda shows an entire week
  1341. today show grid on current date, independent of daily/weekly display
  1342. require-timed show grid only if at least one item has a time specification
  1343. remove-match skip grid times already present in an entry
  1344. The second item is a list of integers, indicating the times that
  1345. should have a grid line.
  1346. The third item is a string which will be placed right after the
  1347. times that have a grid line.
  1348. The fourth item is a string placed after the grid times. This
  1349. will align with agenda items."
  1350. :group 'org-agenda-time-grid
  1351. :type
  1352. '(list
  1353. (set :greedy t :tag "Grid Display Options"
  1354. (const :tag "Show grid in single day agenda display" daily)
  1355. (const :tag "Show grid in weekly agenda display" weekly)
  1356. (const :tag "Always show grid for today" today)
  1357. (const :tag "Show grid only if any timed entries are present"
  1358. require-timed)
  1359. (const :tag "Skip grid times already present in an entry"
  1360. remove-match))
  1361. (repeat :tag "Grid Times" (integer :tag "Time"))
  1362. (string :tag "Grid String (after agenda times)")
  1363. (string :tag "Grid String (aligns with agenda items)")))
  1364. (defcustom org-agenda-show-current-time-in-grid t
  1365. "Non-nil means show the current time in the time grid."
  1366. :group 'org-agenda-time-grid
  1367. :version "24.1"
  1368. :type 'boolean)
  1369. (defcustom org-agenda-current-time-string
  1370. "now - - - - - - - - - - - - - - - - - - - - - - - - -"
  1371. "The string for the current time marker in the agenda."
  1372. :group 'org-agenda-time-grid
  1373. :version "24.1"
  1374. :type 'string)
  1375. (defgroup org-agenda-sorting nil
  1376. "Options concerning sorting in the Org Agenda."
  1377. :tag "Org Agenda Sorting"
  1378. :group 'org-agenda)
  1379. (defcustom org-agenda-sorting-strategy
  1380. '((agenda habit-down time-up priority-down category-keep)
  1381. (todo priority-down category-keep)
  1382. (tags priority-down category-keep)
  1383. (search category-keep))
  1384. "Sorting structure for the agenda items of a single day.
  1385. This is a list of symbols which will be used in sequence to determine
  1386. if an entry should be listed before another entry. The following
  1387. symbols are recognized:
  1388. time-up Put entries with time-of-day indications first, early first.
  1389. time-down Put entries with time-of-day indications first, late first.
  1390. timestamp-up Sort by any timestamp, early first.
  1391. timestamp-down Sort by any timestamp, late first.
  1392. scheduled-up Sort by scheduled timestamp, early first.
  1393. scheduled-down Sort by scheduled timestamp, late first.
  1394. deadline-up Sort by deadline timestamp, early first.
  1395. deadline-down Sort by deadline timestamp, late first.
  1396. ts-up Sort by active timestamp, early first.
  1397. ts-down Sort by active timestamp, late first.
  1398. tsia-up Sort by inactive timestamp, early first.
  1399. tsia-down Sort by inactive timestamp, late first.
  1400. category-keep Keep the default order of categories, corresponding to the
  1401. sequence in `org-agenda-files'.
  1402. category-up Sort alphabetically by category, A-Z.
  1403. category-down Sort alphabetically by category, Z-A.
  1404. tag-up Sort alphabetically by last tag, A-Z.
  1405. tag-down Sort alphabetically by last tag, Z-A.
  1406. priority-up Sort numerically by priority, high priority last.
  1407. priority-down Sort numerically by priority, high priority first.
  1408. todo-state-up Sort by todo state, tasks that are done last.
  1409. todo-state-down Sort by todo state, tasks that are done first.
  1410. effort-up Sort numerically by estimated effort, high effort last.
  1411. effort-down Sort numerically by estimated effort, high effort first.
  1412. user-defined-up Sort according to `org-agenda-cmp-user-defined', high last.
  1413. user-defined-down Sort according to `org-agenda-cmp-user-defined', high first.
  1414. habit-up Put entries that are habits first.
  1415. habit-down Put entries that are habits last.
  1416. alpha-up Sort headlines alphabetically.
  1417. alpha-down Sort headlines alphabetically, reversed.
  1418. The different possibilities will be tried in sequence, and testing stops
  1419. if one comparison returns a \"not-equal\". For example, the default
  1420. '(time-up category-keep priority-down)
  1421. means: Pull out all entries having a specified time of day and sort them,
  1422. in order to make a time schedule for the current day the first thing in the
  1423. agenda listing for the day. Of the entries without a time indication, keep
  1424. the grouped in categories, don't sort the categories, but keep them in
  1425. the sequence given in `org-agenda-files'. Within each category sort by
  1426. priority.
  1427. Leaving out `category-keep' would mean that items will be sorted across
  1428. categories by priority.
  1429. Instead of a single list, this can also be a set of list for specific
  1430. contents, with a context symbol in the car of the list, any of
  1431. `agenda', `todo', `tags', `search' for the corresponding agenda views.
  1432. Custom commands can bind this variable in the options section."
  1433. :group 'org-agenda-sorting
  1434. :type `(choice
  1435. (repeat :tag "General" ,org-sorting-choice)
  1436. (list :tag "Individually"
  1437. (cons (const :tag "Strategy for Weekly/Daily agenda" agenda)
  1438. (repeat ,org-sorting-choice))
  1439. (cons (const :tag "Strategy for TODO lists" todo)
  1440. (repeat ,org-sorting-choice))
  1441. (cons (const :tag "Strategy for Tags matches" tags)
  1442. (repeat ,org-sorting-choice))
  1443. (cons (const :tag "Strategy for search matches" search)
  1444. (repeat ,org-sorting-choice)))))
  1445. (defcustom org-agenda-cmp-user-defined nil
  1446. "A function to define the comparison `user-defined'.
  1447. This function must receive two arguments, agenda entry a and b.
  1448. If a>b, return +1. If a<b, return -1. If they are equal as seen by
  1449. the user comparison, return nil.
  1450. When this is defined, you can make `user-defined-up' and `user-defined-down'
  1451. part of an agenda sorting strategy."
  1452. :group 'org-agenda-sorting
  1453. :type 'symbol)
  1454. (defcustom org-agenda-sort-notime-is-late t
  1455. "Non-nil means items without time are considered late.
  1456. This is only relevant for sorting. When t, items which have no explicit
  1457. time like 15:30 will be considered as 99:01, i.e. later than any items which
  1458. do have a time. When nil, the default time is before 0:00. You can use this
  1459. option to decide if the schedule for today should come before or after timeless
  1460. agenda entries."
  1461. :group 'org-agenda-sorting
  1462. :type 'boolean)
  1463. (defcustom org-agenda-sort-noeffort-is-high t
  1464. "Non-nil means items without effort estimate are sorted as high effort.
  1465. This also applies when filtering an agenda view with respect to the
  1466. < or > effort operator. Then, tasks with no effort defined will be treated
  1467. as tasks with high effort.
  1468. When nil, such items are sorted as 0 minutes effort."
  1469. :group 'org-agenda-sorting
  1470. :type 'boolean)
  1471. (defgroup org-agenda-line-format nil
  1472. "Options concerning the entry prefix in the Org agenda display."
  1473. :tag "Org Agenda Line Format"
  1474. :group 'org-agenda)
  1475. (defcustom org-agenda-prefix-format
  1476. '((agenda . " %i %-12:c%?-12t% s")
  1477. (todo . " %i %-12:c")
  1478. (tags . " %i %-12:c")
  1479. (search . " %i %-12:c"))
  1480. "Format specifications for the prefix of items in the agenda views.
  1481. An alist with one entry per agenda type. The keys of the
  1482. sublists are `agenda', `todo', `search' and `tags'. The values
  1483. are format strings.
  1484. This format works similar to a printf format, with the following meaning:
  1485. %c the category of the item, \"Diary\" for entries from the diary,
  1486. or as given by the CATEGORY keyword or derived from the file name
  1487. %e the effort required by the item
  1488. %l the level of the item (insert X space(s) if item is of level X)
  1489. %i the icon category of the item, see `org-agenda-category-icon-alist'
  1490. %T the last tag of the item (ignore inherited tags, which come first)
  1491. %t the HH:MM time-of-day specification if one applies to the entry
  1492. %s Scheduling/Deadline information, a short string
  1493. %b show breadcrumbs, i.e., the names of the higher levels
  1494. %(expression) Eval EXPRESSION and replace the control string
  1495. by the result
  1496. All specifiers work basically like the standard `%s' of printf, but may
  1497. contain two additional characters: a question mark just after the `%'
  1498. and a whitespace/punctuation character just before the final letter.
  1499. If the first character after `%' is a question mark, the entire field
  1500. will only be included if the corresponding value applies to the current
  1501. entry. This is useful for fields which should have fixed width when
  1502. present, but zero width when absent. For example, \"%?-12t\" will
  1503. result in a 12 character time field if a time of the day is specified,
  1504. but will completely disappear in entries which do not contain a time.
  1505. If there is punctuation or whitespace character just before the
  1506. final format letter, this character will be appended to the field
  1507. value if the value is not empty. For example, the format
  1508. \"%-12:c\" leads to \"Diary: \" if the category is \"Diary\". If
  1509. the category is empty, no additional colon is inserted.
  1510. The default value for the agenda sublist is \" %-12:c%?-12t% s\",
  1511. which means:
  1512. - Indent the line with two space characters
  1513. - Give the category a 12 chars wide field, padded with whitespace on
  1514. the right (because of `-'). Append a colon if there is a category
  1515. (because of `:').
  1516. - If there is a time-of-day, put it into a 12 chars wide field. If no
  1517. time, don't put in an empty field, just skip it (because of '?').
  1518. - Finally, put the scheduling information.
  1519. See also the variables `org-agenda-remove-times-when-in-prefix' and
  1520. `org-agenda-remove-tags'.
  1521. Custom commands can set this variable in the options section."
  1522. :type '(choice
  1523. (string :tag "General format")
  1524. (list :greedy t :tag "View dependent"
  1525. (cons (const agenda) (string :tag "Format"))
  1526. (cons (const todo) (string :tag "Format"))
  1527. (cons (const tags) (string :tag "Format"))
  1528. (cons (const search) (string :tag "Format"))))
  1529. :group 'org-agenda-line-format
  1530. :version "26.1"
  1531. :package-version '(Org . "9.1"))
  1532. (defcustom org-agenda-breadcrumbs-separator "->"
  1533. "The separator of breadcrumbs in agenda lines."
  1534. :group 'org-agenda-line-format
  1535. :package-version '(Org . "9.3")
  1536. :type 'string
  1537. :safe #'stringp)
  1538. (defvar org-prefix-format-compiled nil
  1539. "The compiled prefix format and associated variables.
  1540. This is a list where first element is a list of variable bindings, and second
  1541. element is the compiled format expression. See the variable
  1542. `org-agenda-prefix-format'.")
  1543. (defcustom org-agenda-todo-keyword-format "%-1s"
  1544. "Format for the TODO keyword in agenda lines.
  1545. Set this to something like \"%-12s\" if you want all TODO keywords
  1546. to occupy a fixed space in the agenda display."
  1547. :group 'org-agenda-line-format
  1548. :type 'string)
  1549. (defcustom org-agenda-diary-sexp-prefix nil
  1550. "A regexp that matches part of a diary sexp entry
  1551. which should be treated as scheduling/deadline information in
  1552. `org-agenda'.
  1553. For example, you can use this to extract the `diary-remind-message' from
  1554. `diary-remind' entries."
  1555. :group 'org-agenda-line-format
  1556. :type '(choice (const :tag "None" nil) (regexp :tag "Regexp")))
  1557. (defcustom org-agenda-timerange-leaders '("" "(%d/%d): ")
  1558. "Text preceding timerange entries in the agenda view.
  1559. This is a list with two strings. The first applies when the range
  1560. is entirely on one day. The second applies if the range spans several days.
  1561. The strings may have two \"%d\" format specifiers which will be filled
  1562. with the sequence number of the days, and the total number of days in the
  1563. range, respectively."
  1564. :group 'org-agenda-line-format
  1565. :type '(list
  1566. (string :tag "Deadline today ")
  1567. (choice :tag "Deadline relative"
  1568. (string :tag "Format string")
  1569. (function))))
  1570. (defcustom org-agenda-scheduled-leaders '("Scheduled: " "Sched.%2dx: ")
  1571. "Text preceding scheduled items in the agenda view.
  1572. This is a list with two strings. The first applies when the item is
  1573. scheduled on the current day. The second applies when it has been scheduled
  1574. previously, it may contain a %d indicating that this is the nth time that
  1575. this item is scheduled, due to automatic rescheduling of unfinished items
  1576. for the following day. So this number is one larger than the number of days
  1577. that passed since this item was scheduled first."
  1578. :group 'org-agenda-line-format
  1579. :version "24.4"
  1580. :package-version '(Org . "8.0")
  1581. :type '(list
  1582. (string :tag "Scheduled today ")
  1583. (string :tag "Scheduled previously")))
  1584. (defcustom org-agenda-inactive-leader "["
  1585. "Text preceding item pulled into the agenda by inactive time stamps.
  1586. These entries are added to the agenda when pressing \"[\"."
  1587. :group 'org-agenda-line-format
  1588. :version "24.1"
  1589. :type 'string)
  1590. (defcustom org-agenda-deadline-leaders '("Deadline: " "In %3d d.: " "%2d d. ago: ")
  1591. "Text preceding deadline items in the agenda view.
  1592. This is a list with three strings. The first applies when the item has its
  1593. deadline on the current day. The second applies when the deadline is in the
  1594. future, the third one when it is in the past. The strings may contain %d
  1595. to capture the number of days."
  1596. :group 'org-agenda-line-format
  1597. :version "24.4"
  1598. :package-version '(Org . "8.0")
  1599. :type '(list
  1600. (string :tag "Deadline today ")
  1601. (string :tag "Deadline in the future ")
  1602. (string :tag "Deadline in the past ")))
  1603. (defcustom org-agenda-remove-times-when-in-prefix t
  1604. "Non-nil means remove duplicate time specifications in agenda items.
  1605. When the format `org-agenda-prefix-format' contains a `%t' specifier, a
  1606. time-of-day specification in a headline or diary entry is extracted and
  1607. placed into the prefix. If this option is non-nil, the original specification
  1608. \(a timestamp or -range, or just a plain time(range) specification like
  1609. 11:30-4pm) will be removed for agenda display. This makes the agenda less
  1610. cluttered.
  1611. The option can be t or nil. It may also be the symbol `beg', indicating
  1612. that the time should only be removed when it is located at the beginning of
  1613. the headline/diary entry."
  1614. :group 'org-agenda-line-format
  1615. :type '(choice
  1616. (const :tag "Always" t)
  1617. (const :tag "Never" nil)
  1618. (const :tag "When at beginning of entry" beg)))
  1619. (defcustom org-agenda-remove-timeranges-from-blocks nil
  1620. "Non-nil means remove time ranges specifications in agenda
  1621. items that span on several days."
  1622. :group 'org-agenda-line-format
  1623. :version "24.1"
  1624. :type 'boolean)
  1625. (defcustom org-agenda-default-appointment-duration nil
  1626. "Default duration for appointments that only have a starting time.
  1627. When nil, no duration is specified in such cases.
  1628. When non-nil, this must be the number of minutes, e.g. 60 for one hour."
  1629. :group 'org-agenda-line-format
  1630. :type '(choice
  1631. (integer :tag "Minutes")
  1632. (const :tag "No default duration")))
  1633. (defcustom org-agenda-show-inherited-tags t
  1634. "Non-nil means show inherited tags in each agenda line.
  1635. When this option is set to `always', it takes precedence over
  1636. `org-agenda-use-tag-inheritance' and inherited tags are shown
  1637. in every agenda.
  1638. When this option is set to t (the default), inherited tags are
  1639. shown when they are available, i.e. when the value of
  1640. `org-agenda-use-tag-inheritance' enables tag inheritance for the
  1641. given agenda type.
  1642. This can be set to a list of agenda types in which the agenda
  1643. must display the inherited tags. Available types are `todo',
  1644. `agenda' and `search'.
  1645. When set to nil, never show inherited tags in agenda lines."
  1646. :group 'org-agenda-line-format
  1647. :group 'org-agenda
  1648. :version "24.3"
  1649. :type '(choice
  1650. (const :tag "Show inherited tags when available" t)
  1651. (const :tag "Always show inherited tags" always)
  1652. (repeat :tag "Show inherited tags only in selected agenda types"
  1653. (symbol :tag "Agenda type"))))
  1654. (defcustom org-agenda-use-tag-inheritance '(todo search agenda)
  1655. "List of agenda view types where to use tag inheritance.
  1656. In tags/tags-todo/tags-tree agenda views, tag inheritance is
  1657. controlled by `org-use-tag-inheritance'. In other agenda types,
  1658. `org-use-tag-inheritance' is not used for the selection of the
  1659. agenda entries. Still, you may want the agenda to be aware of
  1660. the inherited tags anyway, e.g. for later tag filtering.
  1661. Allowed value are `todo', `search' and `agenda'.
  1662. This variable has no effect if `org-agenda-show-inherited-tags'
  1663. is set to `always'. In that case, the agenda is aware of those
  1664. tags.
  1665. The default value sets tags in every agenda type. Setting this
  1666. option to nil will speed up non-tags agenda view a lot."
  1667. :group 'org-agenda
  1668. :version "26.1"
  1669. :package-version '(Org . "9.1")
  1670. :type '(choice
  1671. (const :tag "Use tag inheritance in all agenda types" t)
  1672. (repeat :tag "Use tag inheritance in selected agenda types"
  1673. (symbol :tag "Agenda type"))))
  1674. (defcustom org-agenda-hide-tags-regexp nil
  1675. "Regular expression used to filter away specific tags in agenda views.
  1676. This means that these tags will be present, but not be shown in the agenda
  1677. line. Secondary filtering will still work on the hidden tags.
  1678. Nil means don't hide any tags."
  1679. :group 'org-agenda-line-format
  1680. :type '(choice
  1681. (const :tag "Hide none" nil)
  1682. (regexp :tag "Regexp ")))
  1683. (defvaralias 'org-agenda-remove-tags-when-in-prefix
  1684. 'org-agenda-remove-tags)
  1685. (defcustom org-agenda-remove-tags nil
  1686. "Non-nil means remove the tags from the headline copy in the agenda.
  1687. When this is the symbol `prefix', only remove tags when
  1688. `org-agenda-prefix-format' contains a `%T' specifier."
  1689. :group 'org-agenda-line-format
  1690. :type '(choice
  1691. (const :tag "Always" t)
  1692. (const :tag "Never" nil)
  1693. (const :tag "When prefix format contains %T" prefix)))
  1694. (defvaralias 'org-agenda-align-tags-to-column 'org-agenda-tags-column)
  1695. (defcustom org-agenda-tags-column 'auto
  1696. "Shift tags in agenda items to this column.
  1697. If set to `auto', tags will be automatically aligned to the right
  1698. edge of the window.
  1699. If set to a positive number, tags will be left-aligned to that
  1700. column. If set to a negative number, tags will be right-aligned
  1701. to that column. For example, -80 works well for a normal 80
  1702. character screen."
  1703. :group 'org-agenda-line-format
  1704. :type '(choice
  1705. (const :tag "Automatically align to right edge of window" auto)
  1706. (integer :tag "Specific column" -80))
  1707. :package-version '(Org . "9.1")
  1708. :version "26.1")
  1709. (defcustom org-agenda-fontify-priorities 'cookies
  1710. "Non-nil means highlight low and high priorities in agenda.
  1711. When t, the highest priority entries are bold, lowest priority italic.
  1712. However, settings in `org-priority-faces' will overrule these faces.
  1713. When this variable is the symbol `cookies', only fontify the
  1714. cookies, not the entire task.
  1715. This may also be an association list of priority faces, whose
  1716. keys are the character values of `org-priority-highest',
  1717. `org-priority-default', and `org-priority-lowest' (the default values
  1718. are ?A, ?B, and ?C, respectively). The face may be a named face, a
  1719. color as a string, or a list like `(:background \"Red\")'.
  1720. If it is a color, the variable `org-faces-easy-properties'
  1721. determines if it is a foreground or a background color."
  1722. :group 'org-agenda-line-format
  1723. :type '(choice
  1724. (const :tag "Never" nil)
  1725. (const :tag "Defaults" t)
  1726. (const :tag "Cookies only" cookies)
  1727. (repeat :tag "Specify"
  1728. (list (character :tag "Priority" :value ?A)
  1729. (choice :tag "Face "
  1730. (string :tag "Color")
  1731. (sexp :tag "Face"))))))
  1732. (defcustom org-agenda-day-face-function nil
  1733. "Function called to determine what face should be used to display a day.
  1734. The only argument passed to that function is the day. It should
  1735. returns a face, or nil if does not want to specify a face and let
  1736. the normal rules apply."
  1737. :group 'org-agenda-line-format
  1738. :version "24.1"
  1739. :type '(choice (const nil) (function)))
  1740. (defcustom org-agenda-category-icon-alist nil
  1741. "Alist of category icon to be displayed in agenda views.
  1742. Each entry should have the following format:
  1743. (CATEGORY-REGEXP FILE-OR-DATA TYPE DATA-P PROPS)
  1744. Where CATEGORY-REGEXP is a regexp matching the categories where
  1745. the icon should be displayed.
  1746. FILE-OR-DATA either a file path or a string containing image data.
  1747. The other fields can be omitted safely if not needed:
  1748. TYPE indicates the image type.
  1749. DATA-P is a boolean indicating whether the FILE-OR-DATA string is
  1750. image data.
  1751. PROPS are additional image attributes to assign to the image,
  1752. like, e.g. `:ascent center'.
  1753. (\"Org\" \"/path/to/icon.png\" nil nil :ascent center)
  1754. If you want to set the display properties yourself, just put a
  1755. list as second element:
  1756. (CATEGORY-REGEXP (MY PROPERTY LIST))
  1757. For example, to display a 16px horizontal space for Emacs
  1758. category, you can use:
  1759. (\"Emacs\" \\='(space . (:width (16))))"
  1760. :group 'org-agenda-line-format
  1761. :version "24.1"
  1762. :type '(alist :key-type (regexp :tag "Regexp matching category")
  1763. :value-type (choice (list :tag "Icon"
  1764. (string :tag "File or data")
  1765. (symbol :tag "Type")
  1766. (boolean :tag "Data?")
  1767. (repeat :tag "Extra image properties" :inline t sexp))
  1768. (list :tag "Display properties" sexp))))
  1769. (defgroup org-agenda-column-view nil
  1770. "Options concerning column view in the agenda."
  1771. :tag "Org Agenda Column View"
  1772. :group 'org-agenda)
  1773. (defcustom org-agenda-view-columns-initially nil
  1774. "When non-nil, switch to columns view right after creating the agenda."
  1775. :group 'org-agenda-column-view
  1776. :type 'boolean
  1777. :version "26.1"
  1778. :package-version '(Org . "9.0")
  1779. :safe #'booleanp)
  1780. (defcustom org-agenda-columns-show-summaries t
  1781. "Non-nil means show summaries for columns displayed in the agenda view."
  1782. :group 'org-agenda-column-view
  1783. :type 'boolean)
  1784. (defcustom org-agenda-columns-compute-summary-properties t
  1785. "Non-nil means recompute all summary properties before column view.
  1786. When column view in the agenda is listing properties that have a summary
  1787. operator, it can go to all relevant buffers and recompute the summaries
  1788. there. This can mean overhead for the agenda column view, but is necessary
  1789. to have thing up to date.
  1790. As a special case, a CLOCKSUM property also makes sure that the clock
  1791. computations are current."
  1792. :group 'org-agenda-column-view
  1793. :type 'boolean)
  1794. (defcustom org-agenda-columns-add-appointments-to-effort-sum nil
  1795. "Non-nil means the duration of an appointment will add to day effort.
  1796. The property to which appointment durations will be added is the one given
  1797. in the option `org-effort-property'. If an appointment does not have
  1798. an end time, `org-agenda-default-appointment-duration' will be used. If that
  1799. is not set, an appointment without end time will not contribute to the time
  1800. estimate."
  1801. :group 'org-agenda-column-view
  1802. :type 'boolean)
  1803. (defcustom org-agenda-auto-exclude-function nil
  1804. "A function called with a tag to decide if it is filtered on \
  1805. \\<org-agenda-mode-map>`\\[org-agenda-filter-by-tag] RET'.
  1806. The sole argument to the function, which is called once for each
  1807. possible tag, is a string giving the name of the tag. The
  1808. function should return either nil if the tag should be included
  1809. as normal, \"-<TAG>\" to exclude the tag, or \"+<TAG>\" to exclude
  1810. lines not carrying this tag.
  1811. Note that for the purpose of tag filtering, only the lower-case version of
  1812. all tags will be considered, so that this function will only ever see
  1813. the lower-case version of all tags."
  1814. :group 'org-agenda
  1815. :type '(choice (const nil) (function)))
  1816. (defcustom org-agenda-bulk-custom-functions nil
  1817. "Alist of characters and custom functions for bulk actions.
  1818. For example, this value makes those two functions available:
  1819. \\='((?R set-category)
  1820. (?C bulk-cut))
  1821. With selected entries in an agenda buffer, `B R' will call
  1822. the custom function `set-category' on the selected entries.
  1823. Note that functions in this alist don't need to be quoted.
  1824. You can also specify a function which collects arguments to be
  1825. used for each call to your bulk custom function. The argument
  1826. collecting function will be run once and should return a list of
  1827. arguments to pass to the bulk function. For example:
  1828. \\='((?R set-category get-category))
  1829. Now, `B R' will call the custom `get-category' which would prompt
  1830. the user once for a category. That category is then passed as an
  1831. argument to `set-category' for each entry it's called against."
  1832. :type
  1833. '(alist :key-type character
  1834. :value-type
  1835. (group (function :tag "Bulk Custom Function")
  1836. (choice (function :tag "Bulk Custom Argument Function")
  1837. (const :tag "No Bulk Custom Argument Function" nil))))
  1838. :package-version '(Org . "9.5")
  1839. :group 'org-agenda)
  1840. (defmacro org-agenda-with-point-at-orig-entry (string &rest body)
  1841. "Execute BODY with point at location given by `org-hd-marker' property.
  1842. If STRING is non-nil, the text property will be fetched from position 0
  1843. in that string. If STRING is nil, it will be fetched from the beginning
  1844. of the current line."
  1845. (declare (debug t))
  1846. (org-with-gensyms (marker)
  1847. `(let ((,marker (get-text-property (if ,string 0 (point-at-bol))
  1848. 'org-hd-marker ,string)))
  1849. (with-current-buffer (marker-buffer ,marker)
  1850. (save-excursion
  1851. (goto-char ,marker)
  1852. ,@body)))))
  1853. (defun org-add-agenda-custom-command (entry)
  1854. "Replace or add a command in `org-agenda-custom-commands'.
  1855. This is mostly for hacking and trying a new command - once the command
  1856. works you probably want to add it to `org-agenda-custom-commands' for good."
  1857. (let ((ass (assoc (car entry) org-agenda-custom-commands)))
  1858. (if ass
  1859. (setcdr ass (cdr entry))
  1860. (push entry org-agenda-custom-commands))))
  1861. (defmacro org-agenda--insert-overriding-header (default)
  1862. "Insert header into agenda view.
  1863. The inserted header depends on `org-agenda-overriding-header'.
  1864. If the empty string, don't insert a header. If any other string,
  1865. insert it as a header. If nil, insert DEFAULT, which should
  1866. evaluate to a string."
  1867. (declare (debug (form)) (indent defun))
  1868. `(cond
  1869. ((not org-agenda-overriding-header) (insert ,default))
  1870. ((equal org-agenda-overriding-header "") nil)
  1871. ((stringp org-agenda-overriding-header)
  1872. (insert (propertize org-agenda-overriding-header
  1873. 'face 'org-agenda-structure)
  1874. "\n"))
  1875. (t (user-error "Invalid value for `org-agenda-overriding-header': %S"
  1876. org-agenda-overriding-header))))
  1877. ;;; Define the org-agenda-mode
  1878. (defvaralias 'org-agenda-keymap 'org-agenda-mode-map)
  1879. (defvar org-agenda-mode-map (make-sparse-keymap)
  1880. "Keymap for `org-agenda-mode'.")
  1881. (org-remap org-agenda-mode-map 'move-end-of-line 'org-agenda-end-of-line)
  1882. (defvar org-agenda-menu) ; defined later in this file.
  1883. (defvar org-agenda-restrict nil) ; defined later in this file.
  1884. (defvar org-agenda-follow-mode nil)
  1885. (defvar org-agenda-entry-text-mode nil)
  1886. (defvar org-agenda-clockreport-mode nil)
  1887. (defvar org-agenda-show-log nil
  1888. "When non-nil, show the log in the agenda.
  1889. Do not set this directly; instead use
  1890. `org-agenda-start-with-log-mode', which see.")
  1891. (defvar org-agenda-redo-command nil)
  1892. (defvar org-agenda-query-string nil)
  1893. (defvar org-agenda-mode-hook nil
  1894. "Hook run after `org-agenda-mode' is turned on.
  1895. The buffer is still writable when this hook is called.")
  1896. (defvar org-agenda-type nil)
  1897. (defvar org-agenda-force-single-file nil)
  1898. (defvar org-agenda-bulk-marked-entries nil
  1899. "List of markers that refer to marked entries in the agenda.")
  1900. (defvar org-agenda-current-date nil
  1901. "Active date when building the agenda.")
  1902. ;;; Multiple agenda buffers support
  1903. (defcustom org-agenda-sticky nil
  1904. "Non-nil means agenda q key will bury agenda buffers.
  1905. Agenda commands will then show existing buffer instead of generating new ones.
  1906. When nil, `q' will kill the single agenda buffer."
  1907. :group 'org-agenda
  1908. :version "24.3"
  1909. :type 'boolean)
  1910. ;;;###autoload
  1911. (defun org-toggle-sticky-agenda (&optional arg)
  1912. "Toggle `org-agenda-sticky'."
  1913. (interactive "P")
  1914. (let ((new-value (if arg
  1915. (> (prefix-numeric-value arg) 0)
  1916. (not org-agenda-sticky))))
  1917. (if (equal new-value org-agenda-sticky)
  1918. (and (called-interactively-p 'interactive)
  1919. (message "Sticky agenda was already %s"
  1920. (if org-agenda-sticky "enabled" "disabled")))
  1921. (setq org-agenda-sticky new-value)
  1922. (org-agenda-kill-all-agenda-buffers)
  1923. (and (called-interactively-p 'interactive)
  1924. (message "Sticky agenda %s"
  1925. (if org-agenda-sticky "enabled" "disabled"))))))
  1926. (defvar org-agenda-buffer nil
  1927. "Agenda buffer currently being generated.")
  1928. (defvar org-agenda-last-prefix-arg nil)
  1929. (defvar org-agenda-this-buffer-name nil)
  1930. (defvar org-agenda-doing-sticky-redo nil)
  1931. (defvar org-agenda-this-buffer-is-sticky nil)
  1932. (defvar org-agenda-last-indirect-buffer nil
  1933. "Last buffer loaded by `org-agenda-tree-to-indirect-buffer'.")
  1934. (defconst org-agenda-local-vars
  1935. '(org-agenda-this-buffer-name
  1936. org-agenda-undo-list
  1937. org-agenda-pending-undo-list
  1938. org-agenda-follow-mode
  1939. org-agenda-entry-text-mode
  1940. org-agenda-clockreport-mode
  1941. org-agenda-show-log
  1942. org-agenda-redo-command
  1943. org-agenda-query-string
  1944. org-agenda-type
  1945. org-agenda-bulk-marked-entries
  1946. org-agenda-undo-has-started-in
  1947. org-agenda-info
  1948. org-agenda-pre-window-conf
  1949. org-agenda-columns-active
  1950. org-agenda-tag-filter
  1951. org-agenda-category-filter
  1952. org-agenda-top-headline-filter
  1953. org-agenda-regexp-filter
  1954. org-agenda-effort-filter
  1955. org-agenda-markers
  1956. org-agenda-last-search-view-search-was-boolean
  1957. org-agenda-last-indirect-buffer
  1958. org-agenda-filtered-by-category
  1959. org-agenda-filter-form
  1960. org-agenda-cycle-counter
  1961. org-agenda-last-prefix-arg)
  1962. "Variables that must be local in agenda buffers to allow multiple buffers.")
  1963. (defun org-agenda-mode ()
  1964. "Mode for time-sorted view on action items in Org files.
  1965. The following commands are available:
  1966. \\{org-agenda-mode-map}"
  1967. (interactive)
  1968. (ignore-errors (require 'face-remap))
  1969. (let ((agenda-local-vars-to-keep
  1970. '(text-scale-mode-amount
  1971. text-scale-mode
  1972. text-scale-mode-lighter
  1973. face-remapping-alist))
  1974. (save (buffer-local-variables)))
  1975. (kill-all-local-variables)
  1976. (cl-flet ((reset-saved (var-set)
  1977. "Reset variables in VAR-SET to possibly stored value in SAVE."
  1978. (dolist (elem save)
  1979. (pcase elem
  1980. (`(,var . ,val) ;ignore unbound variables
  1981. (when (and val (memq var var-set))
  1982. (set var val)))))))
  1983. (cond (org-agenda-doing-sticky-redo
  1984. ;; Refreshing sticky agenda-buffer
  1985. ;;
  1986. ;; Preserve the value of `org-agenda-local-vars' variables.
  1987. (mapc #'make-local-variable org-agenda-local-vars)
  1988. (reset-saved org-agenda-local-vars)
  1989. (setq-local org-agenda-this-buffer-is-sticky t))
  1990. (org-agenda-sticky
  1991. ;; Creating a sticky Agenda buffer for the first time
  1992. (mapc 'make-local-variable org-agenda-local-vars)
  1993. (setq-local org-agenda-this-buffer-is-sticky t))
  1994. (t
  1995. ;; Creating a non-sticky agenda buffer
  1996. (setq-local org-agenda-this-buffer-is-sticky nil)))
  1997. (mapc #'make-local-variable agenda-local-vars-to-keep)
  1998. (reset-saved agenda-local-vars-to-keep)))
  1999. (setq org-agenda-undo-list nil
  2000. org-agenda-pending-undo-list nil
  2001. org-agenda-bulk-marked-entries nil)
  2002. (setq major-mode 'org-agenda-mode)
  2003. ;; Keep global-font-lock-mode from turning on font-lock-mode
  2004. (setq-local font-lock-global-modes (list 'not major-mode))
  2005. (setq mode-name "Org-Agenda")
  2006. (setq indent-tabs-mode nil)
  2007. (use-local-map org-agenda-mode-map)
  2008. (when org-startup-truncated (setq truncate-lines t))
  2009. (setq-local line-move-visual nil)
  2010. (add-hook 'post-command-hook 'org-agenda-update-agenda-type nil 'local)
  2011. (add-hook 'pre-command-hook 'org-unhighlight nil 'local)
  2012. ;; Make sure properties are removed when copying text
  2013. (if (boundp 'filter-buffer-substring-functions)
  2014. (add-hook 'filter-buffer-substring-functions
  2015. (lambda (fun start end delete)
  2016. (substring-no-properties (funcall fun start end delete)))
  2017. nil t)
  2018. ;; Emacs >= 24.4.
  2019. (add-function :filter-return (local 'filter-buffer-substring-function)
  2020. #'substring-no-properties))
  2021. (unless org-agenda-keep-modes
  2022. (setq org-agenda-follow-mode org-agenda-start-with-follow-mode
  2023. org-agenda-entry-text-mode org-agenda-start-with-entry-text-mode
  2024. org-agenda-show-log org-agenda-start-with-log-mode
  2025. org-agenda-clockreport-mode org-agenda-start-with-clockreport-mode))
  2026. (add-to-invisibility-spec '(org-filtered))
  2027. (add-to-invisibility-spec '(org-link))
  2028. (easy-menu-change
  2029. '("Agenda") "Agenda Files"
  2030. (append
  2031. (list
  2032. (vector
  2033. (if (get 'org-agenda-files 'org-restrict)
  2034. "Restricted to single file"
  2035. "Edit File List")
  2036. '(org-edit-agenda-file-list)
  2037. (not (get 'org-agenda-files 'org-restrict)))
  2038. "--")
  2039. (mapcar 'org-file-menu-entry (org-agenda-files))))
  2040. (org-agenda-set-mode-name)
  2041. (apply
  2042. (if (fboundp 'run-mode-hooks) 'run-mode-hooks 'run-hooks)
  2043. (list 'org-agenda-mode-hook)))
  2044. (substitute-key-definition #'undo #'org-agenda-undo
  2045. org-agenda-mode-map global-map)
  2046. (org-defkey org-agenda-mode-map "\C-i" #'org-agenda-goto)
  2047. (org-defkey org-agenda-mode-map [(tab)] #'org-agenda-goto)
  2048. (org-defkey org-agenda-mode-map "\C-m" #'org-agenda-switch-to)
  2049. (org-defkey org-agenda-mode-map "\C-k" #'org-agenda-kill)
  2050. (org-defkey org-agenda-mode-map "\C-c\C-w" #'org-agenda-refile)
  2051. (org-defkey org-agenda-mode-map [(meta down)] #'org-agenda-drag-line-forward)
  2052. (org-defkey org-agenda-mode-map [(meta up)] #'org-agenda-drag-line-backward)
  2053. (org-defkey org-agenda-mode-map "m" #'org-agenda-bulk-mark)
  2054. (org-defkey org-agenda-mode-map "\M-m" #'org-agenda-bulk-toggle)
  2055. (org-defkey org-agenda-mode-map "*" #'org-agenda-bulk-mark-all)
  2056. (org-defkey org-agenda-mode-map "\M-*" #'org-agenda-bulk-toggle-all)
  2057. (org-defkey org-agenda-mode-map "#" #'org-agenda-dim-blocked-tasks)
  2058. (org-defkey org-agenda-mode-map "%" #'org-agenda-bulk-mark-regexp)
  2059. (org-defkey org-agenda-mode-map "u" #'org-agenda-bulk-unmark)
  2060. (org-defkey org-agenda-mode-map "U" #'org-agenda-bulk-unmark-all)
  2061. (org-defkey org-agenda-mode-map "B" #'org-agenda-bulk-action)
  2062. (org-defkey org-agenda-mode-map "k" #'org-agenda-capture)
  2063. (org-defkey org-agenda-mode-map "A" #'org-agenda-append-agenda)
  2064. (org-defkey org-agenda-mode-map "\C-c\C-x!" #'org-reload)
  2065. (org-defkey org-agenda-mode-map "\C-c\C-x\C-a" #'org-agenda-archive-default)
  2066. (org-defkey org-agenda-mode-map "\C-c\C-xa" #'org-agenda-toggle-archive-tag)
  2067. (org-defkey org-agenda-mode-map "\C-c\C-xA" #'org-agenda-archive-to-archive-sibling)
  2068. (org-defkey org-agenda-mode-map "\C-c\C-x\C-s" #'org-agenda-archive)
  2069. (org-defkey org-agenda-mode-map "\C-c$" #'org-agenda-archive)
  2070. (org-defkey org-agenda-mode-map "$" #'org-agenda-archive)
  2071. (org-defkey org-agenda-mode-map "\C-c\C-o" #'org-agenda-open-link)
  2072. (org-defkey org-agenda-mode-map " " #'org-agenda-show-and-scroll-up)
  2073. (org-defkey org-agenda-mode-map [backspace] #'org-agenda-show-scroll-down)
  2074. (org-defkey org-agenda-mode-map "\d" #'org-agenda-show-scroll-down)
  2075. (org-defkey org-agenda-mode-map [(control shift right)] #'org-agenda-todo-nextset)
  2076. (org-defkey org-agenda-mode-map [(control shift left)] #'org-agenda-todo-previousset)
  2077. (org-defkey org-agenda-mode-map "\C-c\C-xb" #'org-agenda-tree-to-indirect-buffer)
  2078. (org-defkey org-agenda-mode-map "o" #'delete-other-windows)
  2079. (org-defkey org-agenda-mode-map "L" #'org-agenda-recenter)
  2080. (org-defkey org-agenda-mode-map "\C-c\C-t" #'org-agenda-todo)
  2081. (org-defkey org-agenda-mode-map "t" #'org-agenda-todo)
  2082. (org-defkey org-agenda-mode-map "a" #'org-agenda-archive-default-with-confirmation)
  2083. (org-defkey org-agenda-mode-map ":" #'org-agenda-set-tags)
  2084. (org-defkey org-agenda-mode-map "\C-c\C-q" #'org-agenda-set-tags)
  2085. (org-defkey org-agenda-mode-map "." #'org-agenda-goto-today)
  2086. (org-defkey org-agenda-mode-map "j" #'org-agenda-goto-date)
  2087. (org-defkey org-agenda-mode-map "d" #'org-agenda-day-view)
  2088. (org-defkey org-agenda-mode-map "w" #'org-agenda-week-view)
  2089. (org-defkey org-agenda-mode-map "y" #'org-agenda-year-view)
  2090. (org-defkey org-agenda-mode-map "\C-c\C-z" #'org-agenda-add-note)
  2091. (org-defkey org-agenda-mode-map "z" #'org-agenda-add-note)
  2092. (org-defkey org-agenda-mode-map [(shift right)] #'org-agenda-do-date-later)
  2093. (org-defkey org-agenda-mode-map [(shift left)] #'org-agenda-do-date-earlier)
  2094. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (right)] #'org-agenda-do-date-later)
  2095. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (left)] #'org-agenda-do-date-earlier)
  2096. (org-defkey org-agenda-mode-map ">" #'org-agenda-date-prompt)
  2097. (org-defkey org-agenda-mode-map "\C-c\C-s" #'org-agenda-schedule)
  2098. (org-defkey org-agenda-mode-map "\C-c\C-d" #'org-agenda-deadline)
  2099. (let ((l '(1 2 3 4 5 6 7 8 9 0)))
  2100. (while l (org-defkey org-agenda-mode-map
  2101. (number-to-string (pop l)) #'digit-argument)))
  2102. (org-defkey org-agenda-mode-map "F" #'org-agenda-follow-mode)
  2103. (org-defkey org-agenda-mode-map "R" #'org-agenda-clockreport-mode)
  2104. (org-defkey org-agenda-mode-map "E" #'org-agenda-entry-text-mode)
  2105. (org-defkey org-agenda-mode-map "l" #'org-agenda-log-mode)
  2106. (org-defkey org-agenda-mode-map "v" #'org-agenda-view-mode-dispatch)
  2107. (org-defkey org-agenda-mode-map "D" #'org-agenda-toggle-diary)
  2108. (org-defkey org-agenda-mode-map "!" #'org-agenda-toggle-deadlines)
  2109. (org-defkey org-agenda-mode-map "G" #'org-agenda-toggle-time-grid)
  2110. (org-defkey org-agenda-mode-map "r" #'org-agenda-redo)
  2111. (org-defkey org-agenda-mode-map "g" #'org-agenda-redo-all)
  2112. (org-defkey org-agenda-mode-map "e" #'org-agenda-set-effort)
  2113. (org-defkey org-agenda-mode-map "\C-c\C-xe" #'org-agenda-set-effort)
  2114. (org-defkey org-agenda-mode-map "\C-c\C-x\C-e"
  2115. #'org-clock-modify-effort-estimate)
  2116. (org-defkey org-agenda-mode-map "\C-c\C-xp" #'org-agenda-set-property)
  2117. (org-defkey org-agenda-mode-map "q" #'org-agenda-quit)
  2118. (org-defkey org-agenda-mode-map "Q" #'org-agenda-Quit)
  2119. (org-defkey org-agenda-mode-map "x" #'org-agenda-exit)
  2120. (org-defkey org-agenda-mode-map "\C-x\C-w" #'org-agenda-write)
  2121. (org-defkey org-agenda-mode-map "\C-x\C-s" #'org-save-all-org-buffers)
  2122. (org-defkey org-agenda-mode-map "s" #'org-save-all-org-buffers)
  2123. (org-defkey org-agenda-mode-map "T" #'org-agenda-show-tags)
  2124. (org-defkey org-agenda-mode-map "n" #'org-agenda-next-line)
  2125. (org-defkey org-agenda-mode-map "p" #'org-agenda-previous-line)
  2126. (org-defkey org-agenda-mode-map "N" #'org-agenda-next-item)
  2127. (org-defkey org-agenda-mode-map "P" #'org-agenda-previous-item)
  2128. (substitute-key-definition #'next-line #'org-agenda-next-line
  2129. org-agenda-mode-map global-map)
  2130. (substitute-key-definition #'previous-line #'org-agenda-previous-line
  2131. org-agenda-mode-map global-map)
  2132. (org-defkey org-agenda-mode-map "\C-c\C-a" #'org-attach)
  2133. (org-defkey org-agenda-mode-map "\C-c\C-n" #'org-agenda-next-date-line)
  2134. (org-defkey org-agenda-mode-map "\C-c\C-p" #'org-agenda-previous-date-line)
  2135. (org-defkey org-agenda-mode-map "\C-c," #'org-agenda-priority)
  2136. (org-defkey org-agenda-mode-map "," #'org-agenda-priority)
  2137. (org-defkey org-agenda-mode-map "i" #'org-agenda-diary-entry)
  2138. (org-defkey org-agenda-mode-map "c" #'org-agenda-goto-calendar)
  2139. (org-defkey org-agenda-mode-map "C" #'org-agenda-convert-date)
  2140. (org-defkey org-agenda-mode-map "M" #'org-agenda-phases-of-moon)
  2141. (org-defkey org-agenda-mode-map "S" #'org-agenda-sunrise-sunset)
  2142. (org-defkey org-agenda-mode-map "h" #'org-agenda-holidays)
  2143. (org-defkey org-agenda-mode-map "H" #'org-agenda-holidays)
  2144. (org-defkey org-agenda-mode-map "\C-c\C-x\C-i" #'org-agenda-clock-in)
  2145. (org-defkey org-agenda-mode-map "I" #'org-agenda-clock-in)
  2146. (org-defkey org-agenda-mode-map "\C-c\C-x\C-o" #'org-agenda-clock-out)
  2147. (org-defkey org-agenda-mode-map "O" #'org-agenda-clock-out)
  2148. (org-defkey org-agenda-mode-map "\C-c\C-x\C-x" #'org-agenda-clock-cancel)
  2149. (org-defkey org-agenda-mode-map "X" #'org-agenda-clock-cancel)
  2150. (org-defkey org-agenda-mode-map "\C-c\C-x\C-j" #'org-clock-goto)
  2151. (org-defkey org-agenda-mode-map "J" #'org-agenda-clock-goto)
  2152. (org-defkey org-agenda-mode-map "+" #'org-agenda-priority-up)
  2153. (org-defkey org-agenda-mode-map "-" #'org-agenda-priority-down)
  2154. (org-defkey org-agenda-mode-map [(shift up)] #'org-agenda-priority-up)
  2155. (org-defkey org-agenda-mode-map [(shift down)] #'org-agenda-priority-down)
  2156. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (up)] #'org-agenda-priority-up)
  2157. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (down)] #'org-agenda-priority-down)
  2158. (org-defkey org-agenda-mode-map "f" #'org-agenda-later)
  2159. (org-defkey org-agenda-mode-map "b" #'org-agenda-earlier)
  2160. (org-defkey org-agenda-mode-map "\C-c\C-x\C-c" #'org-agenda-columns)
  2161. (org-defkey org-agenda-mode-map "\C-c\C-x>" #'org-agenda-remove-restriction-lock)
  2162. (org-defkey org-agenda-mode-map "\C-c\C-x<" #'org-agenda-set-restriction-lock-from-agenda)
  2163. (org-defkey org-agenda-mode-map "[" #'org-agenda-manipulate-query-add)
  2164. (org-defkey org-agenda-mode-map "]" #'org-agenda-manipulate-query-subtract)
  2165. (org-defkey org-agenda-mode-map "{" #'org-agenda-manipulate-query-add-re)
  2166. (org-defkey org-agenda-mode-map "}" #'org-agenda-manipulate-query-subtract-re)
  2167. (org-defkey org-agenda-mode-map "\\" #'org-agenda-filter-by-tag)
  2168. (org-defkey org-agenda-mode-map "_" #'org-agenda-filter-by-effort)
  2169. (org-defkey org-agenda-mode-map "=" #'org-agenda-filter-by-regexp)
  2170. (org-defkey org-agenda-mode-map "/" #'org-agenda-filter)
  2171. (org-defkey org-agenda-mode-map "|" #'org-agenda-filter-remove-all)
  2172. (org-defkey org-agenda-mode-map "~" #'org-agenda-limit-interactively)
  2173. (org-defkey org-agenda-mode-map "<" #'org-agenda-filter-by-category)
  2174. (org-defkey org-agenda-mode-map "^" #'org-agenda-filter-by-top-headline)
  2175. (org-defkey org-agenda-mode-map ";" #'org-timer-set-timer)
  2176. (org-defkey org-agenda-mode-map "\C-c\C-x_" #'org-timer-stop)
  2177. (org-defkey org-agenda-mode-map "?" #'org-agenda-show-the-flagging-note)
  2178. (org-defkey org-agenda-mode-map "\C-c\C-x\C-mg" #'org-mobile-pull)
  2179. (org-defkey org-agenda-mode-map "\C-c\C-x\C-mp" #'org-mobile-push)
  2180. (org-defkey org-agenda-mode-map "\C-c\C-xI" #'org-info-find-node)
  2181. (org-defkey org-agenda-mode-map [mouse-2] #'org-agenda-goto-mouse)
  2182. (org-defkey org-agenda-mode-map [mouse-3] #'org-agenda-show-mouse)
  2183. (org-defkey org-agenda-mode-map [remap forward-paragraph] #'org-agenda-forward-block)
  2184. (org-defkey org-agenda-mode-map [remap backward-paragraph] #'org-agenda-backward-block)
  2185. (org-defkey org-agenda-mode-map "\C-c\C-c" #'org-agenda-ctrl-c-ctrl-c)
  2186. (when org-agenda-mouse-1-follows-link
  2187. (org-defkey org-agenda-mode-map [follow-link] 'mouse-face))
  2188. (easy-menu-define org-agenda-menu org-agenda-mode-map "Agenda menu"
  2189. '("Agenda"
  2190. ("Agenda Files")
  2191. "--"
  2192. ("Agenda Dates"
  2193. ["Goto Today" org-agenda-goto-today (org-agenda-check-type nil 'agenda)]
  2194. ["Next Dates" org-agenda-later (org-agenda-check-type nil 'agenda)]
  2195. ["Previous Dates" org-agenda-earlier (org-agenda-check-type nil 'agenda)]
  2196. ["Jump to date" org-agenda-goto-date (org-agenda-check-type nil 'agenda)])
  2197. "--"
  2198. ("View"
  2199. ["Day View" org-agenda-day-view
  2200. :active (org-agenda-check-type nil 'agenda)
  2201. :style radio :selected (eq org-agenda-current-span 'day)
  2202. :keys "v d (or just d)"]
  2203. ["Week View" org-agenda-week-view
  2204. :active (org-agenda-check-type nil 'agenda)
  2205. :style radio :selected (eq org-agenda-current-span 'week)
  2206. :keys "v w"]
  2207. ["Fortnight View" org-agenda-fortnight-view
  2208. :active (org-agenda-check-type nil 'agenda)
  2209. :style radio :selected (eq org-agenda-current-span 'fortnight)
  2210. :keys "v t"]
  2211. ["Month View" org-agenda-month-view
  2212. :active (org-agenda-check-type nil 'agenda)
  2213. :style radio :selected (eq org-agenda-current-span 'month)
  2214. :keys "v m"]
  2215. ["Year View" org-agenda-year-view
  2216. :active (org-agenda-check-type nil 'agenda)
  2217. :style radio :selected (eq org-agenda-current-span 'year)
  2218. :keys "v y"]
  2219. "--"
  2220. ["Include Diary" org-agenda-toggle-diary
  2221. :style toggle :selected org-agenda-include-diary
  2222. :active (org-agenda-check-type nil 'agenda)]
  2223. ["Include Deadlines" org-agenda-toggle-deadlines
  2224. :style toggle :selected org-agenda-include-deadlines
  2225. :active (org-agenda-check-type nil 'agenda)]
  2226. ["Use Time Grid" org-agenda-toggle-time-grid
  2227. :style toggle :selected org-agenda-use-time-grid
  2228. :active (org-agenda-check-type nil 'agenda)]
  2229. "--"
  2230. ["Show clock report" org-agenda-clockreport-mode
  2231. :style toggle :selected org-agenda-clockreport-mode
  2232. :active (org-agenda-check-type nil 'agenda)]
  2233. ["Show some entry text" org-agenda-entry-text-mode
  2234. :style toggle :selected org-agenda-entry-text-mode
  2235. :active t]
  2236. "--"
  2237. ["Show Logbook entries" org-agenda-log-mode
  2238. :style toggle :selected org-agenda-show-log
  2239. :active (org-agenda-check-type nil 'agenda)
  2240. :keys "v l (or just l)"]
  2241. ["Include archived trees" org-agenda-archives-mode
  2242. :style toggle :selected org-agenda-archives-mode :active t
  2243. :keys "v a"]
  2244. ["Include archive files" (org-agenda-archives-mode t)
  2245. :style toggle :selected (eq org-agenda-archives-mode t) :active t
  2246. :keys "v A"]
  2247. "--"
  2248. ["Remove Restriction" org-agenda-remove-restriction-lock org-agenda-restrict])
  2249. ("Filter current view"
  2250. ["with generic interface" org-agenda-filter t]
  2251. "--"
  2252. ["by category at cursor" org-agenda-filter-by-category t]
  2253. ["by tag" org-agenda-filter-by-tag t]
  2254. ["by effort" org-agenda-filter-by-effort t]
  2255. ["by regexp" org-agenda-filter-by-regexp t]
  2256. ["by top-level headline" org-agenda-filter-by-top-headline t]
  2257. "--"
  2258. ["Remove all filtering" org-agenda-filter-remove-all t]
  2259. "--"
  2260. ["limit" org-agenda-limit-interactively t])
  2261. ["Rebuild buffer" org-agenda-redo t]
  2262. ["Write view to file" org-agenda-write t]
  2263. ["Save all Org buffers" org-save-all-org-buffers t]
  2264. "--"
  2265. ["Show original entry" org-agenda-show t]
  2266. ["Go To (other window)" org-agenda-goto t]
  2267. ["Go To (this window)" org-agenda-switch-to t]
  2268. ["Capture with cursor date" org-agenda-capture t]
  2269. ["Follow Mode" org-agenda-follow-mode
  2270. :style toggle :selected org-agenda-follow-mode :active t]
  2271. ;; ["Tree to indirect frame" org-agenda-tree-to-indirect-buffer t]
  2272. "--"
  2273. ("TODO"
  2274. ["Cycle TODO" org-agenda-todo t]
  2275. ["Next TODO set" org-agenda-todo-nextset t]
  2276. ["Previous TODO set" org-agenda-todo-previousset t]
  2277. ["Add note" org-agenda-add-note t])
  2278. ("Archive/Refile/Delete"
  2279. ["Archive default" org-agenda-archive-default t]
  2280. ["Archive default" org-agenda-archive-default-with-confirmation t]
  2281. ["Toggle ARCHIVE tag" org-agenda-toggle-archive-tag t]
  2282. ["Move to archive sibling" org-agenda-archive-to-archive-sibling t]
  2283. ["Archive subtree" org-agenda-archive t]
  2284. "--"
  2285. ["Refile" org-agenda-refile t]
  2286. "--"
  2287. ["Delete subtree" org-agenda-kill t])
  2288. ("Bulk action"
  2289. ["Mark entry" org-agenda-bulk-mark t]
  2290. ["Mark all" org-agenda-bulk-mark-all t]
  2291. ["Unmark entry" org-agenda-bulk-unmark t]
  2292. ["Unmark all" org-agenda-bulk-unmark-all :active t :keys "U"]
  2293. ["Toggle mark" org-agenda-bulk-toggle t]
  2294. ["Toggle all" org-agenda-bulk-toggle-all t]
  2295. ["Mark regexp" org-agenda-bulk-mark-regexp t])
  2296. ["Act on all marked" org-agenda-bulk-action t]
  2297. "--"
  2298. ("Tags and Properties"
  2299. ["Show all Tags" org-agenda-show-tags t]
  2300. ["Set Tags current line" org-agenda-set-tags (not (org-region-active-p))]
  2301. ["Change tag in region" org-agenda-set-tags (org-region-active-p)]
  2302. "--"
  2303. ["Column View" org-columns t])
  2304. ("Deadline/Schedule"
  2305. ["Schedule" org-agenda-schedule t]
  2306. ["Set Deadline" org-agenda-deadline t]
  2307. "--"
  2308. ["Change Date +1 day" org-agenda-date-later (org-agenda-check-type nil 'agenda)]
  2309. ["Change Date -1 day" org-agenda-date-earlier (org-agenda-check-type nil 'agenda)]
  2310. ["Change Time +1 hour" org-agenda-do-date-later :active (org-agenda-check-type nil 'agenda) :keys "C-u S-right"]
  2311. ["Change Time -1 hour" org-agenda-do-date-earlier :active (org-agenda-check-type nil 'agenda) :keys "C-u S-left"]
  2312. ["Change Time + min" org-agenda-date-later :active (org-agenda-check-type nil 'agenda) :keys "C-u C-u S-right"]
  2313. ["Change Time - min" org-agenda-date-earlier :active (org-agenda-check-type nil 'agenda) :keys "C-u C-u S-left"]
  2314. ["Change Date to ..." org-agenda-date-prompt (org-agenda-check-type nil 'agenda)])
  2315. ("Clock and Effort"
  2316. ["Clock in" org-agenda-clock-in t]
  2317. ["Clock out" org-agenda-clock-out t]
  2318. ["Clock cancel" org-agenda-clock-cancel t]
  2319. ["Goto running clock" org-clock-goto t]
  2320. "--"
  2321. ["Set Effort" org-agenda-set-effort t]
  2322. ["Change clocked effort" org-clock-modify-effort-estimate
  2323. (org-clock-is-active)])
  2324. ("Priority"
  2325. ["Set Priority" org-agenda-priority t]
  2326. ["Increase Priority" org-agenda-priority-up t]
  2327. ["Decrease Priority" org-agenda-priority-down t]
  2328. ["Show Priority" org-priority-show t])
  2329. ("Calendar/Diary"
  2330. ["New Diary Entry" org-agenda-diary-entry (org-agenda-check-type nil 'agenda)]
  2331. ["Goto Calendar" org-agenda-goto-calendar (org-agenda-check-type nil 'agenda)]
  2332. ["Phases of the Moon" org-agenda-phases-of-moon (org-agenda-check-type nil 'agenda)]
  2333. ["Sunrise/Sunset" org-agenda-sunrise-sunset (org-agenda-check-type nil 'agenda)]
  2334. ["Holidays" org-agenda-holidays (org-agenda-check-type nil 'agenda)]
  2335. ["Convert" org-agenda-convert-date (org-agenda-check-type nil 'agenda)]
  2336. "--"
  2337. ["Create iCalendar File" org-icalendar-combine-agenda-files t])
  2338. "--"
  2339. ["Undo Remote Editing" org-agenda-undo org-agenda-undo-list]
  2340. "--"
  2341. ("MobileOrg"
  2342. ["Push Files and Views" org-mobile-push t]
  2343. ["Get Captured and Flagged" org-mobile-pull t]
  2344. ["Find FLAGGED Tasks" (org-agenda nil "?") :active t :keys "\\[org-agenda] ?"]
  2345. ["Show note / unflag" org-agenda-show-the-flagging-note t]
  2346. "--"
  2347. ["Setup" (progn (require 'org-mobile) (customize-group 'org-mobile)) t])
  2348. "--"
  2349. ["Quit" org-agenda-quit t]
  2350. ["Exit and Release Buffers" org-agenda-exit t]
  2351. ))
  2352. ;;; Agenda undo
  2353. (defvar org-agenda-allow-remote-undo t
  2354. "Non-nil means allow remote undo from the agenda buffer.")
  2355. (defvar org-agenda-undo-has-started-in nil
  2356. "Buffers that have already seen `undo-start' in the current undo sequence.")
  2357. (defun org-agenda-undo ()
  2358. "Undo a remote editing step in the agenda.
  2359. This undoes changes both in the agenda buffer and in the remote buffer
  2360. that have been changed along."
  2361. (interactive)
  2362. (or org-agenda-allow-remote-undo
  2363. (user-error "Check the variable `org-agenda-allow-remote-undo' to activate remote undo"))
  2364. (when (not (eq this-command last-command))
  2365. (setq org-agenda-undo-has-started-in nil
  2366. org-agenda-pending-undo-list org-agenda-undo-list))
  2367. (when (not org-agenda-pending-undo-list)
  2368. (user-error "No further undo information"))
  2369. (let* ((entry (pop org-agenda-pending-undo-list))
  2370. buf line cmd rembuf)
  2371. (setq cmd (pop entry) line (pop entry))
  2372. (setq rembuf (nth 2 entry))
  2373. (org-with-remote-undo rembuf
  2374. (while (bufferp (setq buf (pop entry)))
  2375. (when (pop entry)
  2376. (with-current-buffer buf
  2377. (let ((last-undo-buffer buf)
  2378. (inhibit-read-only t))
  2379. (unless (memq buf org-agenda-undo-has-started-in)
  2380. (push buf org-agenda-undo-has-started-in)
  2381. (make-local-variable 'pending-undo-list)
  2382. (undo-start))
  2383. (while (and pending-undo-list
  2384. (listp pending-undo-list)
  2385. (not (car pending-undo-list)))
  2386. (pop pending-undo-list))
  2387. (undo-more 1))))))
  2388. (org-goto-line line)
  2389. (message "`%s' undone (buffer %s)" cmd (buffer-name rembuf))))
  2390. (defun org-verify-change-for-undo (l1 l2)
  2391. "Verify that a real change occurred between the undo lists L1 and L2."
  2392. (while (and l1 (listp l1) (null (car l1))) (pop l1))
  2393. (while (and l2 (listp l2) (null (car l2))) (pop l2))
  2394. (not (eq l1 l2)))
  2395. ;;; Agenda dispatch
  2396. (defvar org-agenda-restrict-begin (make-marker))
  2397. (defvar org-agenda-restrict-end (make-marker))
  2398. (defvar org-agenda-last-dispatch-buffer nil)
  2399. (defvar org-agenda-overriding-restriction nil)
  2400. (defcustom org-agenda-custom-commands-contexts nil
  2401. "Alist of custom agenda keys and contextual rules.
  2402. For example, if you have a custom agenda command \"p\" and you
  2403. want this command to be accessible only from plain text files,
  2404. use this:
  2405. \\='((\"p\" ((in-file . \"\\\\.txt\\\\'\"))))
  2406. Here are the available contexts definitions:
  2407. in-file: command displayed only in matching files
  2408. in-mode: command displayed only in matching modes
  2409. not-in-file: command not displayed in matching files
  2410. not-in-mode: command not displayed in matching modes
  2411. in-buffer: command displayed only in matching buffers
  2412. not-in-buffer: command not displayed in matching buffers
  2413. [function]: a custom function taking no argument
  2414. If you define several checks, the agenda command will be
  2415. accessible if there is at least one valid check.
  2416. You can also bind a key to another agenda custom command
  2417. depending on contextual rules.
  2418. \\='((\"p\" \"q\" ((in-file . \"\\\\.txt\\\\'\"))))
  2419. Here it means: in .txt files, use \"p\" as the key for the
  2420. agenda command otherwise associated with \"q\". (The command
  2421. originally associated with \"q\" is not displayed to avoid
  2422. duplicates.)"
  2423. :version "24.3"
  2424. :group 'org-agenda-custom-commands
  2425. :type '(repeat (list :tag "Rule"
  2426. (string :tag " Agenda key")
  2427. (string :tag "Replace by command")
  2428. (repeat :tag "Available when"
  2429. (choice
  2430. (cons :tag "Condition"
  2431. (choice
  2432. (const :tag "In file" in-file)
  2433. (const :tag "Not in file" not-in-file)
  2434. (const :tag "In buffer" in-buffer)
  2435. (const :tag "Not in buffer" not-in-buffer)
  2436. (const :tag "In mode" in-mode)
  2437. (const :tag "Not in mode" not-in-mode))
  2438. (regexp))
  2439. (function :tag "Custom function"))))))
  2440. (defcustom org-agenda-max-entries nil
  2441. "Maximum number of entries to display in an agenda.
  2442. This can be nil (no limit) or an integer or an alist of agenda
  2443. types with an associated number of entries to display in this
  2444. type."
  2445. :version "24.4"
  2446. :package-version '(Org . "8.0")
  2447. :group 'org-agenda-custom-commands
  2448. :type '(choice (symbol :tag "No limit" nil)
  2449. (integer :tag "Max number of entries")
  2450. (repeat
  2451. (cons (choice :tag "Agenda type"
  2452. (const agenda)
  2453. (const todo)
  2454. (const tags)
  2455. (const search))
  2456. (integer :tag "Max number of entries")))))
  2457. (defcustom org-agenda-max-todos nil
  2458. "Maximum number of TODOs to display in an agenda.
  2459. This can be nil (no limit) or an integer or an alist of agenda
  2460. types with an associated number of entries to display in this
  2461. type."
  2462. :version "24.4"
  2463. :package-version '(Org . "8.0")
  2464. :group 'org-agenda-custom-commands
  2465. :type '(choice (symbol :tag "No limit" nil)
  2466. (integer :tag "Max number of TODOs")
  2467. (repeat
  2468. (cons (choice :tag "Agenda type"
  2469. (const agenda)
  2470. (const todo)
  2471. (const tags)
  2472. (const search))
  2473. (integer :tag "Max number of TODOs")))))
  2474. (defcustom org-agenda-max-tags nil
  2475. "Maximum number of tagged entries to display in an agenda.
  2476. This can be nil (no limit) or an integer or an alist of agenda
  2477. types with an associated number of entries to display in this
  2478. type."
  2479. :version "24.4"
  2480. :package-version '(Org . "8.0")
  2481. :group 'org-agenda-custom-commands
  2482. :type '(choice (symbol :tag "No limit" nil)
  2483. (integer :tag "Max number of tagged entries")
  2484. (repeat
  2485. (cons (choice :tag "Agenda type"
  2486. (const agenda)
  2487. (const todo)
  2488. (const tags)
  2489. (const search))
  2490. (integer :tag "Max number of tagged entries")))))
  2491. (defcustom org-agenda-max-effort nil
  2492. "Maximum cumulated effort duration for the agenda.
  2493. This can be nil (no limit) or a number of minutes (as an integer)
  2494. or an alist of agenda types with an associated number of minutes
  2495. to limit entries to in this type."
  2496. :version "24.4"
  2497. :package-version '(Org . "8.0")
  2498. :group 'org-agenda-custom-commands
  2499. :type '(choice (symbol :tag "No limit" nil)
  2500. (integer :tag "Max number of minutes")
  2501. (repeat
  2502. (cons (choice :tag "Agenda type"
  2503. (const agenda)
  2504. (const todo)
  2505. (const tags)
  2506. (const search))
  2507. (integer :tag "Max number of minutes")))))
  2508. (defvar org-agenda-keep-restricted-file-list nil)
  2509. (defvar org-keys nil)
  2510. (defvar org-match nil)
  2511. ;;;###autoload
  2512. (defun org-agenda (&optional arg org-keys restriction)
  2513. "Dispatch agenda commands to collect entries to the agenda buffer.
  2514. Prompts for a command to execute. Any prefix arg will be passed
  2515. on to the selected command. The default selections are:
  2516. a Call `org-agenda-list' to display the agenda for current day or week.
  2517. t Call `org-todo-list' to display the global todo list.
  2518. T Call `org-todo-list' to display the global todo list, select only
  2519. entries with a specific TODO keyword (the user gets a prompt).
  2520. m Call `org-tags-view' to display headlines with tags matching
  2521. a condition (the user is prompted for the condition).
  2522. M Like `m', but select only TODO entries, no ordinary headlines.
  2523. e Export views to associated files.
  2524. s Search entries for keywords.
  2525. S Search entries for keywords, only with TODO keywords.
  2526. / Multi occur across all agenda files and also files listed
  2527. in `org-agenda-text-search-extra-files'.
  2528. < Restrict agenda commands to buffer, subtree, or region.
  2529. Press several times to get the desired effect.
  2530. > Remove a previous restriction.
  2531. # List \"stuck\" projects.
  2532. ! Configure what \"stuck\" means.
  2533. C Configure custom agenda commands.
  2534. More commands can be added by configuring the variable
  2535. `org-agenda-custom-commands'. In particular, specific tags and TODO keyword
  2536. searches can be pre-defined in this way.
  2537. If the current buffer is in Org mode and visiting a file, you can also
  2538. first press `<' once to indicate that the agenda should be temporarily
  2539. \(until the next use of `\\[org-agenda]') restricted to the current file.
  2540. Pressing `<' twice means to restrict to the current subtree or region
  2541. \(if active)."
  2542. (interactive "P")
  2543. (catch 'exit
  2544. (let* ((prefix-descriptions nil)
  2545. (org-agenda-buffer-name org-agenda-buffer-name)
  2546. (org-agenda-window-setup (if (equal (buffer-name)
  2547. org-agenda-buffer-name)
  2548. 'current-window
  2549. org-agenda-window-setup))
  2550. (org-agenda-custom-commands-orig org-agenda-custom-commands)
  2551. (org-agenda-custom-commands
  2552. ;; normalize different versions
  2553. (delq nil
  2554. (mapcar
  2555. (lambda (x)
  2556. (cond ((stringp (cdr x))
  2557. (push x prefix-descriptions)
  2558. nil)
  2559. ((stringp (nth 1 x)) x)
  2560. ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
  2561. (t (cons (car x) (cons "" (cdr x))))))
  2562. org-agenda-custom-commands)))
  2563. (org-agenda-custom-commands
  2564. (org-contextualize-keys
  2565. org-agenda-custom-commands org-agenda-custom-commands-contexts))
  2566. (buf (current-buffer))
  2567. (bfn (buffer-file-name (buffer-base-buffer)))
  2568. entry key type org-match lprops ans)
  2569. ;; Turn off restriction unless there is an overriding one,
  2570. (unless org-agenda-overriding-restriction
  2571. (unless org-agenda-keep-restricted-file-list
  2572. ;; There is a request to keep the file list in place
  2573. (put 'org-agenda-files 'org-restrict nil))
  2574. (setq org-agenda-restrict nil)
  2575. (move-marker org-agenda-restrict-begin nil)
  2576. (move-marker org-agenda-restrict-end nil))
  2577. ;; Delete old local properties
  2578. (put 'org-agenda-redo-command 'org-lprops nil)
  2579. ;; Delete previously set last-arguments
  2580. (put 'org-agenda-redo-command 'last-args nil)
  2581. ;; Remember where this call originated
  2582. (setq org-agenda-last-dispatch-buffer (current-buffer))
  2583. (unless org-keys
  2584. (setq ans (org-agenda-get-restriction-and-command prefix-descriptions)
  2585. org-keys (car ans)
  2586. restriction (cdr ans)))
  2587. ;; If we have sticky agenda buffers, set a name for the buffer,
  2588. ;; depending on the invoking keys. The user may still set this
  2589. ;; as a command option, which will overwrite what we do here.
  2590. (when org-agenda-sticky
  2591. (setq org-agenda-buffer-name
  2592. (format "*Org Agenda(%s)*" org-keys)))
  2593. ;; Establish the restriction, if any
  2594. (when (and (not org-agenda-overriding-restriction) restriction)
  2595. (put 'org-agenda-files 'org-restrict (list bfn))
  2596. (cond
  2597. ((eq restriction 'region)
  2598. (setq org-agenda-restrict (current-buffer))
  2599. (move-marker org-agenda-restrict-begin (region-beginning))
  2600. (move-marker org-agenda-restrict-end (region-end)))
  2601. ((eq restriction 'subtree)
  2602. (save-excursion
  2603. (setq org-agenda-restrict (current-buffer))
  2604. (org-back-to-heading t)
  2605. (move-marker org-agenda-restrict-begin (point))
  2606. (move-marker org-agenda-restrict-end
  2607. (progn (org-end-of-subtree t)))))
  2608. ((and (eq restriction 'buffer)
  2609. (or (< 1 (point-min))
  2610. (< (point-max) (1+ (buffer-size)))))
  2611. (setq org-agenda-restrict (current-buffer))
  2612. (move-marker org-agenda-restrict-begin (point-min))
  2613. (move-marker org-agenda-restrict-end (point-max)))))
  2614. ;; For example the todo list should not need it (but does...)
  2615. (cond
  2616. ((setq entry (assoc org-keys org-agenda-custom-commands))
  2617. (if (or (symbolp (nth 2 entry)) (functionp (nth 2 entry)))
  2618. (progn
  2619. (setq type (nth 2 entry) org-match (eval (nth 3 entry))
  2620. lprops (nth 4 entry))
  2621. (when org-agenda-sticky
  2622. (setq org-agenda-buffer-name
  2623. (or (and (stringp org-match) (format "*Org Agenda(%s:%s)*" org-keys org-match))
  2624. (format "*Org Agenda(%s)*" org-keys))))
  2625. (put 'org-agenda-redo-command 'org-lprops lprops)
  2626. (cond
  2627. ((eq type 'agenda)
  2628. (org-let lprops '(org-agenda-list current-prefix-arg)))
  2629. ((eq type 'agenda*)
  2630. (org-let lprops '(org-agenda-list current-prefix-arg nil nil t)))
  2631. ((eq type 'alltodo)
  2632. (org-let lprops '(org-todo-list current-prefix-arg)))
  2633. ((eq type 'search)
  2634. (org-let lprops '(org-search-view current-prefix-arg org-match nil)))
  2635. ((eq type 'stuck)
  2636. (org-let lprops '(org-agenda-list-stuck-projects
  2637. current-prefix-arg)))
  2638. ((eq type 'tags)
  2639. (org-let lprops '(org-tags-view current-prefix-arg org-match)))
  2640. ((eq type 'tags-todo)
  2641. (org-let lprops '(org-tags-view '(4) org-match)))
  2642. ((eq type 'todo)
  2643. (org-let lprops '(org-todo-list org-match)))
  2644. ((eq type 'tags-tree)
  2645. (org-check-for-org-mode)
  2646. (org-let lprops '(org-match-sparse-tree current-prefix-arg org-match)))
  2647. ((eq type 'todo-tree)
  2648. (org-check-for-org-mode)
  2649. (org-let lprops
  2650. '(org-occur (concat "^" org-outline-regexp "[ \t]*"
  2651. (regexp-quote org-match) "\\>"))))
  2652. ((eq type 'occur-tree)
  2653. (org-check-for-org-mode)
  2654. (org-let lprops '(org-occur org-match)))
  2655. ((functionp type)
  2656. (org-let lprops '(funcall type org-match)))
  2657. ((fboundp type)
  2658. (org-let lprops '(funcall type org-match)))
  2659. (t (user-error "Invalid custom agenda command type %s" type))))
  2660. (org-agenda-run-series (nth 1 entry) (cddr entry))))
  2661. ((equal org-keys "C")
  2662. (setq org-agenda-custom-commands org-agenda-custom-commands-orig)
  2663. (customize-variable 'org-agenda-custom-commands))
  2664. ((equal org-keys "a") (call-interactively 'org-agenda-list))
  2665. ((equal org-keys "s") (call-interactively 'org-search-view))
  2666. ((equal org-keys "S") (org-call-with-arg 'org-search-view (or arg '(4))))
  2667. ((equal org-keys "t") (call-interactively 'org-todo-list))
  2668. ((equal org-keys "T") (org-call-with-arg 'org-todo-list (or arg '(4))))
  2669. ((equal org-keys "m") (call-interactively 'org-tags-view))
  2670. ((equal org-keys "M") (org-call-with-arg 'org-tags-view (or arg '(4))))
  2671. ((equal org-keys "e") (call-interactively 'org-store-agenda-views))
  2672. ((equal org-keys "?") (org-tags-view nil "+FLAGGED")
  2673. (add-hook
  2674. 'post-command-hook
  2675. (lambda ()
  2676. (unless (current-message)
  2677. (let* ((m (org-agenda-get-any-marker))
  2678. (note (and m (org-entry-get m "THEFLAGGINGNOTE"))))
  2679. (when note
  2680. (message "FLAGGING-NOTE ([?] for more info): %s"
  2681. (org-add-props
  2682. (replace-regexp-in-string
  2683. "\\\\n" "//"
  2684. (copy-sequence note))
  2685. nil 'face 'org-warning))))))
  2686. t t))
  2687. ((equal org-keys "#") (call-interactively 'org-agenda-list-stuck-projects))
  2688. ((equal org-keys "/") (call-interactively 'org-occur-in-agenda-files))
  2689. ((equal org-keys "!") (customize-variable 'org-stuck-projects))
  2690. (t (user-error "Invalid agenda key"))))))
  2691. (defvar org-agenda-multi)
  2692. (defun org-agenda-append-agenda ()
  2693. "Append another agenda view to the current one.
  2694. This function allows interactive building of block agendas.
  2695. Agenda views are separated by `org-agenda-block-separator'."
  2696. (interactive)
  2697. (unless (derived-mode-p 'org-agenda-mode)
  2698. (user-error "Can only append from within agenda buffer"))
  2699. (let ((org-agenda-multi t))
  2700. (org-agenda)
  2701. (widen)
  2702. (org-agenda-finalize)
  2703. (setq buffer-read-only t)
  2704. (org-agenda-fit-window-to-buffer)))
  2705. (defun org-agenda-normalize-custom-commands (cmds)
  2706. "Normalize custom commands CMDS."
  2707. (delq nil
  2708. (mapcar
  2709. (lambda (x)
  2710. (cond ((stringp (cdr x)) nil)
  2711. ((stringp (nth 1 x)) x)
  2712. ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
  2713. (t (cons (car x) (cons "" (cdr x))))))
  2714. cmds)))
  2715. (defun org-agenda-get-restriction-and-command (prefix-descriptions)
  2716. "The user interface for selecting an agenda command."
  2717. (catch 'exit
  2718. (let* ((bfn (buffer-file-name (buffer-base-buffer)))
  2719. (restrict-ok (and bfn (derived-mode-p 'org-mode)))
  2720. (region-p (org-region-active-p))
  2721. (custom org-agenda-custom-commands)
  2722. (selstring "")
  2723. restriction second-time
  2724. c entry key type match prefixes rmheader header-end custom1 desc
  2725. line lines left right n n1)
  2726. (save-window-excursion
  2727. (delete-other-windows)
  2728. (org-switch-to-buffer-other-window " *Agenda Commands*")
  2729. (erase-buffer)
  2730. (insert (eval-when-compile
  2731. (let ((header
  2732. (copy-sequence
  2733. "Press key for an agenda command:
  2734. -------------------------------- < Buffer, subtree/region restriction
  2735. a Agenda for current week or day > Remove restriction
  2736. t List of all TODO entries e Export agenda views
  2737. m Match a TAGS/PROP/TODO query T Entries with special TODO kwd
  2738. s Search for keywords M Like m, but only TODO entries
  2739. / Multi-occur S Like s, but only TODO entries
  2740. ? Find :FLAGGED: entries C Configure custom agenda commands
  2741. * Toggle sticky agenda views # List stuck projects (!=configure)
  2742. "))
  2743. (start 0))
  2744. (while (string-match
  2745. "\\(^\\| \\|(\\)\\(\\S-\\)\\( \\|=\\)"
  2746. header start)
  2747. (setq start (match-end 0))
  2748. (add-text-properties (match-beginning 2) (match-end 2)
  2749. '(face bold) header))
  2750. header)))
  2751. (setq header-end (point-marker))
  2752. (while t
  2753. (setq custom1 custom)
  2754. (when (eq rmheader t)
  2755. (org-goto-line 1)
  2756. (re-search-forward ":" nil t)
  2757. (delete-region (match-end 0) (point-at-eol))
  2758. (forward-char 1)
  2759. (looking-at "-+")
  2760. (delete-region (match-end 0) (point-at-eol))
  2761. (move-marker header-end (match-end 0)))
  2762. (goto-char header-end)
  2763. (delete-region (point) (point-max))
  2764. ;; Produce all the lines that describe custom commands and prefixes
  2765. (setq lines nil)
  2766. (while (setq entry (pop custom1))
  2767. (setq key (car entry) desc (nth 1 entry)
  2768. type (nth 2 entry)
  2769. match (nth 3 entry))
  2770. (if (> (length key) 1)
  2771. (cl-pushnew (string-to-char key) prefixes :test #'equal)
  2772. (setq line
  2773. (format
  2774. "%-4s%-14s"
  2775. (org-add-props (copy-sequence key)
  2776. '(face bold))
  2777. (cond
  2778. ((string-match "\\S-" desc) desc)
  2779. ((eq type 'agenda) "Agenda for current week or day")
  2780. ((eq type 'agenda*) "Appointments for current week or day")
  2781. ((eq type 'alltodo) "List of all TODO entries")
  2782. ((eq type 'search) "Word search")
  2783. ((eq type 'stuck) "List of stuck projects")
  2784. ((eq type 'todo) "TODO keyword")
  2785. ((eq type 'tags) "Tags query")
  2786. ((eq type 'tags-todo) "Tags (TODO)")
  2787. ((eq type 'tags-tree) "Tags tree")
  2788. ((eq type 'todo-tree) "TODO kwd tree")
  2789. ((eq type 'occur-tree) "Occur tree")
  2790. ((functionp type) (if (symbolp type)
  2791. (symbol-name type)
  2792. "Lambda expression"))
  2793. (t "???"))))
  2794. (cond
  2795. ((not (org-string-nw-p match)) nil)
  2796. (org-agenda-menu-show-matcher
  2797. (setq line
  2798. (concat line ": "
  2799. (cond
  2800. ((stringp match)
  2801. (propertize match 'face 'org-warning))
  2802. ((listp type)
  2803. (format "set of %d commands" (length type)))))))
  2804. (t
  2805. (org-add-props line nil 'help-echo (concat "Matcher: " match))))
  2806. (push line lines)))
  2807. (setq lines (nreverse lines))
  2808. (when prefixes
  2809. (mapc (lambda (x)
  2810. (push
  2811. (format "%s %s"
  2812. (org-add-props (char-to-string x)
  2813. nil 'face 'bold)
  2814. (or (cdr (assoc (concat selstring
  2815. (char-to-string x))
  2816. prefix-descriptions))
  2817. "Prefix key"))
  2818. lines))
  2819. prefixes))
  2820. ;; Check if we should display in two columns
  2821. (if org-agenda-menu-two-columns
  2822. (progn
  2823. (setq n (length lines)
  2824. n1 (+ (/ n 2) (mod n 2))
  2825. right (nthcdr n1 lines)
  2826. left (copy-sequence lines))
  2827. (setcdr (nthcdr (1- n1) left) nil))
  2828. (setq left lines right nil))
  2829. (while left
  2830. (insert "\n" (pop left))
  2831. (when right
  2832. (if (< (current-column) 40)
  2833. (move-to-column 40 t)
  2834. (insert " "))
  2835. (insert (pop right))))
  2836. ;; Make the window the right size
  2837. (goto-char (point-min))
  2838. (if second-time
  2839. (when (not (pos-visible-in-window-p (point-max)))
  2840. (org-fit-window-to-buffer))
  2841. (setq second-time t)
  2842. (org-fit-window-to-buffer))
  2843. ;; Hint to navigation if window too small for all information
  2844. (setq header-line-format
  2845. (when (not (pos-visible-in-window-p (point-max)))
  2846. "Use C-v, M-v, C-n or C-p to navigate."))
  2847. ;; Ask for selection
  2848. (cl-loop
  2849. do (progn
  2850. (message "Press key for agenda command%s:"
  2851. (if (or restrict-ok org-agenda-overriding-restriction)
  2852. (if org-agenda-overriding-restriction
  2853. " (restriction lock active)"
  2854. (if restriction
  2855. (format " (restricted to %s)" restriction)
  2856. " (unrestricted)"))
  2857. ""))
  2858. (setq c (read-char-exclusive)))
  2859. until (not (memq c '(14 16 22 134217846)))
  2860. do (org-scroll c))
  2861. (message "")
  2862. (cond
  2863. ((assoc (char-to-string c) custom)
  2864. (setq selstring (concat selstring (char-to-string c)))
  2865. (throw 'exit (cons selstring restriction)))
  2866. ((memq c prefixes)
  2867. (setq selstring (concat selstring (char-to-string c))
  2868. prefixes nil
  2869. rmheader (or rmheader t)
  2870. custom (delq nil (mapcar
  2871. (lambda (x)
  2872. (if (or (= (length (car x)) 1)
  2873. (/= (string-to-char (car x)) c))
  2874. nil
  2875. (cons (substring (car x) 1) (cdr x))))
  2876. custom))))
  2877. ((eq c ?*)
  2878. (call-interactively 'org-toggle-sticky-agenda)
  2879. (sit-for 2))
  2880. ((and (not restrict-ok) (memq c '(?1 ?0 ?<)))
  2881. (message "Restriction is only possible in Org buffers")
  2882. (ding) (sit-for 1))
  2883. ((eq c ?1)
  2884. (org-agenda-remove-restriction-lock 'noupdate)
  2885. (setq restriction 'buffer))
  2886. ((eq c ?0)
  2887. (org-agenda-remove-restriction-lock 'noupdate)
  2888. (setq restriction (if region-p 'region 'subtree)))
  2889. ((eq c ?<)
  2890. (org-agenda-remove-restriction-lock 'noupdate)
  2891. (setq restriction
  2892. (cond
  2893. ((eq restriction 'buffer)
  2894. (if region-p 'region 'subtree))
  2895. ((memq restriction '(subtree region))
  2896. nil)
  2897. (t 'buffer))))
  2898. ((eq c ?>)
  2899. (org-agenda-remove-restriction-lock 'noupdate)
  2900. (setq restriction nil))
  2901. ((and (equal selstring "") (memq c '(?s ?S ?a ?t ?m ?L ?C ?e ?T ?M ?# ?! ?/ ??)))
  2902. (throw 'exit (cons (setq selstring (char-to-string c)) restriction)))
  2903. ((and (> (length selstring) 0) (eq c ?\d))
  2904. (delete-window)
  2905. (org-agenda-get-restriction-and-command prefix-descriptions))
  2906. ((equal c ?q) (error "Abort"))
  2907. (t (user-error "Invalid key %c" c))))))))
  2908. (defun org-agenda-fit-window-to-buffer ()
  2909. "Fit the window to the buffer size."
  2910. (and (memq org-agenda-window-setup '(reorganize-frame))
  2911. (fboundp 'fit-window-to-buffer)
  2912. (if (and (= (cdr org-agenda-window-frame-fractions) 1.0)
  2913. (= (car org-agenda-window-frame-fractions) 1.0))
  2914. (delete-other-windows)
  2915. (org-fit-window-to-buffer
  2916. nil
  2917. (floor (* (frame-height) (cdr org-agenda-window-frame-fractions)))
  2918. (floor (* (frame-height) (car org-agenda-window-frame-fractions)))))))
  2919. (defvar org-cmd nil)
  2920. (defvar org-agenda-overriding-cmd nil)
  2921. (defvar org-agenda-overriding-arguments nil)
  2922. (defvar org-agenda-overriding-cmd-arguments nil)
  2923. (defun org-let (list &rest body) ;FIXME: So many kittens are suffering here.
  2924. (declare (indent 1))
  2925. (eval (cons 'let (cons list body))))
  2926. (defun org-let2 (list1 list2 &rest body) ;FIXME: Where did our karma go?
  2927. (declare (indent 2))
  2928. (eval (cons 'let (cons list1 (list (cons 'let (cons list2 body)))))))
  2929. (defun org-agenda-run-series (name series)
  2930. "Run agenda NAME as a SERIES of agenda commands."
  2931. (org-let (nth 1 series) '(org-agenda-prepare name))
  2932. ;; We need to reset agenda markers here, because when constructing a
  2933. ;; block agenda, the individual blocks do not do that.
  2934. (org-agenda-reset-markers)
  2935. (let* ((org-agenda-multi t)
  2936. (redo (list 'org-agenda-run-series name (list 'quote series)))
  2937. (cmds (car series))
  2938. (gprops (nth 1 series))
  2939. match ;; The byte compiler incorrectly complains about this. Keep it!
  2940. org-cmd type lprops)
  2941. (while (setq org-cmd (pop cmds))
  2942. (setq type (car org-cmd))
  2943. (setq match (eval (nth 1 org-cmd)))
  2944. (setq lprops (nth 2 org-cmd))
  2945. (let ((org-agenda-overriding-arguments
  2946. (if (eq org-agenda-overriding-cmd org-cmd)
  2947. (or org-agenda-overriding-arguments
  2948. org-agenda-overriding-cmd-arguments))))
  2949. (cond
  2950. ((eq type 'agenda)
  2951. (org-let2 gprops lprops
  2952. '(call-interactively 'org-agenda-list)))
  2953. ((eq type 'agenda*)
  2954. (org-let2 gprops lprops
  2955. '(funcall 'org-agenda-list nil nil t)))
  2956. ((eq type 'alltodo)
  2957. (org-let2 gprops lprops
  2958. '(call-interactively 'org-todo-list)))
  2959. ((eq type 'search)
  2960. (org-let2 gprops lprops
  2961. '(org-search-view current-prefix-arg match nil)))
  2962. ((eq type 'stuck)
  2963. (org-let2 gprops lprops
  2964. '(call-interactively 'org-agenda-list-stuck-projects)))
  2965. ((eq type 'tags)
  2966. (org-let2 gprops lprops
  2967. '(org-tags-view current-prefix-arg match)))
  2968. ((eq type 'tags-todo)
  2969. (org-let2 gprops lprops
  2970. '(org-tags-view '(4) match)))
  2971. ((eq type 'todo)
  2972. (org-let2 gprops lprops
  2973. '(org-todo-list match)))
  2974. ((fboundp type)
  2975. (org-let2 gprops lprops
  2976. '(funcall type match)))
  2977. (t (error "Invalid type in command series")))))
  2978. (widen)
  2979. (let ((inhibit-read-only t))
  2980. (add-text-properties (point-min) (point-max)
  2981. `(org-series t org-series-redo-cmd ,redo)))
  2982. (setq org-agenda-redo-command redo)
  2983. (goto-char (point-min)))
  2984. (org-agenda-fit-window-to-buffer)
  2985. (org-let (nth 1 series) '(org-agenda-finalize)))
  2986. ;;;###autoload
  2987. (defmacro org-batch-agenda (cmd-key &rest parameters)
  2988. "Run an agenda command in batch mode and send the result to STDOUT.
  2989. If CMD-KEY is a string of length 1, it is used as a key in
  2990. `org-agenda-custom-commands' and triggers this command. If it is a
  2991. longer string it is used as a tags/todo match string.
  2992. Parameters are alternating variable names and values that will be bound
  2993. before running the agenda command."
  2994. (org-eval-in-environment (org-make-parameter-alist parameters)
  2995. (let (org-agenda-sticky)
  2996. (if (> (length cmd-key) 1)
  2997. (org-tags-view nil cmd-key)
  2998. (org-agenda nil cmd-key))))
  2999. (set-buffer org-agenda-buffer-name)
  3000. (princ (buffer-string)))
  3001. (defvar org-agenda-info nil)
  3002. ;;;###autoload
  3003. (defmacro org-batch-agenda-csv (cmd-key &rest parameters)
  3004. "Run an agenda command in batch mode and send the result to STDOUT.
  3005. If CMD-KEY is a string of length 1, it is used as a key in
  3006. `org-agenda-custom-commands' and triggers this command. If it is a
  3007. longer string it is used as a tags/todo match string.
  3008. Parameters are alternating variable names and values that will be bound
  3009. before running the agenda command.
  3010. The output gives a line for each selected agenda item. Each
  3011. item is a list of comma-separated values, like this:
  3012. category,head,type,todo,tags,date,time,extra,priority-l,priority-n
  3013. category The category of the item
  3014. head The headline, without TODO kwd, TAGS and PRIORITY
  3015. type The type of the agenda entry, can be
  3016. todo selected in TODO match
  3017. tagsmatch selected in tags match
  3018. diary imported from diary
  3019. deadline a deadline on given date
  3020. scheduled scheduled on given date
  3021. timestamp entry has timestamp on given date
  3022. closed entry was closed on given date
  3023. upcoming-deadline warning about deadline
  3024. past-scheduled forwarded scheduled item
  3025. block entry has date block including g. date
  3026. todo The todo keyword, if any
  3027. tags All tags including inherited ones, separated by colons
  3028. date The relevant date, like 2007-2-14
  3029. time The time, like 15:00-16:50
  3030. extra String with extra planning info
  3031. priority-l The priority letter if any was given
  3032. priority-n The computed numerical priority
  3033. agenda-day The day in the agenda where this is listed"
  3034. (org-eval-in-environment (append '((org-agenda-remove-tags t))
  3035. (org-make-parameter-alist parameters))
  3036. (if (> (length cmd-key) 2)
  3037. (org-tags-view nil cmd-key)
  3038. (org-agenda nil cmd-key)))
  3039. (set-buffer org-agenda-buffer-name)
  3040. (let ((lines (org-split-string (buffer-string) "\n")))
  3041. (dolist (line lines)
  3042. (when (get-text-property 0 'org-category line)
  3043. (setq org-agenda-info
  3044. (org-fix-agenda-info (text-properties-at 0 line)))
  3045. (princ
  3046. (mapconcat 'org-agenda-export-csv-mapper
  3047. '(org-category txt type todo tags date time extra
  3048. priority-letter priority agenda-day)
  3049. ","))
  3050. (princ "\n")))))
  3051. (defun org-fix-agenda-info (props)
  3052. "Make sure all properties on an agenda item have a canonical form.
  3053. This ensures the export commands can easily use it."
  3054. (let (tmp re)
  3055. (when (setq tmp (plist-get props 'tags))
  3056. (setq props (plist-put props 'tags (mapconcat 'identity tmp ":"))))
  3057. (when (setq tmp (plist-get props 'date))
  3058. (when (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
  3059. (let ((calendar-date-display-form '(year "-" month "-" day)))
  3060. '((format "%4d, %9s %2s, %4s" dayname monthname day year))
  3061. (setq tmp (calendar-date-string tmp)))
  3062. (setq props (plist-put props 'date tmp)))
  3063. (when (setq tmp (plist-get props 'day))
  3064. (when (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
  3065. (let ((calendar-date-display-form '(year "-" month "-" day)))
  3066. (setq tmp (calendar-date-string tmp)))
  3067. (setq props (plist-put props 'day tmp))
  3068. (setq props (plist-put props 'agenda-day tmp)))
  3069. (when (setq tmp (plist-get props 'txt))
  3070. (when (string-match "\\[#\\([A-Z0-9]\\)\\] ?" tmp)
  3071. (plist-put props 'priority-letter (match-string 1 tmp))
  3072. (setq tmp (replace-match "" t t tmp)))
  3073. (when (and (setq re (plist-get props 'org-todo-regexp))
  3074. (setq re (concat "\\`\\.*" re " ?"))
  3075. (let ((case-fold-search nil)) (string-match re tmp)))
  3076. (plist-put props 'todo (match-string 1 tmp))
  3077. (setq tmp (replace-match "" t t tmp)))
  3078. (plist-put props 'txt tmp)))
  3079. props)
  3080. (defun org-agenda-export-csv-mapper (prop)
  3081. (let ((res (plist-get org-agenda-info prop)))
  3082. (setq res
  3083. (cond
  3084. ((not res) "")
  3085. ((stringp res) res)
  3086. (t (prin1-to-string res))))
  3087. (org-trim (replace-regexp-in-string "," ";" res nil t))))
  3088. ;;;###autoload
  3089. (defun org-store-agenda-views (&rest parameters)
  3090. "Store agenda views."
  3091. (interactive)
  3092. (eval (list 'org-batch-store-agenda-views)))
  3093. ;;;###autoload
  3094. (defmacro org-batch-store-agenda-views (&rest parameters)
  3095. "Run all custom agenda commands that have a file argument."
  3096. (let ((cmds (org-agenda-normalize-custom-commands org-agenda-custom-commands))
  3097. (pop-up-frames nil)
  3098. (dir default-directory)
  3099. (pars (org-make-parameter-alist parameters))
  3100. cmd thiscmdkey thiscmdcmd match files opts cmd-or-set bufname)
  3101. (save-window-excursion
  3102. (while cmds
  3103. (setq cmd (pop cmds)
  3104. thiscmdkey (car cmd)
  3105. thiscmdcmd (cdr cmd)
  3106. match (nth 2 thiscmdcmd)
  3107. bufname (if org-agenda-sticky
  3108. (or (and (stringp match)
  3109. (format "*Org Agenda(%s:%s)*" thiscmdkey match))
  3110. (format "*Org Agenda(%s)*" thiscmdkey))
  3111. org-agenda-buffer-name)
  3112. cmd-or-set (nth 2 cmd)
  3113. opts (nth (if (listp cmd-or-set) 3 4) cmd)
  3114. files (nth (if (listp cmd-or-set) 4 5) cmd))
  3115. (if (stringp files) (setq files (list files)))
  3116. (when files
  3117. (org-eval-in-environment (append org-agenda-exporter-settings
  3118. opts pars)
  3119. (org-agenda nil thiscmdkey))
  3120. (set-buffer bufname)
  3121. (while files
  3122. (org-eval-in-environment (append org-agenda-exporter-settings
  3123. opts pars)
  3124. (org-agenda-write (expand-file-name (pop files) dir) nil t bufname)))
  3125. (and (get-buffer bufname)
  3126. (kill-buffer bufname)))))))
  3127. (defvar org-agenda-current-span nil
  3128. "The current span used in the agenda view.") ; local variable in the agenda buffer
  3129. (defun org-agenda-mark-header-line (pos)
  3130. "Mark the line at POS as an agenda structure header."
  3131. (save-excursion
  3132. (goto-char pos)
  3133. (put-text-property (point-at-bol) (point-at-eol)
  3134. 'org-agenda-structural-header t)
  3135. (when org-agenda-title-append
  3136. (put-text-property (point-at-bol) (point-at-eol)
  3137. 'org-agenda-title-append org-agenda-title-append))))
  3138. (defvar org-mobile-creating-agendas) ; defined in org-mobile.el
  3139. (defvar org-agenda-write-buffer-name "Agenda View")
  3140. (defun org-agenda-write (file &optional open nosettings agenda-bufname)
  3141. "Write the current buffer (an agenda view) as a file.
  3142. Depending on the extension of the file name, plain text (.txt),
  3143. HTML (.html or .htm), PDF (.pdf) or Postscript (.ps) is produced.
  3144. If the extension is .ics, translate visible agenda into iCalendar
  3145. format. If the extension is .org, collect all subtrees
  3146. corresponding to the agenda entries and add them in an .org file.
  3147. With prefix argument OPEN, open the new file immediately. If
  3148. NOSETTINGS is given, do not scope the settings of
  3149. `org-agenda-exporter-settings' into the export commands. This is
  3150. used when the settings have already been scoped and we do not
  3151. wish to overrule other, higher priority settings. If
  3152. AGENDA-BUFFER-NAME is provided, use this as the buffer name for
  3153. the agenda to write."
  3154. (interactive "FWrite agenda to file: \nP")
  3155. (if (or (not (file-writable-p file))
  3156. (and (file-exists-p file)
  3157. (if (called-interactively-p 'any)
  3158. (not (y-or-n-p (format "Overwrite existing file %s? " file))))))
  3159. (user-error "Cannot write agenda to file %s" file))
  3160. (org-let (if nosettings nil org-agenda-exporter-settings)
  3161. '(save-excursion
  3162. (save-window-excursion
  3163. (let ((bs (copy-sequence (buffer-string)))
  3164. (extension (file-name-extension file))
  3165. (default-directory (file-name-directory file))
  3166. beg content)
  3167. (with-temp-buffer
  3168. (rename-buffer org-agenda-write-buffer-name t)
  3169. (set-buffer-modified-p nil)
  3170. (insert bs)
  3171. (org-agenda-remove-marked-text 'invisible 'org-filtered)
  3172. (run-hooks 'org-agenda-before-write-hook)
  3173. (cond
  3174. ((bound-and-true-p org-mobile-creating-agendas)
  3175. (org-mobile-write-agenda-for-mobile file))
  3176. ((string= "org" extension)
  3177. (let (content p m message-log-max)
  3178. (goto-char (point-min))
  3179. (while (setq p (next-single-property-change (point) 'org-hd-marker nil))
  3180. (goto-char p)
  3181. (setq m (get-text-property (point) 'org-hd-marker))
  3182. (when m
  3183. (push (save-excursion
  3184. (set-buffer (marker-buffer m))
  3185. (goto-char m)
  3186. (org-copy-subtree 1 nil t t)
  3187. org-subtree-clip)
  3188. content)))
  3189. (find-file file)
  3190. (erase-buffer)
  3191. (dolist (s content) (org-paste-subtree 1 s))
  3192. (write-file file)
  3193. (kill-buffer (current-buffer))
  3194. (message "Org file written to %s" file)))
  3195. ((member extension '("html" "htm"))
  3196. (or (require 'htmlize nil t)
  3197. (error "Please install htmlize from https://github.com/hniksic/emacs-htmlize"))
  3198. (set-buffer (htmlize-buffer (current-buffer)))
  3199. (when org-agenda-export-html-style
  3200. ;; replace <style> section with org-agenda-export-html-style
  3201. (goto-char (point-min))
  3202. (kill-region (- (search-forward "<style") 6)
  3203. (search-forward "</style>"))
  3204. (insert org-agenda-export-html-style))
  3205. (write-file file)
  3206. (kill-buffer (current-buffer))
  3207. (message "HTML written to %s" file))
  3208. ((string= "ps" extension)
  3209. (require 'ps-print)
  3210. (ps-print-buffer-with-faces file)
  3211. (message "Postscript written to %s" file))
  3212. ((string= "pdf" extension)
  3213. (require 'ps-print)
  3214. (ps-print-buffer-with-faces
  3215. (concat (file-name-sans-extension file) ".ps"))
  3216. (call-process "ps2pdf" nil nil nil
  3217. (expand-file-name
  3218. (concat (file-name-sans-extension file) ".ps"))
  3219. (expand-file-name file))
  3220. (delete-file (concat (file-name-sans-extension file) ".ps"))
  3221. (message "PDF written to %s" file))
  3222. ((string= "ics" extension)
  3223. (require 'ox-icalendar)
  3224. (org-icalendar-export-current-agenda (expand-file-name file)))
  3225. (t
  3226. (let ((bs (buffer-string)))
  3227. (find-file file)
  3228. (erase-buffer)
  3229. (insert bs)
  3230. (save-buffer 0)
  3231. (kill-buffer (current-buffer))
  3232. (message "Plain text written to %s" file))))))))
  3233. (set-buffer (or agenda-bufname
  3234. (and (called-interactively-p 'any) (buffer-name))
  3235. org-agenda-buffer-name)))
  3236. (when open (org-open-file file)))
  3237. (defun org-agenda-remove-marked-text (property &optional value)
  3238. "Delete all text marked with VALUE of PROPERTY.
  3239. VALUE defaults to t."
  3240. (let (beg)
  3241. (setq value (or value t))
  3242. (while (setq beg (text-property-any (point-min) (point-max)
  3243. property value))
  3244. (delete-region
  3245. beg (or (next-single-property-change beg property)
  3246. (point-max))))))
  3247. (defun org-agenda-add-entry-text ()
  3248. "Add entry text to agenda lines.
  3249. This will add a maximum of `org-agenda-add-entry-text-maxlines' lines of the
  3250. entry text following headings shown in the agenda.
  3251. Drawers will be excluded, also the line with scheduling/deadline info."
  3252. (when (and (> org-agenda-add-entry-text-maxlines 0)
  3253. (not (bound-and-true-p org-mobile-creating-agendas)))
  3254. (let (m txt)
  3255. (goto-char (point-min))
  3256. (while (not (eobp))
  3257. (if (not (setq m (org-get-at-bol 'org-hd-marker)))
  3258. (beginning-of-line 2)
  3259. (setq txt (org-agenda-get-some-entry-text
  3260. m org-agenda-add-entry-text-maxlines " > "))
  3261. (end-of-line 1)
  3262. (if (string-match "\\S-" txt)
  3263. (insert "\n" txt)
  3264. (or (eobp) (forward-char 1))))))))
  3265. (defun org-agenda-get-some-entry-text (marker n-lines &optional indent
  3266. &rest keep)
  3267. "Extract entry text from MARKER, at most N-LINES lines.
  3268. This will ignore drawers etc, just get the text.
  3269. If INDENT is given, prefix every line with this string. If KEEP is
  3270. given, it is a list of symbols, defining stuff that should not be
  3271. removed from the entry content. Currently only `planning' is allowed here."
  3272. (let (txt drawer-re kwd-time-re ind)
  3273. (save-excursion
  3274. (with-current-buffer (marker-buffer marker)
  3275. (if (not (derived-mode-p 'org-mode))
  3276. (setq txt "")
  3277. (org-with-wide-buffer
  3278. (goto-char marker)
  3279. (end-of-line 1)
  3280. (setq txt (buffer-substring
  3281. (min (1+ (point)) (point-max))
  3282. (progn (outline-next-heading) (point)))
  3283. drawer-re org-drawer-regexp
  3284. kwd-time-re (concat "^[ \t]*" org-keyword-time-regexp
  3285. ".*\n?"))
  3286. (with-temp-buffer
  3287. (insert txt)
  3288. (when org-agenda-add-entry-text-descriptive-links
  3289. (goto-char (point-min))
  3290. (while (org-activate-links (point-max))
  3291. (goto-char (match-end 0))))
  3292. (goto-char (point-min))
  3293. (while (re-search-forward org-link-bracket-re (point-max) t)
  3294. (set-text-properties (match-beginning 0) (match-end 0)
  3295. nil))
  3296. (goto-char (point-min))
  3297. (while (re-search-forward drawer-re nil t)
  3298. (delete-region
  3299. (match-beginning 0)
  3300. (progn (re-search-forward
  3301. "^[ \t]*:END:.*\n?" nil 'move)
  3302. (point))))
  3303. (unless (member 'planning keep)
  3304. (goto-char (point-min))
  3305. (while (re-search-forward kwd-time-re nil t)
  3306. (replace-match "")))
  3307. (goto-char (point-min))
  3308. (when org-agenda-entry-text-exclude-regexps
  3309. (let ((re-list org-agenda-entry-text-exclude-regexps) re)
  3310. (while (setq re (pop re-list))
  3311. (goto-char (point-min))
  3312. (while (re-search-forward re nil t)
  3313. (replace-match "")))))
  3314. (goto-char (point-max))
  3315. (skip-chars-backward " \t\n")
  3316. (when (looking-at "[ \t\n]+\\'") (replace-match ""))
  3317. ;; find and remove min common indentation
  3318. (goto-char (point-min))
  3319. (untabify (point-min) (point-max))
  3320. (setq ind (current-indentation))
  3321. (while (not (eobp))
  3322. (unless (looking-at "[ \t]*$")
  3323. (setq ind (min ind (current-indentation))))
  3324. (beginning-of-line 2))
  3325. (goto-char (point-min))
  3326. (while (not (eobp))
  3327. (unless (looking-at "[ \t]*$")
  3328. (move-to-column ind)
  3329. (delete-region (point-at-bol) (point)))
  3330. (beginning-of-line 2))
  3331. (run-hooks 'org-agenda-entry-text-cleanup-hook)
  3332. (goto-char (point-min))
  3333. (when indent
  3334. (while (and (not (eobp)) (re-search-forward "^" nil t))
  3335. (replace-match indent t t)))
  3336. (goto-char (point-min))
  3337. (while (looking-at "[ \t]*\n") (replace-match ""))
  3338. (goto-char (point-max))
  3339. (when (> (org-current-line)
  3340. n-lines)
  3341. (org-goto-line (1+ n-lines))
  3342. (backward-char 1))
  3343. (setq txt (buffer-substring (point-min) (point))))))))
  3344. txt))
  3345. (defun org-check-for-org-mode ()
  3346. "Make sure current buffer is in Org mode. Error if not."
  3347. (or (derived-mode-p 'org-mode)
  3348. (error "Cannot execute Org agenda command on buffer in %s"
  3349. major-mode)))
  3350. ;;; Agenda prepare and finalize
  3351. (defvar org-agenda-multi nil) ; dynamically scoped
  3352. (defvar org-agenda-pre-window-conf nil)
  3353. (defvar org-agenda-columns-active nil)
  3354. (defvar org-agenda-name nil)
  3355. (defvar org-agenda-tag-filter nil)
  3356. (defvar org-agenda-category-filter nil)
  3357. (defvar org-agenda-regexp-filter nil)
  3358. (defvar org-agenda-effort-filter nil)
  3359. (defvar org-agenda-top-headline-filter nil)
  3360. (defvar org-agenda-represented-categories nil
  3361. "Cache for the list of all categories in the agenda.")
  3362. (defvar org-agenda-represented-tags nil
  3363. "Cache for the list of all categories in the agenda.")
  3364. (defvar org-agenda-tag-filter-preset nil
  3365. "A preset of the tags filter used for secondary agenda filtering.
  3366. This must be a list of strings, each string must be a single tag preceded
  3367. by \"+\" or \"-\".
  3368. This variable should not be set directly, but agenda custom commands can
  3369. bind it in the options section. The preset filter is a global property of
  3370. the entire agenda view. In a block agenda, it will not work reliably to
  3371. define a filter for one of the individual blocks. You need to set it in
  3372. the global options and expect it to be applied to the entire view.")
  3373. (defconst org-agenda-filter-variables
  3374. '((category . org-agenda-category-filter)
  3375. (tag . org-agenda-tag-filter)
  3376. (effort . org-agenda-effort-filter)
  3377. (regexp . org-agenda-regexp-filter))
  3378. "Alist of filter types and associated variables")
  3379. (defun org-agenda-filter-any ()
  3380. "Is any filter active?"
  3381. (let ((form (cons 'or (mapcar (lambda (x)
  3382. (if (or (symbol-value (cdr x))
  3383. (get :preset-filter x))
  3384. t nil))
  3385. org-agenda-filter-variables))))
  3386. (eval form)))
  3387. (defvar org-agenda-category-filter-preset nil
  3388. "A preset of the category filter used for secondary agenda filtering.
  3389. This must be a list of strings, each string must be a single category
  3390. preceded by \"+\" or \"-\".
  3391. This variable should not be set directly, but agenda custom commands can
  3392. bind it in the options section. The preset filter is a global property of
  3393. the entire agenda view. In a block agenda, it will not work reliably to
  3394. define a filter for one of the individual blocks. You need to set it in
  3395. the global options and expect it to be applied to the entire view.")
  3396. (defvar org-agenda-regexp-filter-preset nil
  3397. "A preset of the regexp filter used for secondary agenda filtering.
  3398. This must be a list of strings, each string must be a single regexp
  3399. preceded by \"+\" or \"-\".
  3400. This variable should not be set directly, but agenda custom commands can
  3401. bind it in the options section. The preset filter is a global property of
  3402. the entire agenda view. In a block agenda, it will not work reliably to
  3403. define a filter for one of the individual blocks. You need to set it in
  3404. the global options and expect it to be applied to the entire view.")
  3405. (defvar org-agenda-effort-filter-preset nil
  3406. "A preset of the effort condition used for secondary agenda filtering.
  3407. This must be a list of strings, each string must be a single regexp
  3408. preceded by \"+\" or \"-\".
  3409. This variable should not be set directly, but agenda custom commands can
  3410. bind it in the options section. The preset filter is a global property of
  3411. the entire agenda view. In a block agenda, it will not work reliably to
  3412. define a filter for one of the individual blocks. You need to set it in
  3413. the global options and expect it to be applied to the entire view.")
  3414. (defun org-agenda-use-sticky-p ()
  3415. "Return non-nil if an agenda buffer named
  3416. `org-agenda-buffer-name' exists and should be shown instead of
  3417. generating a new one."
  3418. (and
  3419. ;; turned off by user
  3420. org-agenda-sticky
  3421. ;; For multi-agenda buffer already exists
  3422. (not org-agenda-multi)
  3423. ;; buffer found
  3424. (get-buffer org-agenda-buffer-name)
  3425. ;; C-u parameter is same as last call
  3426. (with-current-buffer (get-buffer org-agenda-buffer-name)
  3427. (and
  3428. (equal current-prefix-arg
  3429. org-agenda-last-prefix-arg)
  3430. ;; In case user turned stickiness on, while having existing
  3431. ;; Agenda buffer active, don't reuse that buffer, because it
  3432. ;; does not have org variables local
  3433. org-agenda-this-buffer-is-sticky))))
  3434. (defvar org-agenda-buffer-tmp-name nil)
  3435. (defun org-agenda--get-buffer-name (sticky-name)
  3436. (or org-agenda-buffer-tmp-name
  3437. (and org-agenda-doing-sticky-redo org-agenda-buffer-name)
  3438. sticky-name
  3439. "*Org Agenda*"))
  3440. (defun org-agenda-prepare-window (abuf filter-alist)
  3441. "Setup agenda buffer in the window.
  3442. ABUF is the buffer for the agenda window.
  3443. FILTER-ALIST is an alist of filters we need to apply when
  3444. `org-agenda-persistent-filter' is non-nil."
  3445. (let* ((awin (get-buffer-window abuf)) wconf)
  3446. (cond
  3447. ((equal (current-buffer) abuf) nil)
  3448. (awin (select-window awin))
  3449. ((not (setq wconf (current-window-configuration))))
  3450. ((eq org-agenda-window-setup 'current-window)
  3451. (pop-to-buffer-same-window abuf))
  3452. ((eq org-agenda-window-setup 'other-window)
  3453. (org-switch-to-buffer-other-window abuf))
  3454. ((eq org-agenda-window-setup 'other-frame)
  3455. (switch-to-buffer-other-frame abuf))
  3456. ((eq org-agenda-window-setup 'other-tab)
  3457. (if (fboundp 'switch-to-buffer-other-tab)
  3458. (switch-to-buffer-other-tab abuf)
  3459. (user-error "Your version of Emacs does not have tab bar support")))
  3460. ((eq org-agenda-window-setup 'only-window)
  3461. (delete-other-windows)
  3462. (pop-to-buffer-same-window abuf))
  3463. ((eq org-agenda-window-setup 'reorganize-frame)
  3464. (delete-other-windows)
  3465. (org-switch-to-buffer-other-window abuf)))
  3466. (setq org-agenda-tag-filter (cdr (assq 'tag filter-alist)))
  3467. (setq org-agenda-category-filter (cdr (assq 'cat filter-alist)))
  3468. (setq org-agenda-effort-filter (cdr (assq 'effort filter-alist)))
  3469. (setq org-agenda-regexp-filter (cdr (assq 're filter-alist)))
  3470. ;; Additional test in case agenda is invoked from within agenda
  3471. ;; buffer via elisp link.
  3472. (unless (equal (current-buffer) abuf)
  3473. (pop-to-buffer-same-window abuf))
  3474. (setq org-agenda-pre-window-conf
  3475. (or wconf org-agenda-pre-window-conf))))
  3476. (defun org-agenda-prepare (&optional name)
  3477. (let ((filter-alist (when org-agenda-persistent-filter
  3478. (with-current-buffer
  3479. (get-buffer-create org-agenda-buffer-name)
  3480. `((tag . ,org-agenda-tag-filter)
  3481. (re . ,org-agenda-regexp-filter)
  3482. (effort . ,org-agenda-effort-filter)
  3483. (cat . ,org-agenda-category-filter))))))
  3484. (if (org-agenda-use-sticky-p)
  3485. (progn
  3486. (put 'org-agenda-tag-filter :preset-filter nil)
  3487. (put 'org-agenda-category-filter :preset-filter nil)
  3488. (put 'org-agenda-regexp-filter :preset-filter nil)
  3489. (put 'org-agenda-effort-filter :preset-filter nil)
  3490. ;; Popup existing buffer
  3491. (org-agenda-prepare-window (get-buffer org-agenda-buffer-name)
  3492. filter-alist)
  3493. (message "Sticky Agenda buffer, use `r' to refresh")
  3494. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  3495. (throw 'exit "Sticky Agenda buffer, use `r' to refresh"))
  3496. (setq org-todo-keywords-for-agenda nil)
  3497. (put 'org-agenda-tag-filter :preset-filter
  3498. org-agenda-tag-filter-preset)
  3499. (put 'org-agenda-category-filter :preset-filter
  3500. org-agenda-category-filter-preset)
  3501. (put 'org-agenda-regexp-filter :preset-filter
  3502. org-agenda-regexp-filter-preset)
  3503. (put 'org-agenda-effort-filter :preset-filter
  3504. org-agenda-effort-filter-preset)
  3505. (if org-agenda-multi
  3506. (progn
  3507. (setq buffer-read-only nil)
  3508. (goto-char (point-max))
  3509. (unless (or (bobp) org-agenda-compact-blocks
  3510. (not org-agenda-block-separator))
  3511. (insert "\n"
  3512. (if (stringp org-agenda-block-separator)
  3513. org-agenda-block-separator
  3514. (make-string (window-width) org-agenda-block-separator))
  3515. "\n"))
  3516. (narrow-to-region (point) (point-max)))
  3517. (setq org-done-keywords-for-agenda nil)
  3518. ;; Setting any org variables that are in org-agenda-local-vars
  3519. ;; list need to be done after the prepare call
  3520. (org-agenda-prepare-window
  3521. (get-buffer-create org-agenda-buffer-name) filter-alist)
  3522. (setq buffer-read-only nil)
  3523. (org-agenda-reset-markers)
  3524. (let ((inhibit-read-only t)) (erase-buffer))
  3525. (org-agenda-mode)
  3526. (setq org-agenda-buffer (current-buffer))
  3527. (setq org-agenda-contributing-files nil)
  3528. (setq org-agenda-columns-active nil)
  3529. (org-agenda-prepare-buffers (org-agenda-files nil 'ifmode))
  3530. (setq org-todo-keywords-for-agenda
  3531. (org-uniquify org-todo-keywords-for-agenda))
  3532. (setq org-done-keywords-for-agenda
  3533. (org-uniquify org-done-keywords-for-agenda))
  3534. (setq org-agenda-last-prefix-arg current-prefix-arg)
  3535. (setq org-agenda-this-buffer-name org-agenda-buffer-name)
  3536. (and name (not org-agenda-name)
  3537. (setq-local org-agenda-name name)))
  3538. (setq buffer-read-only nil))))
  3539. (defvar org-overriding-columns-format)
  3540. (defvar org-local-columns-format)
  3541. (defun org-agenda-finalize ()
  3542. "Finishing touch for the agenda buffer.
  3543. This function is called just before displaying the agenda. If
  3544. you want to add your own functions to the finalization of the
  3545. agenda display, configure `org-agenda-finalize-hook'."
  3546. (unless org-agenda-multi
  3547. (let ((inhibit-read-only t))
  3548. (save-excursion
  3549. (goto-char (point-min))
  3550. (save-excursion
  3551. (while (org-activate-links (point-max))
  3552. (goto-char (match-end 0))))
  3553. (unless (eq org-agenda-remove-tags t)
  3554. (org-agenda-align-tags))
  3555. (unless org-agenda-with-colors
  3556. (remove-text-properties (point-min) (point-max) '(face nil)))
  3557. (when (bound-and-true-p org-overriding-columns-format)
  3558. (setq-local org-local-columns-format
  3559. org-overriding-columns-format))
  3560. (when org-agenda-view-columns-initially
  3561. (org-agenda-columns))
  3562. (when org-agenda-fontify-priorities
  3563. (org-agenda-fontify-priorities))
  3564. (when (and org-agenda-dim-blocked-tasks org-blocker-hook)
  3565. (org-agenda-dim-blocked-tasks))
  3566. (org-agenda-mark-clocking-task)
  3567. (when org-agenda-entry-text-mode
  3568. (org-agenda-entry-text-hide)
  3569. (org-agenda-entry-text-show))
  3570. (when (and (featurep 'org-habit)
  3571. (save-excursion (next-single-property-change (point-min) 'org-habit-p)))
  3572. (org-habit-insert-consistency-graphs))
  3573. (setq org-agenda-type (org-get-at-bol 'org-agenda-type))
  3574. (unless (or (eq org-agenda-show-inherited-tags 'always)
  3575. (and (listp org-agenda-show-inherited-tags)
  3576. (memq org-agenda-type org-agenda-show-inherited-tags))
  3577. (and (eq org-agenda-show-inherited-tags t)
  3578. (or (eq org-agenda-use-tag-inheritance t)
  3579. (and (listp org-agenda-use-tag-inheritance)
  3580. (not (memq org-agenda-type
  3581. org-agenda-use-tag-inheritance))))))
  3582. (let (mrk)
  3583. (save-excursion
  3584. (goto-char (point-min))
  3585. (while (equal (forward-line) 0)
  3586. (when (setq mrk (get-text-property (point) 'org-hd-marker))
  3587. (put-text-property (point-at-bol) (point-at-eol)
  3588. 'tags
  3589. (org-with-point-at mrk
  3590. (mapcar #'downcase (org-get-tags)))))))))
  3591. (setq org-agenda-represented-tags nil
  3592. org-agenda-represented-categories nil)
  3593. (when org-agenda-top-headline-filter
  3594. (org-agenda-filter-top-headline-apply
  3595. org-agenda-top-headline-filter))
  3596. (when org-agenda-tag-filter
  3597. (org-agenda-filter-apply org-agenda-tag-filter 'tag t))
  3598. (when (get 'org-agenda-tag-filter :preset-filter)
  3599. (org-agenda-filter-apply
  3600. (get 'org-agenda-tag-filter :preset-filter) 'tag t))
  3601. (when org-agenda-category-filter
  3602. (org-agenda-filter-apply org-agenda-category-filter 'category))
  3603. (when (get 'org-agenda-category-filter :preset-filter)
  3604. (org-agenda-filter-apply
  3605. (get 'org-agenda-category-filter :preset-filter) 'category))
  3606. (when org-agenda-regexp-filter
  3607. (org-agenda-filter-apply org-agenda-regexp-filter 'regexp))
  3608. (when (get 'org-agenda-regexp-filter :preset-filter)
  3609. (org-agenda-filter-apply
  3610. (get 'org-agenda-regexp-filter :preset-filter) 'regexp))
  3611. (when org-agenda-effort-filter
  3612. (org-agenda-filter-apply org-agenda-effort-filter 'effort))
  3613. (when (get 'org-agenda-effort-filter :preset-filter)
  3614. (org-agenda-filter-apply
  3615. (get 'org-agenda-effort-filter :preset-filter) 'effort))
  3616. (add-hook 'kill-buffer-hook 'org-agenda-reset-markers 'append 'local))
  3617. (run-hooks 'org-agenda-finalize-hook))))
  3618. (defun org-agenda-mark-clocking-task ()
  3619. "Mark the current clock entry in the agenda if it is present."
  3620. ;; We need to widen when `org-agenda-finalize' is called from
  3621. ;; `org-agenda-change-all-lines' (e.g. in `org-agenda-clock-in').
  3622. (when (bound-and-true-p org-clock-current-task)
  3623. (save-restriction
  3624. (widen)
  3625. (org-agenda-unmark-clocking-task)
  3626. (when (marker-buffer org-clock-hd-marker)
  3627. (save-excursion
  3628. (goto-char (point-min))
  3629. (let (s ov)
  3630. (while (setq s (next-single-property-change (point) 'org-hd-marker))
  3631. (goto-char s)
  3632. (when (equal (org-get-at-bol 'org-hd-marker)
  3633. org-clock-hd-marker)
  3634. (setq ov (make-overlay (point-at-bol) (1+ (point-at-eol))))
  3635. (overlay-put ov 'type 'org-agenda-clocking)
  3636. (overlay-put ov 'face 'org-agenda-clocking)
  3637. (overlay-put ov 'help-echo
  3638. "The clock is running in this item")))))))))
  3639. (defun org-agenda-unmark-clocking-task ()
  3640. "Unmark the current clocking task."
  3641. (mapc (lambda (o)
  3642. (when (eq (overlay-get o 'type) 'org-agenda-clocking)
  3643. (delete-overlay o)))
  3644. (overlays-in (point-min) (point-max))))
  3645. (defun org-agenda-fontify-priorities ()
  3646. "Make highest priority lines bold, and lowest italic."
  3647. (interactive)
  3648. (mapc (lambda (o) (when (eq (overlay-get o 'org-type) 'org-priority)
  3649. (delete-overlay o)))
  3650. (overlays-in (point-min) (point-max)))
  3651. (save-excursion
  3652. (let (b e p ov h l)
  3653. (goto-char (point-min))
  3654. (while (re-search-forward org-priority-regexp nil t)
  3655. (setq h (or (get-char-property (point) 'org-priority-highest)
  3656. org-priority-highest)
  3657. l (or (get-char-property (point) 'org-priority-lowest)
  3658. org-priority-lowest)
  3659. p (string-to-char (match-string 2))
  3660. b (match-beginning 1)
  3661. e (if (eq org-agenda-fontify-priorities 'cookies)
  3662. (1+ (match-end 2))
  3663. (point-at-eol))
  3664. ov (make-overlay b e))
  3665. (overlay-put
  3666. ov 'face
  3667. (let ((special-face
  3668. (cond ((org-face-from-face-or-color
  3669. 'priority 'org-priority
  3670. (cdr (assoc p org-priority-faces))))
  3671. ((and (listp org-agenda-fontify-priorities)
  3672. (org-face-from-face-or-color
  3673. 'priority 'org-priority
  3674. (cdr (assoc p org-agenda-fontify-priorities)))))
  3675. ((equal p l) 'italic)
  3676. ((equal p h) 'bold))))
  3677. (if special-face (list special-face 'org-priority) 'org-priority)))
  3678. (overlay-put ov 'org-type 'org-priority)))))
  3679. (defvar org-depend-tag-blocked)
  3680. (defun org-agenda-dim-blocked-tasks (&optional invisible)
  3681. "Dim currently blocked TODOs in the agenda display.
  3682. When INVISIBLE is non-nil, hide currently blocked TODO instead of
  3683. dimming them."
  3684. (interactive "P")
  3685. (when (called-interactively-p 'interactive)
  3686. (message "Dim or hide blocked tasks..."))
  3687. (dolist (o (overlays-in (point-min) (point-max)))
  3688. (when (eq (overlay-get o 'face) 'org-agenda-dimmed-todo-face)
  3689. (delete-overlay o)))
  3690. (save-excursion
  3691. (let ((inhibit-read-only t))
  3692. (goto-char (point-min))
  3693. (while (let ((pos (text-property-not-all
  3694. (point) (point-max) 'org-todo-blocked nil)))
  3695. (when pos (goto-char pos)))
  3696. (let* ((invisible
  3697. (eq (org-get-at-bol 'org-todo-blocked) 'invisible))
  3698. (todo-blocked
  3699. (eq (org-get-at-bol 'org-filter-type) 'todo-blocked))
  3700. (ov (make-overlay (if invisible
  3701. (line-end-position 0)
  3702. (line-beginning-position))
  3703. (line-end-position))))
  3704. (when todo-blocked
  3705. (overlay-put ov 'face 'org-agenda-dimmed-todo-face))
  3706. (when invisible
  3707. (org-agenda-filter-hide-line 'todo-blocked)))
  3708. (move-beginning-of-line 2))))
  3709. (when (called-interactively-p 'interactive)
  3710. (message "Dim or hide blocked tasks...done")))
  3711. (defun org-agenda--mark-blocked-entry (entry)
  3712. "If ENTRY is blocked, mark it for fontification or invisibility.
  3713. If the header at `org-hd-marker' is blocked according to
  3714. `org-entry-blocked-p', then if `org-agenda-dim-blocked-tasks' is
  3715. 'invisible and the header is not blocked by checkboxes, set the
  3716. text property `org-todo-blocked' to `invisible', otherwise set it
  3717. to t."
  3718. (when (get-text-property 0 'todo-state entry)
  3719. (let ((entry-marker (get-text-property 0 'org-hd-marker entry))
  3720. (org-blocked-by-checkboxes nil)
  3721. ;; Necessary so that `org-entry-blocked-p' does not change
  3722. ;; the buffer.
  3723. (org-depend-tag-blocked nil))
  3724. (when entry-marker
  3725. (let ((blocked
  3726. (with-current-buffer (marker-buffer entry-marker)
  3727. (save-excursion
  3728. (goto-char entry-marker)
  3729. (org-entry-blocked-p)))))
  3730. (when blocked
  3731. (let ((really-invisible
  3732. (and (not org-blocked-by-checkboxes)
  3733. (eq org-agenda-dim-blocked-tasks 'invisible))))
  3734. (put-text-property
  3735. 0 (length entry) 'org-todo-blocked
  3736. (if really-invisible 'invisible t)
  3737. entry)
  3738. (put-text-property
  3739. 0 (length entry) 'org-filter-type 'todo-blocked entry)))))))
  3740. entry)
  3741. (defvar org-agenda-skip-function nil
  3742. "Function to be called at each match during agenda construction.
  3743. If this function returns nil, the current match should not be skipped.
  3744. Otherwise, the function must return a position from where the search
  3745. should be continued.
  3746. This may also be a Lisp form, it will be evaluated.
  3747. Never set this variable using `setq' or so, because then it will apply
  3748. to all future agenda commands. If you do want a global skipping condition,
  3749. use the option `org-agenda-skip-function-global' instead.
  3750. The correct usage for `org-agenda-skip-function' is to bind it with
  3751. `let' to scope it dynamically into the agenda-constructing command.
  3752. A good way to set it is through options in `org-agenda-custom-commands'.")
  3753. (defun org-agenda-skip ()
  3754. "Throw to `:skip' in places that should be skipped.
  3755. Also moves point to the end of the skipped region, so that search can
  3756. continue from there."
  3757. (let ((p (point-at-bol)) to)
  3758. (when (or
  3759. (save-excursion (goto-char p) (looking-at comment-start-skip))
  3760. (and org-agenda-skip-archived-trees (not org-agenda-archives-mode)
  3761. (or (and (get-text-property p :org-archived)
  3762. (org-end-of-subtree t))
  3763. (and (member org-archive-tag org-file-tags)
  3764. (goto-char (point-max)))))
  3765. (and org-agenda-skip-comment-trees
  3766. (get-text-property p :org-comment)
  3767. (org-end-of-subtree t))
  3768. (and (setq to (or (org-agenda-skip-eval org-agenda-skip-function-global)
  3769. (org-agenda-skip-eval org-agenda-skip-function)))
  3770. (goto-char to))
  3771. (org-in-src-block-p t))
  3772. (throw :skip t))))
  3773. (defun org-agenda-skip-eval (form)
  3774. "If FORM is a function or a list, call (or eval) it and return the result.
  3775. `save-excursion' and `save-match-data' are wrapped around the call, so point
  3776. and match data are returned to the previous state no matter what these
  3777. functions do."
  3778. (let (fp)
  3779. (and form
  3780. (or (setq fp (functionp form))
  3781. (consp form))
  3782. (save-excursion
  3783. (save-match-data
  3784. (if fp
  3785. (funcall form)
  3786. (eval form)))))))
  3787. (defvar org-agenda-markers nil
  3788. "List of all currently active markers created by `org-agenda'.")
  3789. (defvar org-agenda-last-marker-time (float-time)
  3790. "Creation time of the last agenda marker.")
  3791. (defun org-agenda-new-marker (&optional pos)
  3792. "Return a new agenda marker.
  3793. Marker is at point, or at POS if non-nil. Org mode keeps a list
  3794. of these markers and resets them when they are no longer in use."
  3795. (let ((m (copy-marker (or pos (point)) t)))
  3796. (setq org-agenda-last-marker-time (float-time))
  3797. (if org-agenda-buffer
  3798. (with-current-buffer org-agenda-buffer
  3799. (push m org-agenda-markers))
  3800. (push m org-agenda-markers))
  3801. m))
  3802. (defun org-agenda-reset-markers ()
  3803. "Reset markers created by `org-agenda'."
  3804. (while org-agenda-markers
  3805. (move-marker (pop org-agenda-markers) nil)))
  3806. (defun org-agenda-save-markers-for-cut-and-paste (beg end)
  3807. "Save relative positions of markers in region.
  3808. This check for agenda markers in all agenda buffers currently active."
  3809. (dolist (buf (buffer-list))
  3810. (with-current-buffer buf
  3811. (when (eq major-mode 'org-agenda-mode)
  3812. (mapc (lambda (m) (org-check-and-save-marker m beg end))
  3813. org-agenda-markers)))))
  3814. ;;; Entry text mode
  3815. (defun org-agenda-entry-text-show-here ()
  3816. "Add some text from the entry as context to the current line."
  3817. (let (m txt o)
  3818. (setq m (org-get-at-bol 'org-hd-marker))
  3819. (unless (marker-buffer m)
  3820. (error "No marker points to an entry here"))
  3821. (setq txt (concat "\n" (org-no-properties
  3822. (org-agenda-get-some-entry-text
  3823. m org-agenda-entry-text-maxlines
  3824. org-agenda-entry-text-leaders))))
  3825. (when (string-match "\\S-" txt)
  3826. (setq o (make-overlay (point-at-bol) (point-at-eol)))
  3827. (overlay-put o 'evaporate t)
  3828. (overlay-put o 'org-overlay-type 'agenda-entry-content)
  3829. (overlay-put o 'after-string txt))))
  3830. (defun org-agenda-entry-text-show ()
  3831. "Add entry context for all agenda lines."
  3832. (interactive)
  3833. (save-excursion
  3834. (goto-char (point-max))
  3835. (beginning-of-line 1)
  3836. (while (not (bobp))
  3837. (when (org-get-at-bol 'org-hd-marker)
  3838. (org-agenda-entry-text-show-here))
  3839. (beginning-of-line 0))))
  3840. (defun org-agenda-entry-text-hide ()
  3841. "Remove any shown entry context."
  3842. (mapc (lambda (o)
  3843. (when (eq (overlay-get o 'org-overlay-type)
  3844. 'agenda-entry-content)
  3845. (delete-overlay o)))
  3846. (overlays-in (point-min) (point-max))))
  3847. (defun org-agenda-get-day-face (date)
  3848. "Return the face DATE should be displayed with."
  3849. (cond ((and (functionp org-agenda-day-face-function)
  3850. (funcall org-agenda-day-face-function date)))
  3851. ((org-agenda-today-p date) 'org-agenda-date-today)
  3852. ((memq (calendar-day-of-week date) org-agenda-weekend-days)
  3853. 'org-agenda-date-weekend)
  3854. (t 'org-agenda-date)))
  3855. (defvar org-agenda-show-log-scoped)
  3856. ;;; Agenda Daily/Weekly
  3857. (defvar org-agenda-start-day nil ; dynamically scoped parameter
  3858. "Start day for the agenda view.
  3859. Custom commands can set this variable in the options section.
  3860. This is usually a string like \"2007-11-01\", \"+2d\" or any other
  3861. input allowed when reading a date through the Org calendar.
  3862. See the docstring of `org-read-date' for details.")
  3863. (defvar org-starting-day nil) ; local variable in the agenda buffer
  3864. (defvar org-arg-loc nil) ; local variable
  3865. ;;;###autoload
  3866. (defun org-agenda-list (&optional arg start-day span with-hour)
  3867. "Produce a daily/weekly view from all files in variable `org-agenda-files'.
  3868. The view will be for the current day or week, but from the overview buffer
  3869. you will be able to go to other days/weeks.
  3870. With a numeric prefix argument in an interactive call, the agenda will
  3871. span ARG days. Lisp programs should instead specify SPAN to change
  3872. the number of days. SPAN defaults to `org-agenda-span'.
  3873. START-DAY defaults to TODAY, or to the most recent match for the weekday
  3874. given in `org-agenda-start-on-weekday'.
  3875. When WITH-HOUR is non-nil, only include scheduled and deadline
  3876. items if they have an hour specification like [h]h:mm."
  3877. (interactive "P")
  3878. (when org-agenda-overriding-arguments
  3879. (setq arg (car org-agenda-overriding-arguments)
  3880. start-day (nth 1 org-agenda-overriding-arguments)
  3881. span (nth 2 org-agenda-overriding-arguments)))
  3882. (when (and (integerp arg) (> arg 0))
  3883. (setq span arg arg nil))
  3884. (when (numberp span)
  3885. (unless (< 0 span)
  3886. (user-error "Agenda creation impossible for this span(=%d days)." span)))
  3887. (catch 'exit
  3888. (setq org-agenda-buffer-name
  3889. (org-agenda--get-buffer-name
  3890. (and org-agenda-sticky
  3891. (cond ((and org-keys (stringp org-match))
  3892. (format "*Org Agenda(%s:%s)*" org-keys org-match))
  3893. (org-keys
  3894. (format "*Org Agenda(%s)*" org-keys))
  3895. (t "*Org Agenda(a)*")))))
  3896. (org-agenda-prepare "Day/Week")
  3897. (setq start-day (or start-day org-agenda-start-day))
  3898. (when (stringp start-day)
  3899. ;; Convert to an absolute day number
  3900. (setq start-day (time-to-days (org-read-date nil t start-day))))
  3901. (org-compile-prefix-format 'agenda)
  3902. (org-set-sorting-strategy 'agenda)
  3903. (let* ((span (org-agenda-ndays-to-span (or span org-agenda-span)))
  3904. (today (org-today))
  3905. (sd (or start-day today))
  3906. (ndays (org-agenda-span-to-ndays span sd))
  3907. (org-agenda-start-on-weekday
  3908. (and (or (eq ndays 7) (eq ndays 14))
  3909. org-agenda-start-on-weekday))
  3910. (thefiles (org-agenda-files nil 'ifmode))
  3911. (files thefiles)
  3912. (start (if (or (null org-agenda-start-on-weekday)
  3913. (< ndays 7))
  3914. sd
  3915. (let* ((nt (calendar-day-of-week
  3916. (calendar-gregorian-from-absolute sd)))
  3917. (n1 org-agenda-start-on-weekday)
  3918. (d (- nt n1)))
  3919. (- sd (+ (if (< d 0) 7 0) d)))))
  3920. (day-numbers (list start))
  3921. (day-cnt 0)
  3922. (inhibit-redisplay (not debug-on-error))
  3923. (org-agenda-show-log-scoped org-agenda-show-log)
  3924. s e rtn rtnall file date d start-pos end-pos todayp
  3925. clocktable-start clocktable-end filter)
  3926. (setq org-agenda-redo-command
  3927. (list 'org-agenda-list (list 'quote arg) start-day (list 'quote span) with-hour))
  3928. (dotimes (n (1- ndays))
  3929. (push (1+ (car day-numbers)) day-numbers))
  3930. (setq day-numbers (nreverse day-numbers))
  3931. (setq clocktable-start (car day-numbers)
  3932. clocktable-end (1+ (or (org-last day-numbers) 0)))
  3933. (setq-local org-starting-day (car day-numbers))
  3934. (setq-local org-arg-loc arg)
  3935. (setq-local org-agenda-current-span (org-agenda-ndays-to-span span))
  3936. (unless org-agenda-compact-blocks
  3937. (let* ((d1 (car day-numbers))
  3938. (d2 (org-last day-numbers))
  3939. (w1 (org-days-to-iso-week d1))
  3940. (w2 (org-days-to-iso-week d2)))
  3941. (setq s (point))
  3942. (org-agenda--insert-overriding-header
  3943. (concat (org-agenda-span-name span)
  3944. "-agenda"
  3945. (cond ((<= 350 (- d2 d1)) "")
  3946. ((= w1 w2) (format " (W%02d)" w1))
  3947. (t (format " (W%02d-W%02d)" w1 w2)))
  3948. ":\n")))
  3949. ;; Add properties if we actually inserted a header.
  3950. (when (> (point) s)
  3951. (add-text-properties s (1- (point))
  3952. (list 'face 'org-agenda-structure
  3953. 'org-date-line t))
  3954. (org-agenda-mark-header-line s)))
  3955. (while (setq d (pop day-numbers))
  3956. (setq date (calendar-gregorian-from-absolute d)
  3957. s (point))
  3958. (if (or (setq todayp (= d today))
  3959. (and (not start-pos) (= d sd)))
  3960. (setq start-pos (point))
  3961. (when (and start-pos (not end-pos))
  3962. (setq end-pos (point))))
  3963. (setq files thefiles
  3964. rtnall nil)
  3965. (while (setq file (pop files))
  3966. (catch 'nextfile
  3967. (org-check-agenda-file file)
  3968. (let ((org-agenda-entry-types org-agenda-entry-types))
  3969. ;; Starred types override non-starred equivalents
  3970. (when (member :deadline* org-agenda-entry-types)
  3971. (setq org-agenda-entry-types
  3972. (delq :deadline org-agenda-entry-types)))
  3973. (when (member :scheduled* org-agenda-entry-types)
  3974. (setq org-agenda-entry-types
  3975. (delq :scheduled org-agenda-entry-types)))
  3976. ;; Honor with-hour
  3977. (when with-hour
  3978. (when (member :deadline org-agenda-entry-types)
  3979. (setq org-agenda-entry-types
  3980. (delq :deadline org-agenda-entry-types))
  3981. (push :deadline* org-agenda-entry-types))
  3982. (when (member :scheduled org-agenda-entry-types)
  3983. (setq org-agenda-entry-types
  3984. (delq :scheduled org-agenda-entry-types))
  3985. (push :scheduled* org-agenda-entry-types)))
  3986. (unless org-agenda-include-deadlines
  3987. (setq org-agenda-entry-types
  3988. (delq :deadline* (delq :deadline org-agenda-entry-types))))
  3989. (cond
  3990. ((memq org-agenda-show-log-scoped '(only clockcheck))
  3991. (setq rtn (org-agenda-get-day-entries
  3992. file date :closed)))
  3993. (org-agenda-show-log-scoped
  3994. (setq rtn (apply 'org-agenda-get-day-entries
  3995. file date
  3996. (append '(:closed) org-agenda-entry-types))))
  3997. (t
  3998. (setq rtn (apply 'org-agenda-get-day-entries
  3999. file date
  4000. org-agenda-entry-types)))))
  4001. (setq rtnall (append rtnall rtn)))) ;; all entries
  4002. (when org-agenda-include-diary
  4003. (let ((org-agenda-search-headline-for-time t))
  4004. (require 'diary-lib)
  4005. (setq rtn (org-get-entries-from-diary date))
  4006. (setq rtnall (append rtnall rtn))))
  4007. (when (or rtnall org-agenda-show-all-dates)
  4008. (setq day-cnt (1+ day-cnt))
  4009. (insert
  4010. (if (stringp org-agenda-format-date)
  4011. (format-time-string org-agenda-format-date
  4012. (org-time-from-absolute date))
  4013. (funcall org-agenda-format-date date))
  4014. "\n")
  4015. (put-text-property s (1- (point)) 'face
  4016. (org-agenda-get-day-face date))
  4017. (put-text-property s (1- (point)) 'org-date-line t)
  4018. (put-text-property s (1- (point)) 'org-agenda-date-header t)
  4019. (put-text-property s (1- (point)) 'org-day-cnt day-cnt)
  4020. (when todayp
  4021. (put-text-property s (1- (point)) 'org-today t))
  4022. (setq rtnall
  4023. (org-agenda-add-time-grid-maybe rtnall ndays todayp))
  4024. (when rtnall (insert ;; all entries
  4025. (org-agenda-finalize-entries rtnall 'agenda)
  4026. "\n"))
  4027. (put-text-property s (1- (point)) 'day d)
  4028. (put-text-property s (1- (point)) 'org-day-cnt day-cnt)))
  4029. (when (and org-agenda-clockreport-mode clocktable-start)
  4030. (let ((org-agenda-files (org-agenda-files nil 'ifmode))
  4031. ;; the above line is to ensure the restricted range!
  4032. (p (copy-sequence org-agenda-clockreport-parameter-plist))
  4033. tbl)
  4034. (setq p (org-plist-delete p :block))
  4035. (setq p (plist-put p :tstart clocktable-start))
  4036. (setq p (plist-put p :tend clocktable-end))
  4037. (setq p (plist-put p :scope 'agenda))
  4038. (setq tbl (apply 'org-clock-get-clocktable p))
  4039. (insert tbl)))
  4040. (goto-char (point-min))
  4041. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4042. (unless (or (not (get-buffer-window org-agenda-buffer-name))
  4043. (and (pos-visible-in-window-p (point-min))
  4044. (pos-visible-in-window-p (point-max))))
  4045. (goto-char (1- (point-max)))
  4046. (recenter -1)
  4047. (when (not (pos-visible-in-window-p (or start-pos 1)))
  4048. (goto-char (or start-pos 1))
  4049. (recenter 1)))
  4050. (goto-char (or start-pos 1))
  4051. (add-text-properties (point-min) (point-max)
  4052. `(org-agenda-type agenda
  4053. org-last-args (,arg ,start-day ,span)
  4054. org-redo-cmd ,org-agenda-redo-command
  4055. org-series-cmd ,org-cmd))
  4056. (when (eq org-agenda-show-log-scoped 'clockcheck)
  4057. (org-agenda-show-clocking-issues))
  4058. (org-agenda-finalize)
  4059. (setq buffer-read-only t)
  4060. (message ""))))
  4061. (defun org-agenda-ndays-to-span (n)
  4062. "Return a span symbol for a span of N days, or N if none matches."
  4063. (cond ((symbolp n) n)
  4064. ((= n 1) 'day)
  4065. ((= n 7) 'week)
  4066. ((= n 14) 'fortnight)
  4067. (t n)))
  4068. (defun org-agenda-span-to-ndays (span &optional start-day)
  4069. "Return ndays from SPAN, possibly starting at START-DAY.
  4070. START-DAY is an absolute time value."
  4071. (cond ((numberp span) span)
  4072. ((eq span 'day) 1)
  4073. ((eq span 'week) 7)
  4074. ((eq span 'fortnight) 14)
  4075. ((eq span 'month)
  4076. (let ((date (calendar-gregorian-from-absolute start-day)))
  4077. (calendar-last-day-of-month (car date) (cl-caddr date))))
  4078. ((eq span 'year)
  4079. (let ((date (calendar-gregorian-from-absolute start-day)))
  4080. (if (calendar-leap-year-p (cl-caddr date)) 366 365)))))
  4081. (defun org-agenda-span-name (span)
  4082. "Return a SPAN name."
  4083. (if (null span)
  4084. ""
  4085. (if (symbolp span)
  4086. (capitalize (symbol-name span))
  4087. (format "%d days" span))))
  4088. ;;; Agenda word search
  4089. (defvar org-agenda-search-history nil)
  4090. (defvar org-search-syntax-table nil
  4091. "Special syntax table for Org search.
  4092. In this table, we have single quotes not as word constituents, to
  4093. that when \"+Ameli\" is searched as a work, it will also match \"Ameli's\"")
  4094. (defvar org-mode-syntax-table) ; From org.el
  4095. (defun org-search-syntax-table ()
  4096. (unless org-search-syntax-table
  4097. (setq org-search-syntax-table (copy-syntax-table org-mode-syntax-table))
  4098. (modify-syntax-entry ?' "." org-search-syntax-table)
  4099. (modify-syntax-entry ?` "." org-search-syntax-table))
  4100. org-search-syntax-table)
  4101. (defvar org-agenda-last-search-view-search-was-boolean nil)
  4102. ;;;###autoload
  4103. (defun org-search-view (&optional todo-only string edit-at)
  4104. "Show all entries that contain a phrase or words or regular expressions.
  4105. With optional prefix argument TODO-ONLY, only consider entries that are
  4106. TODO entries. The argument STRING can be used to pass a default search
  4107. string into this function. If EDIT-AT is non-nil, it means that the
  4108. user should get a chance to edit this string, with cursor at position
  4109. EDIT-AT.
  4110. The search string can be viewed either as a phrase that should be found as
  4111. is, or it can be broken into a number of snippets, each of which must match
  4112. in a Boolean way to select an entry. The default depends on the variable
  4113. `org-agenda-search-view-always-boolean'.
  4114. Even if this is turned off (the default) you can always switch to
  4115. Boolean search dynamically by preceding the first word with \"+\" or \"-\".
  4116. The default is a direct search of the whole phrase, where each space in
  4117. the search string can expand to an arbitrary amount of whitespace,
  4118. including newlines.
  4119. If using a Boolean search, the search string is split on whitespace and
  4120. each snippet is searched separately, with logical AND to select an entry.
  4121. Words prefixed with a minus must *not* occur in the entry. Words without
  4122. a prefix or prefixed with a plus must occur in the entry. Matching is
  4123. case-insensitive. Words are enclosed by word delimiters (i.e. they must
  4124. match whole words, not parts of a word) if
  4125. `org-agenda-search-view-force-full-words' is set (default is nil).
  4126. Boolean search snippets enclosed by curly braces are interpreted as
  4127. regular expressions that must or (when preceded with \"-\") must not
  4128. match in the entry. Snippets enclosed into double quotes will be taken
  4129. as a whole, to include whitespace.
  4130. - If the search string starts with an asterisk, search only in headlines.
  4131. - If (possibly after the leading star) the search string starts with an
  4132. exclamation mark, this also means to look at TODO entries only, an effect
  4133. that can also be achieved with a prefix argument.
  4134. - If (possibly after star and exclamation mark) the search string starts
  4135. with a colon, this will mean that the (non-regexp) snippets of the
  4136. Boolean search must match as full words.
  4137. This command searches the agenda files, and in addition the files
  4138. listed in `org-agenda-text-search-extra-files' unless a restriction lock
  4139. is active."
  4140. (interactive "P")
  4141. (when org-agenda-overriding-arguments
  4142. (setq todo-only (car org-agenda-overriding-arguments)
  4143. string (nth 1 org-agenda-overriding-arguments)
  4144. edit-at (nth 2 org-agenda-overriding-arguments)))
  4145. (let* ((props (list 'face nil
  4146. 'done-face 'org-agenda-done
  4147. 'org-not-done-regexp org-not-done-regexp
  4148. 'org-todo-regexp org-todo-regexp
  4149. 'org-complex-heading-regexp org-complex-heading-regexp
  4150. 'mouse-face 'highlight
  4151. 'help-echo (format "mouse-2 or RET jump to location")))
  4152. (full-words org-agenda-search-view-force-full-words)
  4153. (org-agenda-text-search-extra-files org-agenda-text-search-extra-files)
  4154. regexp rtn rtnall files file pos inherited-tags
  4155. marker category level tags c neg re boolean
  4156. ee txt beg end words regexps+ regexps- hdl-only buffer beg1 str)
  4157. (unless (and (not edit-at)
  4158. (stringp string)
  4159. (string-match "\\S-" string))
  4160. (setq string (read-string
  4161. (if org-agenda-search-view-always-boolean
  4162. "[+-]Word/{Regexp} ...: "
  4163. "Phrase or [+-]Word/{Regexp} ...: ")
  4164. (cond
  4165. ((integerp edit-at) (cons string edit-at))
  4166. (edit-at string))
  4167. 'org-agenda-search-history)))
  4168. (catch 'exit
  4169. (setq org-agenda-buffer-name
  4170. (org-agenda--get-buffer-name
  4171. (and org-agenda-sticky
  4172. (if (stringp string)
  4173. (format "*Org Agenda(%s:%s)*"
  4174. (or org-keys (or (and todo-only "S") "s"))
  4175. string)
  4176. (format "*Org Agenda(%s)*"
  4177. (or (and todo-only "S") "s"))))))
  4178. (org-agenda-prepare "SEARCH")
  4179. (org-compile-prefix-format 'search)
  4180. (org-set-sorting-strategy 'search)
  4181. (setq org-agenda-redo-command
  4182. (list 'org-search-view (if todo-only t nil)
  4183. (list 'if 'current-prefix-arg nil string)))
  4184. (setq org-agenda-query-string string)
  4185. (if (equal (string-to-char string) ?*)
  4186. (setq hdl-only t
  4187. words (substring string 1))
  4188. (setq words string))
  4189. (when (equal (string-to-char words) ?!)
  4190. (setq todo-only t
  4191. words (substring words 1)))
  4192. (when (equal (string-to-char words) ?:)
  4193. (setq full-words t
  4194. words (substring words 1)))
  4195. (when (or org-agenda-search-view-always-boolean
  4196. (member (string-to-char words) '(?- ?+ ?\{)))
  4197. (setq boolean t))
  4198. (setq words (split-string words))
  4199. (let (www w)
  4200. (while (setq w (pop words))
  4201. (while (and (string-match "\\\\\\'" w) words)
  4202. (setq w (concat (substring w 0 -1) " " (pop words))))
  4203. (push w www))
  4204. (setq words (nreverse www) www nil)
  4205. (while (setq w (pop words))
  4206. (when (and (string-match "\\`[-+]?{" w)
  4207. (not (string-match "}\\'" w)))
  4208. (while (and words (not (string-match "}\\'" (car words))))
  4209. (setq w (concat w " " (pop words))))
  4210. (setq w (concat w " " (pop words))))
  4211. (push w www))
  4212. (setq words (nreverse www)))
  4213. (setq org-agenda-last-search-view-search-was-boolean boolean)
  4214. (when boolean
  4215. (let (wds w)
  4216. (while (setq w (pop words))
  4217. (when (or (equal (substring w 0 1) "\"")
  4218. (and (> (length w) 1)
  4219. (member (substring w 0 1) '("+" "-"))
  4220. (equal (substring w 1 2) "\"")))
  4221. (while (and words (not (equal (substring w -1) "\"")))
  4222. (setq w (concat w " " (pop words)))))
  4223. (and (string-match "\\`\\([-+]?\\)\"" w)
  4224. (setq w (replace-match "\\1" nil nil w)))
  4225. (and (equal (substring w -1) "\"") (setq w (substring w 0 -1)))
  4226. (push w wds))
  4227. (setq words (nreverse wds))))
  4228. (if boolean
  4229. (mapc (lambda (w)
  4230. (setq c (string-to-char w))
  4231. (if (equal c ?-)
  4232. (setq neg t w (substring w 1))
  4233. (if (equal c ?+)
  4234. (setq neg nil w (substring w 1))
  4235. (setq neg nil)))
  4236. (if (string-match "\\`{.*}\\'" w)
  4237. (setq re (substring w 1 -1))
  4238. (if full-words
  4239. (setq re (concat "\\<" (regexp-quote (downcase w)) "\\>"))
  4240. (setq re (regexp-quote (downcase w)))))
  4241. (if neg (push re regexps-) (push re regexps+)))
  4242. words)
  4243. (push (mapconcat (lambda (w) (regexp-quote w)) words "\\s-+")
  4244. regexps+))
  4245. (setq regexps+ (sort regexps+ (lambda (a b) (> (length a) (length b)))))
  4246. (if (not regexps+)
  4247. (setq regexp org-outline-regexp-bol)
  4248. (setq regexp (pop regexps+))
  4249. (when hdl-only (setq regexp (concat org-outline-regexp-bol ".*?"
  4250. regexp))))
  4251. (setq files (org-agenda-files nil 'ifmode))
  4252. ;; Add `org-agenda-text-search-extra-files' unless there is some
  4253. ;; restriction.
  4254. (when (eq (car org-agenda-text-search-extra-files) 'agenda-archives)
  4255. (pop org-agenda-text-search-extra-files)
  4256. (unless (get 'org-agenda-files 'org-restrict)
  4257. (setq files (org-add-archive-files files))))
  4258. ;; Uniquify files. However, let `org-check-agenda-file' handle
  4259. ;; non-existent ones.
  4260. (setq files (cl-remove-duplicates
  4261. (append files org-agenda-text-search-extra-files)
  4262. :test (lambda (a b)
  4263. (and (file-exists-p a)
  4264. (file-exists-p b)
  4265. (file-equal-p a b))))
  4266. rtnall nil)
  4267. (while (setq file (pop files))
  4268. (setq ee nil)
  4269. (catch 'nextfile
  4270. (org-check-agenda-file file)
  4271. (setq buffer (if (file-exists-p file)
  4272. (org-get-agenda-file-buffer file)
  4273. (error "No such file %s" file)))
  4274. (unless buffer
  4275. ;; If file does not exist, make sure an error message is sent
  4276. (setq rtn (list (format "ORG-AGENDA-ERROR: No such org-file %s"
  4277. file))))
  4278. (with-current-buffer buffer
  4279. (with-syntax-table (org-search-syntax-table)
  4280. (unless (derived-mode-p 'org-mode)
  4281. (error "Agenda file %s is not in Org mode" file))
  4282. (let ((case-fold-search t))
  4283. (save-excursion
  4284. (save-restriction
  4285. (if (eq buffer org-agenda-restrict)
  4286. (narrow-to-region org-agenda-restrict-begin
  4287. org-agenda-restrict-end)
  4288. (widen))
  4289. (goto-char (point-min))
  4290. (unless (or (org-at-heading-p)
  4291. (outline-next-heading))
  4292. (throw 'nextfile t))
  4293. (goto-char (max (point-min) (1- (point))))
  4294. (while (re-search-forward regexp nil t)
  4295. (org-back-to-heading t)
  4296. (while (and (not (zerop org-agenda-search-view-max-outline-level))
  4297. (> (org-reduced-level (org-outline-level))
  4298. org-agenda-search-view-max-outline-level)
  4299. (forward-line -1)
  4300. (org-back-to-heading t)))
  4301. (skip-chars-forward "* ")
  4302. (setq beg (point-at-bol)
  4303. beg1 (point)
  4304. end (progn
  4305. (outline-next-heading)
  4306. (while (and (not (zerop org-agenda-search-view-max-outline-level))
  4307. (> (org-reduced-level (org-outline-level))
  4308. org-agenda-search-view-max-outline-level)
  4309. (forward-line 1)
  4310. (outline-next-heading)))
  4311. (point)))
  4312. (catch :skip
  4313. (goto-char beg)
  4314. (org-agenda-skip)
  4315. (setq str (buffer-substring-no-properties
  4316. (point-at-bol)
  4317. (if hdl-only (point-at-eol) end)))
  4318. (mapc (lambda (wr) (when (string-match wr str)
  4319. (goto-char (1- end))
  4320. (throw :skip t)))
  4321. regexps-)
  4322. (mapc (lambda (wr) (unless (string-match wr str)
  4323. (goto-char (1- end))
  4324. (throw :skip t)))
  4325. (if todo-only
  4326. (cons (concat "^\\*+[ \t]+"
  4327. org-not-done-regexp)
  4328. regexps+)
  4329. regexps+))
  4330. (goto-char beg)
  4331. (setq marker (org-agenda-new-marker (point))
  4332. category (org-get-category)
  4333. level (make-string (org-reduced-level (org-outline-level)) ? )
  4334. inherited-tags
  4335. (or (eq org-agenda-show-inherited-tags 'always)
  4336. (and (listp org-agenda-show-inherited-tags)
  4337. (memq 'todo org-agenda-show-inherited-tags))
  4338. (and (eq org-agenda-show-inherited-tags t)
  4339. (or (eq org-agenda-use-tag-inheritance t)
  4340. (memq 'todo org-agenda-use-tag-inheritance))))
  4341. tags (org-get-tags nil (not inherited-tags))
  4342. txt (org-agenda-format-item
  4343. ""
  4344. (buffer-substring-no-properties
  4345. beg1 (point-at-eol))
  4346. level category tags t))
  4347. (org-add-props txt props
  4348. 'org-marker marker 'org-hd-marker marker
  4349. 'org-todo-regexp org-todo-regexp
  4350. 'level level
  4351. 'org-complex-heading-regexp org-complex-heading-regexp
  4352. 'priority 1000
  4353. 'type "search")
  4354. (push txt ee)
  4355. (goto-char (1- end))))))))))
  4356. (setq rtn (nreverse ee))
  4357. (setq rtnall (append rtnall rtn)))
  4358. (org-agenda--insert-overriding-header
  4359. (with-temp-buffer
  4360. (insert "Search words: ")
  4361. (add-text-properties (point-min) (1- (point))
  4362. (list 'face 'org-agenda-structure))
  4363. (setq pos (point))
  4364. (insert string "\n")
  4365. (add-text-properties pos (1- (point)) (list 'face 'org-warning))
  4366. (setq pos (point))
  4367. (unless org-agenda-multi
  4368. (insert (substitute-command-keys "\\<org-agenda-mode-map>\
  4369. Press `\\[org-agenda-manipulate-query-add]', \
  4370. `\\[org-agenda-manipulate-query-subtract]' to add/sub word, \
  4371. `\\[org-agenda-manipulate-query-add-re]', \
  4372. `\\[org-agenda-manipulate-query-subtract-re]' to add/sub regexp, \
  4373. `\\[universal-argument] \\[org-agenda-redo]' for a fresh search\n"))
  4374. (add-text-properties pos (1- (point))
  4375. (list 'face 'org-agenda-structure)))
  4376. (buffer-string)))
  4377. (org-agenda-mark-header-line (point-min))
  4378. (when rtnall
  4379. (insert (org-agenda-finalize-entries rtnall 'search) "\n"))
  4380. (goto-char (point-min))
  4381. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4382. (add-text-properties (point-min) (point-max)
  4383. `(org-agenda-type search
  4384. org-last-args (,todo-only ,string ,edit-at)
  4385. org-redo-cmd ,org-agenda-redo-command
  4386. org-series-cmd ,org-cmd))
  4387. (org-agenda-finalize)
  4388. (setq buffer-read-only t))))
  4389. ;;; Agenda TODO list
  4390. (defun org-agenda-propertize-selected-todo-keywords (keywords)
  4391. "Use `org-todo-keyword-faces' for the selected todo KEYWORDS."
  4392. (concat
  4393. (if (or (equal keywords "ALL") (not keywords))
  4394. (propertize "ALL" 'face 'warning)
  4395. (mapconcat
  4396. (lambda (kw)
  4397. (propertize kw 'face (org-get-todo-face kw)))
  4398. (org-split-string keywords "|")
  4399. "|"))
  4400. "\n"))
  4401. (defvar org-select-this-todo-keyword nil)
  4402. (defvar org-last-arg nil)
  4403. ;;;###autoload
  4404. (defun org-todo-list (&optional arg)
  4405. "Show all (not done) TODO entries from all agenda file in a single list.
  4406. The prefix arg can be used to select a specific TODO keyword and limit
  4407. the list to these. When using `\\[universal-argument]', you will be prompted
  4408. for a keyword. A numeric prefix directly selects the Nth keyword in
  4409. `org-todo-keywords-1'."
  4410. (interactive "P")
  4411. (when org-agenda-overriding-arguments
  4412. (setq arg org-agenda-overriding-arguments))
  4413. (when (and (stringp arg) (not (string-match "\\S-" arg))) (setq arg nil))
  4414. (let* ((today (org-today))
  4415. (date (calendar-gregorian-from-absolute today))
  4416. (completion-ignore-case t)
  4417. kwds org-select-this-todo-keyword rtn rtnall files file pos)
  4418. (catch 'exit
  4419. (setq org-agenda-buffer-name
  4420. (org-agenda--get-buffer-name
  4421. (and org-agenda-sticky
  4422. (if (stringp org-select-this-todo-keyword)
  4423. (format "*Org Agenda(%s:%s)*" (or org-keys "t")
  4424. org-select-this-todo-keyword)
  4425. (format "*Org Agenda(%s)*" (or org-keys "t"))))))
  4426. (org-agenda-prepare "TODO")
  4427. (setq kwds org-todo-keywords-for-agenda
  4428. org-select-this-todo-keyword (if (stringp arg) arg
  4429. (and (integerp arg)
  4430. (> arg 0)
  4431. (nth (1- arg) kwds))))
  4432. (when (equal arg '(4))
  4433. (setq org-select-this-todo-keyword
  4434. (mapconcat #'identity
  4435. (let ((crm-separator "|"))
  4436. (completing-read-multiple
  4437. "Keyword (or KWD1|KWD2|...): "
  4438. (mapcar #'list kwds) nil nil))
  4439. "|")))
  4440. (and (equal 0 arg) (setq org-select-this-todo-keyword nil))
  4441. (org-compile-prefix-format 'todo)
  4442. (org-set-sorting-strategy 'todo)
  4443. (setq org-agenda-redo-command
  4444. `(org-todo-list (or (and (numberp current-prefix-arg)
  4445. current-prefix-arg)
  4446. ,org-select-this-todo-keyword
  4447. current-prefix-arg ,arg)))
  4448. (setq files (org-agenda-files nil 'ifmode)
  4449. rtnall nil)
  4450. (while (setq file (pop files))
  4451. (catch 'nextfile
  4452. (org-check-agenda-file file)
  4453. (setq rtn (org-agenda-get-day-entries file date :todo))
  4454. (setq rtnall (append rtnall rtn))))
  4455. (org-agenda--insert-overriding-header
  4456. (with-temp-buffer
  4457. (insert "Global list of TODO items of type: ")
  4458. (add-text-properties (point-min) (1- (point))
  4459. (list 'face 'org-agenda-structure
  4460. 'short-heading
  4461. (concat "ToDo: "
  4462. (or org-select-this-todo-keyword "ALL"))))
  4463. (org-agenda-mark-header-line (point-min))
  4464. (insert (org-agenda-propertize-selected-todo-keywords
  4465. org-select-this-todo-keyword))
  4466. (setq pos (point))
  4467. (unless org-agenda-multi
  4468. (insert (substitute-command-keys "Press \
  4469. \\<org-agenda-mode-map>`N \\[org-agenda-redo]' (e.g. `0 \\[org-agenda-redo]') \
  4470. to search again: (0)[ALL]"))
  4471. (let ((n 0))
  4472. (dolist (k kwds)
  4473. (let ((s (format "(%d)%s" (cl-incf n) k)))
  4474. (when (> (+ (current-column) (string-width s) 1) (window-width))
  4475. (insert "\n "))
  4476. (insert " " s))))
  4477. (insert "\n"))
  4478. (add-text-properties pos (1- (point)) (list 'face 'org-agenda-structure))
  4479. (buffer-string)))
  4480. (org-agenda-mark-header-line (point-min))
  4481. (when rtnall
  4482. (insert (org-agenda-finalize-entries rtnall 'todo) "\n"))
  4483. (goto-char (point-min))
  4484. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4485. (add-text-properties (point-min) (point-max)
  4486. `(org-agenda-type todo
  4487. org-last-args ,arg
  4488. org-redo-cmd ,org-agenda-redo-command
  4489. org-series-cmd ,org-cmd))
  4490. (org-agenda-finalize)
  4491. (setq buffer-read-only t))))
  4492. ;;; Agenda tags match
  4493. ;;;###autoload
  4494. (defun org-tags-view (&optional todo-only match)
  4495. "Show all headlines for all `org-agenda-files' matching a TAGS criterion.
  4496. The prefix arg TODO-ONLY limits the search to TODO entries."
  4497. (interactive "P")
  4498. (when org-agenda-overriding-arguments
  4499. (setq todo-only (car org-agenda-overriding-arguments)
  4500. match (nth 1 org-agenda-overriding-arguments)))
  4501. (let* ((org-tags-match-list-sublevels
  4502. org-tags-match-list-sublevels)
  4503. (completion-ignore-case t)
  4504. (org--matcher-tags-todo-only todo-only)
  4505. rtn rtnall files file pos matcher
  4506. buffer)
  4507. (when (and (stringp match) (not (string-match "\\S-" match)))
  4508. (setq match nil))
  4509. (catch 'exit
  4510. (setq org-agenda-buffer-name
  4511. (org-agenda--get-buffer-name
  4512. (and org-agenda-sticky
  4513. (if (stringp match)
  4514. (format "*Org Agenda(%s:%s)*"
  4515. (or org-keys (or (and todo-only "M") "m"))
  4516. match)
  4517. (format "*Org Agenda(%s)*"
  4518. (or (and todo-only "M") "m"))))))
  4519. (setq matcher (org-make-tags-matcher match))
  4520. ;; Prepare agendas (and `org-tag-alist-for-agenda') before
  4521. ;; expanding tags within `org-make-tags-matcher'
  4522. (org-agenda-prepare (concat "TAGS " match))
  4523. (setq match (car matcher)
  4524. matcher (cdr matcher))
  4525. (org-compile-prefix-format 'tags)
  4526. (org-set-sorting-strategy 'tags)
  4527. (setq org-agenda-query-string match)
  4528. (setq org-agenda-redo-command
  4529. (list 'org-tags-view
  4530. `(quote ,org--matcher-tags-todo-only)
  4531. `(if current-prefix-arg nil ,org-agenda-query-string)))
  4532. (setq files (org-agenda-files nil 'ifmode)
  4533. rtnall nil)
  4534. (while (setq file (pop files))
  4535. (catch 'nextfile
  4536. (org-check-agenda-file file)
  4537. (setq buffer (if (file-exists-p file)
  4538. (org-get-agenda-file-buffer file)
  4539. (error "No such file %s" file)))
  4540. (if (not buffer)
  4541. ;; If file does not exist, error message to agenda
  4542. (setq rtn (list
  4543. (format "ORG-AGENDA-ERROR: No such org-file %s" file))
  4544. rtnall (append rtnall rtn))
  4545. (with-current-buffer buffer
  4546. (unless (derived-mode-p 'org-mode)
  4547. (error "Agenda file %s is not in Org mode" file))
  4548. (save-excursion
  4549. (save-restriction
  4550. (if (eq buffer org-agenda-restrict)
  4551. (narrow-to-region org-agenda-restrict-begin
  4552. org-agenda-restrict-end)
  4553. (widen))
  4554. (setq rtn (org-scan-tags 'agenda
  4555. matcher
  4556. org--matcher-tags-todo-only))
  4557. (setq rtnall (append rtnall rtn))))))))
  4558. (org-agenda--insert-overriding-header
  4559. (with-temp-buffer
  4560. (insert "Headlines with TAGS match: ")
  4561. (add-text-properties (point-min) (1- (point))
  4562. (list 'face 'org-agenda-structure
  4563. 'short-heading
  4564. (concat "Match: " match)))
  4565. (setq pos (point))
  4566. (insert match "\n")
  4567. (add-text-properties pos (1- (point)) (list 'face 'org-warning))
  4568. (setq pos (point))
  4569. (unless org-agenda-multi
  4570. (insert (substitute-command-keys
  4571. "Press \
  4572. \\<org-agenda-mode-map>`\\[universal-argument] \\[org-agenda-redo]' \
  4573. to search again\n")))
  4574. (add-text-properties pos (1- (point))
  4575. (list 'face 'org-agenda-structure))
  4576. (buffer-string)))
  4577. (org-agenda-mark-header-line (point-min))
  4578. (when rtnall
  4579. (insert (org-agenda-finalize-entries rtnall 'tags) "\n"))
  4580. (goto-char (point-min))
  4581. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4582. (add-text-properties
  4583. (point-min) (point-max)
  4584. `(org-agenda-type tags
  4585. org-last-args (,org--matcher-tags-todo-only ,match)
  4586. org-redo-cmd ,org-agenda-redo-command
  4587. org-series-cmd ,org-cmd))
  4588. (org-agenda-finalize)
  4589. (setq buffer-read-only t))))
  4590. ;;; Agenda Finding stuck projects
  4591. (defvar org-agenda-skip-regexp nil
  4592. "Regular expression used in skipping subtrees for the agenda.
  4593. This is basically a temporary global variable that can be set and then
  4594. used by user-defined selections using `org-agenda-skip-function'.")
  4595. (defvar org-agenda-overriding-header nil
  4596. "When set during agenda, todo and tags searches it replaces the header.
  4597. If an empty string, no header will be inserted. If any other
  4598. string, it will be inserted as a header. If nil, a header will
  4599. be generated automatically according to the command. This
  4600. variable should not be set directly, but custom commands can bind
  4601. it in the options section.")
  4602. (defun org-agenda-skip-entry-if (&rest conditions)
  4603. "Skip entry if any of CONDITIONS is true.
  4604. See `org-agenda-skip-if' for details."
  4605. (org-agenda-skip-if nil conditions))
  4606. (defun org-agenda-skip-subtree-if (&rest conditions)
  4607. "Skip subtree if any of CONDITIONS is true.
  4608. See `org-agenda-skip-if' for details."
  4609. (org-agenda-skip-if t conditions))
  4610. (defun org-agenda-skip-if (subtree conditions)
  4611. "Checks current entity for CONDITIONS.
  4612. If SUBTREE is non-nil, the entire subtree is checked. Otherwise, only
  4613. the entry (i.e. the text before the next heading) is checked.
  4614. CONDITIONS is a list of symbols, boolean OR is used to combine the results
  4615. from different tests. Valid conditions are:
  4616. scheduled Check if there is a scheduled cookie
  4617. notscheduled Check if there is no scheduled cookie
  4618. deadline Check if there is a deadline
  4619. notdeadline Check if there is no deadline
  4620. timestamp Check if there is a timestamp (also deadline or scheduled)
  4621. nottimestamp Check if there is no timestamp (also deadline or scheduled)
  4622. regexp Check if regexp matches
  4623. notregexp Check if regexp does not match.
  4624. todo Check if TODO keyword matches
  4625. nottodo Check if TODO keyword does not match
  4626. The regexp is taken from the conditions list, it must come right after
  4627. the `regexp' or `notregexp' element.
  4628. `todo' and `nottodo' accept as an argument a list of todo
  4629. keywords, which may include \"*\" to match any todo keyword.
  4630. (org-agenda-skip-entry-if \\='todo \\='(\"TODO\" \"WAITING\"))
  4631. would skip all entries with \"TODO\" or \"WAITING\" keywords.
  4632. Instead of a list, a keyword class may be given. For example:
  4633. (org-agenda-skip-entry-if \\='nottodo \\='done)
  4634. would skip entries that haven't been marked with any of \"DONE\"
  4635. keywords. Possible classes are: `todo', `done', `any'.
  4636. If any of these conditions is met, this function returns the end point of
  4637. the entity, causing the search to continue from there. This is a function
  4638. that can be put into `org-agenda-skip-function' for the duration of a command."
  4639. (org-back-to-heading t)
  4640. (let* ((beg (point))
  4641. (end (if subtree (save-excursion (org-end-of-subtree t) (point))
  4642. (org-entry-end-position)))
  4643. (planning-end (if subtree end (line-end-position 2)))
  4644. m)
  4645. (and
  4646. (or (and (memq 'scheduled conditions)
  4647. (re-search-forward org-scheduled-time-regexp planning-end t))
  4648. (and (memq 'notscheduled conditions)
  4649. (not
  4650. (save-excursion
  4651. (re-search-forward org-scheduled-time-regexp planning-end t))))
  4652. (and (memq 'deadline conditions)
  4653. (re-search-forward org-deadline-time-regexp planning-end t))
  4654. (and (memq 'notdeadline conditions)
  4655. (not
  4656. (save-excursion
  4657. (re-search-forward org-deadline-time-regexp planning-end t))))
  4658. (and (memq 'timestamp conditions)
  4659. (re-search-forward org-ts-regexp end t))
  4660. (and (memq 'nottimestamp conditions)
  4661. (not (save-excursion (re-search-forward org-ts-regexp end t))))
  4662. (and (setq m (memq 'regexp conditions))
  4663. (stringp (nth 1 m))
  4664. (re-search-forward (nth 1 m) end t))
  4665. (and (setq m (memq 'notregexp conditions))
  4666. (stringp (nth 1 m))
  4667. (not (save-excursion (re-search-forward (nth 1 m) end t))))
  4668. (and (or
  4669. (setq m (memq 'nottodo conditions))
  4670. (setq m (memq 'todo-unblocked conditions))
  4671. (setq m (memq 'nottodo-unblocked conditions))
  4672. (setq m (memq 'todo conditions)))
  4673. (org-agenda-skip-if-todo m end)))
  4674. end)))
  4675. (defun org-agenda-skip-if-todo (args end)
  4676. "Helper function for `org-agenda-skip-if', do not use it directly.
  4677. ARGS is a list with first element either `todo', `nottodo',
  4678. `todo-unblocked' or `nottodo-unblocked'. The remainder is either
  4679. a list of TODO keywords, or a state symbol `todo' or `done' or
  4680. `any'."
  4681. (let ((todo-re
  4682. (concat "^\\*+[ \t]+"
  4683. (regexp-opt
  4684. (pcase args
  4685. (`(,_ todo)
  4686. (org-delete-all org-done-keywords
  4687. (copy-sequence org-todo-keywords-1)))
  4688. (`(,_ done) org-done-keywords)
  4689. (`(,_ any) org-todo-keywords-1)
  4690. (`(,_ ,(pred atom))
  4691. (error "Invalid TODO class or type: %S" args))
  4692. (`(,_ ,(pred (member "*"))) org-todo-keywords-1)
  4693. (`(,_ ,todo-list) todo-list))
  4694. 'words))))
  4695. (pcase args
  4696. (`(todo . ,_)
  4697. (let (case-fold-search) (re-search-forward todo-re end t)))
  4698. (`(nottodo . ,_)
  4699. (not (let (case-fold-search) (re-search-forward todo-re end t))))
  4700. (`(todo-unblocked . ,_)
  4701. (catch :unblocked
  4702. (while (let (case-fold-search) (re-search-forward todo-re end t))
  4703. (when (org-entry-blocked-p) (throw :unblocked t)))
  4704. nil))
  4705. (`(nottodo-unblocked . ,_)
  4706. (catch :unblocked
  4707. (while (let (case-fold-search) (re-search-forward todo-re end t))
  4708. (when (org-entry-blocked-p) (throw :unblocked nil)))
  4709. t))
  4710. (`(,type . ,_) (error "Unknown TODO skip type: %S" type)))))
  4711. ;;;###autoload
  4712. (defun org-agenda-list-stuck-projects (&rest ignore)
  4713. "Create agenda view for projects that are stuck.
  4714. Stuck projects are project that have no next actions. For the definitions
  4715. of what a project is and how to check if it stuck, customize the variable
  4716. `org-stuck-projects'."
  4717. (interactive)
  4718. (let* ((org-agenda-overriding-header
  4719. (or org-agenda-overriding-header "List of stuck projects: "))
  4720. (matcher (nth 0 org-stuck-projects))
  4721. (todo (nth 1 org-stuck-projects))
  4722. (tags (nth 2 org-stuck-projects))
  4723. (gen-re (org-string-nw-p (nth 3 org-stuck-projects)))
  4724. (todo-wds
  4725. (if (not (member "*" todo)) todo
  4726. (org-agenda-prepare-buffers (org-agenda-files nil 'ifmode))
  4727. (org-delete-all org-done-keywords-for-agenda
  4728. (copy-sequence org-todo-keywords-for-agenda))))
  4729. (todo-re (and todo
  4730. (format "^\\*+[ \t]+\\(%s\\)\\>"
  4731. (mapconcat #'identity todo-wds "\\|"))))
  4732. (tags-re (cond ((null tags) nil)
  4733. ((member "*" tags) org-tag-line-re)
  4734. (tags
  4735. (let ((other-tags (format "\\(?:%s:\\)*" org-tag-re)))
  4736. (concat org-outline-regexp-bol
  4737. ".*?[ \t]:"
  4738. other-tags
  4739. (regexp-opt tags t)
  4740. ":" other-tags "[ \t]*$")))
  4741. (t nil)))
  4742. (re-list (delq nil (list todo-re tags-re gen-re)))
  4743. (skip-re
  4744. (if (null re-list)
  4745. (error "Missing information to identify unstuck projects")
  4746. (mapconcat #'identity re-list "\\|")))
  4747. (org-agenda-skip-function
  4748. ;; Skip entry if `org-agenda-skip-regexp' matches anywhere
  4749. ;; in the subtree.
  4750. `(lambda ()
  4751. (and (save-excursion
  4752. (let ((case-fold-search nil))
  4753. (re-search-forward
  4754. ,skip-re (save-excursion (org-end-of-subtree t)) t)))
  4755. (progn (outline-next-heading) (point))))))
  4756. (org-tags-view nil matcher)
  4757. (setq org-agenda-buffer-name (buffer-name))
  4758. (with-current-buffer org-agenda-buffer-name
  4759. (setq org-agenda-redo-command
  4760. `(org-agenda-list-stuck-projects ,current-prefix-arg))
  4761. (let ((inhibit-read-only t))
  4762. (add-text-properties
  4763. (point-min) (point-max)
  4764. `(org-redo-cmd ,org-agenda-redo-command))))))
  4765. ;;; Diary integration
  4766. (defvar org-disable-agenda-to-diary nil) ;Dynamically-scoped param.
  4767. (defvar diary-list-entries-hook)
  4768. (defvar diary-time-regexp)
  4769. (defun org-get-entries-from-diary (date)
  4770. "Get the (Emacs Calendar) diary entries for DATE."
  4771. (require 'diary-lib)
  4772. (let* ((diary-fancy-buffer "*temporary-fancy-diary-buffer*")
  4773. (diary-display-function 'diary-fancy-display)
  4774. (pop-up-frames nil)
  4775. (diary-list-entries-hook
  4776. (cons 'org-diary-default-entry diary-list-entries-hook))
  4777. (diary-file-name-prefix nil) ; turn this feature off
  4778. (diary-modify-entry-list-string-function 'org-modify-diary-entry-string)
  4779. (diary-time-regexp (concat "^" diary-time-regexp))
  4780. entries
  4781. (org-disable-agenda-to-diary t))
  4782. (save-excursion
  4783. (save-window-excursion
  4784. (funcall (if (fboundp 'diary-list-entries)
  4785. 'diary-list-entries 'list-diary-entries)
  4786. date 1)))
  4787. (if (not (get-buffer diary-fancy-buffer))
  4788. (setq entries nil)
  4789. (with-current-buffer diary-fancy-buffer
  4790. (setq buffer-read-only nil)
  4791. (if (zerop (buffer-size))
  4792. ;; No entries
  4793. (setq entries nil)
  4794. ;; Omit the date and other unnecessary stuff
  4795. (org-agenda-cleanup-fancy-diary)
  4796. ;; Add prefix to each line and extend the text properties
  4797. (if (zerop (buffer-size))
  4798. (setq entries nil)
  4799. (setq entries (buffer-substring (point-min) (- (point-max) 1)))
  4800. (setq entries
  4801. (with-temp-buffer
  4802. (insert entries) (goto-char (point-min))
  4803. (while (re-search-forward "\n[ \t]+\\(.+\\)$" nil t)
  4804. (unless (save-match-data (string-match diary-time-regexp (match-string 1)))
  4805. (replace-match (concat "; " (match-string 1)))))
  4806. (buffer-string)))))
  4807. (set-buffer-modified-p nil)
  4808. (kill-buffer diary-fancy-buffer)))
  4809. (when entries
  4810. (setq entries (org-split-string entries "\n"))
  4811. (setq entries
  4812. (mapcar
  4813. (lambda (x)
  4814. (setq x (org-agenda-format-item "" x nil "Diary" nil 'time))
  4815. ;; Extend the text properties to the beginning of the line
  4816. (org-add-props x (text-properties-at (1- (length x)) x)
  4817. 'type "diary" 'date date 'face 'org-agenda-diary))
  4818. entries)))))
  4819. (defvar org-agenda-cleanup-fancy-diary-hook nil
  4820. "Hook run when the fancy diary buffer is cleaned up.")
  4821. (defun org-agenda-cleanup-fancy-diary ()
  4822. "Remove unwanted stuff in buffer created by `fancy-diary-display'.
  4823. This gets rid of the date, the underline under the date, and the
  4824. dummy entry installed by Org mode to ensure non-empty diary for
  4825. each date. It also removes lines that contain only whitespace."
  4826. (goto-char (point-min))
  4827. (if (looking-at ".*?:[ \t]*")
  4828. (progn
  4829. (replace-match "")
  4830. (re-search-forward "\n=+$" nil t)
  4831. (replace-match "")
  4832. (while (re-search-backward "^ +\n?" nil t) (replace-match "")))
  4833. (re-search-forward "\n=+$" nil t)
  4834. (delete-region (point-min) (min (point-max) (1+ (match-end 0)))))
  4835. (goto-char (point-min))
  4836. (while (re-search-forward "^ +\n" nil t)
  4837. (replace-match ""))
  4838. (goto-char (point-min))
  4839. (when (re-search-forward "^Org mode dummy\n?" nil t)
  4840. (replace-match ""))
  4841. (run-hooks 'org-agenda-cleanup-fancy-diary-hook))
  4842. (defun org-modify-diary-entry-string (string)
  4843. "Add text properties to string, allowing Org to act on it."
  4844. (org-add-props string nil
  4845. 'mouse-face 'highlight
  4846. 'help-echo (if buffer-file-name
  4847. (format "mouse-2 or RET jump to diary file %s"
  4848. (abbreviate-file-name buffer-file-name))
  4849. "")
  4850. 'org-agenda-diary-link t
  4851. 'org-marker (org-agenda-new-marker (point-at-bol))))
  4852. (defun org-diary-default-entry ()
  4853. "Add a dummy entry to the diary.
  4854. Needed to avoid empty dates which mess up holiday display."
  4855. ;; Catch the error if dealing with the new add-to-diary-alist
  4856. (when org-disable-agenda-to-diary
  4857. (diary-add-to-list original-date "Org mode dummy" "")))
  4858. (defvar org-diary-last-run-time nil)
  4859. ;;;###autoload
  4860. (defun org-diary (&rest args)
  4861. "Return diary information from org files.
  4862. This function can be used in a \"sexp\" diary entry in the Emacs calendar.
  4863. It accesses org files and extracts information from those files to be
  4864. listed in the diary. The function accepts arguments specifying what
  4865. items should be listed. For a list of arguments allowed here, see the
  4866. variable `org-agenda-entry-types'.
  4867. The call in the diary file should look like this:
  4868. &%%(org-diary) ~/path/to/some/orgfile.org
  4869. Use a separate line for each org file to check. Or, if you omit the file name,
  4870. all files listed in `org-agenda-files' will be checked automatically:
  4871. &%%(org-diary)
  4872. If you don't give any arguments (as in the example above), the default value
  4873. of `org-agenda-entry-types' is used: (:deadline :scheduled :timestamp :sexp).
  4874. So the example above may also be written as
  4875. &%%(org-diary :deadline :timestamp :sexp :scheduled)
  4876. The function expects the lisp variables `entry' and `date' to be provided
  4877. by the caller, because this is how the calendar works. Don't use this
  4878. function from a program - use `org-agenda-get-day-entries' instead."
  4879. (when (> (- (float-time)
  4880. org-agenda-last-marker-time)
  4881. 5)
  4882. ;; I am not sure if this works with sticky agendas, because the marker
  4883. ;; list is then no longer a global variable.
  4884. (org-agenda-reset-markers))
  4885. (org-compile-prefix-format 'agenda)
  4886. (org-set-sorting-strategy 'agenda)
  4887. (setq args (or args org-agenda-entry-types))
  4888. (let* ((files (if (and entry (stringp entry) (string-match "\\S-" entry))
  4889. (list entry)
  4890. (org-agenda-files t)))
  4891. (time (float-time))
  4892. file rtn results)
  4893. (when (or (not org-diary-last-run-time)
  4894. (> (- time
  4895. org-diary-last-run-time)
  4896. 3))
  4897. (org-agenda-prepare-buffers files))
  4898. (setq org-diary-last-run-time time)
  4899. ;; If this is called during org-agenda, don't return any entries to
  4900. ;; the calendar. Org Agenda will list these entries itself.
  4901. (when org-disable-agenda-to-diary (setq files nil))
  4902. (while (setq file (pop files))
  4903. (setq rtn (apply 'org-agenda-get-day-entries file date args))
  4904. (setq results (append results rtn)))
  4905. (when results
  4906. (setq results
  4907. (mapcar (lambda (i) (replace-regexp-in-string
  4908. org-link-bracket-re "\\2" i))
  4909. results))
  4910. (concat (org-agenda-finalize-entries results) "\n"))))
  4911. ;;; Agenda entry finders
  4912. (defun org-agenda--timestamp-to-absolute (&rest args)
  4913. "Call `org-time-string-to-absolute' with ARGS.
  4914. However, throw `:skip' whenever an error is raised."
  4915. (condition-case e
  4916. (apply #'org-time-string-to-absolute args)
  4917. (org-diary-sexp-no-match (throw :skip nil))
  4918. (error
  4919. (message "%s; Skipping entry" (error-message-string e))
  4920. (throw :skip nil))))
  4921. (defun org-agenda-get-day-entries (file date &rest args)
  4922. "Does the work for `org-diary' and `org-agenda'.
  4923. FILE is the path to a file to be checked for entries. DATE is date like
  4924. the one returned by `calendar-current-date'. ARGS are symbols indicating
  4925. which kind of entries should be extracted. For details about these, see
  4926. the documentation of `org-diary'."
  4927. (let* ((org-startup-folded nil)
  4928. (org-startup-align-all-tables nil)
  4929. (buffer (if (file-exists-p file) (org-get-agenda-file-buffer file)
  4930. (error "No such file %s" file))))
  4931. (if (not buffer)
  4932. ;; If file does not exist, signal it in diary nonetheless.
  4933. (list (format "ORG-AGENDA-ERROR: No such org-file %s" file))
  4934. (with-current-buffer buffer
  4935. (unless (derived-mode-p 'org-mode)
  4936. (error "Agenda file %s is not in Org mode" file))
  4937. (setq org-agenda-buffer (or org-agenda-buffer buffer))
  4938. (setf org-agenda-current-date date)
  4939. (save-excursion
  4940. (save-restriction
  4941. (if (eq buffer org-agenda-restrict)
  4942. (narrow-to-region org-agenda-restrict-begin
  4943. org-agenda-restrict-end)
  4944. (widen))
  4945. ;; Rationalize ARGS. Also make sure `:deadline' comes
  4946. ;; first in order to populate DEADLINES before passing it.
  4947. ;;
  4948. ;; We use `delq' since `org-uniquify' duplicates ARGS,
  4949. ;; guarding us from modifying `org-agenda-entry-types'.
  4950. (setf args (org-uniquify (or args org-agenda-entry-types)))
  4951. (when (and (memq :scheduled args) (memq :scheduled* args))
  4952. (setf args (delq :scheduled* args)))
  4953. (cond
  4954. ((memq :deadline args)
  4955. (setf args (cons :deadline
  4956. (delq :deadline (delq :deadline* args)))))
  4957. ((memq :deadline* args)
  4958. (setf args (cons :deadline* (delq :deadline* args)))))
  4959. ;; Collect list of headlines. Return them flattened.
  4960. (let ((case-fold-search nil) results deadlines)
  4961. (dolist (arg args (apply #'nconc (nreverse results)))
  4962. (pcase arg
  4963. ((and :todo (guard (org-agenda-today-p date)))
  4964. (push (org-agenda-get-todos) results))
  4965. (:timestamp
  4966. (push (org-agenda-get-blocks) results)
  4967. (push (org-agenda-get-timestamps deadlines) results))
  4968. (:sexp
  4969. (push (org-agenda-get-sexps) results))
  4970. (:scheduled
  4971. (push (org-agenda-get-scheduled deadlines) results))
  4972. (:scheduled*
  4973. (push (org-agenda-get-scheduled deadlines t) results))
  4974. (:closed
  4975. (push (org-agenda-get-progress) results))
  4976. (:deadline
  4977. (setf deadlines (org-agenda-get-deadlines))
  4978. (push deadlines results))
  4979. (:deadline*
  4980. (setf deadlines (org-agenda-get-deadlines t))
  4981. (push deadlines results)))))))))))
  4982. (defsubst org-em (x y list)
  4983. "Is X or Y a member of LIST?"
  4984. (or (memq x list) (memq y list)))
  4985. (defvar org-heading-keyword-regexp-format) ; defined in org.el
  4986. (defvar org-agenda-sorting-strategy-selected nil)
  4987. (defun org-agenda-entry-get-agenda-timestamp (pom)
  4988. "Retrieve timestamp information for sorting agenda views.
  4989. Given a point or marker POM, returns a cons cell of the timestamp
  4990. and the timestamp type relevant for the sorting strategy in
  4991. `org-agenda-sorting-strategy-selected'."
  4992. (let (ts ts-date-type)
  4993. (save-match-data
  4994. (cond ((org-em 'scheduled-up 'scheduled-down
  4995. org-agenda-sorting-strategy-selected)
  4996. (setq ts (org-entry-get pom "SCHEDULED")
  4997. ts-date-type " scheduled"))
  4998. ((org-em 'deadline-up 'deadline-down
  4999. org-agenda-sorting-strategy-selected)
  5000. (setq ts (org-entry-get pom "DEADLINE")
  5001. ts-date-type " deadline"))
  5002. ((org-em 'ts-up 'ts-down
  5003. org-agenda-sorting-strategy-selected)
  5004. (setq ts (org-entry-get pom "TIMESTAMP")
  5005. ts-date-type " timestamp"))
  5006. ((org-em 'tsia-up 'tsia-down
  5007. org-agenda-sorting-strategy-selected)
  5008. (setq ts (org-entry-get pom "TIMESTAMP_IA")
  5009. ts-date-type " timestamp_ia"))
  5010. ((org-em 'timestamp-up 'timestamp-down
  5011. org-agenda-sorting-strategy-selected)
  5012. (setq ts (or (org-entry-get pom "SCHEDULED")
  5013. (org-entry-get pom "DEADLINE")
  5014. (org-entry-get pom "TIMESTAMP")
  5015. (org-entry-get pom "TIMESTAMP_IA"))
  5016. ts-date-type ""))
  5017. (t (setq ts-date-type "")))
  5018. (cons (when ts (ignore-errors (org-time-string-to-absolute ts)))
  5019. ts-date-type))))
  5020. (defun org-agenda-get-todos ()
  5021. "Return the TODO information for agenda display."
  5022. (let* ((props (list 'face nil
  5023. 'done-face 'org-agenda-done
  5024. 'org-not-done-regexp org-not-done-regexp
  5025. 'org-todo-regexp org-todo-regexp
  5026. 'org-complex-heading-regexp org-complex-heading-regexp
  5027. 'mouse-face 'highlight
  5028. 'help-echo
  5029. (format "mouse-2 or RET jump to org file %s"
  5030. (abbreviate-file-name buffer-file-name))))
  5031. (case-fold-search nil)
  5032. (regexp (format org-heading-keyword-regexp-format
  5033. (cond
  5034. ((and org-select-this-todo-keyword
  5035. (equal org-select-this-todo-keyword "*"))
  5036. org-todo-regexp)
  5037. (org-select-this-todo-keyword
  5038. (concat "\\("
  5039. (mapconcat 'identity
  5040. (org-split-string
  5041. org-select-this-todo-keyword
  5042. "|")
  5043. "\\|") "\\)"))
  5044. (t org-not-done-regexp))))
  5045. marker priority category level tags todo-state
  5046. ts-date ts-date-type ts-date-pair
  5047. ee txt beg end inherited-tags todo-state-end-pos)
  5048. (goto-char (point-min))
  5049. (while (re-search-forward regexp nil t)
  5050. (catch :skip
  5051. (save-match-data
  5052. (beginning-of-line)
  5053. (org-agenda-skip)
  5054. (setq beg (point) end (save-excursion (outline-next-heading) (point)))
  5055. (unless (and (setq todo-state (org-get-todo-state))
  5056. (setq todo-state-end-pos (match-end 2)))
  5057. (goto-char end)
  5058. (throw :skip nil))
  5059. (when (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item end)
  5060. (goto-char (1+ beg))
  5061. (or org-agenda-todo-list-sublevels (org-end-of-subtree 'invisible))
  5062. (throw :skip nil)))
  5063. (goto-char (match-beginning 2))
  5064. (setq marker (org-agenda-new-marker (match-beginning 0))
  5065. category (org-get-category)
  5066. ts-date-pair (org-agenda-entry-get-agenda-timestamp (point))
  5067. ts-date (car ts-date-pair)
  5068. ts-date-type (cdr ts-date-pair)
  5069. txt (org-trim (buffer-substring (match-beginning 2) (match-end 0)))
  5070. inherited-tags
  5071. (or (eq org-agenda-show-inherited-tags 'always)
  5072. (and (listp org-agenda-show-inherited-tags)
  5073. (memq 'todo org-agenda-show-inherited-tags))
  5074. (and (eq org-agenda-show-inherited-tags t)
  5075. (or (eq org-agenda-use-tag-inheritance t)
  5076. (memq 'todo org-agenda-use-tag-inheritance))))
  5077. tags (org-get-tags nil (not inherited-tags))
  5078. level (make-string (org-reduced-level (org-outline-level)) ? )
  5079. txt (org-agenda-format-item "" txt level category tags t)
  5080. priority (1+ (org-get-priority txt)))
  5081. (org-add-props txt props
  5082. 'org-marker marker 'org-hd-marker marker
  5083. 'priority priority
  5084. 'level level
  5085. 'ts-date ts-date
  5086. 'type (concat "todo" ts-date-type) 'todo-state todo-state)
  5087. (push txt ee)
  5088. (if org-agenda-todo-list-sublevels
  5089. (goto-char todo-state-end-pos)
  5090. (org-end-of-subtree 'invisible))))
  5091. (nreverse ee)))
  5092. (defun org-agenda-todo-custom-ignore-p (time n)
  5093. "Check whether timestamp is farther away than n number of days.
  5094. This function is invoked if `org-agenda-todo-ignore-deadlines',
  5095. `org-agenda-todo-ignore-scheduled' or
  5096. `org-agenda-todo-ignore-timestamp' is set to an integer."
  5097. (let ((days (org-time-stamp-to-now
  5098. time org-agenda-todo-ignore-time-comparison-use-seconds)))
  5099. (if (>= n 0)
  5100. (>= days n)
  5101. (<= days n))))
  5102. ;;;###autoload
  5103. (defun org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item
  5104. (&optional end)
  5105. "Do we have a reason to ignore this TODO entry because it has a time stamp?"
  5106. (when (or org-agenda-todo-ignore-with-date
  5107. org-agenda-todo-ignore-scheduled
  5108. org-agenda-todo-ignore-deadlines
  5109. org-agenda-todo-ignore-timestamp)
  5110. (setq end (or end (save-excursion (outline-next-heading) (point))))
  5111. (save-excursion
  5112. (or (and org-agenda-todo-ignore-with-date
  5113. (re-search-forward org-ts-regexp end t))
  5114. (and org-agenda-todo-ignore-scheduled
  5115. (re-search-forward org-scheduled-time-regexp end t)
  5116. (cond
  5117. ((eq org-agenda-todo-ignore-scheduled 'future)
  5118. (> (org-time-stamp-to-now
  5119. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds)
  5120. 0))
  5121. ((eq org-agenda-todo-ignore-scheduled 'past)
  5122. (<= (org-time-stamp-to-now
  5123. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds)
  5124. 0))
  5125. ((numberp org-agenda-todo-ignore-scheduled)
  5126. (org-agenda-todo-custom-ignore-p
  5127. (match-string 1) org-agenda-todo-ignore-scheduled))
  5128. (t)))
  5129. (and org-agenda-todo-ignore-deadlines
  5130. (re-search-forward org-deadline-time-regexp end t)
  5131. (cond
  5132. ((eq org-agenda-todo-ignore-deadlines 'all) t)
  5133. ((eq org-agenda-todo-ignore-deadlines 'far)
  5134. (not (org-deadline-close-p (match-string 1))))
  5135. ((eq org-agenda-todo-ignore-deadlines 'future)
  5136. (> (org-time-stamp-to-now
  5137. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds)
  5138. 0))
  5139. ((eq org-agenda-todo-ignore-deadlines 'past)
  5140. (<= (org-time-stamp-to-now
  5141. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds)
  5142. 0))
  5143. ((numberp org-agenda-todo-ignore-deadlines)
  5144. (org-agenda-todo-custom-ignore-p
  5145. (match-string 1) org-agenda-todo-ignore-deadlines))
  5146. (t (org-deadline-close-p (match-string 1)))))
  5147. (and org-agenda-todo-ignore-timestamp
  5148. (let ((buffer (current-buffer))
  5149. (regexp
  5150. (concat
  5151. org-scheduled-time-regexp "\\|" org-deadline-time-regexp))
  5152. (start (point)))
  5153. ;; Copy current buffer into a temporary one
  5154. (with-temp-buffer
  5155. (insert-buffer-substring buffer start end)
  5156. (goto-char (point-min))
  5157. ;; Delete SCHEDULED and DEADLINE items
  5158. (while (re-search-forward regexp end t)
  5159. (delete-region (match-beginning 0) (match-end 0)))
  5160. (goto-char (point-min))
  5161. ;; No search for timestamp left
  5162. (when (re-search-forward org-ts-regexp nil t)
  5163. (cond
  5164. ((eq org-agenda-todo-ignore-timestamp 'future)
  5165. (> (org-time-stamp-to-now
  5166. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds)
  5167. 0))
  5168. ((eq org-agenda-todo-ignore-timestamp 'past)
  5169. (<= (org-time-stamp-to-now
  5170. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds)
  5171. 0))
  5172. ((numberp org-agenda-todo-ignore-timestamp)
  5173. (org-agenda-todo-custom-ignore-p
  5174. (match-string 1) org-agenda-todo-ignore-timestamp))
  5175. (t))))))))))
  5176. (defun org-agenda-get-timestamps (&optional deadlines)
  5177. "Return the date stamp information for agenda display.
  5178. Optional argument DEADLINES is a list of deadline items to be
  5179. displayed in agenda view."
  5180. (let* ((props (list 'face 'org-agenda-calendar-event
  5181. 'org-not-done-regexp org-not-done-regexp
  5182. 'org-todo-regexp org-todo-regexp
  5183. 'org-complex-heading-regexp org-complex-heading-regexp
  5184. 'mouse-face 'highlight
  5185. 'help-echo
  5186. (format "mouse-2 or RET jump to Org file %s"
  5187. (abbreviate-file-name buffer-file-name))))
  5188. (current (calendar-absolute-from-gregorian date))
  5189. (today (org-today))
  5190. (deadline-position-alist
  5191. (mapcar (lambda (d)
  5192. (let ((m (get-text-property 0 'org-hd-marker d)))
  5193. (and m (marker-position m))))
  5194. deadlines))
  5195. ;; Match time-stamps set to current date, time-stamps with
  5196. ;; a repeater, and S-exp time-stamps.
  5197. (regexp
  5198. (concat
  5199. (if org-agenda-include-inactive-timestamps "[[<]" "<")
  5200. (regexp-quote
  5201. (substring
  5202. (format-time-string
  5203. (car org-time-stamp-formats)
  5204. (encode-time ; DATE bound by calendar
  5205. 0 0 0 (nth 1 date) (car date) (nth 2 date)))
  5206. 1 11))
  5207. "\\|\\(<[0-9]+-[0-9]+-[0-9]+[^>\n]+?\\+[0-9]+[hdwmy]>\\)"
  5208. "\\|\\(<%%\\(([^>\n]+)\\)>\\)"))
  5209. timestamp-items)
  5210. (goto-char (point-min))
  5211. (while (re-search-forward regexp nil t)
  5212. ;; Skip date ranges, scheduled and deadlines, which are handled
  5213. ;; specially. Also skip time-stamps before first headline as
  5214. ;; there would be no entry to add to the agenda. Eventually,
  5215. ;; ignore clock entries.
  5216. (catch :skip
  5217. (save-match-data
  5218. (when (or (org-at-date-range-p)
  5219. (org-at-planning-p)
  5220. (org-before-first-heading-p)
  5221. (and org-agenda-include-inactive-timestamps
  5222. (org-at-clock-log-p)))
  5223. (throw :skip nil))
  5224. (org-agenda-skip))
  5225. (let* ((pos (match-beginning 0))
  5226. (repeat (match-string 1))
  5227. (sexp-entry (match-string 3))
  5228. (time-stamp (if (or repeat sexp-entry) (match-string 0)
  5229. (save-excursion
  5230. (goto-char pos)
  5231. (looking-at org-ts-regexp-both)
  5232. (match-string 0))))
  5233. (todo-state (org-get-todo-state))
  5234. (warntime (get-text-property (point) 'org-appt-warntime))
  5235. (done? (member todo-state org-done-keywords)))
  5236. ;; Possibly skip done tasks.
  5237. (when (and done? org-agenda-skip-timestamp-if-done)
  5238. (throw :skip t))
  5239. ;; S-exp entry doesn't match current day: skip it.
  5240. (when (and sexp-entry (not (org-diary-sexp-entry sexp-entry "" date)))
  5241. (throw :skip nil))
  5242. (when repeat
  5243. (let* ((past
  5244. ;; A repeating time stamp is shown at its base
  5245. ;; date and every repeated date up to TODAY. If
  5246. ;; `org-agenda-prefer-last-repeat' is non-nil,
  5247. ;; however, only the last repeat before today
  5248. ;; (inclusive) is shown.
  5249. (org-agenda--timestamp-to-absolute
  5250. repeat
  5251. (if (or (> current today)
  5252. (eq org-agenda-prefer-last-repeat t)
  5253. (member todo-state org-agenda-prefer-last-repeat))
  5254. today
  5255. current)
  5256. 'past (current-buffer) pos))
  5257. (future
  5258. ;; Display every repeated date past TODAY
  5259. ;; (exclusive) unless
  5260. ;; `org-agenda-show-future-repeats' is nil. If
  5261. ;; this variable is set to `next', only display
  5262. ;; the first repeated date after TODAY
  5263. ;; (exclusive).
  5264. (cond
  5265. ((<= current today) past)
  5266. ((not org-agenda-show-future-repeats) past)
  5267. (t
  5268. (let ((base (if (eq org-agenda-show-future-repeats 'next)
  5269. (1+ today)
  5270. current)))
  5271. (org-agenda--timestamp-to-absolute
  5272. repeat base 'future (current-buffer) pos))))))
  5273. (when (and (/= current past) (/= current future))
  5274. (throw :skip nil))))
  5275. (save-excursion
  5276. (re-search-backward org-outline-regexp-bol nil t)
  5277. ;; Possibly skip time-stamp when a deadline is set.
  5278. (when (and org-agenda-skip-timestamp-if-deadline-is-shown
  5279. (assq (point) deadline-position-alist))
  5280. (throw :skip nil))
  5281. (let* ((category (org-get-category pos))
  5282. (inherited-tags
  5283. (or (eq org-agenda-show-inherited-tags 'always)
  5284. (and (consp org-agenda-show-inherited-tags)
  5285. (memq 'agenda org-agenda-show-inherited-tags))
  5286. (and (eq org-agenda-show-inherited-tags t)
  5287. (or (eq org-agenda-use-tag-inheritance t)
  5288. (memq 'agenda
  5289. org-agenda-use-tag-inheritance)))))
  5290. (tags (org-get-tags nil (not inherited-tags)))
  5291. (level (make-string (org-reduced-level (org-outline-level))
  5292. ?\s))
  5293. (head (and (looking-at "\\*+[ \t]+\\(.*\\)")
  5294. (match-string 1)))
  5295. (inactive? (= (char-after pos) ?\[))
  5296. (habit? (and (fboundp 'org-is-habit-p) (org-is-habit-p)))
  5297. (item
  5298. (org-agenda-format-item
  5299. (and inactive? org-agenda-inactive-leader)
  5300. head level category tags time-stamp org-ts-regexp habit?)))
  5301. (org-add-props item props
  5302. 'priority (if habit?
  5303. (org-habit-get-priority (org-habit-parse-todo))
  5304. (org-get-priority item))
  5305. 'org-marker (org-agenda-new-marker pos)
  5306. 'org-hd-marker (org-agenda-new-marker)
  5307. 'date date
  5308. 'level level
  5309. 'ts-date (if repeat (org-agenda--timestamp-to-absolute repeat)
  5310. current)
  5311. 'todo-state todo-state
  5312. 'warntime warntime
  5313. 'type "timestamp")
  5314. (push item timestamp-items))))
  5315. (when org-agenda-skip-additional-timestamps-same-entry
  5316. (outline-next-heading))))
  5317. (nreverse timestamp-items)))
  5318. (defun org-agenda-get-sexps ()
  5319. "Return the sexp information for agenda display."
  5320. (require 'diary-lib)
  5321. (let* ((props (list 'face 'org-agenda-calendar-sexp
  5322. 'mouse-face 'highlight
  5323. 'help-echo
  5324. (format "mouse-2 or RET jump to org file %s"
  5325. (abbreviate-file-name buffer-file-name))))
  5326. (regexp "^&?%%(")
  5327. marker category extra level ee txt tags entry
  5328. result beg b sexp sexp-entry todo-state warntime inherited-tags)
  5329. (goto-char (point-min))
  5330. (while (re-search-forward regexp nil t)
  5331. (catch :skip
  5332. (org-agenda-skip)
  5333. (setq beg (match-beginning 0))
  5334. (goto-char (1- (match-end 0)))
  5335. (setq b (point))
  5336. (forward-sexp 1)
  5337. (setq sexp (buffer-substring b (point)))
  5338. (setq sexp-entry (if (looking-at "[ \t]*\\(\\S-.*\\)")
  5339. (org-trim (match-string 1))
  5340. ""))
  5341. (setq result (org-diary-sexp-entry sexp sexp-entry date))
  5342. (when result
  5343. (setq marker (org-agenda-new-marker beg)
  5344. level (make-string (org-reduced-level (org-outline-level)) ? )
  5345. category (org-get-category beg)
  5346. inherited-tags
  5347. (or (eq org-agenda-show-inherited-tags 'always)
  5348. (and (listp org-agenda-show-inherited-tags)
  5349. (memq 'agenda org-agenda-show-inherited-tags))
  5350. (and (eq org-agenda-show-inherited-tags t)
  5351. (or (eq org-agenda-use-tag-inheritance t)
  5352. (memq 'agenda org-agenda-use-tag-inheritance))))
  5353. tags (org-get-tags nil (not inherited-tags))
  5354. todo-state (org-get-todo-state)
  5355. warntime (get-text-property (point) 'org-appt-warntime)
  5356. extra nil)
  5357. (dolist (r (if (stringp result)
  5358. (list result)
  5359. result)) ;; we expect a list here
  5360. (when (and org-agenda-diary-sexp-prefix
  5361. (string-match org-agenda-diary-sexp-prefix r))
  5362. (setq extra (match-string 0 r)
  5363. r (replace-match "" nil nil r)))
  5364. (if (string-match "\\S-" r)
  5365. (setq txt r)
  5366. (setq txt "SEXP entry returned empty string"))
  5367. (setq txt (org-agenda-format-item extra txt level category tags 'time))
  5368. (org-add-props txt props 'org-marker marker
  5369. 'date date 'todo-state todo-state
  5370. 'level level 'type "sexp" 'warntime warntime)
  5371. (push txt ee)))))
  5372. (nreverse ee)))
  5373. ;; Calendar sanity: define some functions that are independent of
  5374. ;; `calendar-date-style'.
  5375. (defun org-anniversary (year month day &optional mark)
  5376. "Like `diary-anniversary', but with fixed (ISO) order of arguments."
  5377. (with-no-warnings
  5378. (let ((calendar-date-style 'iso))
  5379. (diary-anniversary year month day mark))))
  5380. (defun org-cyclic (N year month day &optional mark)
  5381. "Like `diary-cyclic', but with fixed (ISO) order of arguments."
  5382. (with-no-warnings
  5383. (let ((calendar-date-style 'iso))
  5384. (diary-cyclic N year month day mark))))
  5385. (defun org-block (Y1 M1 D1 Y2 M2 D2 &optional mark)
  5386. "Like `diary-block', but with fixed (ISO) order of arguments."
  5387. (with-no-warnings
  5388. (let ((calendar-date-style 'iso))
  5389. (diary-block Y1 M1 D1 Y2 M2 D2 mark))))
  5390. (defun org-date (year month day &optional mark)
  5391. "Like `diary-date', but with fixed (ISO) order of arguments."
  5392. (with-no-warnings
  5393. (let ((calendar-date-style 'iso))
  5394. (diary-date year month day mark))))
  5395. ;; Define the `org-class' function
  5396. (defun org-class (y1 m1 d1 y2 m2 d2 dayname &rest skip-weeks)
  5397. "Entry applies if date is between dates on DAYNAME, but skips SKIP-WEEKS.
  5398. DAYNAME is a number between 0 (Sunday) and 6 (Saturday).
  5399. SKIP-WEEKS is any number of ISO weeks in the block period for which the
  5400. item should be skipped. If any of the SKIP-WEEKS arguments is the symbol
  5401. `holidays', then any date that is known by the Emacs calendar to be a
  5402. holiday will also be skipped. If SKIP-WEEKS arguments are holiday strings,
  5403. then those holidays will be skipped."
  5404. (let* ((date1 (calendar-absolute-from-gregorian (list m1 d1 y1)))
  5405. (date2 (calendar-absolute-from-gregorian (list m2 d2 y2)))
  5406. (d (calendar-absolute-from-gregorian date))
  5407. (h (when skip-weeks (calendar-check-holidays date))))
  5408. (and
  5409. (<= date1 d)
  5410. (<= d date2)
  5411. (= (calendar-day-of-week date) dayname)
  5412. (or (not skip-weeks)
  5413. (progn
  5414. (require 'cal-iso)
  5415. (not (member (car (calendar-iso-from-absolute d)) skip-weeks))))
  5416. (not (or (and h (memq 'holidays skip-weeks))
  5417. (delq nil (mapcar (lambda(g) (member g skip-weeks)) h))))
  5418. entry)))
  5419. (defalias 'org-get-closed 'org-agenda-get-progress)
  5420. (defun org-agenda-get-progress ()
  5421. "Return the logged TODO entries for agenda display."
  5422. (let* ((props (list 'mouse-face 'highlight
  5423. 'org-not-done-regexp org-not-done-regexp
  5424. 'org-todo-regexp org-todo-regexp
  5425. 'org-complex-heading-regexp org-complex-heading-regexp
  5426. 'help-echo
  5427. (format "mouse-2 or RET jump to org file %s"
  5428. (abbreviate-file-name buffer-file-name))))
  5429. (items (if (consp org-agenda-show-log-scoped)
  5430. org-agenda-show-log-scoped
  5431. (if (eq org-agenda-show-log-scoped 'clockcheck)
  5432. '(clock)
  5433. org-agenda-log-mode-items)))
  5434. (parts
  5435. (delq nil
  5436. (list
  5437. (when (memq 'closed items) (concat "\\<" org-closed-string))
  5438. (when (memq 'clock items) (concat "\\<" org-clock-string))
  5439. (when (memq 'state items)
  5440. (format "- +State \"%s\".*?" org-todo-regexp)))))
  5441. (parts-re (if parts (mapconcat 'identity parts "\\|")
  5442. (error "`org-agenda-log-mode-items' is empty")))
  5443. (regexp (concat
  5444. "\\(" parts-re "\\)"
  5445. " *\\["
  5446. (regexp-quote
  5447. (substring
  5448. (format-time-string
  5449. (car org-time-stamp-formats)
  5450. (encode-time ; DATE bound by calendar
  5451. 0 0 0 (nth 1 date) (car date) (nth 2 date)))
  5452. 1 11))))
  5453. (org-agenda-search-headline-for-time nil)
  5454. marker hdmarker priority category level tags closedp type
  5455. statep clockp state ee txt extra timestr rest clocked inherited-tags)
  5456. (goto-char (point-min))
  5457. (while (re-search-forward regexp nil t)
  5458. (catch :skip
  5459. (org-agenda-skip)
  5460. (setq marker (org-agenda-new-marker (match-beginning 0))
  5461. closedp (equal (match-string 1) org-closed-string)
  5462. statep (equal (string-to-char (match-string 1)) ?-)
  5463. clockp (not (or closedp statep))
  5464. state (and statep (match-string 2))
  5465. category (org-get-category (match-beginning 0))
  5466. timestr (buffer-substring (match-beginning 0) (point-at-eol)))
  5467. (when (string-match "\\]" timestr)
  5468. ;; substring should only run to end of time stamp
  5469. (setq rest (substring timestr (match-end 0))
  5470. timestr (substring timestr 0 (match-end 0)))
  5471. (if (and (not closedp) (not statep)
  5472. (string-match "\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)\\].*?\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)"
  5473. rest))
  5474. (progn (setq timestr (concat (substring timestr 0 -1)
  5475. "-" (match-string 1 rest) "]"))
  5476. (setq clocked (match-string 2 rest)))
  5477. (setq clocked "-")))
  5478. (save-excursion
  5479. (setq extra
  5480. (cond
  5481. ((not org-agenda-log-mode-add-notes) nil)
  5482. (statep
  5483. (and (looking-at ".*\\\\\n[ \t]*\\([^-\n \t].*?\\)[ \t]*$")
  5484. (match-string 1)))
  5485. (clockp
  5486. (and (looking-at ".*\n[ \t]*-[ \t]+\\([^-\n \t].*?\\)[ \t]*$")
  5487. (match-string 1)))))
  5488. (if (not (re-search-backward org-outline-regexp-bol nil t))
  5489. (throw :skip nil)
  5490. (goto-char (match-beginning 0))
  5491. (setq hdmarker (org-agenda-new-marker)
  5492. inherited-tags
  5493. (or (eq org-agenda-show-inherited-tags 'always)
  5494. (and (listp org-agenda-show-inherited-tags)
  5495. (memq 'todo org-agenda-show-inherited-tags))
  5496. (and (eq org-agenda-show-inherited-tags t)
  5497. (or (eq org-agenda-use-tag-inheritance t)
  5498. (memq 'todo org-agenda-use-tag-inheritance))))
  5499. tags (org-get-tags nil (not inherited-tags))
  5500. level (make-string (org-reduced-level (org-outline-level)) ? ))
  5501. (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
  5502. (setq txt (match-string 1))
  5503. (when extra
  5504. (if (string-match "\\([ \t]+\\)\\(:[^ \n\t]*?:\\)[ \t]*$" txt)
  5505. (setq txt (concat (substring txt 0 (match-beginning 1))
  5506. " - " extra " " (match-string 2 txt)))
  5507. (setq txt (concat txt " - " extra))))
  5508. (setq txt (org-agenda-format-item
  5509. (cond
  5510. (closedp "Closed: ")
  5511. (statep (concat "State: (" state ")"))
  5512. (t (concat "Clocked: (" clocked ")")))
  5513. txt level category tags timestr)))
  5514. (setq type (cond (closedp "closed")
  5515. (statep "state")
  5516. (t "clock")))
  5517. (setq priority 100000)
  5518. (org-add-props txt props
  5519. 'org-marker marker 'org-hd-marker hdmarker 'face 'org-agenda-done
  5520. 'priority priority 'level level
  5521. 'type type 'date date
  5522. 'undone-face 'org-warning 'done-face 'org-agenda-done)
  5523. (push txt ee))
  5524. (goto-char (point-at-eol))))
  5525. (nreverse ee)))
  5526. (defun org-agenda-show-clocking-issues ()
  5527. "Add overlays, showing issues with clocking.
  5528. See also the user option `org-agenda-clock-consistency-checks'."
  5529. (interactive)
  5530. (let* ((pl org-agenda-clock-consistency-checks)
  5531. (re (concat "^[ \t]*"
  5532. org-clock-string
  5533. "[ \t]+"
  5534. "\\(\\[.*?\\]\\)" ; group 1 is first stamp
  5535. "\\(-\\{1,3\\}\\(\\[.*?\\]\\)\\)?")) ; group 3 is second
  5536. (tlstart 0.)
  5537. (tlend 0.)
  5538. (maxtime (org-duration-to-minutes
  5539. (or (plist-get pl :max-duration) "24:00")))
  5540. (mintime (org-duration-to-minutes
  5541. (or (plist-get pl :min-duration) 0)))
  5542. (maxgap (org-duration-to-minutes
  5543. ;; default 30:00 means never complain
  5544. (or (plist-get pl :max-gap) "30:00")))
  5545. (gapok (mapcar #'org-duration-to-minutes
  5546. (plist-get pl :gap-ok-around)))
  5547. (def-face (or (plist-get pl :default-face)
  5548. '((:background "DarkRed") (:foreground "white"))))
  5549. issue face m te ts dt ov)
  5550. (goto-char (point-min))
  5551. (while (re-search-forward " Clocked: +(-\\|\\([0-9]+:[0-9]+\\))" nil t)
  5552. (setq issue nil face def-face)
  5553. (catch 'next
  5554. (setq m (org-get-at-bol 'org-marker)
  5555. te nil ts nil)
  5556. (unless (and m (markerp m))
  5557. (setq issue "No valid clock line") (throw 'next t))
  5558. (org-with-point-at m
  5559. (save-excursion
  5560. (goto-char (point-at-bol))
  5561. (unless (looking-at re)
  5562. (error "No valid Clock line")
  5563. (throw 'next t))
  5564. (unless (match-end 3)
  5565. (setq issue
  5566. (format
  5567. "No end time: (%s)"
  5568. (org-duration-from-minutes
  5569. (floor
  5570. (- (float-time (org-current-time))
  5571. (float-time (org-time-string-to-time (match-string 1))))
  5572. 60)))
  5573. face (or (plist-get pl :no-end-time-face) face))
  5574. (throw 'next t))
  5575. (setq ts (match-string 1)
  5576. te (match-string 3)
  5577. ts (float-time (org-time-string-to-time ts))
  5578. te (float-time (org-time-string-to-time te))
  5579. dt (- te ts))))
  5580. (cond
  5581. ((> dt (* 60 maxtime))
  5582. ;; a very long clocking chunk
  5583. (setq issue (format "Clocking interval is very long: %s"
  5584. (org-duration-from-minutes (floor dt 60)))
  5585. face (or (plist-get pl :long-face) face)))
  5586. ((< dt (* 60 mintime))
  5587. ;; a very short clocking chunk
  5588. (setq issue (format "Clocking interval is very short: %s"
  5589. (org-duration-from-minutes (floor dt 60)))
  5590. face (or (plist-get pl :short-face) face)))
  5591. ((and (> tlend 0) (< ts tlend))
  5592. ;; Two clock entries are overlapping
  5593. (setq issue (format "Clocking overlap: %d minutes"
  5594. (/ (- tlend ts) 60))
  5595. face (or (plist-get pl :overlap-face) face)))
  5596. ((and (> tlend 0) (> ts (+ tlend (* 60 maxgap))))
  5597. ;; There is a gap, lets see if we need to report it
  5598. (unless (org-agenda-check-clock-gap tlend ts gapok)
  5599. (setq issue (format "Clocking gap: %d minutes"
  5600. (/ (- ts tlend) 60))
  5601. face (or (plist-get pl :gap-face) face))))
  5602. (t nil)))
  5603. (setq tlend (or te tlend) tlstart (or ts tlstart))
  5604. (when issue
  5605. ;; OK, there was some issue, add an overlay to show the issue
  5606. (setq ov (make-overlay (point-at-bol) (point-at-eol)))
  5607. (overlay-put ov 'before-string
  5608. (concat
  5609. (org-add-props
  5610. (format "%-43s" (concat " " issue))
  5611. nil
  5612. 'face face)
  5613. "\n"))
  5614. (overlay-put ov 'evaporate t)))))
  5615. (defun org-agenda-check-clock-gap (t1 t2 ok-list)
  5616. "Check if gap T1 -> T2 contains one of the OK-LIST time-of-day values."
  5617. (catch 'exit
  5618. (unless ok-list
  5619. ;; there are no OK times for gaps...
  5620. (throw 'exit nil))
  5621. (when (> (- (/ t2 36000) (/ t1 36000)) 24)
  5622. ;; This is more than 24 hours, so it is OK.
  5623. ;; because we have at least one OK time, that must be in the
  5624. ;; 24 hour interval.
  5625. (throw 'exit t))
  5626. ;; We have a shorter gap.
  5627. ;; Now we have to get the minute of the day when these times are
  5628. (let* ((t1dec (org-decode-time t1))
  5629. (t2dec (org-decode-time t2))
  5630. ;; compute the minute on the day
  5631. (min1 (+ (nth 1 t1dec) (* 60 (nth 2 t1dec))))
  5632. (min2 (+ (nth 1 t2dec) (* 60 (nth 2 t2dec)))))
  5633. (when (< min2 min1)
  5634. ;; if min2 is smaller than min1, this means it is on the next day.
  5635. ;; Wrap it to after midnight.
  5636. (setq min2 (+ min2 1440)))
  5637. ;; Now check if any of the OK times is in the gap
  5638. (mapc (lambda (x)
  5639. ;; Wrap the time to after midnight if necessary
  5640. (when (< x min1) (setq x (+ x 1440)))
  5641. ;; Check if in interval
  5642. (and (<= min1 x) (>= min2 x) (throw 'exit t)))
  5643. ok-list)
  5644. ;; Nope, this gap is not OK
  5645. nil)))
  5646. (defun org-agenda-get-deadlines (&optional with-hour)
  5647. "Return the deadline information for agenda display.
  5648. When WITH-HOUR is non-nil, only return deadlines with an hour
  5649. specification like [h]h:mm."
  5650. (let* ((props (list 'mouse-face 'highlight
  5651. 'org-not-done-regexp org-not-done-regexp
  5652. 'org-todo-regexp org-todo-regexp
  5653. 'org-complex-heading-regexp org-complex-heading-regexp
  5654. 'help-echo
  5655. (format "mouse-2 or RET jump to org file %s"
  5656. (abbreviate-file-name buffer-file-name))))
  5657. (regexp (if with-hour
  5658. org-deadline-time-hour-regexp
  5659. org-deadline-time-regexp))
  5660. (today (org-today))
  5661. (today? (org-agenda-today-p date)) ; DATE bound by calendar.
  5662. (current (calendar-absolute-from-gregorian date))
  5663. deadline-items)
  5664. (goto-char (point-min))
  5665. (while (re-search-forward regexp nil t)
  5666. (catch :skip
  5667. (unless (save-match-data (org-at-planning-p)) (throw :skip nil))
  5668. (org-agenda-skip)
  5669. (let* ((s (match-string 1))
  5670. (pos (1- (match-beginning 1)))
  5671. (todo-state (save-match-data (org-get-todo-state)))
  5672. (done? (member todo-state org-done-keywords))
  5673. (sexp? (string-prefix-p "%%" s))
  5674. ;; DEADLINE is the deadline date for the entry. It is
  5675. ;; either the base date or the last repeat, according
  5676. ;; to `org-agenda-prefer-last-repeat'.
  5677. (deadline
  5678. (cond
  5679. (sexp? (org-agenda--timestamp-to-absolute s current))
  5680. ((or (eq org-agenda-prefer-last-repeat t)
  5681. (member todo-state org-agenda-prefer-last-repeat))
  5682. (org-agenda--timestamp-to-absolute
  5683. s today 'past (current-buffer) pos))
  5684. (t (org-agenda--timestamp-to-absolute s))))
  5685. ;; REPEAT is the future repeat closest from CURRENT,
  5686. ;; according to `org-agenda-show-future-repeats'. If
  5687. ;; the latter is nil, or if the time stamp has no
  5688. ;; repeat part, default to DEADLINE.
  5689. (repeat
  5690. (cond
  5691. (sexp? deadline)
  5692. ((<= current today) deadline)
  5693. ((not org-agenda-show-future-repeats) deadline)
  5694. (t
  5695. (let ((base (if (eq org-agenda-show-future-repeats 'next)
  5696. (1+ today)
  5697. current)))
  5698. (org-agenda--timestamp-to-absolute
  5699. s base 'future (current-buffer) pos)))))
  5700. (diff (- deadline current))
  5701. (suppress-prewarning
  5702. (let ((scheduled
  5703. (and org-agenda-skip-deadline-prewarning-if-scheduled
  5704. (org-entry-get nil "SCHEDULED"))))
  5705. (cond
  5706. ((not scheduled) nil)
  5707. ;; The current item has a scheduled date, so
  5708. ;; evaluate its prewarning lead time.
  5709. ((integerp org-agenda-skip-deadline-prewarning-if-scheduled)
  5710. ;; Use global prewarning-restart lead time.
  5711. org-agenda-skip-deadline-prewarning-if-scheduled)
  5712. ((eq org-agenda-skip-deadline-prewarning-if-scheduled
  5713. 'pre-scheduled)
  5714. ;; Set pre-warning to no earlier than SCHEDULED.
  5715. (min (- deadline
  5716. (org-agenda--timestamp-to-absolute scheduled))
  5717. org-deadline-warning-days))
  5718. ;; Set pre-warning to deadline.
  5719. (t 0))))
  5720. (wdays (or suppress-prewarning (org-get-wdays s))))
  5721. (cond
  5722. ;; Only display deadlines at their base date, at future
  5723. ;; repeat occurrences or in today agenda.
  5724. ((= current deadline) nil)
  5725. ((= current repeat) nil)
  5726. ((not today?) (throw :skip nil))
  5727. ;; Upcoming deadline: display within warning period WDAYS.
  5728. ((> deadline current) (when (> diff wdays) (throw :skip nil)))
  5729. ;; Overdue deadline: warn about it for
  5730. ;; `org-deadline-past-days' duration.
  5731. (t (when (< org-deadline-past-days (- diff)) (throw :skip nil))))
  5732. ;; Possibly skip done tasks.
  5733. (when (and done?
  5734. (or org-agenda-skip-deadline-if-done
  5735. (/= deadline current)))
  5736. (throw :skip nil))
  5737. (save-excursion
  5738. (re-search-backward "^\\*+[ \t]+" nil t)
  5739. (goto-char (match-end 0))
  5740. (let* ((category (org-get-category))
  5741. (level (make-string (org-reduced-level (org-outline-level))
  5742. ?\s))
  5743. (head (buffer-substring (point) (line-end-position)))
  5744. (inherited-tags
  5745. (or (eq org-agenda-show-inherited-tags 'always)
  5746. (and (listp org-agenda-show-inherited-tags)
  5747. (memq 'agenda org-agenda-show-inherited-tags))
  5748. (and (eq org-agenda-show-inherited-tags t)
  5749. (or (eq org-agenda-use-tag-inheritance t)
  5750. (memq 'agenda
  5751. org-agenda-use-tag-inheritance)))))
  5752. (tags (org-get-tags nil (not inherited-tags)))
  5753. (time
  5754. (cond
  5755. ;; No time of day designation if it is only
  5756. ;; a reminder.
  5757. ((and (/= current deadline) (/= current repeat)) nil)
  5758. ((string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
  5759. (concat (substring s (match-beginning 1)) " "))
  5760. (t 'time)))
  5761. (item
  5762. (org-agenda-format-item
  5763. ;; Insert appropriate suffixes before deadlines.
  5764. ;; Those only apply to today agenda.
  5765. (pcase-let ((`(,now ,future ,past)
  5766. org-agenda-deadline-leaders))
  5767. (cond
  5768. ((and today? (< deadline today)) (format past (- diff)))
  5769. ((and today? (> deadline today)) (format future diff))
  5770. (t now)))
  5771. head level category tags time))
  5772. (face (org-agenda-deadline-face
  5773. (- 1 (/ (float diff) (max wdays 1)))))
  5774. (upcoming? (and today? (> deadline today)))
  5775. (warntime (get-text-property (point) 'org-appt-warntime)))
  5776. (org-add-props item props
  5777. 'org-marker (org-agenda-new-marker pos)
  5778. 'org-hd-marker (org-agenda-new-marker (line-beginning-position))
  5779. 'warntime warntime
  5780. 'level level
  5781. 'ts-date deadline
  5782. 'priority
  5783. ;; Adjust priority to today reminders about deadlines.
  5784. ;; Overdue deadlines get the highest priority
  5785. ;; increase, then imminent deadlines and eventually
  5786. ;; more distant deadlines.
  5787. (let ((adjust (if today? (- diff) 0)))
  5788. (+ adjust (org-get-priority item)))
  5789. 'todo-state todo-state
  5790. 'type (if upcoming? "upcoming-deadline" "deadline")
  5791. 'date (if upcoming? date deadline)
  5792. 'face (if done? 'org-agenda-done face)
  5793. 'undone-face face
  5794. 'done-face 'org-agenda-done)
  5795. (push item deadline-items))))))
  5796. (nreverse deadline-items)))
  5797. (defun org-agenda-deadline-face (fraction)
  5798. "Return the face to displaying a deadline item.
  5799. FRACTION is what fraction of the head-warning time has passed."
  5800. (assoc-default fraction org-agenda-deadline-faces #'<=))
  5801. (defun org-agenda-get-scheduled (&optional deadlines with-hour)
  5802. "Return the scheduled information for agenda display.
  5803. Optional argument DEADLINES is a list of deadline items to be
  5804. displayed in agenda view. When WITH-HOUR is non-nil, only return
  5805. scheduled items with an hour specification like [h]h:mm."
  5806. (let* ((props (list 'org-not-done-regexp org-not-done-regexp
  5807. 'org-todo-regexp org-todo-regexp
  5808. 'org-complex-heading-regexp org-complex-heading-regexp
  5809. 'done-face 'org-agenda-done
  5810. 'mouse-face 'highlight
  5811. 'help-echo
  5812. (format "mouse-2 or RET jump to Org file %s"
  5813. (abbreviate-file-name buffer-file-name))))
  5814. (regexp (if with-hour
  5815. org-scheduled-time-hour-regexp
  5816. org-scheduled-time-regexp))
  5817. (today (org-today))
  5818. (todayp (org-agenda-today-p date)) ; DATE bound by calendar.
  5819. (current (calendar-absolute-from-gregorian date))
  5820. (deadline-pos
  5821. (mapcar (lambda (d)
  5822. (let ((m (get-text-property 0 'org-hd-marker d)))
  5823. (and m (marker-position m))))
  5824. deadlines))
  5825. scheduled-items)
  5826. (goto-char (point-min))
  5827. (while (re-search-forward regexp nil t)
  5828. (catch :skip
  5829. (unless (save-match-data (org-at-planning-p)) (throw :skip nil))
  5830. (org-agenda-skip)
  5831. (let* ((s (match-string 1))
  5832. (pos (1- (match-beginning 1)))
  5833. (todo-state (save-match-data (org-get-todo-state)))
  5834. (donep (member todo-state org-done-keywords))
  5835. (sexp? (string-prefix-p "%%" s))
  5836. ;; SCHEDULE is the scheduled date for the entry. It is
  5837. ;; either the bare date or the last repeat, according
  5838. ;; to `org-agenda-prefer-last-repeat'.
  5839. (schedule
  5840. (cond
  5841. (sexp? (org-agenda--timestamp-to-absolute s current))
  5842. ((or (eq org-agenda-prefer-last-repeat t)
  5843. (member todo-state org-agenda-prefer-last-repeat))
  5844. (org-agenda--timestamp-to-absolute
  5845. s today 'past (current-buffer) pos))
  5846. (t (org-agenda--timestamp-to-absolute s))))
  5847. ;; REPEAT is the future repeat closest from CURRENT,
  5848. ;; according to `org-agenda-show-future-repeats'. If
  5849. ;; the latter is nil, or if the time stamp has no
  5850. ;; repeat part, default to SCHEDULE.
  5851. (repeat
  5852. (cond
  5853. (sexp? schedule)
  5854. ((<= current today) schedule)
  5855. ((not org-agenda-show-future-repeats) schedule)
  5856. (t
  5857. (let ((base (if (eq org-agenda-show-future-repeats 'next)
  5858. (1+ today)
  5859. current)))
  5860. (org-agenda--timestamp-to-absolute
  5861. s base 'future (current-buffer) pos)))))
  5862. (diff (- current schedule))
  5863. (warntime (get-text-property (point) 'org-appt-warntime))
  5864. (pastschedp (< schedule today))
  5865. (futureschedp (> schedule today))
  5866. (habitp (and (fboundp 'org-is-habit-p) (org-is-habit-p)))
  5867. (suppress-delay
  5868. (let ((deadline (and org-agenda-skip-scheduled-delay-if-deadline
  5869. (org-entry-get nil "DEADLINE"))))
  5870. (cond
  5871. ((not deadline) nil)
  5872. ;; The current item has a deadline date, so
  5873. ;; evaluate its delay time.
  5874. ((integerp org-agenda-skip-scheduled-delay-if-deadline)
  5875. ;; Use global delay time.
  5876. (- org-agenda-skip-scheduled-delay-if-deadline))
  5877. ((eq org-agenda-skip-scheduled-delay-if-deadline
  5878. 'post-deadline)
  5879. ;; Set delay to no later than DEADLINE.
  5880. (min (- schedule
  5881. (org-agenda--timestamp-to-absolute deadline))
  5882. org-scheduled-delay-days))
  5883. (t 0))))
  5884. (ddays
  5885. (cond
  5886. ;; Nullify delay when a repeater triggered already
  5887. ;; and the delay is of the form --Xd.
  5888. ((and (string-match-p "--[0-9]+[hdwmy]" s)
  5889. (> schedule (org-agenda--timestamp-to-absolute s)))
  5890. 0)
  5891. (suppress-delay
  5892. (let ((org-scheduled-delay-days suppress-delay))
  5893. (org-get-wdays s t t)))
  5894. (t (org-get-wdays s t)))))
  5895. ;; Display scheduled items at base date (SCHEDULE), today if
  5896. ;; scheduled before the current date, and at any repeat past
  5897. ;; today. However, skip delayed items and items that have
  5898. ;; been displayed for more than `org-scheduled-past-days'.
  5899. (unless (and todayp
  5900. habitp
  5901. (bound-and-true-p org-habit-show-all-today))
  5902. (when (or (and (> ddays 0) (< diff ddays))
  5903. (> diff (or (and habitp org-habit-scheduled-past-days)
  5904. org-scheduled-past-days))
  5905. (> schedule current)
  5906. (and (/= current schedule)
  5907. (/= current today)
  5908. (/= current repeat)))
  5909. (throw :skip nil)))
  5910. ;; Possibly skip done tasks.
  5911. (when (and donep
  5912. (or org-agenda-skip-scheduled-if-done
  5913. (/= schedule current)))
  5914. (throw :skip nil))
  5915. ;; Skip entry if it already appears as a deadline, per
  5916. ;; `org-agenda-skip-scheduled-if-deadline-is-shown'. This
  5917. ;; doesn't apply to habits.
  5918. (when (pcase org-agenda-skip-scheduled-if-deadline-is-shown
  5919. ((guard
  5920. (or (not (memq (line-beginning-position 0) deadline-pos))
  5921. habitp))
  5922. nil)
  5923. (`repeated-after-deadline
  5924. (let ((deadline (time-to-days
  5925. (org-get-deadline-time (point)))))
  5926. (and (<= schedule deadline) (> current deadline))))
  5927. (`not-today pastschedp)
  5928. (`t t)
  5929. (_ nil))
  5930. (throw :skip nil))
  5931. ;; Skip habits if `org-habit-show-habits' is nil, or if we
  5932. ;; only show them for today. Also skip done habits.
  5933. (when (and habitp
  5934. (or donep
  5935. (not (bound-and-true-p org-habit-show-habits))
  5936. (and (not todayp)
  5937. (bound-and-true-p
  5938. org-habit-show-habits-only-for-today))))
  5939. (throw :skip nil))
  5940. (save-excursion
  5941. (re-search-backward "^\\*+[ \t]+" nil t)
  5942. (goto-char (match-end 0))
  5943. (let* ((category (org-get-category))
  5944. (inherited-tags
  5945. (or (eq org-agenda-show-inherited-tags 'always)
  5946. (and (listp org-agenda-show-inherited-tags)
  5947. (memq 'agenda org-agenda-show-inherited-tags))
  5948. (and (eq org-agenda-show-inherited-tags t)
  5949. (or (eq org-agenda-use-tag-inheritance t)
  5950. (memq 'agenda
  5951. org-agenda-use-tag-inheritance)))))
  5952. (tags (org-get-tags nil (not inherited-tags)))
  5953. (level (make-string (org-reduced-level (org-outline-level))
  5954. ?\s))
  5955. (head (buffer-substring (point) (line-end-position)))
  5956. (time
  5957. (cond
  5958. ;; No time of day designation if it is only a
  5959. ;; reminder, except for habits, which always show
  5960. ;; the time of day. Habits are an exception
  5961. ;; because if there is a time of day, that is
  5962. ;; interpreted to mean they should usually happen
  5963. ;; then, even if doing the habit was missed.
  5964. ((and
  5965. (not habitp)
  5966. (/= current schedule)
  5967. (/= current repeat))
  5968. nil)
  5969. ((string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
  5970. (concat (substring s (match-beginning 1)) " "))
  5971. (t 'time)))
  5972. (item
  5973. (org-agenda-format-item
  5974. (pcase-let ((`(,first ,past) org-agenda-scheduled-leaders))
  5975. ;; Show a reminder of a past scheduled today.
  5976. (if (and todayp pastschedp)
  5977. (format past diff)
  5978. first))
  5979. head level category tags time nil habitp))
  5980. (face (cond ((and (not habitp) pastschedp)
  5981. 'org-scheduled-previously)
  5982. ((and habitp futureschedp)
  5983. 'org-agenda-done)
  5984. (todayp 'org-scheduled-today)
  5985. (t 'org-scheduled)))
  5986. (habitp (and habitp (org-habit-parse-todo))))
  5987. (org-add-props item props
  5988. 'undone-face face
  5989. 'face (if donep 'org-agenda-done face)
  5990. 'org-marker (org-agenda-new-marker pos)
  5991. 'org-hd-marker (org-agenda-new-marker (line-beginning-position))
  5992. 'type (if pastschedp "past-scheduled" "scheduled")
  5993. 'date (if pastschedp schedule date)
  5994. 'ts-date schedule
  5995. 'warntime warntime
  5996. 'level level
  5997. 'priority (if habitp (org-habit-get-priority habitp)
  5998. (+ 99 diff (org-get-priority item)))
  5999. 'org-habit-p habitp
  6000. 'todo-state todo-state)
  6001. (push item scheduled-items))))))
  6002. (nreverse scheduled-items)))
  6003. (defun org-agenda-get-blocks ()
  6004. "Return the date-range information for agenda display."
  6005. (let* ((props (list 'face nil
  6006. 'org-not-done-regexp org-not-done-regexp
  6007. 'org-todo-regexp org-todo-regexp
  6008. 'org-complex-heading-regexp org-complex-heading-regexp
  6009. 'mouse-face 'highlight
  6010. 'help-echo
  6011. (format "mouse-2 or RET jump to org file %s"
  6012. (abbreviate-file-name buffer-file-name))))
  6013. (regexp org-tr-regexp)
  6014. (d0 (calendar-absolute-from-gregorian date))
  6015. marker hdmarker ee txt d1 d2 s1 s2 category
  6016. level todo-state tags pos head donep inherited-tags)
  6017. (goto-char (point-min))
  6018. (while (re-search-forward regexp nil t)
  6019. (catch :skip
  6020. (org-agenda-skip)
  6021. (setq pos (point))
  6022. (let ((start-time (match-string 1))
  6023. (end-time (match-string 2)))
  6024. (setq s1 (match-string 1)
  6025. s2 (match-string 2)
  6026. d1 (time-to-days
  6027. (condition-case err
  6028. (org-time-string-to-time s1)
  6029. (error
  6030. (error
  6031. "Bad timestamp %S at %d in buffer %S\nError was: %s"
  6032. s1
  6033. pos
  6034. (current-buffer)
  6035. (error-message-string err)))))
  6036. d2 (time-to-days
  6037. (condition-case err
  6038. (org-time-string-to-time s2)
  6039. (error
  6040. (error
  6041. "Bad timestamp %S at %d in buffer %S\nError was: %s"
  6042. s2
  6043. pos
  6044. (current-buffer)
  6045. (error-message-string err))))))
  6046. (when (and (> (- d0 d1) -1) (> (- d2 d0) -1))
  6047. ;; Only allow days between the limits, because the normal
  6048. ;; date stamps will catch the limits.
  6049. (save-excursion
  6050. (setq todo-state (org-get-todo-state))
  6051. (setq donep (member todo-state org-done-keywords))
  6052. (when (and donep org-agenda-skip-timestamp-if-done)
  6053. (throw :skip t))
  6054. (setq marker (org-agenda-new-marker (point))
  6055. category (org-get-category))
  6056. (if (not (re-search-backward org-outline-regexp-bol nil t))
  6057. (throw :skip nil)
  6058. (goto-char (match-beginning 0))
  6059. (setq hdmarker (org-agenda-new-marker (point))
  6060. inherited-tags
  6061. (or (eq org-agenda-show-inherited-tags 'always)
  6062. (and (listp org-agenda-show-inherited-tags)
  6063. (memq 'agenda org-agenda-show-inherited-tags))
  6064. (and (eq org-agenda-show-inherited-tags t)
  6065. (or (eq org-agenda-use-tag-inheritance t)
  6066. (memq 'agenda org-agenda-use-tag-inheritance))))
  6067. tags (org-get-tags nil (not inherited-tags)))
  6068. (setq level (make-string (org-reduced-level (org-outline-level)) ? ))
  6069. (looking-at "\\*+[ \t]+\\(.*\\)")
  6070. (setq head (match-string 1))
  6071. (let ((remove-re
  6072. (if org-agenda-remove-timeranges-from-blocks
  6073. (concat
  6074. "<" (regexp-quote s1) ".*?>"
  6075. "--"
  6076. "<" (regexp-quote s2) ".*?>")
  6077. nil)))
  6078. (setq txt (org-agenda-format-item
  6079. (format
  6080. (nth (if (= d1 d2) 0 1)
  6081. org-agenda-timerange-leaders)
  6082. (1+ (- d0 d1)) (1+ (- d2 d1)))
  6083. head level category tags
  6084. (save-match-data
  6085. (let ((hhmm1 (and (string-match org-ts-regexp1 s1)
  6086. (match-string 6 s1)))
  6087. (hhmm2 (and (string-match org-ts-regexp1 s2)
  6088. (match-string 6 s2))))
  6089. (cond ((string= hhmm1 hhmm2)
  6090. (concat "<" start-time ">--<" end-time ">"))
  6091. ((and (= d1 d0) (= d2 d0))
  6092. (concat "<" start-time ">--<" end-time ">"))
  6093. ((= d1 d0)
  6094. (concat "<" start-time ">"))
  6095. ((= d2 d0)
  6096. (concat "<" end-time ">")))))
  6097. remove-re))))
  6098. (org-add-props txt props
  6099. 'org-marker marker 'org-hd-marker hdmarker
  6100. 'type "block" 'date date
  6101. 'level level
  6102. 'todo-state todo-state
  6103. 'priority (org-get-priority txt))
  6104. (push txt ee))))
  6105. (goto-char pos)))
  6106. ;; Sort the entries by expiration date.
  6107. (nreverse ee)))
  6108. ;;; Agenda presentation and sorting
  6109. (defvar org-prefix-has-time nil
  6110. "A flag, set by `org-compile-prefix-format'.
  6111. The flag is set if the currently compiled format contains a `%t'.")
  6112. (defvar org-prefix-has-tag nil
  6113. "A flag, set by `org-compile-prefix-format'.
  6114. The flag is set if the currently compiled format contains a `%T'.")
  6115. (defvar org-prefix-has-effort nil
  6116. "A flag, set by `org-compile-prefix-format'.
  6117. The flag is set if the currently compiled format contains a `%e'.")
  6118. (defvar org-prefix-has-breadcrumbs nil
  6119. "A flag, set by `org-compile-prefix-format'.
  6120. The flag is set if the currently compiled format contains a `%b'.")
  6121. (defvar org-prefix-category-length nil
  6122. "Used by `org-compile-prefix-format' to remember the category field width.")
  6123. (defvar org-prefix-category-max-length nil
  6124. "Used by `org-compile-prefix-format' to remember the category field width.")
  6125. (defun org-agenda-get-category-icon (category)
  6126. "Return an image for CATEGORY according to `org-agenda-category-icon-alist'."
  6127. (cl-dolist (entry org-agenda-category-icon-alist)
  6128. (when (string-match-p (car entry) category)
  6129. (if (listp (cadr entry))
  6130. (cl-return (cadr entry))
  6131. (cl-return (apply #'create-image (cdr entry)))))))
  6132. (defun org-agenda-format-item (extra txt &optional level category tags dotime
  6133. remove-re habitp)
  6134. "Format TXT to be inserted into the agenda buffer.
  6135. In particular, add the prefix and corresponding text properties.
  6136. EXTRA must be a string to replace the `%s' specifier in the prefix format.
  6137. LEVEL may be a string to replace the `%l' specifier.
  6138. CATEGORY (a string, a symbol or nil) may be used to overrule the default
  6139. category taken from local variable or file name. It will replace the `%c'
  6140. specifier in the format.
  6141. DOTIME, when non-nil, indicates that a time-of-day should be extracted from
  6142. TXT for sorting of this entry, and for the `%t' specifier in the format.
  6143. When DOTIME is a string, this string is searched for a time before TXT is.
  6144. TAGS can be the tags of the headline.
  6145. Any match of REMOVE-RE will be removed from TXT."
  6146. ;; We keep the org-prefix-* variable values along with a compiled
  6147. ;; formatter, so that multiple agendas existing at the same time do
  6148. ;; not step on each other toes.
  6149. ;;
  6150. ;; It was inconvenient to make these variables buffer local in
  6151. ;; Agenda buffers, because this function expects to be called with
  6152. ;; the buffer where item comes from being current, and not agenda
  6153. ;; buffer
  6154. (let* ((bindings (car org-prefix-format-compiled))
  6155. (formatter (cadr org-prefix-format-compiled)))
  6156. (cl-loop for (var value) in bindings
  6157. do (set var value))
  6158. (save-match-data
  6159. ;; Diary entries sometimes have extra whitespace at the beginning
  6160. (setq txt (org-trim txt))
  6161. ;; Fix the tags part in txt
  6162. (setq txt (org-agenda-fix-displayed-tags
  6163. txt tags
  6164. org-agenda-show-inherited-tags
  6165. org-agenda-hide-tags-regexp))
  6166. (let* ((category (or category
  6167. (if buffer-file-name
  6168. (file-name-sans-extension
  6169. (file-name-nondirectory buffer-file-name))
  6170. "")))
  6171. (category-icon (org-agenda-get-category-icon category))
  6172. (category-icon (if category-icon
  6173. (propertize " " 'display category-icon)
  6174. ""))
  6175. (effort (and (not (string= txt ""))
  6176. (get-text-property 1 'effort txt)))
  6177. ;; time, tag, effort are needed for the eval of the prefix format
  6178. (tag (if tags (nth (1- (length tags)) tags) ""))
  6179. (time-grid-trailing-characters (nth 2 org-agenda-time-grid))
  6180. time
  6181. (ts (when dotime (concat
  6182. (if (stringp dotime) dotime "")
  6183. (and org-agenda-search-headline-for-time txt))))
  6184. (time-of-day (and dotime (org-get-time-of-day ts)))
  6185. stamp plain s0 s1 s2 rtn srp l
  6186. duration breadcrumbs)
  6187. (and (derived-mode-p 'org-mode) buffer-file-name
  6188. (add-to-list 'org-agenda-contributing-files buffer-file-name))
  6189. (when (and dotime time-of-day)
  6190. ;; Extract starting and ending time and move them to prefix
  6191. (when (or (setq stamp (string-match org-stamp-time-of-day-regexp ts))
  6192. (setq plain (string-match org-plain-time-of-day-regexp ts)))
  6193. (setq s0 (match-string 0 ts)
  6194. srp (and stamp (match-end 3))
  6195. s1 (match-string (if plain 1 2) ts)
  6196. s2 (match-string (if plain 8 (if srp 4 6)) ts))
  6197. ;; If the times are in TXT (not in DOTIMES), and the prefix will list
  6198. ;; them, we might want to remove them there to avoid duplication.
  6199. ;; The user can turn this off with a variable.
  6200. (when (and org-prefix-has-time
  6201. org-agenda-remove-times-when-in-prefix (or stamp plain)
  6202. (string-match (concat (regexp-quote s0) " *") txt)
  6203. (not (equal ?\] (string-to-char (substring txt (match-end 0)))))
  6204. (if (eq org-agenda-remove-times-when-in-prefix 'beg)
  6205. (= (match-beginning 0) 0)
  6206. t))
  6207. (setq txt (replace-match "" nil nil txt))))
  6208. ;; Normalize the time(s) to 24 hour
  6209. (when s1 (setq s1 (org-get-time-of-day s1 'string t)))
  6210. (when s2 (setq s2 (org-get-time-of-day s2 'string t)))
  6211. ;; Try to set s2 if s1 and
  6212. ;; `org-agenda-default-appointment-duration' are set
  6213. (when (and s1 (not s2) org-agenda-default-appointment-duration)
  6214. (setq s2
  6215. (org-duration-from-minutes
  6216. (+ (org-duration-to-minutes s1 t)
  6217. org-agenda-default-appointment-duration)
  6218. nil t)))
  6219. ;; Compute the duration
  6220. (when s2
  6221. (setq duration (- (org-duration-to-minutes s2)
  6222. (org-duration-to-minutes s1)))))
  6223. (when (string-match org-tag-group-re txt)
  6224. ;; Tags are in the string
  6225. (if (or (eq org-agenda-remove-tags t)
  6226. (and org-agenda-remove-tags
  6227. org-prefix-has-tag))
  6228. (setq txt (replace-match "" t t txt))
  6229. (setq txt (replace-match
  6230. (concat (make-string (max (- 50 (length txt)) 1) ?\ )
  6231. (match-string 1 txt))
  6232. t t txt))))
  6233. (when remove-re
  6234. (while (string-match remove-re txt)
  6235. (setq txt (replace-match "" t t txt))))
  6236. ;; Set org-heading property on `txt' to mark the start of the
  6237. ;; heading.
  6238. (add-text-properties 0 (length txt) '(org-heading t) txt)
  6239. ;; Prepare the variables needed in the eval of the compiled format
  6240. (when org-prefix-has-breadcrumbs
  6241. (setq breadcrumbs (org-with-point-at (org-get-at-bol 'org-marker)
  6242. (let ((s (org-format-outline-path (org-get-outline-path)
  6243. (1- (frame-width))
  6244. nil org-agenda-breadcrumbs-separator)))
  6245. (if (eq "" s) "" (concat s org-agenda-breadcrumbs-separator))))))
  6246. (setq time (cond (s2 (concat
  6247. (org-agenda-time-of-day-to-ampm-maybe s1)
  6248. "-" (org-agenda-time-of-day-to-ampm-maybe s2)
  6249. (when org-agenda-timegrid-use-ampm " ")))
  6250. (s1 (concat
  6251. (org-agenda-time-of-day-to-ampm-maybe s1)
  6252. (if org-agenda-timegrid-use-ampm
  6253. (concat time-grid-trailing-characters " ")
  6254. time-grid-trailing-characters)))
  6255. (t ""))
  6256. extra (or (and (not habitp) extra) "")
  6257. category (if (symbolp category) (symbol-name category) category)
  6258. level (or level ""))
  6259. (if (string-match org-link-bracket-re category)
  6260. (progn
  6261. (setq l (string-width (or (match-string 2) (match-string 1))))
  6262. (when (< l (or org-prefix-category-length 0))
  6263. (setq category (copy-sequence category))
  6264. (org-add-props category nil
  6265. 'extra-space (make-string
  6266. (- org-prefix-category-length l 1) ?\ ))))
  6267. (when (and org-prefix-category-max-length
  6268. (>= (length category) org-prefix-category-max-length))
  6269. (setq category (substring category 0 (1- org-prefix-category-max-length)))))
  6270. ;; Evaluate the compiled format
  6271. (setq rtn (concat (eval formatter) txt))
  6272. ;; And finally add the text properties
  6273. (remove-text-properties 0 (length rtn) '(line-prefix t wrap-prefix t) rtn)
  6274. (org-add-props rtn nil
  6275. 'org-category category
  6276. 'tags (mapcar 'org-downcase-keep-props tags)
  6277. 'org-priority-highest org-priority-highest
  6278. 'org-priority-lowest org-priority-lowest
  6279. 'time-of-day time-of-day
  6280. 'duration duration
  6281. 'breadcrumbs breadcrumbs
  6282. 'txt txt
  6283. 'level level
  6284. 'time time
  6285. 'extra extra
  6286. 'format org-prefix-format-compiled
  6287. 'dotime dotime)))))
  6288. (defun org-agenda-fix-displayed-tags (txt tags add-inherited hide-re)
  6289. "Remove tags string from TXT, and add a modified list of tags.
  6290. The modified list may contain inherited tags, and tags matched by
  6291. `org-agenda-hide-tags-regexp' will be removed."
  6292. (when (or add-inherited hide-re)
  6293. (when (string-match org-tag-group-re txt)
  6294. (setq txt (substring txt 0 (match-beginning 0))))
  6295. (setq tags
  6296. (delq nil
  6297. (mapcar (lambda (tg)
  6298. (if (or (and hide-re (string-match hide-re tg))
  6299. (and (not add-inherited)
  6300. (get-text-property 0 'inherited tg)))
  6301. nil
  6302. tg))
  6303. tags)))
  6304. (when tags
  6305. (let ((have-i (get-text-property 0 'inherited (car tags)))
  6306. i)
  6307. (setq txt (concat txt " :"
  6308. (mapconcat
  6309. (lambda (x)
  6310. (setq i (get-text-property 0 'inherited x))
  6311. (if (and have-i (not i))
  6312. (progn
  6313. (setq have-i nil)
  6314. (concat ":" x))
  6315. x))
  6316. tags ":")
  6317. (if have-i "::" ":"))))))
  6318. txt)
  6319. (defun org-downcase-keep-props (s)
  6320. (let ((props (text-properties-at 0 s)))
  6321. (setq s (downcase s))
  6322. (add-text-properties 0 (length s) props s)
  6323. s))
  6324. (defvar org-agenda-sorting-strategy) ;; because the def is in a let form
  6325. (defun org-agenda-add-time-grid-maybe (list ndays todayp)
  6326. "Add a time-grid for agenda items which need it.
  6327. LIST is the list of agenda items formatted by `org-agenda-list'.
  6328. NDAYS is the span of the current agenda view.
  6329. TODAYP is t when the current agenda view is on today."
  6330. (catch 'exit
  6331. (cond ((not org-agenda-use-time-grid) (throw 'exit list))
  6332. ((and todayp (member 'today (car org-agenda-time-grid))))
  6333. ((and (= ndays 1) (member 'daily (car org-agenda-time-grid))))
  6334. ((member 'weekly (car org-agenda-time-grid)))
  6335. (t (throw 'exit list)))
  6336. (let* ((have (delq nil (mapcar
  6337. (lambda (x) (get-text-property 1 'time-of-day x))
  6338. list)))
  6339. (string (nth 3 org-agenda-time-grid))
  6340. (gridtimes (nth 1 org-agenda-time-grid))
  6341. (req (car org-agenda-time-grid))
  6342. (remove (member 'remove-match req))
  6343. new time)
  6344. (when (and (member 'require-timed req) (not have))
  6345. ;; don't show empty grid
  6346. (throw 'exit list))
  6347. (while (setq time (pop gridtimes))
  6348. (unless (and remove (member time have))
  6349. (setq time (replace-regexp-in-string " " "0" (format "%04s" time)))
  6350. (push (org-agenda-format-item
  6351. nil string nil "" nil
  6352. (concat (substring time 0 -2) ":" (substring time -2)))
  6353. new)
  6354. (put-text-property
  6355. 2 (length (car new)) 'face 'org-time-grid (car new))))
  6356. (when (and todayp org-agenda-show-current-time-in-grid)
  6357. (push (org-agenda-format-item
  6358. nil org-agenda-current-time-string nil "" nil
  6359. (format-time-string "%H:%M "))
  6360. new)
  6361. (put-text-property
  6362. 2 (length (car new)) 'face 'org-agenda-current-time (car new)))
  6363. (if (member 'time-up org-agenda-sorting-strategy-selected)
  6364. (append new list)
  6365. (append list new)))))
  6366. (defun org-compile-prefix-format (key)
  6367. "Compile the prefix format into a Lisp form that can be evaluated.
  6368. The resulting form and associated variable bindings is returned
  6369. and stored in the variable `org-prefix-format-compiled'."
  6370. (setq org-prefix-has-time nil
  6371. org-prefix-has-tag nil
  6372. org-prefix-category-length nil
  6373. org-prefix-has-effort nil
  6374. org-prefix-has-breadcrumbs nil)
  6375. (let ((s (cond
  6376. ((stringp org-agenda-prefix-format)
  6377. org-agenda-prefix-format)
  6378. ((assq key org-agenda-prefix-format)
  6379. (cdr (assq key org-agenda-prefix-format)))
  6380. (t " %-12:c%?-12t% s")))
  6381. (start 0)
  6382. varform vars var e c f opt)
  6383. (while (string-match "%\\(\\?\\)?\\([-+]?[0-9.]*\\)\\([ .;,:!?=|/<>]?\\)\\([cltseib]\\|(.+)\\)"
  6384. s start)
  6385. (setq var (or (cdr (assoc (match-string 4 s)
  6386. '(("c" . category) ("t" . time) ("l" . level) ("s" . extra)
  6387. ("i" . category-icon) ("T" . tag) ("e" . effort) ("b" . breadcrumbs))))
  6388. 'eval)
  6389. c (or (match-string 3 s) "")
  6390. opt (match-beginning 1)
  6391. start (1+ (match-beginning 0)))
  6392. (cl-case var
  6393. (time (setq org-prefix-has-time t))
  6394. (tag (setq org-prefix-has-tag t))
  6395. (effort (setq org-prefix-has-effort t))
  6396. (breadcrumbs (setq org-prefix-has-breadcrumbs t)))
  6397. (setq f (concat "%" (match-string 2 s) "s"))
  6398. (when (eq var 'category)
  6399. (setq org-prefix-category-length
  6400. (floor (abs (string-to-number (match-string 2 s)))))
  6401. (setq org-prefix-category-max-length
  6402. (let ((x (match-string 2 s)))
  6403. (save-match-data
  6404. (and (string-match "\\.[0-9]+" x)
  6405. (string-to-number (substring (match-string 0 x) 1)))))))
  6406. (if (eq var 'eval)
  6407. (setq varform `(format ,f (org-eval ,(read (match-string 4 s)))))
  6408. (if opt
  6409. (setq varform
  6410. `(if (or (equal "" ,var) (equal nil ,var))
  6411. ""
  6412. (format ,f (concat ,var ,c))))
  6413. (setq varform
  6414. `(format ,f (if (or (equal ,var "")
  6415. (equal ,var nil)) ""
  6416. (concat ,var ,c (get-text-property 0 'extra-space ,var)))))))
  6417. (setq s (replace-match "%s" t nil s))
  6418. (push varform vars))
  6419. (setq vars (nreverse vars))
  6420. (with-current-buffer (or org-agenda-buffer (current-buffer))
  6421. (setq org-prefix-format-compiled
  6422. (list
  6423. `((org-prefix-has-time ,org-prefix-has-time)
  6424. (org-prefix-has-tag ,org-prefix-has-tag)
  6425. (org-prefix-category-length ,org-prefix-category-length)
  6426. (org-prefix-has-effort ,org-prefix-has-effort)
  6427. (org-prefix-has-breadcrumbs ,org-prefix-has-breadcrumbs))
  6428. `(format ,s ,@vars))))))
  6429. (defun org-set-sorting-strategy (key)
  6430. (if (symbolp (car org-agenda-sorting-strategy))
  6431. ;; the old format
  6432. (setq org-agenda-sorting-strategy-selected org-agenda-sorting-strategy)
  6433. (setq org-agenda-sorting-strategy-selected
  6434. (or (cdr (assq key org-agenda-sorting-strategy))
  6435. (cdr (assq 'agenda org-agenda-sorting-strategy))
  6436. '(time-up category-keep priority-down)))))
  6437. (defun org-get-time-of-day (s &optional string mod24)
  6438. "Check string S for a time of day.
  6439. If found, return it as a military time number between 0 and 2400.
  6440. If not found, return nil.
  6441. The optional STRING argument forces conversion into a 5 character wide string
  6442. HH:MM."
  6443. (save-match-data
  6444. (when
  6445. (and
  6446. (or (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)\\([AaPp][Mm]\\)?\\> *" s)
  6447. (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?\\([AaPp][Mm]\\)\\> *" s))
  6448. (not (eq (get-text-property 1 'face s) 'org-link)))
  6449. (let* ((h (string-to-number (match-string 1 s)))
  6450. (m (if (match-end 3) (string-to-number (match-string 3 s)) 0))
  6451. (ampm (when (match-end 4) (downcase (match-string 4 s))))
  6452. (am-p (equal ampm "am"))
  6453. (h1 (cond ((not ampm) h)
  6454. ((= h 12) (if am-p 0 12))
  6455. (t (+ h (if am-p 0 12)))))
  6456. (h2 (if (and string mod24 (not (and (= m 0) (= h1 24))))
  6457. (mod h1 24) h1))
  6458. (t0 (+ (* 100 h2) m))
  6459. (t1 (concat (if (>= h1 24) "+" " ")
  6460. (if (and org-agenda-time-leading-zero
  6461. (< t0 1000)) "0" "")
  6462. (if (< t0 100) "0" "")
  6463. (if (< t0 10) "0" "")
  6464. (number-to-string t0))))
  6465. (if string (concat (substring t1 -4 -2) ":" (substring t1 -2)) t0)))))
  6466. (defvar org-agenda-before-sorting-filter-function nil
  6467. "Function to be applied to agenda items prior to sorting.
  6468. Prior to sorting also means just before they are inserted into the agenda.
  6469. To aid sorting, you may revisit the original entries and add more text
  6470. properties which will later be used by the sorting functions.
  6471. The function should take a string argument, an agenda line.
  6472. It has access to the text properties in that line, which contain among
  6473. other things, the property `org-hd-marker' that points to the entry
  6474. where the line comes from. Note that not all lines going into the agenda
  6475. have this property, only most.
  6476. The function should return the modified string. It is probably best
  6477. to ONLY change text properties.
  6478. You can also use this function as a filter, by returning nil for lines
  6479. you don't want to have in the agenda at all. For this application, you
  6480. could bind the variable in the options section of a custom command.")
  6481. (defun org-agenda-finalize-entries (list &optional type)
  6482. "Sort, limit and concatenate the LIST of agenda items.
  6483. The optional argument TYPE tells the agenda type."
  6484. (let ((max-effort (cond ((listp org-agenda-max-effort)
  6485. (cdr (assoc type org-agenda-max-effort)))
  6486. (t org-agenda-max-effort)))
  6487. (max-todo (cond ((listp org-agenda-max-todos)
  6488. (cdr (assoc type org-agenda-max-todos)))
  6489. (t org-agenda-max-todos)))
  6490. (max-tags (cond ((listp org-agenda-max-tags)
  6491. (cdr (assoc type org-agenda-max-tags)))
  6492. (t org-agenda-max-tags)))
  6493. (max-entries (cond ((listp org-agenda-max-entries)
  6494. (cdr (assoc type org-agenda-max-entries)))
  6495. (t org-agenda-max-entries))))
  6496. (when org-agenda-before-sorting-filter-function
  6497. (setq list
  6498. (delq nil
  6499. (mapcar
  6500. org-agenda-before-sorting-filter-function list))))
  6501. (setq list (mapcar 'org-agenda-highlight-todo list)
  6502. list (mapcar 'identity (sort list 'org-entries-lessp)))
  6503. (when max-effort
  6504. (setq list (org-agenda-limit-entries
  6505. list 'effort-minutes max-effort
  6506. (lambda (e) (or e (if org-agenda-sort-noeffort-is-high
  6507. 32767 -1))))))
  6508. (when max-todo
  6509. (setq list (org-agenda-limit-entries list 'todo-state max-todo)))
  6510. (when max-tags
  6511. (setq list (org-agenda-limit-entries list 'tags max-tags)))
  6512. (when max-entries
  6513. (setq list (org-agenda-limit-entries list 'org-hd-marker max-entries)))
  6514. (when (and org-agenda-dim-blocked-tasks org-blocker-hook)
  6515. (setq list (mapcar #'org-agenda--mark-blocked-entry list)))
  6516. (mapconcat 'identity list "\n")))
  6517. (defun org-agenda-limit-entries (list prop limit &optional fn)
  6518. "Limit the number of agenda entries."
  6519. (let ((include (and limit (< limit 0))))
  6520. (if limit
  6521. (let ((fun (or fn (lambda (p) (when p 1))))
  6522. (lim 0))
  6523. (delq nil
  6524. (mapcar
  6525. (lambda (e)
  6526. (let ((pval (funcall
  6527. fun (get-text-property (1- (length e))
  6528. prop e))))
  6529. (when pval (setq lim (+ lim pval)))
  6530. (cond ((and pval (<= lim (abs limit))) e)
  6531. ((and include (not pval)) e))))
  6532. list)))
  6533. list)))
  6534. (defun org-agenda-limit-interactively (remove)
  6535. "In agenda, interactively limit entries to various maximums."
  6536. (interactive "P")
  6537. (if remove
  6538. (progn (setq org-agenda-max-entries nil
  6539. org-agenda-max-todos nil
  6540. org-agenda-max-tags nil
  6541. org-agenda-max-effort nil)
  6542. (org-agenda-redo))
  6543. (let* ((max (read-char "Number of [e]ntries [t]odos [T]ags [E]ffort? "))
  6544. (msg (cond ((= max ?E) "How many minutes? ")
  6545. ((= max ?e) "How many entries? ")
  6546. ((= max ?t) "How many TODO entries? ")
  6547. ((= max ?T) "How many tagged entries? ")
  6548. (t (user-error "Wrong input"))))
  6549. (num (string-to-number (read-from-minibuffer msg))))
  6550. (cond ((equal max ?e)
  6551. (let ((org-agenda-max-entries num)) (org-agenda-redo)))
  6552. ((equal max ?t)
  6553. (let ((org-agenda-max-todos num)) (org-agenda-redo)))
  6554. ((equal max ?T)
  6555. (let ((org-agenda-max-tags num)) (org-agenda-redo)))
  6556. ((equal max ?E)
  6557. (let ((org-agenda-max-effort num)) (org-agenda-redo))))))
  6558. (org-agenda-fit-window-to-buffer))
  6559. (defun org-agenda-highlight-todo (x)
  6560. (let ((org-done-keywords org-done-keywords-for-agenda)
  6561. (case-fold-search nil)
  6562. re)
  6563. (if (eq x 'line)
  6564. (save-excursion
  6565. (beginning-of-line 1)
  6566. (setq re (org-get-at-bol 'org-todo-regexp))
  6567. (goto-char (or (text-property-any (point-at-bol) (point-at-eol) 'org-heading t) (point)))
  6568. (when (looking-at (concat "[ \t]*\\.*\\(" re "\\) +"))
  6569. (add-text-properties (match-beginning 0) (match-end 1)
  6570. (list 'face (org-get-todo-face 1)))
  6571. (let ((s (buffer-substring (match-beginning 1) (match-end 1))))
  6572. (delete-region (match-beginning 1) (1- (match-end 0)))
  6573. (goto-char (match-beginning 1))
  6574. (insert (format org-agenda-todo-keyword-format s)))))
  6575. (let ((pl (text-property-any 0 (length x) 'org-heading t x)))
  6576. (setq re (get-text-property 0 'org-todo-regexp x))
  6577. (when (and re
  6578. ;; Test `pl' because if there's no heading content,
  6579. ;; there's no point matching to highlight. Note
  6580. ;; that if we didn't test `pl' first, and there
  6581. ;; happened to be no keyword from `org-todo-regexp'
  6582. ;; on this heading line, then the `equal' comparison
  6583. ;; afterwards would spuriously succeed in the case
  6584. ;; where `pl' is nil -- causing an args-out-of-range
  6585. ;; error when we try to add text properties to text
  6586. ;; that isn't there.
  6587. pl
  6588. (equal (string-match (concat "\\(\\.*\\)" re "\\( +\\)")
  6589. x pl)
  6590. pl))
  6591. (add-text-properties
  6592. (or (match-end 1) (match-end 0)) (match-end 0)
  6593. (list 'face (org-get-todo-face (match-string 2 x)))
  6594. x)
  6595. (when (match-end 1)
  6596. (setq x
  6597. (concat
  6598. (substring x 0 (match-end 1))
  6599. (format org-agenda-todo-keyword-format
  6600. (match-string 2 x))
  6601. ;; Remove `display' property as the icon could leak
  6602. ;; on the white space.
  6603. (org-add-props " " (org-plist-delete (text-properties-at 0 x)
  6604. 'display))
  6605. (substring x (match-end 3)))))))
  6606. x)))
  6607. (defsubst org-cmp-values (a b property)
  6608. "Compare the numeric value of text PROPERTY for string A and B."
  6609. (let ((pa (or (get-text-property (1- (length a)) property a) 0))
  6610. (pb (or (get-text-property (1- (length b)) property b) 0)))
  6611. (cond ((> pa pb) +1)
  6612. ((< pa pb) -1))))
  6613. (defsubst org-cmp-effort (a b)
  6614. "Compare the effort values of string A and B."
  6615. (let* ((def (if org-agenda-sort-noeffort-is-high 32767 -1))
  6616. ;; `effort-minutes' property is not directly accessible from
  6617. ;; the strings, but is stored as a property in `txt'.
  6618. (ea (or (get-text-property
  6619. 0 'effort-minutes (get-text-property 0 'txt a))
  6620. def))
  6621. (eb (or (get-text-property
  6622. 0 'effort-minutes (get-text-property 0 'txt b))
  6623. def)))
  6624. (cond ((> ea eb) +1)
  6625. ((< ea eb) -1))))
  6626. (defsubst org-cmp-category (a b)
  6627. "Compare the string values of categories of strings A and B."
  6628. (let ((ca (or (get-text-property (1- (length a)) 'org-category a) ""))
  6629. (cb (or (get-text-property (1- (length b)) 'org-category b) "")))
  6630. (cond ((string-lessp ca cb) -1)
  6631. ((string-lessp cb ca) +1))))
  6632. (defsubst org-cmp-todo-state (a b)
  6633. "Compare the todo states of strings A and B."
  6634. (let* ((ma (or (get-text-property 1 'org-marker a)
  6635. (get-text-property 1 'org-hd-marker a)))
  6636. (mb (or (get-text-property 1 'org-marker b)
  6637. (get-text-property 1 'org-hd-marker b)))
  6638. (fa (and ma (marker-buffer ma)))
  6639. (fb (and mb (marker-buffer mb)))
  6640. (todo-kwds
  6641. (or (and fa (with-current-buffer fa org-todo-keywords-1))
  6642. (and fb (with-current-buffer fb org-todo-keywords-1))))
  6643. (ta (or (get-text-property 1 'todo-state a) ""))
  6644. (tb (or (get-text-property 1 'todo-state b) ""))
  6645. (la (- (length (member ta todo-kwds))))
  6646. (lb (- (length (member tb todo-kwds))))
  6647. (donepa (member ta org-done-keywords-for-agenda))
  6648. (donepb (member tb org-done-keywords-for-agenda)))
  6649. (cond ((and donepa (not donepb)) -1)
  6650. ((and (not donepa) donepb) +1)
  6651. ((< la lb) -1)
  6652. ((< lb la) +1))))
  6653. (defsubst org-cmp-alpha (a b)
  6654. "Compare the headlines, alphabetically."
  6655. (let* ((pla (text-property-any 0 (length a) 'org-heading t a))
  6656. (plb (text-property-any 0 (length b) 'org-heading t b))
  6657. (ta (and pla (substring a pla)))
  6658. (tb (and plb (substring b plb)))
  6659. (case-fold-search nil))
  6660. (when pla
  6661. (when (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp a) "")
  6662. "\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *")
  6663. ta)
  6664. (setq ta (substring ta (match-end 0))))
  6665. (setq ta (downcase ta)))
  6666. (when plb
  6667. (when (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp b) "")
  6668. "\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *")
  6669. tb)
  6670. (setq tb (substring tb (match-end 0))))
  6671. (setq tb (downcase tb)))
  6672. (cond ((not (or ta tb)) nil)
  6673. ((not ta) +1)
  6674. ((not tb) -1)
  6675. ((string-lessp ta tb) -1)
  6676. ((string-lessp tb ta) +1))))
  6677. (defsubst org-cmp-tag (a b)
  6678. "Compare the string values of the first tags of A and B."
  6679. (let ((ta (car (last (get-text-property 1 'tags a))))
  6680. (tb (car (last (get-text-property 1 'tags b)))))
  6681. (cond ((not (or ta tb)) nil)
  6682. ((not ta) +1)
  6683. ((not tb) -1)
  6684. ((string-lessp ta tb) -1)
  6685. ((string-lessp tb ta) +1))))
  6686. (defsubst org-cmp-time (a b)
  6687. "Compare the time-of-day values of strings A and B."
  6688. (let* ((def (if org-agenda-sort-notime-is-late 9901 -1))
  6689. (ta (or (get-text-property 1 'time-of-day a) def))
  6690. (tb (or (get-text-property 1 'time-of-day b) def)))
  6691. (cond ((< ta tb) -1)
  6692. ((< tb ta) +1))))
  6693. (defsubst org-cmp-ts (a b type)
  6694. "Compare the timestamps values of entries A and B.
  6695. When TYPE is \"scheduled\", \"deadline\", \"timestamp\" or
  6696. \"timestamp_ia\", compare within each of these type. When TYPE
  6697. is the empty string, compare all timestamps without respect of
  6698. their type."
  6699. (let* ((def (and (not org-agenda-sort-notime-is-late) -1))
  6700. (ta (or (and (string-match type (or (get-text-property 1 'type a) ""))
  6701. (get-text-property 1 'ts-date a))
  6702. def))
  6703. (tb (or (and (string-match type (or (get-text-property 1 'type b) ""))
  6704. (get-text-property 1 'ts-date b))
  6705. def)))
  6706. (cond ((if ta (and tb (< ta tb)) tb) -1)
  6707. ((if tb (and ta (< tb ta)) ta) +1))))
  6708. (defsubst org-cmp-habit-p (a b)
  6709. "Compare the todo states of strings A and B."
  6710. (let ((ha (get-text-property 1 'org-habit-p a))
  6711. (hb (get-text-property 1 'org-habit-p b)))
  6712. (cond ((and ha (not hb)) -1)
  6713. ((and (not ha) hb) +1))))
  6714. (defun org-entries-lessp (a b)
  6715. "Predicate for sorting agenda entries."
  6716. ;; The following variables will be used when the form is evaluated.
  6717. ;; So even though the compiler complains, keep them.
  6718. (let* ((ss org-agenda-sorting-strategy-selected)
  6719. (timestamp-up (and (org-em 'timestamp-up 'timestamp-down ss)
  6720. (org-cmp-ts a b "")))
  6721. (timestamp-down (if timestamp-up (- timestamp-up) nil))
  6722. (scheduled-up (and (org-em 'scheduled-up 'scheduled-down ss)
  6723. (org-cmp-ts a b "scheduled")))
  6724. (scheduled-down (if scheduled-up (- scheduled-up) nil))
  6725. (deadline-up (and (org-em 'deadline-up 'deadline-down ss)
  6726. (org-cmp-ts a b "deadline")))
  6727. (deadline-down (if deadline-up (- deadline-up) nil))
  6728. (tsia-up (and (org-em 'tsia-up 'tsia-down ss)
  6729. (org-cmp-ts a b "timestamp_ia")))
  6730. (tsia-down (if tsia-up (- tsia-up) nil))
  6731. (ts-up (and (org-em 'ts-up 'ts-down ss)
  6732. (org-cmp-ts a b "timestamp")))
  6733. (ts-down (if ts-up (- ts-up) nil))
  6734. (time-up (and (org-em 'time-up 'time-down ss)
  6735. (org-cmp-time a b)))
  6736. (time-down (if time-up (- time-up) nil))
  6737. (stats-up (and (org-em 'stats-up 'stats-down ss)
  6738. (org-cmp-values a b 'org-stats)))
  6739. (stats-down (if stats-up (- stats-up) nil))
  6740. (priority-up (and (org-em 'priority-up 'priority-down ss)
  6741. (org-cmp-values a b 'priority)))
  6742. (priority-down (if priority-up (- priority-up) nil))
  6743. (effort-up (and (org-em 'effort-up 'effort-down ss)
  6744. (org-cmp-effort a b)))
  6745. (effort-down (if effort-up (- effort-up) nil))
  6746. (category-up (and (or (org-em 'category-up 'category-down ss)
  6747. (memq 'category-keep ss))
  6748. (org-cmp-category a b)))
  6749. (category-down (if category-up (- category-up) nil))
  6750. (category-keep (if category-up +1 nil))
  6751. (tag-up (and (org-em 'tag-up 'tag-down ss)
  6752. (org-cmp-tag a b)))
  6753. (tag-down (if tag-up (- tag-up) nil))
  6754. (todo-state-up (and (org-em 'todo-state-up 'todo-state-down ss)
  6755. (org-cmp-todo-state a b)))
  6756. (todo-state-down (if todo-state-up (- todo-state-up) nil))
  6757. (habit-up (and (org-em 'habit-up 'habit-down ss)
  6758. (org-cmp-habit-p a b)))
  6759. (habit-down (if habit-up (- habit-up) nil))
  6760. (alpha-up (and (org-em 'alpha-up 'alpha-down ss)
  6761. (org-cmp-alpha a b)))
  6762. (alpha-down (if alpha-up (- alpha-up) nil))
  6763. (need-user-cmp (org-em 'user-defined-up 'user-defined-down ss))
  6764. user-defined-up user-defined-down)
  6765. (when (and need-user-cmp org-agenda-cmp-user-defined
  6766. (functionp org-agenda-cmp-user-defined))
  6767. (setq user-defined-up
  6768. (funcall org-agenda-cmp-user-defined a b)
  6769. user-defined-down (if user-defined-up (- user-defined-up) nil)))
  6770. (cdr (assoc
  6771. (eval (cons 'or org-agenda-sorting-strategy-selected))
  6772. '((-1 . t) (1 . nil) (nil . nil))))))
  6773. ;;; Agenda restriction lock
  6774. (defvar org-agenda-restriction-lock-overlay (make-overlay 1 1)
  6775. "Overlay to mark the headline to which agenda commands are restricted.")
  6776. (overlay-put org-agenda-restriction-lock-overlay
  6777. 'face 'org-agenda-restriction-lock)
  6778. (overlay-put org-agenda-restriction-lock-overlay
  6779. 'help-echo "Agendas are currently limited to this subtree.")
  6780. (delete-overlay org-agenda-restriction-lock-overlay)
  6781. (defun org-agenda-set-restriction-lock-from-agenda (arg)
  6782. "Set the restriction lock to the agenda item at point from within the agenda.
  6783. When called with a `\\[universal-argument]' prefix, restrict to
  6784. the file which contains the item.
  6785. Argument ARG is the prefix argument."
  6786. (interactive "P")
  6787. (unless (derived-mode-p 'org-agenda-mode)
  6788. (user-error "Not in an Org agenda buffer"))
  6789. (let* ((marker (or (org-get-at-bol 'org-marker)
  6790. (org-agenda-error)))
  6791. (buffer (marker-buffer marker))
  6792. (pos (marker-position marker)))
  6793. (with-current-buffer buffer
  6794. (goto-char pos)
  6795. (org-agenda-set-restriction-lock arg))))
  6796. ;;;###autoload
  6797. (defun org-agenda-set-restriction-lock (&optional type)
  6798. "Set restriction lock for agenda to current subtree or file.
  6799. When in a restricted subtree, remove it.
  6800. The restriction will span over the entire file if TYPE is `file',
  6801. or if type is '(4), or if the cursor is before the first headline
  6802. in the file. Otherwise, only apply the restriction to the current
  6803. subtree."
  6804. (interactive "P")
  6805. (if (and org-agenda-overriding-restriction
  6806. (member org-agenda-restriction-lock-overlay
  6807. (overlays-at (point)))
  6808. (equal (overlay-start org-agenda-restriction-lock-overlay)
  6809. (point)))
  6810. (org-agenda-remove-restriction-lock 'noupdate)
  6811. (org-agenda-remove-restriction-lock 'noupdate)
  6812. (and (equal type '(4)) (setq type 'file))
  6813. (setq type (cond
  6814. (type type)
  6815. ((org-at-heading-p) 'subtree)
  6816. ((condition-case nil (org-back-to-heading t) (error nil))
  6817. 'subtree)
  6818. (t 'file)))
  6819. (if (eq type 'subtree)
  6820. (progn
  6821. (setq org-agenda-restrict (current-buffer))
  6822. (setq org-agenda-overriding-restriction 'subtree)
  6823. (put 'org-agenda-files 'org-restrict
  6824. (list (buffer-file-name (buffer-base-buffer))))
  6825. (org-back-to-heading t)
  6826. (move-overlay org-agenda-restriction-lock-overlay
  6827. (point)
  6828. (if org-agenda-restriction-lock-highlight-subtree
  6829. (save-excursion (org-end-of-subtree t t) (point))
  6830. (point-at-eol)))
  6831. (move-marker org-agenda-restrict-begin (point))
  6832. (move-marker org-agenda-restrict-end
  6833. (save-excursion (org-end-of-subtree t t)))
  6834. (message "Locking agenda restriction to subtree"))
  6835. (put 'org-agenda-files 'org-restrict
  6836. (list (buffer-file-name (buffer-base-buffer))))
  6837. (setq org-agenda-restrict nil)
  6838. (setq org-agenda-overriding-restriction 'file)
  6839. (move-marker org-agenda-restrict-begin nil)
  6840. (move-marker org-agenda-restrict-end nil)
  6841. (message "Locking agenda restriction to file"))
  6842. (setq current-prefix-arg nil))
  6843. (org-agenda-maybe-redo))
  6844. (defun org-agenda-remove-restriction-lock (&optional noupdate)
  6845. "Remove agenda restriction lock."
  6846. (interactive "P")
  6847. (if (not org-agenda-restrict)
  6848. (message "No agenda restriction to remove.")
  6849. (delete-overlay org-agenda-restriction-lock-overlay)
  6850. (delete-overlay org-speedbar-restriction-lock-overlay)
  6851. (setq org-agenda-overriding-restriction nil)
  6852. (setq org-agenda-restrict nil)
  6853. (put 'org-agenda-files 'org-restrict nil)
  6854. (move-marker org-agenda-restrict-begin nil)
  6855. (move-marker org-agenda-restrict-end nil)
  6856. (setq current-prefix-arg nil)
  6857. (message "Agenda restriction lock removed")
  6858. (or noupdate (org-agenda-maybe-redo))))
  6859. (defun org-agenda-maybe-redo ()
  6860. "If there is any window showing the agenda view, update it."
  6861. (let ((w (get-buffer-window (or org-agenda-this-buffer-name
  6862. org-agenda-buffer-name)
  6863. t))
  6864. (w0 (selected-window)))
  6865. (when w
  6866. (select-window w)
  6867. (org-agenda-redo)
  6868. (select-window w0)
  6869. (if org-agenda-overriding-restriction
  6870. (message "Agenda view shifted to new %s restriction"
  6871. org-agenda-overriding-restriction)
  6872. (message "Agenda restriction lock removed")))))
  6873. ;;; Agenda commands
  6874. (defun org-agenda-check-type (error &rest types)
  6875. "Check if agenda buffer or component is of allowed type.
  6876. If ERROR is non-nil, throw an error, otherwise just return nil.
  6877. Allowed types are `agenda' `todo' `tags' `search'."
  6878. (cond ((not org-agenda-type)
  6879. (error "No Org agenda currently displayed"))
  6880. ((memq org-agenda-type types) t)
  6881. (error
  6882. (error "Not allowed in '%s'-type agenda buffer or component" org-agenda-type))
  6883. (t nil)))
  6884. (defun org-agenda-Quit ()
  6885. "Exit the agenda, killing the agenda buffer.
  6886. Like `org-agenda-quit', but kill the buffer even when
  6887. `org-agenda-sticky' is non-nil."
  6888. (interactive)
  6889. (org-agenda--quit))
  6890. (defun org-agenda-quit ()
  6891. "Exit the agenda.
  6892. When `org-agenda-sticky' is non-nil, bury the agenda buffer
  6893. instead of killing it.
  6894. When `org-agenda-restore-windows-after-quit' is non-nil, restore
  6895. the pre-agenda window configuration.
  6896. When column view is active, exit column view instead of the
  6897. agenda."
  6898. (interactive)
  6899. (org-agenda--quit org-agenda-sticky))
  6900. (defun org-agenda--quit (&optional bury)
  6901. (if org-agenda-columns-active
  6902. (org-columns-quit)
  6903. (let ((wconf org-agenda-pre-window-conf)
  6904. (buf (current-buffer))
  6905. (org-agenda-last-indirect-window
  6906. (and (eq org-indirect-buffer-display 'other-window)
  6907. org-agenda-last-indirect-buffer
  6908. (get-buffer-window org-agenda-last-indirect-buffer))))
  6909. (cond
  6910. ((eq org-agenda-window-setup 'other-frame)
  6911. (delete-frame))
  6912. ((eq org-agenda-window-setup 'other-tab)
  6913. (if (fboundp 'tab-bar-close-tab)
  6914. (tab-bar-close-tab)
  6915. (user-error "Your version of Emacs does not have tab bar mode support")))
  6916. ((and org-agenda-restore-windows-after-quit
  6917. wconf)
  6918. ;; Maybe restore the pre-agenda window configuration. Reset
  6919. ;; `org-agenda-pre-window-conf' before running
  6920. ;; `set-window-configuration', which loses the current buffer.
  6921. (setq org-agenda-pre-window-conf nil)
  6922. (set-window-configuration wconf))
  6923. (t
  6924. (when org-agenda-last-indirect-window
  6925. (delete-window org-agenda-last-indirect-window))
  6926. (and (not (eq org-agenda-window-setup 'current-window))
  6927. (not (one-window-p))
  6928. (delete-window))))
  6929. (if bury
  6930. ;; Set the agenda buffer as the current buffer instead of
  6931. ;; passing it as an argument to `bury-buffer' so that
  6932. ;; `bury-buffer' removes it from the window.
  6933. (with-current-buffer buf
  6934. (bury-buffer))
  6935. (kill-buffer buf)
  6936. (setq org-agenda-archives-mode nil
  6937. org-agenda-buffer nil)))))
  6938. (defun org-agenda-exit ()
  6939. "Exit the agenda, killing Org buffers loaded by the agenda.
  6940. Like `org-agenda-Quit', but kill any buffers that were created by
  6941. the agenda. Org buffers visited directly by the user will not be
  6942. touched. Also, exit the agenda even if it is in column view."
  6943. (interactive)
  6944. (when org-agenda-columns-active
  6945. (org-columns-quit))
  6946. (org-release-buffers org-agenda-new-buffers)
  6947. (setq org-agenda-new-buffers nil)
  6948. (org-agenda-Quit))
  6949. (defun org-agenda-kill-all-agenda-buffers ()
  6950. "Kill all buffers in `org-agenda-mode'.
  6951. This is used when toggling sticky agendas."
  6952. (interactive)
  6953. (let (blist)
  6954. (dolist (buf (buffer-list))
  6955. (when (with-current-buffer buf (eq major-mode 'org-agenda-mode))
  6956. (push buf blist)))
  6957. (mapc 'kill-buffer blist)))
  6958. (defun org-agenda-execute (arg)
  6959. "Execute another agenda command, keeping same window.
  6960. So this is just a shortcut for \\<global-map>`\\[org-agenda]', available
  6961. in the agenda."
  6962. (interactive "P")
  6963. (let ((org-agenda-window-setup 'current-window))
  6964. (org-agenda arg)))
  6965. (defun org-agenda-redo (&optional all)
  6966. "Rebuild possibly ALL agenda view(s) in the current buffer."
  6967. (interactive "P")
  6968. (let* ((p (or (and (looking-at "\\'") (1- (point))) (point)))
  6969. (cpa (unless (eq all t) current-prefix-arg))
  6970. (org-agenda-doing-sticky-redo org-agenda-sticky)
  6971. (org-agenda-sticky nil)
  6972. (org-agenda-buffer-name (or org-agenda-this-buffer-name
  6973. org-agenda-buffer-name))
  6974. (org-agenda-keep-modes t)
  6975. (tag-filter org-agenda-tag-filter)
  6976. (tag-preset (get 'org-agenda-tag-filter :preset-filter))
  6977. (top-hl-filter org-agenda-top-headline-filter)
  6978. (cat-filter org-agenda-category-filter)
  6979. (cat-preset (get 'org-agenda-category-filter :preset-filter))
  6980. (re-filter org-agenda-regexp-filter)
  6981. (re-preset (get 'org-agenda-regexp-filter :preset-filter))
  6982. (effort-filter org-agenda-effort-filter)
  6983. (effort-preset (get 'org-agenda-effort-filter :preset-filter))
  6984. (org-agenda-tag-filter-while-redo (or tag-filter tag-preset))
  6985. (cols org-agenda-columns-active)
  6986. (line (org-current-line))
  6987. (window-line (- line (org-current-line (window-start))))
  6988. (lprops (get 'org-agenda-redo-command 'org-lprops))
  6989. (redo-cmd (get-text-property p 'org-redo-cmd))
  6990. (last-args (get-text-property p 'org-last-args))
  6991. (org-agenda-overriding-cmd (get-text-property p 'org-series-cmd))
  6992. (org-agenda-overriding-cmd-arguments
  6993. (unless (eq all t)
  6994. (cond ((listp last-args)
  6995. (cons (or cpa (car last-args)) (cdr last-args)))
  6996. ((stringp last-args)
  6997. last-args))))
  6998. (series-redo-cmd (get-text-property p 'org-series-redo-cmd)))
  6999. (put 'org-agenda-tag-filter :preset-filter nil)
  7000. (put 'org-agenda-category-filter :preset-filter nil)
  7001. (put 'org-agenda-regexp-filter :preset-filter nil)
  7002. (put 'org-agenda-effort-filter :preset-filter nil)
  7003. (and cols (org-columns-quit))
  7004. (message "Rebuilding agenda buffer...")
  7005. (if series-redo-cmd
  7006. (eval series-redo-cmd)
  7007. (org-let lprops redo-cmd))
  7008. (setq org-agenda-undo-list nil
  7009. org-agenda-pending-undo-list nil
  7010. org-agenda-tag-filter tag-filter
  7011. org-agenda-category-filter cat-filter
  7012. org-agenda-regexp-filter re-filter
  7013. org-agenda-effort-filter effort-filter
  7014. org-agenda-top-headline-filter top-hl-filter)
  7015. (message "Rebuilding agenda buffer...done")
  7016. (put 'org-agenda-tag-filter :preset-filter tag-preset)
  7017. (put 'org-agenda-category-filter :preset-filter cat-preset)
  7018. (put 'org-agenda-regexp-filter :preset-filter re-preset)
  7019. (put 'org-agenda-effort-filter :preset-filter effort-preset)
  7020. (let ((tag (or tag-filter tag-preset))
  7021. (cat (or cat-filter cat-preset))
  7022. (effort (or effort-filter effort-preset))
  7023. (re (or re-filter re-preset)))
  7024. (when tag (org-agenda-filter-apply tag 'tag t))
  7025. (when cat (org-agenda-filter-apply cat 'category))
  7026. (when effort (org-agenda-filter-apply effort 'effort))
  7027. (when re (org-agenda-filter-apply re 'regexp)))
  7028. (and top-hl-filter (org-agenda-filter-top-headline-apply top-hl-filter))
  7029. (and cols (called-interactively-p 'any) (org-agenda-columns))
  7030. (org-goto-line line)
  7031. (when (called-interactively-p 'any) (recenter window-line))))
  7032. (defun org-agenda-redo-all (&optional exhaustive)
  7033. "Rebuild all agenda views in the current buffer.
  7034. With a prefix argument, do so in all agenda buffers."
  7035. (interactive "P")
  7036. (if exhaustive
  7037. (dolist (buffer (buffer-list))
  7038. (with-current-buffer buffer
  7039. (when (derived-mode-p 'org-agenda-mode)
  7040. (org-agenda-redo t))))
  7041. (org-agenda-redo t)))
  7042. (defvar org-global-tags-completion-table nil)
  7043. (defvar org-agenda-filter-form nil)
  7044. (defvar org-agenda-filtered-by-category nil)
  7045. (defsubst org-agenda-get-category ()
  7046. "Return the category of the agenda line."
  7047. (org-get-at-bol 'org-category))
  7048. (defun org-agenda-filter-by-category (strip)
  7049. "Filter lines in the agenda buffer that have a specific category.
  7050. The category is that of the current line.
  7051. With a `\\[universal-argument]' prefix argument, exclude the lines of that category.
  7052. When there is already a category filter in place, this command removes the
  7053. filter."
  7054. (interactive "P")
  7055. (if (and org-agenda-filtered-by-category
  7056. org-agenda-category-filter)
  7057. (org-agenda-filter-show-all-cat)
  7058. (let ((cat (org-no-properties (org-get-at-eol 'org-category 1))))
  7059. (cond
  7060. ((and cat strip)
  7061. (org-agenda-filter-apply
  7062. (push (concat "-" cat) org-agenda-category-filter) 'category))
  7063. (cat
  7064. (org-agenda-filter-apply
  7065. (setq org-agenda-category-filter
  7066. (list (concat "+" cat)))
  7067. 'category))
  7068. (t (error "No category at point"))))))
  7069. (defun org-find-top-headline (&optional pos)
  7070. "Find the topmost parent headline and return it.
  7071. POS when non-nil is the marker or buffer position to start the
  7072. search from."
  7073. (save-excursion
  7074. (with-current-buffer (if (markerp pos) (marker-buffer pos) (current-buffer))
  7075. (when pos (goto-char pos))
  7076. ;; Skip up to the topmost parent.
  7077. (while (org-up-heading-safe))
  7078. (ignore-errors
  7079. (replace-regexp-in-string
  7080. "^\\[[0-9]+/[0-9]+\\] *\\|^\\[%[0-9]+\\] *" ""
  7081. (nth 4 (org-heading-components)))))))
  7082. (defvar org-agenda-filtered-by-top-headline nil)
  7083. (defun org-agenda-filter-by-top-headline (strip)
  7084. "Keep only those lines that are descendants from the same top headline.
  7085. The top headline is that of the current line. With prefix arg STRIP, hide
  7086. all lines of the category at point."
  7087. (interactive "P")
  7088. (if org-agenda-filtered-by-top-headline
  7089. (progn
  7090. (setq org-agenda-filtered-by-top-headline nil
  7091. org-agenda-top-headline-filter nil)
  7092. (org-agenda-filter-show-all-top-filter))
  7093. (let ((toph (org-find-top-headline (org-get-at-bol 'org-hd-marker))))
  7094. (if toph (org-agenda-filter-top-headline-apply toph strip)
  7095. (error "No top-level headline at point")))))
  7096. (defvar org-agenda-regexp-filter nil)
  7097. (defun org-agenda-filter-by-regexp (strip-or-accumulate)
  7098. "Filter agenda entries by a regular expressions.
  7099. You will be prompted for the regular expression, and the agenda
  7100. view will only show entries that are matched by that expression.
  7101. With one `\\[universal-argument]' prefix argument, hide entries matching the regexp.
  7102. When there is already a regexp filter active, this command removed the
  7103. filter. However, with two `\\[universal-argument]' prefix arguments, add a new condition to
  7104. an already existing regexp filter."
  7105. (interactive "P")
  7106. (let* ((strip (equal strip-or-accumulate '(4)))
  7107. (accumulate (equal strip-or-accumulate '(16))))
  7108. (cond
  7109. ((and org-agenda-regexp-filter (not accumulate))
  7110. (org-agenda-filter-show-all-re)
  7111. (message "Regexp filter removed"))
  7112. (t (let ((flt (concat (if strip "-" "+")
  7113. (read-from-minibuffer
  7114. (if strip
  7115. "Hide entries matching regexp: "
  7116. "Narrow to entries matching regexp: ")))))
  7117. (push flt org-agenda-regexp-filter)
  7118. (org-agenda-filter-apply org-agenda-regexp-filter 'regexp))))))
  7119. (defvar org-agenda-effort-filter nil)
  7120. (defun org-agenda-filter-by-effort (strip-or-accumulate)
  7121. "Filter agenda entries by effort.
  7122. With no `\\[universal-argument]' prefix argument, keep entries matching the effort condition.
  7123. With one `\\[universal-argument]' prefix argument, filter out entries matching the condition.
  7124. With two `\\[universal-argument]' prefix arguments, add a second condition to the existing filter.
  7125. This last option is in practice not very useful, but it is available for
  7126. consistency with the other filter commands."
  7127. (interactive "P")
  7128. (let* ((efforts (split-string
  7129. (or (cdr (assoc-string (concat org-effort-property "_ALL")
  7130. org-global-properties
  7131. t))
  7132. "0 0:10 0:30 1:00 2:00 3:00 4:00 5:00 6:00 7:00")))
  7133. ;; XXX: the following handles only up to 10 different
  7134. ;; effort values.
  7135. (allowed-keys (if (null efforts) nil
  7136. (mapcar (lambda (n) (mod n 10)) ;turn 10 into 0
  7137. (number-sequence 1 (length efforts)))))
  7138. (keep (equal strip-or-accumulate '(16)))
  7139. (negative (equal strip-or-accumulate '(4)))
  7140. (current org-agenda-effort-filter)
  7141. (op nil))
  7142. (while (not (memq op '(?< ?> ?= ?_)))
  7143. (setq op (read-char-exclusive
  7144. "Effort operator? (> = or <) or press `_' again to remove filter")))
  7145. ;; Select appropriate duration. Ignore non-digit characters.
  7146. (if (eq op ?_)
  7147. (progn
  7148. (org-agenda-filter-show-all-effort)
  7149. (message "Effort filter removed"))
  7150. (let ((prompt
  7151. (apply #'format
  7152. (concat "Effort %c "
  7153. (mapconcat (lambda (s) (concat "[%d]" s))
  7154. efforts
  7155. " "))
  7156. op allowed-keys))
  7157. (eff -1))
  7158. (while (not (memq eff allowed-keys))
  7159. (message prompt)
  7160. (setq eff (- (read-char-exclusive) 48)))
  7161. (org-agenda-filter-show-all-effort)
  7162. (setq org-agenda-effort-filter
  7163. (append
  7164. (list (concat (if negative "-" "+")
  7165. (char-to-string op)
  7166. ;; Numbering is 1 2 3 ... 9 0, but we want
  7167. ;; 0 1 2 ... 8 9.
  7168. (nth (mod (1- eff) 10) efforts)))
  7169. (if keep current nil)))
  7170. (org-agenda-filter-apply org-agenda-effort-filter 'effort)))))
  7171. (defun org-agenda-filter (&optional strip-or-accumulate)
  7172. "Prompt for a general filter string and apply it to the agenda.
  7173. The string may contain filter elements like
  7174. +category
  7175. +tag
  7176. +<effort > and = are also allowed as effort operators
  7177. +/regexp/
  7178. Instead of `+', `-' is allowed to strip the agenda of matching entries.
  7179. `+' is optional if it is not required to separate two string parts.
  7180. Multiple filter elements can be concatenated without spaces, for example
  7181. +work-John<0:10-/plot/
  7182. selects entries with category `work' and effort estimates below 10 minutes,
  7183. and deselects entries with tag `John' or matching the regexp `plot'.
  7184. During entry of the filter, completion for tags, categories and effort
  7185. values is offered. Since the syntax for categories and tags is identical
  7186. there should be no overlap between categories and tags. If there is, tags
  7187. get priority.
  7188. A single `\\[universal-argument]' prefix arg STRIP-OR-ACCUMULATE will negate the
  7189. entire filter, which can be useful in connection with the prompt history.
  7190. A double `\\[universal-argument] \\[universal-argument]' prefix arg will add the new filter elements to the
  7191. existing ones. A shortcut for this is to add an additional `+' at the
  7192. beginning of the string, like `+-John'.
  7193. With a triple prefix argument, execute the computed filtering defined in
  7194. the variable `org-agenda-auto-exclude-function'."
  7195. (interactive "P")
  7196. (if (equal strip-or-accumulate '(64))
  7197. ;; Execute the auto-exclude action
  7198. (if (not org-agenda-auto-exclude-function)
  7199. (user-error "`org-agenda-auto-exclude-function' is undefined")
  7200. (org-agenda-filter-show-all-tag)
  7201. (setq org-agenda-tag-filter nil)
  7202. (dolist (tag (org-agenda-get-represented-tags))
  7203. (let ((modifier (funcall org-agenda-auto-exclude-function tag)))
  7204. (when modifier
  7205. (push modifier org-agenda-tag-filter))))
  7206. (unless (null org-agenda-tag-filter)
  7207. (org-agenda-filter-apply org-agenda-tag-filter 'tag 'expand)))
  7208. ;; Prompt for a filter and act
  7209. (let* ((tag-list (org-agenda-get-represented-tags))
  7210. (category-list (org-agenda-get-represented-categories))
  7211. (negate (equal strip-or-accumulate '(4)))
  7212. (cf (mapconcat #'identity org-agenda-category-filter ""))
  7213. (tf (mapconcat #'identity org-agenda-tag-filter ""))
  7214. (rpl-fn (lambda (c) (replace-regexp-in-string "^\\+" "" (or (car c) ""))))
  7215. (ef (replace-regexp-in-string "^\\+" "" (or (car org-agenda-effort-filter) "")))
  7216. (rf (replace-regexp-in-string "^\\+" "" (or (car org-agenda-regexp-filter) "")))
  7217. (ff (concat cf tf ef (when (not (equal rf "")) (concat "/" rf "/"))))
  7218. (f-string (completing-read
  7219. (concat
  7220. (if negate "Negative filter" "Filter")
  7221. " [+cat-tag<0:10-/regexp/]: ")
  7222. 'org-agenda-filter-completion-function
  7223. nil nil ff))
  7224. (keep (or (if (string-match "^\\+[+-]" f-string)
  7225. (progn (setq f-string (substring f-string 1)) t))
  7226. (equal strip-or-accumulate '(16))))
  7227. (fc (if keep org-agenda-category-filter))
  7228. (ft (if keep org-agenda-tag-filter))
  7229. (fe (if keep org-agenda-effort-filter))
  7230. (fr (if keep org-agenda-regexp-filter))
  7231. pm s)
  7232. ;; If the filter contains a double-quoted string, replace a
  7233. ;; single hyphen by the arbitrary and temporary string "~~~"
  7234. ;; to disambiguate such hyphens from syntactic ones.
  7235. (setq f-string (replace-regexp-in-string
  7236. "\"\\([^\"]*\\)-\\([^\"]*\\)\"" "\"\\1~~~\\2\"" f-string))
  7237. (while (string-match "^[ \t]*\\([-+]\\)?\\(\\([^-+<>=/ \t]+\\)\\|\\([<>=][0-9:]+\\)\\|\\(/\\([^/]+\\)/?\\)\\)" f-string)
  7238. (setq pm (if (match-beginning 1) (match-string 1 f-string) "+"))
  7239. (when negate
  7240. (setq pm (if (equal pm "+") "-" "+")))
  7241. (cond
  7242. ((match-beginning 3)
  7243. ;; category or tag
  7244. (setq s (replace-regexp-in-string ; Remove the temporary special string.
  7245. "~~~" "-" (match-string 3 f-string)))
  7246. (cond
  7247. ((member (downcase s) tag-list)
  7248. (add-to-list 'ft (concat pm (downcase s)) 'append 'equal))
  7249. ((member s category-list)
  7250. (add-to-list 'fc (concat pm ; Remove temporary double quotes.
  7251. (replace-regexp-in-string "\"\\(.*\\)\"" "\\1" s))
  7252. 'append 'equal))
  7253. (t (message
  7254. "`%s%s' filter ignored because tag/category is not represented"
  7255. pm s))))
  7256. ((match-beginning 4)
  7257. ;; effort
  7258. (add-to-list 'fe (concat pm (match-string 4 f-string)) t 'equal))
  7259. ((match-beginning 5)
  7260. ;; regexp
  7261. (add-to-list 'fr (concat pm (match-string 6 f-string)) t 'equal)))
  7262. (setq f-string (substring f-string (match-end 0))))
  7263. (org-agenda-filter-remove-all)
  7264. (and fc (org-agenda-filter-apply
  7265. (setq org-agenda-category-filter fc) 'category))
  7266. (and ft (org-agenda-filter-apply
  7267. (setq org-agenda-tag-filter ft) 'tag 'expand))
  7268. (and fe (org-agenda-filter-apply
  7269. (setq org-agenda-effort-filter fe) 'effort))
  7270. (and fr (org-agenda-filter-apply
  7271. (setq org-agenda-regexp-filter fr) 'regexp))
  7272. (run-hooks 'org-agenda-filter-hook))))
  7273. (defun org-agenda-filter-completion-function (string _predicate &optional flag)
  7274. "Complete a complex filter string.
  7275. FLAG specifies the type of completion operation to perform. This
  7276. function is passed as a collection function to `completing-read',
  7277. which see."
  7278. (let ((completion-ignore-case t) ;tags are case-sensitive
  7279. (confirm (lambda (x) (stringp x)))
  7280. (prefix "")
  7281. (operator "")
  7282. table)
  7283. (when (string-match "^\\(.*\\([-+<>=]\\)\\)\\([^-+<>=]*\\)$" string)
  7284. (setq prefix (match-string 1 string)
  7285. operator (match-string 2 string)
  7286. string (match-string 3 string)))
  7287. (cond
  7288. ((member operator '("+" "-" "" nil))
  7289. (setq table (append (org-agenda-get-represented-categories)
  7290. (org-agenda-get-represented-tags))))
  7291. ((member operator '("<" ">" "="))
  7292. (setq table (split-string
  7293. (or (cdr (assoc-string (concat org-effort-property "_ALL")
  7294. org-global-properties
  7295. t))
  7296. "0 0:10 0:30 1:00 2:00 3:00 4:00 5:00 6:00 7:00")
  7297. " +")))
  7298. (t (setq table nil)))
  7299. (pcase flag
  7300. (`t (all-completions string table confirm))
  7301. (`lambda (assoc string table)) ;exact match?
  7302. (`nil
  7303. (pcase (try-completion string table confirm)
  7304. ((and completion (pred stringp))
  7305. (concat prefix completion))
  7306. (completion completion)))
  7307. (_ nil))))
  7308. (defun org-agenda-filter-remove-all ()
  7309. "Remove all filters from the current agenda buffer."
  7310. (interactive)
  7311. (when org-agenda-tag-filter
  7312. (org-agenda-filter-show-all-tag))
  7313. (when org-agenda-category-filter
  7314. (org-agenda-filter-show-all-cat))
  7315. (when org-agenda-regexp-filter
  7316. (org-agenda-filter-show-all-re))
  7317. (when org-agenda-top-headline-filter
  7318. (org-agenda-filter-show-all-top-filter))
  7319. (when org-agenda-effort-filter
  7320. (org-agenda-filter-show-all-effort))
  7321. (org-agenda-finalize)
  7322. (when (called-interactively-p 'interactive)
  7323. (message "All agenda filters removed")))
  7324. (defun org-agenda-filter-by-tag (strip-or-accumulate &optional char exclude)
  7325. "Keep only those lines in the agenda buffer that have a specific tag.
  7326. The tag is selected with its fast selection letter, as configured.
  7327. With a `\\[universal-argument]' prefix, apply the filter negatively, stripping all matches.
  7328. With a `\\[universal-argument] \\[universal-argument]' prefix, add the new tag to the existing filter
  7329. instead of replacing it.
  7330. With a `\\[universal-argument] \\[universal-argument] \\[universal-argument]' prefix, filter the literal tag, \
  7331. i.e. don't
  7332. filter on all its group members.
  7333. A lisp caller can specify CHAR. EXCLUDE means that the new tag
  7334. should be used to exclude the search - the interactive user can
  7335. also press `-' or `+' to switch between filtering and excluding."
  7336. (interactive "P")
  7337. (let* ((alist org-tag-alist-for-agenda)
  7338. (seen-chars nil)
  7339. (tag-chars (mapconcat
  7340. (lambda (x) (if (and (not (symbolp (car x)))
  7341. (cdr x)
  7342. (not (member (cdr x) seen-chars)))
  7343. (progn
  7344. (push (cdr x) seen-chars)
  7345. (char-to-string (cdr x)))
  7346. ""))
  7347. org-tag-alist-for-agenda ""))
  7348. (valid-char-list (append '(?\t ?\r ?\\ ?. ?\s ?q)
  7349. (string-to-list tag-chars)))
  7350. (exclude (or exclude (equal strip-or-accumulate '(4))))
  7351. (accumulate (equal strip-or-accumulate '(16)))
  7352. (expand (not (equal strip-or-accumulate '(64))))
  7353. (inhibit-read-only t)
  7354. (current org-agenda-tag-filter)
  7355. a n tag)
  7356. (unless char
  7357. (while (not (memq char valid-char-list))
  7358. (org-unlogged-message
  7359. "%s by tag%s: [%s ]tag-char [TAB]tag %s[\\]off [q]uit"
  7360. (if exclude "Exclude[+]" "Filter[-]")
  7361. (if expand "" " (no grouptag expand)")
  7362. tag-chars
  7363. (if org-agenda-auto-exclude-function "[RET] " ""))
  7364. (setq char (read-char-exclusive))
  7365. ;; Excluding or filtering down
  7366. (cond ((eq char ?-) (setq exclude t))
  7367. ((eq char ?+) (setq exclude nil)))))
  7368. (when (eq char ?\t)
  7369. (unless (local-variable-p 'org-global-tags-completion-table)
  7370. (setq-local org-global-tags-completion-table
  7371. (org-global-tags-completion-table)))
  7372. (let ((completion-ignore-case t))
  7373. (setq tag (completing-read
  7374. "Tag: " org-global-tags-completion-table nil t))))
  7375. (cond
  7376. ((eq char ?\r)
  7377. (org-agenda-filter-show-all-tag)
  7378. (when org-agenda-auto-exclude-function
  7379. (setq org-agenda-tag-filter nil)
  7380. (dolist (tag (org-agenda-get-represented-tags))
  7381. (let ((modifier (funcall org-agenda-auto-exclude-function tag)))
  7382. (when modifier
  7383. (push modifier org-agenda-tag-filter))))
  7384. (unless (null org-agenda-tag-filter)
  7385. (org-agenda-filter-apply org-agenda-tag-filter 'tag expand))))
  7386. ((eq char ?\\)
  7387. (org-agenda-filter-show-all-tag)
  7388. (when (get 'org-agenda-tag-filter :preset-filter)
  7389. (org-agenda-filter-apply org-agenda-tag-filter 'tag expand)))
  7390. ((eq char ?.)
  7391. (setq org-agenda-tag-filter
  7392. (mapcar (lambda(tag) (concat "+" tag))
  7393. (org-get-at-bol 'tags)))
  7394. (org-agenda-filter-apply org-agenda-tag-filter 'tag expand))
  7395. ((eq char ?q)) ;If q, abort (even if there is a q-key for a tag...)
  7396. ((or (eq char ?\s)
  7397. (setq a (rassoc char alist))
  7398. (and tag (setq a (cons tag nil))))
  7399. (org-agenda-filter-show-all-tag)
  7400. (setq tag (car a))
  7401. (setq org-agenda-tag-filter
  7402. (cons (concat (if exclude "-" "+") tag)
  7403. (if accumulate current nil)))
  7404. (org-agenda-filter-apply org-agenda-tag-filter 'tag expand))
  7405. (t (error "Invalid tag selection character %c" char)))))
  7406. (defun org-agenda-get-represented-categories ()
  7407. "Return a list of all categories used in this agenda buffer."
  7408. (or org-agenda-represented-categories
  7409. (when (derived-mode-p 'org-agenda-mode)
  7410. (let ((pos (point-min)) categories)
  7411. (while (and (< pos (point-max))
  7412. (setq pos (next-single-property-change
  7413. pos 'org-category nil (point-max))))
  7414. (push (get-text-property pos 'org-category) categories))
  7415. (setq org-agenda-represented-categories
  7416. ;; Enclose category names with a hyphen in double
  7417. ;; quotes to process them specially in `org-agenda-filter'.
  7418. (mapcar (lambda (s) (if (string-match-p "-" s) (format "\"%s\"" s) s))
  7419. (nreverse (org-uniquify (delq nil categories)))))))))
  7420. (defvar org-tag-groups-alist-for-agenda)
  7421. (defun org-agenda-get-represented-tags ()
  7422. "Return a list of all tags used in this agenda buffer.
  7423. These will be lower-case, for filtering."
  7424. (or org-agenda-represented-tags
  7425. (when (derived-mode-p 'org-agenda-mode)
  7426. (let ((pos (point-min)) tags-lists tt)
  7427. (while (and (< pos (point-max))
  7428. (setq pos (next-single-property-change
  7429. pos 'tags nil (point-max))))
  7430. (setq tt (get-text-property pos 'tags))
  7431. (if tt (push tt tags-lists)))
  7432. (setq tags-lists
  7433. (nreverse (org-uniquify
  7434. (delq nil (apply 'append tags-lists)))))
  7435. (dolist (tag tags-lists)
  7436. (mapc
  7437. (lambda (group)
  7438. (when (member tag (mapcar #'downcase group))
  7439. (push (downcase (car group)) tags-lists)))
  7440. org-tag-groups-alist-for-agenda))
  7441. (setq org-agenda-represented-tags tags-lists)))))
  7442. (defun org-agenda-filter-make-matcher (filter type &optional expand)
  7443. "Create the form that tests a line for agenda filter. Optional
  7444. argument EXPAND can be used for the TYPE tag and will expand the
  7445. tags in the FILTER if any of the tags in FILTER are grouptags."
  7446. (let ((multi-pos-cats
  7447. (and (eq type 'category)
  7448. (string-match-p "\\+.*\\+"
  7449. (mapconcat (lambda (cat) (substring cat 0 1))
  7450. filter ""))))
  7451. f f1)
  7452. (cond
  7453. ;; Tag filter
  7454. ((eq type 'tag)
  7455. (setq filter
  7456. (delete-dups
  7457. (append (get 'org-agenda-tag-filter :preset-filter)
  7458. filter)))
  7459. (dolist (x filter)
  7460. (let ((op (string-to-char x)))
  7461. (if expand (setq x (org-agenda-filter-expand-tags (list x) t))
  7462. (setq x (list x)))
  7463. (setq f1 (org-agenda-filter-make-matcher-tag-exp x op))
  7464. (push f1 f))))
  7465. ;; Category filter
  7466. ((eq type 'category)
  7467. (setq filter
  7468. (delete-dups
  7469. (append (get 'org-agenda-category-filter :preset-filter)
  7470. filter)))
  7471. (dolist (x filter)
  7472. (if (equal "-" (substring x 0 1))
  7473. (setq f1 (list 'not (list 'equal (substring x 1) 'cat)))
  7474. (setq f1 (list 'equal (substring x 1) 'cat)))
  7475. (push f1 f)))
  7476. ;; Regexp filter
  7477. ((eq type 'regexp)
  7478. (setq filter
  7479. (delete-dups
  7480. (append (get 'org-agenda-regexp-filter :preset-filter)
  7481. filter)))
  7482. (dolist (x filter)
  7483. (if (equal "-" (substring x 0 1))
  7484. (setq f1 (list 'not (list 'string-match (substring x 1) 'txt)))
  7485. (setq f1 (list 'string-match (substring x 1) 'txt)))
  7486. (push f1 f)))
  7487. ;; Effort filter
  7488. ((eq type 'effort)
  7489. (setq filter
  7490. (delete-dups
  7491. (append (get 'org-agenda-effort-filter :preset-filter)
  7492. filter)))
  7493. (dolist (x filter)
  7494. (push (org-agenda-filter-effort-form x) f))))
  7495. (cons (if multi-pos-cats 'or 'and) (nreverse f))))
  7496. (defun org-agenda-filter-make-matcher-tag-exp (tags op)
  7497. "Return a form associated to tag-expression TAGS.
  7498. Build a form testing a line for agenda filter for
  7499. tag-expressions. OP is an operator of type CHAR that allows the
  7500. function to set the right switches in the returned form."
  7501. (let (form)
  7502. ;; Any of the expressions can match if OP is +, all must match if
  7503. ;; the operator is -.
  7504. (dolist (x tags (cons (if (eq op ?-) 'and 'or) form))
  7505. (let* ((tag (substring x 1))
  7506. (f (cond
  7507. ((string= "" tag) 'tags)
  7508. ((and (string-match-p "\\`{" tag) (string-match-p "}\\'" tag))
  7509. ;; TAG is a regexp.
  7510. (list 'org-match-any-p (substring tag 1 -1) 'tags))
  7511. (t (list 'member (downcase tag) 'tags)))))
  7512. (push (if (eq op ?-) (list 'not f) f) form)))))
  7513. (defun org-agenda-filter-effort-form (e)
  7514. "Return the form to compare the effort of the current line with what E says.
  7515. E looks like \"+<2:25\"."
  7516. (let (op)
  7517. (setq e (substring e 1))
  7518. (setq op (string-to-char e) e (substring e 1))
  7519. (setq op (cond ((equal op ?<) '<=)
  7520. ((equal op ?>) '>=)
  7521. ((equal op ??) op)
  7522. (t '=)))
  7523. (list 'org-agenda-compare-effort (list 'quote op)
  7524. (org-duration-to-minutes e))))
  7525. (defun org-agenda-compare-effort (op value)
  7526. "Compare the effort of the current line with VALUE, using OP.
  7527. If the line does not have an effort defined, return nil."
  7528. ;; `effort-minutes' property cannot be extracted directly from
  7529. ;; current line but is stored as a property in `txt'.
  7530. (let ((effort (get-text-property 0 'effort-minutes (org-get-at-bol 'txt))))
  7531. (funcall op
  7532. (or effort (if org-agenda-sort-noeffort-is-high 32767 -1))
  7533. value)))
  7534. (defun org-agenda-filter-expand-tags (filter &optional no-operator)
  7535. "Expand group tags in FILTER for the agenda.
  7536. When NO-OPERATOR is non-nil, do not add the + operator to
  7537. returned tags."
  7538. (if org-group-tags
  7539. (let ((case-fold-search t) rtn)
  7540. (mapc
  7541. (lambda (f)
  7542. (let (f0 dir)
  7543. (if (string-match "^\\([+-]\\)\\(.+\\)" f)
  7544. (setq dir (match-string 1 f) f0 (match-string 2 f))
  7545. (setq dir (if no-operator "" "+") f0 f))
  7546. (setq rtn (append (mapcar (lambda(f1) (concat dir f1))
  7547. (org-tags-expand f0 t t))
  7548. rtn))))
  7549. filter)
  7550. (reverse rtn))
  7551. filter))
  7552. (defun org-agenda-filter-apply (filter type &optional expand)
  7553. "Set FILTER as the new agenda filter and apply it.
  7554. Optional argument EXPAND can be used for the TYPE tag and will
  7555. expand the tags in the FILTER if any of the tags in FILTER are
  7556. grouptags."
  7557. ;; Deactivate `org-agenda-entry-text-mode' when filtering
  7558. (when org-agenda-entry-text-mode (org-agenda-entry-text-mode))
  7559. (setq org-agenda-filter-form (org-agenda-filter-make-matcher
  7560. filter type expand))
  7561. ;; Only set `org-agenda-filtered-by-category' to t when a unique
  7562. ;; category is used as the filter:
  7563. (setq org-agenda-filtered-by-category
  7564. (and (eq type 'category)
  7565. (not (equal (substring (car filter) 0 1) "-"))))
  7566. (org-agenda-set-mode-name)
  7567. (save-excursion
  7568. (goto-char (point-min))
  7569. (while (not (eobp))
  7570. (when (or (org-get-at-bol 'org-hd-marker)
  7571. (org-get-at-bol 'org-marker))
  7572. (let ((tags (org-get-at-bol 'tags))
  7573. (cat (org-agenda-get-category))
  7574. (txt (or (org-get-at-bol 'txt) "")))
  7575. (unless (eval org-agenda-filter-form)
  7576. (org-agenda-filter-hide-line type))))
  7577. (beginning-of-line 2)))
  7578. (when (get-char-property (point) 'invisible)
  7579. (ignore-errors (org-agenda-previous-line))))
  7580. (defun org-agenda-filter-top-headline-apply (hl &optional negative)
  7581. "Filter by top headline HL."
  7582. (org-agenda-set-mode-name)
  7583. (save-excursion
  7584. (goto-char (point-min))
  7585. (while (not (eobp))
  7586. (let* ((pos (org-get-at-bol 'org-hd-marker))
  7587. (tophl (and pos (org-find-top-headline pos))))
  7588. (when (and tophl (funcall (if negative 'identity 'not)
  7589. (string= hl tophl)))
  7590. (org-agenda-filter-hide-line 'top-headline)))
  7591. (beginning-of-line 2)))
  7592. (when (get-char-property (point) 'invisible)
  7593. (org-agenda-previous-line))
  7594. (setq org-agenda-top-headline-filter hl
  7595. org-agenda-filtered-by-top-headline t))
  7596. (defun org-agenda-filter-hide-line (type)
  7597. "If current line is TYPE, hide it in the agenda buffer."
  7598. (let* (buffer-invisibility-spec
  7599. (beg (max (point-min) (1- (point-at-bol))))
  7600. (end (point-at-eol)))
  7601. (let ((inhibit-read-only t))
  7602. (add-text-properties
  7603. beg end `(invisible org-filtered org-filter-type ,type)))))
  7604. (defun org-agenda-remove-filter (type)
  7605. "Remove filter of type TYPE from the agenda buffer."
  7606. (interactive)
  7607. (save-excursion
  7608. (goto-char (point-min))
  7609. (let ((inhibit-read-only t) pos)
  7610. (while (setq pos (text-property-any (point) (point-max)
  7611. 'org-filter-type type))
  7612. (goto-char pos)
  7613. (remove-text-properties
  7614. (point) (next-single-property-change (point) 'org-filter-type)
  7615. `(invisible org-filtered org-filter-type ,type))))
  7616. (set (intern (format "org-agenda-%s-filter" (intern-soft type))) nil)
  7617. (setq org-agenda-filter-form nil)
  7618. (org-agenda-set-mode-name)
  7619. (org-agenda-finalize)))
  7620. (defun org-agenda-filter-show-all-tag nil
  7621. (org-agenda-remove-filter 'tag))
  7622. (defun org-agenda-filter-show-all-re nil
  7623. (org-agenda-remove-filter 'regexp))
  7624. (defun org-agenda-filter-show-all-effort nil
  7625. (org-agenda-remove-filter 'effort))
  7626. (defun org-agenda-filter-show-all-cat nil
  7627. (org-agenda-remove-filter 'category))
  7628. (defun org-agenda-filter-show-all-top-filter nil
  7629. (org-agenda-remove-filter 'top-headline))
  7630. (defun org-agenda-manipulate-query-add ()
  7631. "Manipulate the query by adding a search term with positive selection.
  7632. Positive selection means the term must be matched for selection of an entry."
  7633. (interactive)
  7634. (org-agenda-manipulate-query ?\[))
  7635. (defun org-agenda-manipulate-query-subtract ()
  7636. "Manipulate the query by adding a search term with negative selection.
  7637. Negative selection means term must not be matched for selection of an entry."
  7638. (interactive)
  7639. (org-agenda-manipulate-query ?\]))
  7640. (defun org-agenda-manipulate-query-add-re ()
  7641. "Manipulate the query by adding a search regexp with positive selection.
  7642. Positive selection means the regexp must match for selection of an entry."
  7643. (interactive)
  7644. (org-agenda-manipulate-query ?\{))
  7645. (defun org-agenda-manipulate-query-subtract-re ()
  7646. "Manipulate the query by adding a search regexp with negative selection.
  7647. Negative selection means regexp must not match for selection of an entry."
  7648. (interactive)
  7649. (org-agenda-manipulate-query ?\}))
  7650. (defun org-agenda-manipulate-query (char)
  7651. (cond
  7652. ((eq org-agenda-type 'agenda)
  7653. (let ((org-agenda-include-inactive-timestamps t))
  7654. (org-agenda-redo))
  7655. (message "Display now includes inactive timestamps as well"))
  7656. ((eq org-agenda-type 'search)
  7657. (org-add-to-string
  7658. 'org-agenda-query-string
  7659. (if org-agenda-last-search-view-search-was-boolean
  7660. (cdr (assoc char '((?\[ . " +") (?\] . " -")
  7661. (?\{ . " +{}") (?\} . " -{}"))))
  7662. " "))
  7663. (setq org-agenda-redo-command
  7664. (list 'org-search-view
  7665. (car (get-text-property (min (1- (point-max)) (point))
  7666. 'org-last-args))
  7667. org-agenda-query-string
  7668. (+ (length org-agenda-query-string)
  7669. (if (member char '(?\{ ?\})) 0 1))))
  7670. (set-register org-agenda-query-register org-agenda-query-string)
  7671. (let ((org-agenda-overriding-arguments
  7672. (cdr org-agenda-redo-command)))
  7673. (org-agenda-redo)))
  7674. (t (error "Cannot manipulate query for %s-type agenda buffers"
  7675. org-agenda-type))))
  7676. (defun org-add-to-string (var string)
  7677. (set var (concat (symbol-value var) string)))
  7678. (defun org-agenda-goto-date (date)
  7679. "Jump to DATE in agenda."
  7680. (interactive
  7681. (list
  7682. (let ((org-read-date-prefer-future org-agenda-jump-prefer-future))
  7683. (org-read-date))))
  7684. (let* ((day (time-to-days (org-time-string-to-time date)))
  7685. (org-agenda-sticky-orig org-agenda-sticky)
  7686. (org-agenda-buffer-tmp-name (buffer-name))
  7687. (args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7688. (0-arg (or current-prefix-arg (car args)))
  7689. (2-arg (nth 2 args))
  7690. (with-hour-p (nth 4 org-agenda-redo-command))
  7691. (newcmd (list 'org-agenda-list 0-arg date
  7692. (org-agenda-span-to-ndays
  7693. 2-arg (org-time-string-to-absolute date))
  7694. with-hour-p))
  7695. (newargs (cdr newcmd))
  7696. (inhibit-read-only t)
  7697. org-agenda-sticky)
  7698. (if (not (org-agenda-check-type t 'agenda))
  7699. (error "Not available in non-agenda views")
  7700. (add-text-properties (point-min) (point-max)
  7701. `(org-redo-cmd ,newcmd org-last-args ,newargs))
  7702. (org-agenda-redo)
  7703. (goto-char (point-min))
  7704. (while (not (or (= (or (get-text-property (point) 'day) 0) day)
  7705. (save-excursion (move-beginning-of-line 2) (eobp))))
  7706. (move-beginning-of-line 2))
  7707. (setq org-agenda-sticky org-agenda-sticky-orig
  7708. org-agenda-this-buffer-is-sticky org-agenda-sticky))))
  7709. (defun org-agenda-goto-today ()
  7710. "Go to today."
  7711. (interactive)
  7712. (org-agenda-check-type t 'agenda)
  7713. (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7714. (curspan (nth 2 args))
  7715. (tdpos (text-property-any (point-min) (point-max) 'org-today t)))
  7716. (cond
  7717. (tdpos (goto-char tdpos))
  7718. ((eq org-agenda-type 'agenda)
  7719. (let* ((sd (org-agenda-compute-starting-span
  7720. (org-today) (or curspan org-agenda-span)))
  7721. (org-agenda-overriding-arguments args))
  7722. (setf (nth 1 org-agenda-overriding-arguments) sd)
  7723. (org-agenda-redo)
  7724. (org-agenda-find-same-or-today-or-agenda)))
  7725. (t (error "Cannot find today")))))
  7726. (defun org-agenda-find-same-or-today-or-agenda (&optional cnt)
  7727. (goto-char
  7728. (or (and cnt (text-property-any (point-min) (point-max) 'org-day-cnt cnt))
  7729. (text-property-any (point-min) (point-max) 'org-today t)
  7730. (text-property-any (point-min) (point-max) 'org-agenda-type 'agenda)
  7731. (and (get-text-property (min (1- (point-max)) (point)) 'org-series)
  7732. (org-agenda-backward-block))
  7733. (point-min))))
  7734. (defun org-agenda-backward-block ()
  7735. "Move backward by one agenda block."
  7736. (interactive)
  7737. (org-agenda-forward-block 'backward))
  7738. (defun org-agenda-forward-block (&optional backward)
  7739. "Move forward by one agenda block.
  7740. When optional argument BACKWARD is set, go backward."
  7741. (interactive)
  7742. (cond ((not (derived-mode-p 'org-agenda-mode))
  7743. (user-error
  7744. "Cannot execute this command outside of org-agenda-mode buffers"))
  7745. ((looking-at (if backward "\\`" "\\'"))
  7746. (message "Already at the %s block" (if backward "first" "last")))
  7747. (t (let ((pos (prog1 (point)
  7748. (ignore-errors (if backward (backward-char 1)
  7749. (move-end-of-line 1)))))
  7750. (f (if backward
  7751. 'previous-single-property-change
  7752. 'next-single-property-change))
  7753. moved dest)
  7754. (while (and (setq dest (funcall
  7755. f (point) 'org-agenda-structural-header))
  7756. (not (get-text-property
  7757. (point) 'org-agenda-structural-header)))
  7758. (setq moved t)
  7759. (goto-char dest))
  7760. (if moved (move-beginning-of-line 1)
  7761. (goto-char (if backward (point-min) (point-max)))
  7762. (move-beginning-of-line 1)
  7763. (message "No %s block" (if backward "previous" "further")))))))
  7764. (defun org-agenda-later (arg)
  7765. "Go forward in time by the current span.
  7766. With prefix ARG, go forward that many times the current span."
  7767. (interactive "p")
  7768. (org-agenda-check-type t 'agenda)
  7769. (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7770. (span (or (nth 2 args) org-agenda-current-span))
  7771. (sd (or (nth 1 args) (org-get-at-bol 'day) org-starting-day))
  7772. (greg (calendar-gregorian-from-absolute sd))
  7773. (cnt (org-get-at-bol 'org-day-cnt))
  7774. greg2)
  7775. (cond
  7776. ((numberp span)
  7777. (setq sd (+ (* span arg) sd)))
  7778. ((eq span 'day)
  7779. (setq sd (+ arg sd)))
  7780. ((eq span 'week)
  7781. (setq sd (+ (* 7 arg) sd)))
  7782. ((eq span 'fortnight)
  7783. (setq sd (+ (* 14 arg) sd)))
  7784. ((eq span 'month)
  7785. (setq greg2 (list (+ (car greg) arg) (nth 1 greg) (nth 2 greg))
  7786. sd (calendar-absolute-from-gregorian greg2))
  7787. (setcar greg2 (1+ (car greg2))))
  7788. ((eq span 'year)
  7789. (setq greg2 (list (car greg) (nth 1 greg) (+ arg (nth 2 greg)))
  7790. sd (calendar-absolute-from-gregorian greg2))
  7791. (setcar (nthcdr 2 greg2) (1+ (nth 2 greg2))))
  7792. (t
  7793. (setq sd (+ (* span arg) sd))))
  7794. (let ((org-agenda-overriding-cmd
  7795. ;; `cmd' may have been set by `org-agenda-run-series' which
  7796. ;; uses `org-agenda-overriding-cmd' to decide whether
  7797. ;; overriding is allowed for `cmd'
  7798. (get-text-property (min (1- (point-max)) (point)) 'org-series-cmd))
  7799. (org-agenda-overriding-arguments
  7800. (list (car args) sd span)))
  7801. (org-agenda-redo)
  7802. (org-agenda-find-same-or-today-or-agenda cnt))))
  7803. (defun org-agenda-earlier (arg)
  7804. "Go backward in time by the current span.
  7805. With prefix ARG, go backward that many times the current span."
  7806. (interactive "p")
  7807. (org-agenda-later (- arg)))
  7808. (defun org-agenda-view-mode-dispatch ()
  7809. "Call one of the view mode commands."
  7810. (interactive)
  7811. (org-unlogged-message
  7812. "View: [d]ay [w]eek for[t]night [m]onth [y]ear [SPC]reset [q]uit/abort
  7813. time[G]rid [[]inactive [f]ollow [l]og [L]og-all [c]lockcheck
  7814. [a]rch-trees [A]rch-files clock[R]eport include[D]iary [E]ntryText")
  7815. (pcase (read-char-exclusive)
  7816. (?\ (call-interactively 'org-agenda-reset-view))
  7817. (?d (call-interactively 'org-agenda-day-view))
  7818. (?w (call-interactively 'org-agenda-week-view))
  7819. (?t (call-interactively 'org-agenda-fortnight-view))
  7820. (?m (call-interactively 'org-agenda-month-view))
  7821. (?y (call-interactively 'org-agenda-year-view))
  7822. (?l (call-interactively 'org-agenda-log-mode))
  7823. (?L (org-agenda-log-mode '(4)))
  7824. (?c (org-agenda-log-mode 'clockcheck))
  7825. ((or ?F ?f) (call-interactively 'org-agenda-follow-mode))
  7826. (?a (call-interactively 'org-agenda-archives-mode))
  7827. (?A (org-agenda-archives-mode 'files))
  7828. ((or ?R ?r) (call-interactively 'org-agenda-clockreport-mode))
  7829. ((or ?E ?e) (call-interactively 'org-agenda-entry-text-mode))
  7830. (?G (call-interactively 'org-agenda-toggle-time-grid))
  7831. (?D (call-interactively 'org-agenda-toggle-diary))
  7832. (?\! (call-interactively 'org-agenda-toggle-deadlines))
  7833. (?\[ (let ((org-agenda-include-inactive-timestamps t))
  7834. (org-agenda-check-type t 'agenda)
  7835. (org-agenda-redo))
  7836. (message "Display now includes inactive timestamps as well"))
  7837. (?q (message "Abort"))
  7838. (key (user-error "Invalid key: %s" key))))
  7839. (defun org-agenda-reset-view ()
  7840. "Switch to default view for agenda."
  7841. (interactive)
  7842. (org-agenda-change-time-span org-agenda-span))
  7843. (defun org-agenda-day-view (&optional day-of-month)
  7844. "Switch to daily view for agenda.
  7845. With argument DAY-OF-MONTH, switch to that day of the month."
  7846. (interactive "P")
  7847. (org-agenda-change-time-span 'day day-of-month))
  7848. (defun org-agenda-week-view (&optional iso-week)
  7849. "Switch to weekly view for agenda.
  7850. With argument ISO-WEEK, switch to the corresponding ISO week.
  7851. If ISO-WEEK has more then 2 digits, only the last two encode
  7852. the week. Any digits before this encode a year. So 200712
  7853. means week 12 of year 2007. Years ranging from 70 years ago
  7854. to 30 years in the future can also be written as 2-digit years."
  7855. (interactive "P")
  7856. (org-agenda-change-time-span 'week iso-week))
  7857. (defun org-agenda-fortnight-view (&optional iso-week)
  7858. "Switch to fortnightly view for agenda.
  7859. With argument ISO-WEEK, switch to the corresponding ISO week.
  7860. If ISO-WEEK has more then 2 digits, only the last two encode
  7861. the week. Any digits before this encode a year. So 200712
  7862. means week 12 of year 2007. Years ranging from 70 years ago
  7863. to 30 years in the future can also be written as 2-digit years."
  7864. (interactive "P")
  7865. (org-agenda-change-time-span 'fortnight iso-week))
  7866. (defun org-agenda-month-view (&optional month)
  7867. "Switch to monthly view for agenda.
  7868. With argument MONTH, switch to that month. If MONTH has more
  7869. then 2 digits, only the last two encode the month. Any digits
  7870. before this encode a year. So 200712 means December year 2007.
  7871. Years ranging from 70 years ago to 30 years in the future can
  7872. also be written as 2-digit years."
  7873. (interactive "P")
  7874. (org-agenda-change-time-span 'month month))
  7875. (defun org-agenda-year-view (&optional year)
  7876. "Switch to yearly view for agenda.
  7877. With argument YEAR, switch to that year. Years ranging from 70
  7878. years ago to 30 years in the future can also be written as
  7879. 2-digit years."
  7880. (interactive "P")
  7881. (when year
  7882. (setq year (org-small-year-to-year year)))
  7883. (if (y-or-n-p "Are you sure you want to compute the agenda for an entire year? ")
  7884. (org-agenda-change-time-span 'year year)
  7885. (error "Abort")))
  7886. (defun org-agenda-change-time-span (span &optional n)
  7887. "Change the agenda view to SPAN.
  7888. SPAN may be `day', `week', `fortnight', `month', `year'."
  7889. (org-agenda-check-type t 'agenda)
  7890. (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7891. (curspan (nth 2 args)))
  7892. (when (and (not n) (equal curspan span))
  7893. (error "Viewing span is already \"%s\"" span))
  7894. (let* ((sd (or (org-get-at-bol 'day)
  7895. (nth 1 args)
  7896. org-starting-day))
  7897. (sd (org-agenda-compute-starting-span sd span n))
  7898. (org-agenda-overriding-cmd
  7899. (get-text-property (min (1- (point-max)) (point)) 'org-series-cmd))
  7900. (org-agenda-overriding-arguments
  7901. (list (car args) sd span)))
  7902. (org-agenda-redo)
  7903. (org-agenda-find-same-or-today-or-agenda))
  7904. (org-agenda-set-mode-name)
  7905. (message "Switched to %s view" span)))
  7906. (defun org-agenda-compute-starting-span (sd span &optional n)
  7907. "Compute starting date for agenda.
  7908. SPAN may be `day', `week', `fortnight', `month', `year'. The return value
  7909. is a cons cell with the starting date and the number of days,
  7910. so that the date SD will be in that range."
  7911. (let* ((greg (calendar-gregorian-from-absolute sd))
  7912. (dg (nth 1 greg))
  7913. (mg (car greg))
  7914. (yg (nth 2 greg)))
  7915. (cond
  7916. ((eq span 'day)
  7917. (when n
  7918. (setq sd (+ (calendar-absolute-from-gregorian
  7919. (list mg 1 yg))
  7920. n -1))))
  7921. ((or (eq span 'week) (eq span 'fortnight))
  7922. (let* ((nt (calendar-day-of-week
  7923. (calendar-gregorian-from-absolute sd)))
  7924. (d (if org-agenda-start-on-weekday
  7925. (- nt org-agenda-start-on-weekday)
  7926. 0))
  7927. y1)
  7928. (setq sd (- sd (+ (if (< d 0) 7 0) d)))
  7929. (when n
  7930. (require 'cal-iso)
  7931. (when (> n 99)
  7932. (setq y1 (org-small-year-to-year (/ n 100))
  7933. n (mod n 100)))
  7934. (setq sd
  7935. (calendar-iso-to-absolute
  7936. (list n 1
  7937. (or y1 (nth 2 (calendar-iso-from-absolute sd)))))))))
  7938. ((eq span 'month)
  7939. (let (y1)
  7940. (when (and n (> n 99))
  7941. (setq y1 (org-small-year-to-year (/ n 100))
  7942. n (mod n 100)))
  7943. (setq sd (calendar-absolute-from-gregorian
  7944. (list (or n mg) 1 (or y1 yg))))))
  7945. ((eq span 'year)
  7946. (setq sd (calendar-absolute-from-gregorian
  7947. (list 1 1 (or n yg))))))
  7948. sd))
  7949. (defun org-agenda-next-date-line (&optional arg)
  7950. "Jump to the next line indicating a date in agenda buffer."
  7951. (interactive "p")
  7952. (org-agenda-check-type t 'agenda)
  7953. (beginning-of-line 1)
  7954. ;; This does not work if user makes date format that starts with a blank
  7955. (when (looking-at-p "^\\S-") (forward-char 1))
  7956. (unless (re-search-forward "^\\S-" nil t arg)
  7957. (backward-char 1)
  7958. (error "No next date after this line in this buffer"))
  7959. (goto-char (match-beginning 0)))
  7960. (defun org-agenda-previous-date-line (&optional arg)
  7961. "Jump to the previous line indicating a date in agenda buffer."
  7962. (interactive "p")
  7963. (org-agenda-check-type t 'agenda)
  7964. (beginning-of-line 1)
  7965. (unless (re-search-backward "^\\S-" nil t arg)
  7966. (error "No previous date before this line in this buffer")))
  7967. ;; Initialize the highlight
  7968. (defvar org-hl (make-overlay 1 1))
  7969. (overlay-put org-hl 'face 'highlight)
  7970. (defun org-highlight (begin end &optional buffer)
  7971. "Highlight a region with overlay."
  7972. (move-overlay org-hl begin end (or buffer (current-buffer))))
  7973. (defun org-unhighlight ()
  7974. "Detach overlay INDEX."
  7975. (delete-overlay org-hl))
  7976. (defun org-unhighlight-once ()
  7977. "Remove the highlight from its position, and this function from the hook."
  7978. (remove-hook 'pre-command-hook 'org-unhighlight-once)
  7979. (org-unhighlight))
  7980. (defvar org-agenda-pre-follow-window-conf nil)
  7981. (defun org-agenda-follow-mode ()
  7982. "Toggle follow mode in an agenda buffer."
  7983. (interactive)
  7984. (unless org-agenda-follow-mode
  7985. (setq org-agenda-pre-follow-window-conf
  7986. (current-window-configuration)))
  7987. (setq org-agenda-follow-mode (not org-agenda-follow-mode))
  7988. (unless org-agenda-follow-mode
  7989. (set-window-configuration org-agenda-pre-follow-window-conf))
  7990. (org-agenda-set-mode-name)
  7991. (org-agenda-do-context-action)
  7992. (message "Follow mode is %s"
  7993. (if org-agenda-follow-mode "on" "off")))
  7994. (defun org-agenda-entry-text-mode (&optional arg)
  7995. "Toggle entry text mode in an agenda buffer."
  7996. (interactive "P")
  7997. (if (or org-agenda-tag-filter
  7998. org-agenda-category-filter
  7999. org-agenda-regexp-filter
  8000. org-agenda-top-headline-filter)
  8001. (user-error "Can't show entry text in filtered views")
  8002. (setq org-agenda-entry-text-mode (or (integerp arg)
  8003. (not org-agenda-entry-text-mode)))
  8004. (org-agenda-entry-text-hide)
  8005. (and org-agenda-entry-text-mode
  8006. (let ((org-agenda-entry-text-maxlines
  8007. (if (integerp arg) arg org-agenda-entry-text-maxlines)))
  8008. (org-agenda-entry-text-show)))
  8009. (org-agenda-set-mode-name)
  8010. (message "Entry text mode is %s%s"
  8011. (if org-agenda-entry-text-mode "on" "off")
  8012. (if (not org-agenda-entry-text-mode) ""
  8013. (format " (maximum number of lines is %d)"
  8014. (if (integerp arg) arg org-agenda-entry-text-maxlines))))))
  8015. (defun org-agenda-clockreport-mode ()
  8016. "Toggle clocktable mode in an agenda buffer."
  8017. (interactive)
  8018. (org-agenda-check-type t 'agenda)
  8019. (setq org-agenda-clockreport-mode (not org-agenda-clockreport-mode))
  8020. (org-agenda-set-mode-name)
  8021. (org-agenda-redo)
  8022. (message "Clocktable mode is %s"
  8023. (if org-agenda-clockreport-mode "on" "off")))
  8024. (defun org-agenda-log-mode (&optional special)
  8025. "Toggle log mode in an agenda buffer.
  8026. With argument SPECIAL, show all possible log items, not only the ones
  8027. configured in `org-agenda-log-mode-items'.
  8028. With a `\\[universal-argument] \\[universal-argument]' prefix, show *only* \
  8029. log items, nothing else."
  8030. (interactive "P")
  8031. (org-agenda-check-type t 'agenda)
  8032. (setq org-agenda-show-log
  8033. (cond
  8034. ((equal special '(16)) 'only)
  8035. ((eq special 'clockcheck)
  8036. (if (eq org-agenda-show-log 'clockcheck)
  8037. nil 'clockcheck))
  8038. (special '(closed clock state))
  8039. (t (not org-agenda-show-log))))
  8040. (org-agenda-set-mode-name)
  8041. (org-agenda-redo)
  8042. (message "Log mode is %s" (if org-agenda-show-log "on" "off")))
  8043. (defun org-agenda-archives-mode (&optional with-files)
  8044. "Toggle inclusion of items in trees marked with :ARCHIVE:.
  8045. When called with a prefix argument, include all archive files as well."
  8046. (interactive "P")
  8047. (setq org-agenda-archives-mode
  8048. (cond ((and with-files (eq org-agenda-archives-mode t)) nil)
  8049. (with-files t)
  8050. (org-agenda-archives-mode nil)
  8051. (t 'trees)))
  8052. (org-agenda-set-mode-name)
  8053. (org-agenda-redo)
  8054. (message
  8055. "%s"
  8056. (cond
  8057. ((eq org-agenda-archives-mode nil)
  8058. "No archives are included")
  8059. ((eq org-agenda-archives-mode 'trees)
  8060. (format "Trees with :%s: tag are included" org-archive-tag))
  8061. ((eq org-agenda-archives-mode t)
  8062. (format "Trees with :%s: tag and all active archive files are included"
  8063. org-archive-tag)))))
  8064. (defun org-agenda-toggle-diary ()
  8065. "Toggle diary inclusion in an agenda buffer."
  8066. (interactive)
  8067. (org-agenda-check-type t 'agenda)
  8068. (setq org-agenda-include-diary (not org-agenda-include-diary))
  8069. (org-agenda-redo)
  8070. (org-agenda-set-mode-name)
  8071. (message "Diary inclusion turned %s"
  8072. (if org-agenda-include-diary "on" "off")))
  8073. (defun org-agenda-toggle-deadlines ()
  8074. "Toggle inclusion of entries with a deadline in an agenda buffer."
  8075. (interactive)
  8076. (org-agenda-check-type t 'agenda)
  8077. (setq org-agenda-include-deadlines (not org-agenda-include-deadlines))
  8078. (org-agenda-redo)
  8079. (org-agenda-set-mode-name)
  8080. (message "Deadlines inclusion turned %s"
  8081. (if org-agenda-include-deadlines "on" "off")))
  8082. (defun org-agenda-toggle-time-grid ()
  8083. "Toggle time grid in an agenda buffer."
  8084. (interactive)
  8085. (org-agenda-check-type t 'agenda)
  8086. (setq org-agenda-use-time-grid (not org-agenda-use-time-grid))
  8087. (org-agenda-redo)
  8088. (org-agenda-set-mode-name)
  8089. (message "Time-grid turned %s"
  8090. (if org-agenda-use-time-grid "on" "off")))
  8091. (defun org-agenda-set-mode-name ()
  8092. "Set the mode name to indicate all the small mode settings."
  8093. (setq mode-name
  8094. (list "Org-Agenda"
  8095. (if (get 'org-agenda-files 'org-restrict) " []" "")
  8096. " "
  8097. '(:eval (org-agenda-span-name org-agenda-current-span))
  8098. (if org-agenda-follow-mode " Follow" "")
  8099. (if org-agenda-entry-text-mode " ETxt" "")
  8100. (if org-agenda-include-diary " Diary" "")
  8101. (if org-agenda-include-deadlines " Ddl" "")
  8102. (if org-agenda-use-time-grid " Grid" "")
  8103. (if (and (boundp 'org-habit-show-habits)
  8104. org-habit-show-habits) " Habit" "")
  8105. (cond
  8106. ((consp org-agenda-show-log) " LogAll")
  8107. ((eq org-agenda-show-log 'clockcheck) " ClkCk")
  8108. (org-agenda-show-log " Log")
  8109. (t ""))
  8110. (if (org-agenda-filter-any) " " "")
  8111. (if (or org-agenda-category-filter
  8112. (get 'org-agenda-category-filter :preset-filter))
  8113. '(:eval (propertize
  8114. (concat "["
  8115. (mapconcat
  8116. 'identity
  8117. (append
  8118. (get 'org-agenda-category-filter :preset-filter)
  8119. org-agenda-category-filter)
  8120. "")
  8121. "]")
  8122. 'face 'org-agenda-filter-category
  8123. 'help-echo "Category used in filtering")) "")
  8124. (if (or org-agenda-tag-filter
  8125. (get 'org-agenda-tag-filter :preset-filter))
  8126. '(:eval (propertize
  8127. (concat (mapconcat
  8128. 'identity
  8129. (append
  8130. (get 'org-agenda-tag-filter :preset-filter)
  8131. org-agenda-tag-filter)
  8132. ""))
  8133. 'face 'org-agenda-filter-tags
  8134. 'help-echo "Tags used in filtering")) "")
  8135. (if (or org-agenda-effort-filter
  8136. (get 'org-agenda-effort-filter :preset-filter))
  8137. '(:eval (propertize
  8138. (concat (mapconcat
  8139. 'identity
  8140. (append
  8141. (get 'org-agenda-effort-filter :preset-filter)
  8142. org-agenda-effort-filter)
  8143. ""))
  8144. 'face 'org-agenda-filter-effort
  8145. 'help-echo "Effort conditions used in filtering")) "")
  8146. (if (or org-agenda-regexp-filter
  8147. (get 'org-agenda-regexp-filter :preset-filter))
  8148. '(:eval (propertize
  8149. (concat (mapconcat
  8150. (lambda (x) (concat (substring x 0 1) "/" (substring x 1) "/"))
  8151. (append
  8152. (get 'org-agenda-regexp-filter :preset-filter)
  8153. org-agenda-regexp-filter)
  8154. ""))
  8155. 'face 'org-agenda-filter-regexp
  8156. 'help-echo "Regexp used in filtering")) "")
  8157. (if org-agenda-archives-mode
  8158. (if (eq org-agenda-archives-mode t)
  8159. " Archives"
  8160. (format " :%s:" org-archive-tag))
  8161. "")
  8162. (if org-agenda-clockreport-mode " Clock" "")))
  8163. (force-mode-line-update))
  8164. (defun org-agenda-update-agenda-type ()
  8165. "Update the agenda type after each command."
  8166. (setq org-agenda-type
  8167. (or (get-text-property (point) 'org-agenda-type)
  8168. (get-text-property (max (point-min) (1- (point))) 'org-agenda-type))))
  8169. (defun org-agenda-next-line ()
  8170. "Move cursor to the next line, and show if follow mode is active."
  8171. (interactive)
  8172. (call-interactively 'next-line)
  8173. (org-agenda-do-context-action))
  8174. (defun org-agenda-previous-line ()
  8175. "Move cursor to the previous line, and show if follow-mode is active."
  8176. (interactive)
  8177. (call-interactively 'previous-line)
  8178. (org-agenda-do-context-action))
  8179. (defun org-agenda-next-item (n)
  8180. "Move cursor to next agenda item."
  8181. (interactive "p")
  8182. (let ((col (current-column)))
  8183. (dotimes (c n)
  8184. (when (next-single-property-change (point-at-eol) 'org-marker)
  8185. (move-end-of-line 1)
  8186. (goto-char (next-single-property-change (point) 'org-marker))))
  8187. (org-move-to-column col))
  8188. (org-agenda-do-context-action))
  8189. (defun org-agenda-previous-item (n)
  8190. "Move cursor to next agenda item."
  8191. (interactive "p")
  8192. (dotimes (c n)
  8193. (let ((col (current-column))
  8194. (goto (save-excursion
  8195. (move-end-of-line 0)
  8196. (previous-single-property-change (point) 'org-marker))))
  8197. (when goto (goto-char goto))
  8198. (org-move-to-column col)))
  8199. (org-agenda-do-context-action))
  8200. (defun org-agenda-do-context-action ()
  8201. "Show outline path and, maybe, follow mode window."
  8202. (let ((m (org-get-at-bol 'org-marker)))
  8203. (when (and (markerp m) (marker-buffer m))
  8204. (and org-agenda-follow-mode
  8205. (if org-agenda-follow-indirect
  8206. (org-agenda-tree-to-indirect-buffer nil)
  8207. (org-agenda-show)))
  8208. (and org-agenda-show-outline-path
  8209. (org-with-point-at m (org-display-outline-path t))))))
  8210. (defun org-agenda-show-tags ()
  8211. "Show the tags applicable to the current item."
  8212. (interactive)
  8213. (let* ((tags (org-get-at-bol 'tags)))
  8214. (if tags
  8215. (message "Tags are :%s:"
  8216. (org-no-properties (mapconcat 'identity tags ":")))
  8217. (message "No tags associated with this line"))))
  8218. (defun org-agenda-goto (&optional highlight)
  8219. "Go to the entry at point in the corresponding Org file."
  8220. (interactive)
  8221. (let* ((marker (or (org-get-at-bol 'org-marker)
  8222. (org-agenda-error)))
  8223. (buffer (marker-buffer marker))
  8224. (pos (marker-position marker)))
  8225. ;; FIXME: use `org-switch-to-buffer-other-window'?
  8226. (switch-to-buffer-other-window buffer)
  8227. (widen)
  8228. (push-mark)
  8229. (goto-char pos)
  8230. (when (derived-mode-p 'org-mode)
  8231. (org-show-context 'agenda)
  8232. (recenter (/ (window-height) 2))
  8233. (org-back-to-heading t)
  8234. (let ((case-fold-search nil))
  8235. (when (re-search-forward org-complex-heading-regexp nil t)
  8236. (goto-char (match-beginning 4)))))
  8237. (run-hooks 'org-agenda-after-show-hook)
  8238. (and highlight (org-highlight (point-at-bol) (point-at-eol)))))
  8239. (defvar org-agenda-after-show-hook nil
  8240. "Normal hook run after an item has been shown from the agenda.
  8241. Point is in the buffer where the item originated.")
  8242. ;; Defined later in org-agenda.el
  8243. (defvar org-agenda-loop-over-headlines-in-active-region nil)
  8244. (defun org-agenda-do-in-region (beg end cmd &optional arg force-arg delete)
  8245. "Between region BEG and END, call agenda command CMD.
  8246. When optional argument ARG is non-nil or FORCE-ARG is `t', pass
  8247. ARG to CMD. When optional argument DELETE is non-nil, assume CMD
  8248. deletes the agenda entry and don't move to the next entry."
  8249. (save-excursion
  8250. (goto-char beg)
  8251. (let ((mend (move-marker (make-marker) end))
  8252. (all (eq org-agenda-loop-over-headlines-in-active-region t))
  8253. (match (and (stringp org-agenda-loop-over-headlines-in-active-region)
  8254. org-agenda-loop-over-headlines-in-active-region))
  8255. (level (and (eq org-agenda-loop-over-headlines-in-active-region 'start-level)
  8256. (org-get-at-bol 'level))))
  8257. (while (< (point) mend)
  8258. (let ((ov (make-overlay (point) (point-at-eol))))
  8259. (if (not (or all
  8260. (and match (looking-at-p match))
  8261. (eq level (org-get-at-bol 'level))))
  8262. (org-agenda-next-item 1)
  8263. (overlay-put ov 'face 'region)
  8264. (if (or arg force-arg) (funcall cmd arg) (funcall cmd))
  8265. (when (not delete) (org-agenda-next-item 1))
  8266. (delete-overlay ov)))))))
  8267. ;; org-agenda-[schedule,deadline,date-prompt,todo,[toggle]archive*,
  8268. ;; kill,set-property,set-effort] commands may loop over agenda
  8269. ;; entries. Commands `org-agenda-set-tags' and `org-agenda-bulk-mark'
  8270. ;; use their own mechanisms on active regions.
  8271. (defmacro org-agenda-maybe-loop (cmd arg force-arg delete &rest body)
  8272. "Maybe loop over agenda entries and perform CMD.
  8273. Pass ARG, FORCE-ARG, DELETE and BODY to `org-agenda-do-in-region'."
  8274. (declare (debug t))
  8275. `(if (and (called-interactively-p 'any)
  8276. org-agenda-loop-over-headlines-in-active-region
  8277. (org-region-active-p))
  8278. (org-agenda-do-in-region
  8279. (region-beginning) (region-end) ,cmd ,arg ,force-arg ,delete)
  8280. ,@body))
  8281. (defun org-agenda-kill ()
  8282. "Kill the entry or subtree belonging to the current agenda entry."
  8283. (interactive)
  8284. (or (eq major-mode 'org-agenda-mode) (user-error "Not in agenda"))
  8285. (org-agenda-maybe-loop
  8286. #'org-agenda-kill nil nil t
  8287. (let* ((bufname-orig (buffer-name))
  8288. (marker (or (org-get-at-bol 'org-marker)
  8289. (org-agenda-error)))
  8290. (buffer (marker-buffer marker))
  8291. (pos (marker-position marker))
  8292. (type (org-get-at-bol 'type))
  8293. dbeg dend (n 0))
  8294. (org-with-remote-undo buffer
  8295. (with-current-buffer buffer
  8296. (save-excursion
  8297. (goto-char pos)
  8298. (if (and (derived-mode-p 'org-mode) (not (member type '("sexp"))))
  8299. (setq dbeg (progn (org-back-to-heading t) (point))
  8300. dend (org-end-of-subtree t t))
  8301. (setq dbeg (point-at-bol)
  8302. dend (min (point-max) (1+ (point-at-eol)))))
  8303. (goto-char dbeg)
  8304. (while (re-search-forward "^[ \t]*\\S-" dend t) (setq n (1+ n)))))
  8305. (when (or (eq t org-agenda-confirm-kill)
  8306. (and (numberp org-agenda-confirm-kill)
  8307. (> n org-agenda-confirm-kill)))
  8308. (let ((win-conf (current-window-configuration)))
  8309. (unwind-protect
  8310. (and
  8311. (prog2
  8312. (org-agenda-tree-to-indirect-buffer nil)
  8313. (not (y-or-n-p
  8314. (format "Delete entry with %d lines in buffer \"%s\"? "
  8315. n (buffer-name buffer))))
  8316. (kill-buffer org-last-indirect-buffer))
  8317. (error "Abort"))
  8318. (set-window-configuration win-conf))))
  8319. (let ((org-agenda-buffer-name bufname-orig))
  8320. (org-remove-subtree-entries-from-agenda buffer dbeg dend))
  8321. (with-current-buffer buffer (delete-region dbeg dend))
  8322. (message "Agenda item and source killed")))))
  8323. (defvar org-archive-default-command) ; defined in org-archive.el
  8324. (defun org-agenda-archive-default ()
  8325. "Archive the entry or subtree belonging to the current agenda entry."
  8326. (interactive)
  8327. (require 'org-archive)
  8328. (funcall-interactively
  8329. #'org-agenda-archive-with org-archive-default-command))
  8330. (defun org-agenda-archive-default-with-confirmation ()
  8331. "Archive the entry or subtree belonging to the current agenda entry."
  8332. (interactive)
  8333. (require 'org-archive)
  8334. (funcall-interactively
  8335. #'org-agenda-archive-with org-archive-default-command 'confirm))
  8336. (defun org-agenda-archive ()
  8337. "Archive the entry or subtree belonging to the current agenda entry."
  8338. (interactive)
  8339. (funcall-interactively
  8340. #'org-agenda-archive-with 'org-archive-subtree))
  8341. (defun org-agenda-archive-to-archive-sibling ()
  8342. "Move the entry to the archive sibling."
  8343. (interactive)
  8344. (funcall-interactively
  8345. #'org-agenda-archive-with 'org-archive-to-archive-sibling))
  8346. (defun org-agenda-archive-with (cmd &optional confirm)
  8347. "Move the entry to the archive sibling."
  8348. (interactive)
  8349. (or (eq major-mode 'org-agenda-mode) (user-error "Not in agenda"))
  8350. (org-agenda-maybe-loop
  8351. #'org-agenda-archive-with cmd nil t
  8352. (let* ((bufname-orig (buffer-name))
  8353. (marker (or (org-get-at-bol 'org-marker)
  8354. (org-agenda-error)))
  8355. (buffer (marker-buffer marker))
  8356. (pos (marker-position marker)))
  8357. (org-with-remote-undo buffer
  8358. (with-current-buffer buffer
  8359. (if (derived-mode-p 'org-mode)
  8360. (if (and confirm
  8361. (not (y-or-n-p "Archive this subtree or entry? ")))
  8362. (error "Abort")
  8363. (save-window-excursion
  8364. (goto-char pos)
  8365. (let ((org-agenda-buffer-name bufname-orig))
  8366. (org-remove-subtree-entries-from-agenda))
  8367. (org-back-to-heading t)
  8368. (let ((org-archive-from-agenda t))
  8369. (funcall cmd))))
  8370. (error "Archiving works only in Org files")))))))
  8371. (defun org-remove-subtree-entries-from-agenda (&optional buf beg end)
  8372. "Remove all lines in the agenda that correspond to a given subtree.
  8373. The subtree is the one in buffer BUF, starting at BEG and ending at END.
  8374. If this information is not given, the function uses the tree at point."
  8375. (let ((buf (or buf (current-buffer))) m p)
  8376. (save-excursion
  8377. (unless (and beg end)
  8378. (org-back-to-heading t)
  8379. (setq beg (point))
  8380. (org-end-of-subtree t)
  8381. (setq end (point)))
  8382. (set-buffer (get-buffer org-agenda-buffer-name))
  8383. (save-excursion
  8384. (goto-char (point-max))
  8385. (beginning-of-line 1)
  8386. (while (not (bobp))
  8387. (when (and (setq m (org-get-at-bol 'org-marker))
  8388. (equal buf (marker-buffer m))
  8389. (setq p (marker-position m))
  8390. (>= p beg)
  8391. (< p end))
  8392. (let ((inhibit-read-only t))
  8393. (delete-region (point-at-bol) (1+ (point-at-eol)))))
  8394. (beginning-of-line 0))))))
  8395. (defun org-agenda-refile (&optional goto rfloc no-update)
  8396. "Refile the item at point.
  8397. When called with `\\[universal-argument] \\[universal-argument]', \
  8398. go to the location of the last
  8399. refiled item.
  8400. When called with `\\[universal-argument] \\[universal-argument] \
  8401. \\[universal-argument]' prefix or when GOTO is 0, clear
  8402. the refile cache.
  8403. RFLOC can be a refile location obtained in a different way.
  8404. When NO-UPDATE is non-nil, don't redo the agenda buffer."
  8405. (interactive "P")
  8406. (cond
  8407. ((member goto '(0 (64)))
  8408. (org-refile-cache-clear))
  8409. ((equal goto '(16))
  8410. (org-refile-goto-last-stored))
  8411. (t
  8412. (let* ((buffer-orig (buffer-name))
  8413. (marker (or (org-get-at-bol 'org-hd-marker)
  8414. (org-agenda-error)))
  8415. (buffer (marker-buffer marker))
  8416. (pos (marker-position marker))
  8417. (rfloc (or rfloc
  8418. (org-refile-get-location
  8419. (if goto "Goto" "Refile to") buffer
  8420. org-refile-allow-creating-parent-nodes))))
  8421. (with-current-buffer buffer
  8422. (org-with-wide-buffer
  8423. (goto-char marker)
  8424. (let ((org-agenda-buffer-name buffer-orig))
  8425. (org-remove-subtree-entries-from-agenda))
  8426. (org-refile goto buffer rfloc))))
  8427. (unless no-update (org-agenda-redo)))))
  8428. (defun org-agenda-open-link (&optional arg)
  8429. "Open the link(s) in the current entry, if any.
  8430. This looks for a link in the displayed line in the agenda.
  8431. It also looks at the text of the entry itself."
  8432. (interactive "P")
  8433. (let* ((marker (or (org-get-at-bol 'org-hd-marker)
  8434. (org-get-at-bol 'org-marker)))
  8435. (buffer (and marker (marker-buffer marker)))
  8436. (prefix (buffer-substring (point-at-bol) (point-at-eol)))
  8437. (lkall (and buffer (org-offer-links-in-entry
  8438. buffer marker arg prefix)))
  8439. (lk0 (car lkall))
  8440. (lk (if (stringp lk0) (list lk0) lk0))
  8441. (lkend (cdr lkall))
  8442. trg)
  8443. (cond
  8444. ((and buffer lk)
  8445. (mapcar (lambda(l)
  8446. (with-current-buffer buffer
  8447. (setq trg (and (string-match org-link-bracket-re l)
  8448. (match-string 1 l)))
  8449. (if (or (not trg) (string-match org-link-any-re trg))
  8450. ;; Don't use `org-with-wide-buffer' here as
  8451. ;; opening the link may result in moving the point
  8452. (save-restriction
  8453. (widen)
  8454. (goto-char marker)
  8455. (when (search-forward l nil lkend)
  8456. (goto-char (match-beginning 0))
  8457. (org-open-at-point)))
  8458. ;; This is an internal link, widen the buffer
  8459. ;; FIXME: use `org-switch-to-buffer-other-window'?
  8460. (switch-to-buffer-other-window buffer)
  8461. (widen)
  8462. (goto-char marker)
  8463. (when (search-forward l nil lkend)
  8464. (goto-char (match-beginning 0))
  8465. (org-open-at-point)))))
  8466. lk))
  8467. ((or (org-in-regexp (concat "\\(" org-link-bracket-re "\\)"))
  8468. (save-excursion
  8469. (beginning-of-line 1)
  8470. (looking-at (concat ".*?\\(" org-link-bracket-re "\\)"))))
  8471. (org-link-open-from-string (match-string 1)))
  8472. (t (message "No link to open here")))))
  8473. (defun org-agenda-copy-local-variable (var)
  8474. "Get a variable from a referenced buffer and install it here."
  8475. (let ((m (org-get-at-bol 'org-marker)))
  8476. (when (and m (buffer-live-p (marker-buffer m)))
  8477. (set (make-local-variable var)
  8478. (with-current-buffer (marker-buffer m)
  8479. (symbol-value var))))))
  8480. (defun org-agenda-switch-to (&optional delete-other-windows)
  8481. "Go to the Org mode file which contains the item at point.
  8482. When optional argument DELETE-OTHER-WINDOWS is non-nil, the
  8483. displayed Org file fills the frame."
  8484. (interactive)
  8485. (if (and org-return-follows-link
  8486. (not (org-get-at-bol 'org-marker))
  8487. (org-in-regexp org-link-bracket-re))
  8488. (org-link-open-from-string (match-string 0))
  8489. (let* ((marker (or (org-get-at-bol 'org-marker)
  8490. (org-agenda-error)))
  8491. (buffer (marker-buffer marker))
  8492. (pos (marker-position marker)))
  8493. (unless buffer (user-error "Trying to switch to non-existent buffer"))
  8494. (pop-to-buffer-same-window buffer)
  8495. (when delete-other-windows (delete-other-windows))
  8496. (widen)
  8497. (goto-char pos)
  8498. (when (derived-mode-p 'org-mode)
  8499. (org-show-context 'agenda)
  8500. (run-hooks 'org-agenda-after-show-hook)))))
  8501. (defun org-agenda-goto-mouse (ev)
  8502. "Go to the Org file which contains the item at the mouse click."
  8503. (interactive "e")
  8504. (mouse-set-point ev)
  8505. (org-agenda-goto))
  8506. (defun org-agenda-show (&optional full-entry)
  8507. "Display the Org file which contains the item at point.
  8508. With prefix argument FULL-ENTRY, make the entire entry visible
  8509. if it was hidden in the outline."
  8510. (interactive "P")
  8511. (let ((win (selected-window)))
  8512. (org-agenda-goto t)
  8513. (when full-entry (org-show-entry))
  8514. (select-window win)))
  8515. (defvar org-agenda-show-window nil)
  8516. (defun org-agenda-show-and-scroll-up (&optional arg)
  8517. "Display the Org file which contains the item at point.
  8518. When called repeatedly, scroll the window that is displaying the buffer.
  8519. With a `\\[universal-argument]' prefix argument, display the item, but \
  8520. fold drawers."
  8521. (interactive "P")
  8522. (let ((win (selected-window)))
  8523. (if (and (window-live-p org-agenda-show-window)
  8524. (eq this-command last-command))
  8525. (progn
  8526. (select-window org-agenda-show-window)
  8527. (ignore-errors (scroll-up)))
  8528. (org-agenda-goto t)
  8529. (org-show-entry)
  8530. (if arg (org-cycle-hide-drawers 'children)
  8531. (org-with-wide-buffer
  8532. (narrow-to-region (org-entry-beginning-position)
  8533. (org-entry-end-position))
  8534. (org-show-all '(drawers))))
  8535. (setq org-agenda-show-window (selected-window)))
  8536. (select-window win)))
  8537. (defun org-agenda-show-scroll-down ()
  8538. "Scroll down the window showing the agenda."
  8539. (interactive)
  8540. (let ((win (selected-window)))
  8541. (when (window-live-p org-agenda-show-window)
  8542. (select-window org-agenda-show-window)
  8543. (ignore-errors (scroll-down))
  8544. (select-window win))))
  8545. (defun org-agenda-show-1 (&optional more)
  8546. "Display the Org file which contains the item at point.
  8547. The prefix arg selects the amount of information to display:
  8548. 0 hide the subtree
  8549. 1 just show the entry according to defaults.
  8550. 2 show the children view
  8551. 3 show the subtree view
  8552. 4 show the entire subtree and any drawers
  8553. With prefix argument FULL-ENTRY, make the entire entry visible
  8554. if it was hidden in the outline."
  8555. (interactive "p")
  8556. (let ((win (selected-window)))
  8557. (org-agenda-goto t)
  8558. (org-back-to-heading)
  8559. (set-window-start (selected-window) (point-at-bol))
  8560. (cond
  8561. ((= more 0)
  8562. (org-flag-subtree t)
  8563. (save-excursion
  8564. (org-back-to-heading)
  8565. (run-hook-with-args 'org-cycle-hook 'folded))
  8566. (message "Remote: FOLDED"))
  8567. ((and (called-interactively-p 'any) (= more 1))
  8568. (message "Remote: show with default settings"))
  8569. ((= more 2)
  8570. (outline-show-entry)
  8571. (org-show-children)
  8572. (save-excursion
  8573. (org-back-to-heading)
  8574. (run-hook-with-args 'org-cycle-hook 'children))
  8575. (message "Remote: CHILDREN"))
  8576. ((= more 3)
  8577. (outline-show-subtree)
  8578. (save-excursion
  8579. (org-back-to-heading)
  8580. (run-hook-with-args 'org-cycle-hook 'subtree))
  8581. (message "Remote: SUBTREE"))
  8582. ((> more 3)
  8583. (outline-show-subtree)
  8584. (message "Remote: SUBTREE AND ALL DRAWERS")))
  8585. (select-window win)))
  8586. (defvar org-agenda-cycle-counter nil)
  8587. (defun org-agenda-cycle-show (&optional n)
  8588. "Show the current entry in another window, with default settings.
  8589. Default settings are taken from `org-show-context-detail'. When
  8590. use repeatedly in immediate succession, the remote entry will
  8591. cycle through visibility
  8592. children -> subtree -> folded
  8593. When called with a numeric prefix arg, that arg will be passed through to
  8594. `org-agenda-show-1'. For the interpretation of that argument, see the
  8595. docstring of `org-agenda-show-1'."
  8596. (interactive "P")
  8597. (if (integerp n)
  8598. (setq org-agenda-cycle-counter n)
  8599. (if (not (eq last-command this-command))
  8600. (setq org-agenda-cycle-counter 1)
  8601. (if (equal org-agenda-cycle-counter 0)
  8602. (setq org-agenda-cycle-counter 2)
  8603. (setq org-agenda-cycle-counter (1+ org-agenda-cycle-counter))
  8604. (when (> org-agenda-cycle-counter 3)
  8605. (setq org-agenda-cycle-counter 0)))))
  8606. (org-agenda-show-1 org-agenda-cycle-counter))
  8607. (defun org-agenda-recenter (arg)
  8608. "Display the Org file which contains the item at point and recenter."
  8609. (interactive "P")
  8610. (let ((win (selected-window)))
  8611. (org-agenda-goto t)
  8612. (recenter arg)
  8613. (select-window win)))
  8614. (defun org-agenda-show-mouse (ev)
  8615. "Display the Org file which contains the item at the mouse click."
  8616. (interactive "e")
  8617. (mouse-set-point ev)
  8618. (org-agenda-show))
  8619. (defun org-agenda-check-no-diary ()
  8620. "Check if the entry is a diary link and abort if yes."
  8621. (when (org-get-at-bol 'org-agenda-diary-link)
  8622. (org-agenda-error)))
  8623. (defun org-agenda-error ()
  8624. "Throw an error when a command is not allowed in the agenda."
  8625. (user-error "Command not allowed in this line"))
  8626. (defun org-agenda-tree-to-indirect-buffer (arg)
  8627. "Show the subtree corresponding to the current entry in an indirect buffer.
  8628. This calls the command `org-tree-to-indirect-buffer' from the original buffer.
  8629. With a numerical prefix ARG, go up to this level and then take that tree.
  8630. With a negative numeric ARG, go up by this number of levels.
  8631. With a `\\[universal-argument]' prefix, make a separate frame for this tree, \
  8632. i.e. don't use
  8633. the dedicated frame."
  8634. (interactive "P")
  8635. (if current-prefix-arg
  8636. (org-agenda-do-tree-to-indirect-buffer arg)
  8637. (let ((agenda-buffer (buffer-name))
  8638. (agenda-window (selected-window))
  8639. (indirect-window
  8640. (and org-last-indirect-buffer
  8641. (get-buffer-window org-last-indirect-buffer))))
  8642. (save-window-excursion (org-agenda-do-tree-to-indirect-buffer arg))
  8643. (unless (or (eq org-indirect-buffer-display 'new-frame)
  8644. (eq org-indirect-buffer-display 'dedicated-frame))
  8645. (unwind-protect
  8646. (unless (and indirect-window (window-live-p indirect-window))
  8647. (setq indirect-window (split-window agenda-window)))
  8648. (and indirect-window (select-window indirect-window))
  8649. (switch-to-buffer org-last-indirect-buffer :norecord)
  8650. (fit-window-to-buffer indirect-window)))
  8651. (select-window (get-buffer-window agenda-buffer))
  8652. (setq org-agenda-last-indirect-buffer org-last-indirect-buffer))))
  8653. (defun org-agenda-do-tree-to-indirect-buffer (arg)
  8654. "Same as `org-agenda-tree-to-indirect-buffer' without saving window."
  8655. (org-agenda-check-no-diary)
  8656. (let* ((marker (or (org-get-at-bol 'org-marker)
  8657. (org-agenda-error)))
  8658. (buffer (marker-buffer marker))
  8659. (pos (marker-position marker)))
  8660. (with-current-buffer buffer
  8661. (save-excursion
  8662. (goto-char pos)
  8663. (org-tree-to-indirect-buffer arg)))))
  8664. (defvar org-last-heading-marker (make-marker)
  8665. "Marker pointing to the headline that last changed its TODO state
  8666. by a remote command from the agenda.")
  8667. (defun org-agenda-todo-nextset ()
  8668. "Switch TODO entry to next sequence."
  8669. (interactive)
  8670. (org-agenda-todo 'nextset))
  8671. (defun org-agenda-todo-previousset ()
  8672. "Switch TODO entry to previous sequence."
  8673. (interactive)
  8674. (org-agenda-todo 'previousset))
  8675. (defun org-agenda-todo (&optional arg)
  8676. "Cycle TODO state of line at point, also in Org file.
  8677. This changes the line at point, all other lines in the agenda referring to
  8678. the same tree node, and the headline of the tree node in the Org file."
  8679. (interactive "P")
  8680. (org-agenda-check-no-diary)
  8681. (org-agenda-maybe-loop
  8682. #'org-agenda-todo arg nil nil
  8683. (let* ((col (current-column))
  8684. (marker (or (org-get-at-bol 'org-marker)
  8685. (org-agenda-error)))
  8686. (buffer (marker-buffer marker))
  8687. (pos (marker-position marker))
  8688. (hdmarker (org-get-at-bol 'org-hd-marker))
  8689. (todayp (org-agenda-today-p (org-get-at-bol 'day)))
  8690. (inhibit-read-only t)
  8691. org-loop-over-headlines-in-active-region
  8692. org-agenda-headline-snapshot-before-repeat newhead just-one)
  8693. (org-with-remote-undo buffer
  8694. (with-current-buffer buffer
  8695. (widen)
  8696. (goto-char pos)
  8697. (org-show-context 'agenda)
  8698. (let ((current-prefix-arg arg))
  8699. (call-interactively 'org-todo))
  8700. (and (bolp) (forward-char 1))
  8701. (setq newhead (org-get-heading))
  8702. (when (and (bound-and-true-p
  8703. org-agenda-headline-snapshot-before-repeat)
  8704. (not (equal org-agenda-headline-snapshot-before-repeat
  8705. newhead))
  8706. todayp)
  8707. (setq newhead org-agenda-headline-snapshot-before-repeat
  8708. just-one t))
  8709. (save-excursion
  8710. (org-back-to-heading)
  8711. (move-marker org-last-heading-marker (point))))
  8712. (beginning-of-line 1)
  8713. (save-window-excursion
  8714. (org-agenda-change-all-lines newhead hdmarker 'fixface just-one))
  8715. (when (bound-and-true-p org-clock-out-when-done)
  8716. (string-match (concat "^" (regexp-opt org-done-keywords-for-agenda))
  8717. newhead)
  8718. (org-agenda-unmark-clocking-task))
  8719. (org-move-to-column col)
  8720. (org-agenda-mark-clocking-task)))))
  8721. (defun org-agenda-add-note (&optional arg)
  8722. "Add a time-stamped note to the entry at point."
  8723. (interactive "P")
  8724. (org-agenda-check-no-diary)
  8725. (let* ((marker (or (org-get-at-bol 'org-marker)
  8726. (org-agenda-error)))
  8727. (buffer (marker-buffer marker))
  8728. (pos (marker-position marker))
  8729. (hdmarker (org-get-at-bol 'org-hd-marker))
  8730. (inhibit-read-only t))
  8731. (with-current-buffer buffer
  8732. (widen)
  8733. (goto-char pos)
  8734. (org-show-context 'agenda)
  8735. (org-add-note))))
  8736. (defun org-agenda-change-all-lines (newhead hdmarker
  8737. &optional fixface just-this)
  8738. "Change all lines in the agenda buffer which match HDMARKER.
  8739. The new content of the line will be NEWHEAD (as modified by
  8740. `org-agenda-format-item'). HDMARKER is checked with
  8741. `equal' against all `org-hd-marker' text properties in the file.
  8742. If FIXFACE is non-nil, the face of each item is modified according to
  8743. the new TODO state.
  8744. If JUST-THIS is non-nil, change just the current line, not all.
  8745. If FORCE-TAGS is non-nil, the car of it returns the new tags."
  8746. (let* ((inhibit-read-only t)
  8747. (line (org-current-line))
  8748. (org-agenda-buffer (current-buffer))
  8749. (thetags (with-current-buffer (marker-buffer hdmarker)
  8750. (org-get-tags hdmarker)))
  8751. props m pl undone-face done-face finish new dotime level cat tags)
  8752. (save-excursion
  8753. (goto-char (point-max))
  8754. (beginning-of-line 1)
  8755. (while (not finish)
  8756. (setq finish (bobp))
  8757. (when (and (setq m (org-get-at-bol 'org-hd-marker))
  8758. (or (not just-this) (= (org-current-line) line))
  8759. (equal m hdmarker))
  8760. (setq props (text-properties-at (point))
  8761. dotime (org-get-at-bol 'dotime)
  8762. cat (org-agenda-get-category)
  8763. level (org-get-at-bol 'level)
  8764. tags thetags
  8765. new
  8766. (let ((org-prefix-format-compiled
  8767. (or (get-text-property (min (1- (point-max)) (point)) 'format)
  8768. org-prefix-format-compiled))
  8769. (extra (org-get-at-bol 'extra)))
  8770. (with-current-buffer (marker-buffer hdmarker)
  8771. (org-with-wide-buffer
  8772. (org-agenda-format-item extra newhead level cat tags dotime))))
  8773. pl (text-property-any (point-at-bol) (point-at-eol) 'org-heading t)
  8774. undone-face (org-get-at-bol 'undone-face)
  8775. done-face (org-get-at-bol 'done-face))
  8776. (beginning-of-line 1)
  8777. (cond
  8778. ((equal new "") (delete-region (point) (line-beginning-position 2)))
  8779. ((looking-at ".*")
  8780. ;; When replacing the whole line, preserve bulk mark
  8781. ;; overlay, if any.
  8782. (let ((mark (catch :overlay
  8783. (dolist (o (overlays-in (point) (+ 2 (point))))
  8784. (when (eq (overlay-get o 'type)
  8785. 'org-marked-entry-overlay)
  8786. (throw :overlay o))))))
  8787. (replace-match new t t)
  8788. (beginning-of-line)
  8789. (when mark (move-overlay mark (point) (+ 2 (point)))))
  8790. (add-text-properties (point-at-bol) (point-at-eol) props)
  8791. (when fixface
  8792. (add-text-properties
  8793. (point-at-bol) (point-at-eol)
  8794. (list 'face
  8795. (if org-last-todo-state-is-todo
  8796. undone-face done-face))))
  8797. (org-agenda-highlight-todo 'line)
  8798. (beginning-of-line 1))
  8799. (t (error "Line update did not work")))
  8800. (save-restriction
  8801. (narrow-to-region (point-at-bol) (point-at-eol))
  8802. (org-agenda-finalize)))
  8803. (beginning-of-line 0)))))
  8804. (defun org-agenda-align-tags (&optional line)
  8805. "Align all tags in agenda items to `org-agenda-tags-column'.
  8806. When optional argument LINE is non-nil, align tags only on the
  8807. current line."
  8808. (let ((inhibit-read-only t)
  8809. (org-agenda-tags-column (if (eq 'auto org-agenda-tags-column)
  8810. (- (window-text-width))
  8811. org-agenda-tags-column))
  8812. (end (and line (line-end-position)))
  8813. l c)
  8814. (save-excursion
  8815. (goto-char (if line (line-beginning-position) (point-min)))
  8816. (while (re-search-forward org-tag-group-re end t)
  8817. (add-text-properties
  8818. (match-beginning 1) (match-end 1)
  8819. (list 'face (delq nil (let ((prop (get-text-property
  8820. (match-beginning 1) 'face)))
  8821. (or (listp prop) (setq prop (list prop)))
  8822. (if (memq 'org-tag prop)
  8823. prop
  8824. (cons 'org-tag prop))))))
  8825. (setq l (string-width (match-string 1))
  8826. c (if (< org-agenda-tags-column 0)
  8827. (- (abs org-agenda-tags-column) l)
  8828. org-agenda-tags-column))
  8829. (goto-char (match-beginning 1))
  8830. (delete-region (save-excursion (skip-chars-backward " \t") (point))
  8831. (point))
  8832. (insert (org-add-props
  8833. (make-string (max 1 (- c (current-column))) ?\s)
  8834. (plist-put (copy-sequence (text-properties-at (point)))
  8835. 'face nil))))
  8836. (goto-char (point-min))
  8837. (org-font-lock-add-tag-faces (point-max)))))
  8838. (defun org-agenda-priority-up ()
  8839. "Increase the priority of line at point, also in Org file."
  8840. (interactive)
  8841. (org-agenda-priority 'up))
  8842. (defun org-agenda-priority-down ()
  8843. "Decrease the priority of line at point, also in Org file."
  8844. (interactive)
  8845. (org-agenda-priority 'down))
  8846. (defun org-agenda-priority (&optional force-direction)
  8847. "Set the priority of line at point, also in Org file.
  8848. This changes the line at point, all other lines in the agenda referring to
  8849. the same tree node, and the headline of the tree node in the Org file.
  8850. Called with a universal prefix arg, show the priority instead of setting it."
  8851. (interactive "P")
  8852. (if (equal force-direction '(4))
  8853. (org-priority-show)
  8854. (unless org-priority-enable-commands
  8855. (user-error "Priority commands are disabled"))
  8856. (org-agenda-check-no-diary)
  8857. (let* ((col (current-column))
  8858. (marker (or (org-get-at-bol 'org-marker)
  8859. (org-agenda-error)))
  8860. (hdmarker (org-get-at-bol 'org-hd-marker))
  8861. (buffer (marker-buffer hdmarker))
  8862. (pos (marker-position hdmarker))
  8863. (inhibit-read-only t)
  8864. newhead)
  8865. (org-with-remote-undo buffer
  8866. (with-current-buffer buffer
  8867. (widen)
  8868. (goto-char pos)
  8869. (org-show-context 'agenda)
  8870. (org-priority force-direction)
  8871. (end-of-line 1)
  8872. (setq newhead (org-get-heading)))
  8873. (org-agenda-change-all-lines newhead hdmarker)
  8874. (org-move-to-column col)))))
  8875. ;; FIXME: should fix the tags property of the agenda line.
  8876. (defun org-agenda-set-tags (&optional tag onoff)
  8877. "Set tags for the current headline."
  8878. (interactive)
  8879. (org-agenda-check-no-diary)
  8880. (if (and (org-region-active-p) (called-interactively-p 'any))
  8881. (call-interactively 'org-change-tag-in-region)
  8882. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8883. (org-agenda-error)))
  8884. (buffer (marker-buffer hdmarker))
  8885. (pos (marker-position hdmarker))
  8886. (inhibit-read-only t)
  8887. newhead)
  8888. (org-with-remote-undo buffer
  8889. (with-current-buffer buffer
  8890. (widen)
  8891. (goto-char pos)
  8892. (org-show-context 'agenda)
  8893. (if tag
  8894. (org-toggle-tag tag onoff)
  8895. (call-interactively #'org-set-tags-command))
  8896. (end-of-line 1)
  8897. (setq newhead (org-get-heading)))
  8898. (org-agenda-change-all-lines newhead hdmarker)
  8899. (beginning-of-line 1)))))
  8900. (defun org-agenda-set-property ()
  8901. "Set a property for the current headline."
  8902. (interactive)
  8903. (org-agenda-check-no-diary)
  8904. (org-agenda-maybe-loop
  8905. #'org-agenda-set-property nil nil nil
  8906. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8907. (org-agenda-error)))
  8908. (buffer (marker-buffer hdmarker))
  8909. (pos (marker-position hdmarker))
  8910. (inhibit-read-only t)
  8911. newhead)
  8912. (org-with-remote-undo buffer
  8913. (with-current-buffer buffer
  8914. (widen)
  8915. (goto-char pos)
  8916. (org-show-context 'agenda)
  8917. (call-interactively 'org-set-property))))))
  8918. (defun org-agenda-set-effort ()
  8919. "Set the effort property for the current headline."
  8920. (interactive)
  8921. (org-agenda-check-no-diary)
  8922. (org-agenda-maybe-loop
  8923. #'org-agenda-set-effort nil nil nil
  8924. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8925. (org-agenda-error)))
  8926. (buffer (marker-buffer hdmarker))
  8927. (pos (marker-position hdmarker))
  8928. (inhibit-read-only t)
  8929. newhead)
  8930. (org-with-remote-undo buffer
  8931. (with-current-buffer buffer
  8932. (widen)
  8933. (goto-char pos)
  8934. (org-show-context 'agenda)
  8935. (call-interactively 'org-set-effort)
  8936. (end-of-line 1)
  8937. (setq newhead (org-get-heading)))
  8938. (org-agenda-change-all-lines newhead hdmarker)))))
  8939. (defun org-agenda-toggle-archive-tag ()
  8940. "Toggle the archive tag for the current entry."
  8941. (interactive)
  8942. (org-agenda-check-no-diary)
  8943. (org-agenda-maybe-loop
  8944. #'org-agenda-toggle-archive-tag nil nil nil
  8945. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8946. (org-agenda-error)))
  8947. (buffer (marker-buffer hdmarker))
  8948. (pos (marker-position hdmarker))
  8949. (inhibit-read-only t)
  8950. newhead)
  8951. (org-with-remote-undo buffer
  8952. (with-current-buffer buffer
  8953. (widen)
  8954. (goto-char pos)
  8955. (org-show-context 'agenda)
  8956. (call-interactively 'org-toggle-archive-tag)
  8957. (end-of-line 1)
  8958. (setq newhead (org-get-heading)))
  8959. (org-agenda-change-all-lines newhead hdmarker)
  8960. (beginning-of-line 1)))))
  8961. (defun org-agenda-do-date-later (arg)
  8962. (interactive "P")
  8963. (cond
  8964. ((or (equal arg '(16))
  8965. (memq last-command
  8966. '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
  8967. (setq this-command 'org-agenda-date-later-minutes)
  8968. (org-agenda-date-later-minutes 1))
  8969. ((or (equal arg '(4))
  8970. (memq last-command
  8971. '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
  8972. (setq this-command 'org-agenda-date-later-hours)
  8973. (org-agenda-date-later-hours 1))
  8974. (t
  8975. (org-agenda-date-later (prefix-numeric-value arg)))))
  8976. (defun org-agenda-do-date-earlier (arg)
  8977. (interactive "P")
  8978. (cond
  8979. ((or (equal arg '(16))
  8980. (memq last-command
  8981. '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
  8982. (setq this-command 'org-agenda-date-earlier-minutes)
  8983. (org-agenda-date-earlier-minutes 1))
  8984. ((or (equal arg '(4))
  8985. (memq last-command
  8986. '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
  8987. (setq this-command 'org-agenda-date-earlier-hours)
  8988. (org-agenda-date-earlier-hours 1))
  8989. (t
  8990. (org-agenda-date-earlier (prefix-numeric-value arg)))))
  8991. (defun org-agenda-date-later (arg &optional what)
  8992. "Change the date of this item to ARG day(s) later."
  8993. (interactive "p")
  8994. (org-agenda-check-type t 'agenda)
  8995. (org-agenda-check-no-diary)
  8996. (let* ((marker (or (org-get-at-bol 'org-marker)
  8997. (org-agenda-error)))
  8998. (buffer (marker-buffer marker))
  8999. (pos (marker-position marker))
  9000. cdate today)
  9001. (org-with-remote-undo buffer
  9002. (with-current-buffer buffer
  9003. (widen)
  9004. (goto-char pos)
  9005. (unless (org-at-timestamp-p 'lax) (error "Cannot find time stamp"))
  9006. (when (and org-agenda-move-date-from-past-immediately-to-today
  9007. (equal arg 1)
  9008. (or (not what) (eq what 'day))
  9009. (not (save-match-data (org-at-date-range-p))))
  9010. (setq cdate (org-parse-time-string (match-string 0) 'nodefault)
  9011. cdate (calendar-absolute-from-gregorian
  9012. (list (nth 4 cdate) (nth 3 cdate) (nth 5 cdate)))
  9013. today (org-today))
  9014. (when (> today cdate)
  9015. ;; immediately shift to today
  9016. (setq arg (- today cdate))))
  9017. (org-timestamp-change arg (or what 'day))
  9018. (when (and (org-at-date-range-p)
  9019. (re-search-backward org-tr-regexp-both (point-at-bol)))
  9020. (let ((end org-last-changed-timestamp))
  9021. (org-timestamp-change arg (or what 'day))
  9022. (setq org-last-changed-timestamp
  9023. (concat org-last-changed-timestamp "--" end)))))
  9024. (org-agenda-show-new-time marker org-last-changed-timestamp))
  9025. (message "Time stamp changed to %s" org-last-changed-timestamp)))
  9026. (defun org-agenda-date-earlier (arg &optional what)
  9027. "Change the date of this item to ARG day(s) earlier."
  9028. (interactive "p")
  9029. (org-agenda-date-later (- arg) what))
  9030. (defun org-agenda-date-later-minutes (arg)
  9031. "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
  9032. (interactive "p")
  9033. (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
  9034. (org-agenda-date-later arg 'minute))
  9035. (defun org-agenda-date-earlier-minutes (arg)
  9036. "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
  9037. (interactive "p")
  9038. (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
  9039. (org-agenda-date-earlier arg 'minute))
  9040. (defun org-agenda-date-later-hours (arg)
  9041. "Change the time of this item, in hour steps."
  9042. (interactive "p")
  9043. (org-agenda-date-later arg 'hour))
  9044. (defun org-agenda-date-earlier-hours (arg)
  9045. "Change the time of this item, in hour steps."
  9046. (interactive "p")
  9047. (org-agenda-date-earlier arg 'hour))
  9048. (defun org-agenda-show-new-time (marker stamp &optional prefix)
  9049. "Show new date stamp via text properties."
  9050. ;; We use text properties to make this undoable
  9051. (let ((inhibit-read-only t))
  9052. (setq stamp (concat prefix " => " stamp " "))
  9053. (save-excursion
  9054. (goto-char (point-max))
  9055. (while (not (bobp))
  9056. (when (equal marker (org-get-at-bol 'org-marker))
  9057. (remove-text-properties (line-beginning-position)
  9058. (line-end-position)
  9059. '(display nil))
  9060. (org-move-to-column
  9061. (- (/ (window-width nil t) (window-font-width)) (length stamp)) t)
  9062. (add-text-properties
  9063. (1- (point)) (point-at-eol)
  9064. (list 'display (org-add-props stamp nil
  9065. 'face '(secondary-selection default))))
  9066. (beginning-of-line 1))
  9067. (beginning-of-line 0)))))
  9068. (defun org-agenda-date-prompt (arg)
  9069. "Change the date of this item. Date is prompted for, with default today.
  9070. The prefix ARG is passed to the `org-time-stamp' command and can therefore
  9071. be used to request time specification in the time stamp."
  9072. (interactive "P")
  9073. (org-agenda-check-type t 'agenda)
  9074. (org-agenda-check-no-diary)
  9075. (org-agenda-maybe-loop
  9076. #'org-agenda-date-prompt arg t nil
  9077. (let* ((marker (or (org-get-at-bol 'org-marker)
  9078. (org-agenda-error)))
  9079. (buffer (marker-buffer marker))
  9080. (pos (marker-position marker)))
  9081. (org-with-remote-undo buffer
  9082. (with-current-buffer buffer
  9083. (widen)
  9084. (goto-char pos)
  9085. (unless (org-at-timestamp-p 'lax) (error "Cannot find time stamp"))
  9086. (org-time-stamp arg (equal (char-after (match-beginning 0)) ?\[)))
  9087. (org-agenda-show-new-time marker org-last-changed-timestamp))
  9088. (message "Time stamp changed to %s" org-last-changed-timestamp))))
  9089. (defun org-agenda-schedule (arg &optional time)
  9090. "Schedule the item at point.
  9091. ARG is passed through to `org-schedule'."
  9092. (interactive "P")
  9093. (org-agenda-check-type t 'agenda 'todo 'tags 'search)
  9094. (org-agenda-check-no-diary)
  9095. (org-agenda-maybe-loop
  9096. #'org-agenda-schedule arg t nil
  9097. (let* ((marker (or (org-get-at-bol 'org-marker)
  9098. (org-agenda-error)))
  9099. (type (marker-insertion-type marker))
  9100. (buffer (marker-buffer marker))
  9101. (pos (marker-position marker))
  9102. ts)
  9103. (set-marker-insertion-type marker t)
  9104. (org-with-remote-undo buffer
  9105. (with-current-buffer buffer
  9106. (widen)
  9107. (goto-char pos)
  9108. (setq ts (org-schedule arg time)))
  9109. (org-agenda-show-new-time marker ts " S"))
  9110. (message "%s" ts))))
  9111. (defun org-agenda-deadline (arg &optional time)
  9112. "Schedule the item at point.
  9113. ARG is passed through to `org-deadline'."
  9114. (interactive "P")
  9115. (org-agenda-check-type t 'agenda 'todo 'tags 'search)
  9116. (org-agenda-check-no-diary)
  9117. (org-agenda-maybe-loop
  9118. #'org-agenda-deadline arg t nil
  9119. (let* ((marker (or (org-get-at-bol 'org-marker)
  9120. (org-agenda-error)))
  9121. (buffer (marker-buffer marker))
  9122. (pos (marker-position marker))
  9123. ts)
  9124. (org-with-remote-undo buffer
  9125. (with-current-buffer buffer
  9126. (widen)
  9127. (goto-char pos)
  9128. (setq ts (org-deadline arg time)))
  9129. (org-agenda-show-new-time marker ts " D"))
  9130. (message "%s" ts))))
  9131. (defun org-agenda-clock-in (&optional arg)
  9132. "Start the clock on the currently selected item."
  9133. (interactive "P")
  9134. (org-agenda-check-no-diary)
  9135. (if (equal arg '(4))
  9136. (org-clock-in arg)
  9137. (let* ((marker (or (org-get-at-bol 'org-marker)
  9138. (org-agenda-error)))
  9139. (hdmarker (or (org-get-at-bol 'org-hd-marker) marker))
  9140. (pos (marker-position marker))
  9141. (col (current-column))
  9142. newhead)
  9143. (org-with-remote-undo (marker-buffer marker)
  9144. (with-current-buffer (marker-buffer marker)
  9145. (widen)
  9146. (goto-char pos)
  9147. (org-show-context 'agenda)
  9148. (org-clock-in arg)
  9149. (setq newhead (org-get-heading)))
  9150. (org-agenda-change-all-lines newhead hdmarker))
  9151. (org-move-to-column col))))
  9152. (defun org-agenda-clock-out ()
  9153. "Stop the currently running clock."
  9154. (interactive)
  9155. (unless (marker-buffer org-clock-marker)
  9156. (user-error "No running clock"))
  9157. (let ((marker (make-marker)) (col (current-column)) newhead)
  9158. (org-with-remote-undo (marker-buffer org-clock-marker)
  9159. (with-current-buffer (marker-buffer org-clock-marker)
  9160. (org-with-wide-buffer
  9161. (goto-char org-clock-marker)
  9162. (org-back-to-heading t)
  9163. (move-marker marker (point))
  9164. (org-clock-out)
  9165. (setq newhead (org-get-heading)))))
  9166. (org-agenda-change-all-lines newhead marker)
  9167. (move-marker marker nil)
  9168. (org-move-to-column col)
  9169. (org-agenda-unmark-clocking-task)))
  9170. (defun org-agenda-clock-cancel (&optional arg)
  9171. "Cancel the currently running clock."
  9172. (interactive "P")
  9173. (unless (marker-buffer org-clock-marker)
  9174. (user-error "No running clock"))
  9175. (org-with-remote-undo (marker-buffer org-clock-marker)
  9176. (org-clock-cancel)))
  9177. (defun org-agenda-clock-goto ()
  9178. "Jump to the currently clocked in task within the agenda.
  9179. If the currently clocked in task is not listed in the agenda
  9180. buffer, display it in another window."
  9181. (interactive)
  9182. (let (pos)
  9183. (mapc (lambda (o)
  9184. (when (eq (overlay-get o 'type) 'org-agenda-clocking)
  9185. (setq pos (overlay-start o))))
  9186. (overlays-in (point-min) (point-max)))
  9187. (cond (pos (goto-char pos))
  9188. ;; If the currently clocked entry is not in the agenda
  9189. ;; buffer, we visit it in another window:
  9190. ((bound-and-true-p org-clock-current-task)
  9191. (org-switch-to-buffer-other-window (org-clock-goto)))
  9192. (t (message "No running clock, use `C-c C-x C-j' to jump to the most recent one")))))
  9193. (defun org-agenda-diary-entry-in-org-file ()
  9194. "Make a diary entry in the file `org-agenda-diary-file'."
  9195. (let (d1 d2 char (text "") dp1 dp2)
  9196. (if (equal (buffer-name) "*Calendar*")
  9197. (setq d1 (calendar-cursor-to-date t)
  9198. d2 (car calendar-mark-ring))
  9199. (setq dp1 (get-text-property (point-at-bol) 'day))
  9200. (unless dp1 (user-error "No date defined in current line"))
  9201. (setq d1 (calendar-gregorian-from-absolute dp1)
  9202. d2 (and (ignore-errors (mark))
  9203. (save-excursion
  9204. (goto-char (mark))
  9205. (setq dp2 (get-text-property (point-at-bol) 'day)))
  9206. (calendar-gregorian-from-absolute dp2))))
  9207. (message "Diary entry: [d]ay [a]nniversary [b]lock [j]ump to date tree")
  9208. (setq char (read-char-exclusive))
  9209. (cond
  9210. ((equal char ?d)
  9211. (setq text (read-string "Day entry: "))
  9212. (org-agenda-add-entry-to-org-agenda-diary-file 'day text d1)
  9213. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  9214. ((equal char ?a)
  9215. (setq d1 (list (car d1) (nth 1 d1)
  9216. (read-number (format "Reference year [%d]: " (nth 2 d1))
  9217. (nth 2 d1))))
  9218. (setq text (read-string "Anniversary (use %d to show years): "))
  9219. (org-agenda-add-entry-to-org-agenda-diary-file 'anniversary text d1)
  9220. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  9221. ((equal char ?b)
  9222. (setq text (read-string "Block entry: "))
  9223. (unless (and d1 d2 (not (equal d1 d2)))
  9224. (user-error "No block of days selected"))
  9225. (org-agenda-add-entry-to-org-agenda-diary-file 'block text d1 d2)
  9226. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  9227. ((equal char ?j)
  9228. (org-switch-to-buffer-other-window
  9229. (find-file-noselect org-agenda-diary-file))
  9230. (require 'org-datetree)
  9231. (org-datetree-find-date-create d1)
  9232. (org-reveal t))
  9233. (t (user-error "Invalid selection character `%c'" char)))))
  9234. (defcustom org-agenda-insert-diary-strategy 'date-tree
  9235. "Where in `org-agenda-diary-file' should new entries be added?
  9236. Valid values:
  9237. date-tree in the date tree, as first child of the date
  9238. date-tree-last in the date tree, as last child of the date
  9239. top-level as top-level entries at the end of the file."
  9240. :group 'org-agenda
  9241. :type '(choice
  9242. (const :tag "first in a date tree" date-tree)
  9243. (const :tag "last in a date tree" date-tree-last)
  9244. (const :tag "as top level at end of file" top-level)))
  9245. (defcustom org-agenda-insert-diary-extract-time nil
  9246. "Non-nil means extract any time specification from the diary entry."
  9247. :group 'org-agenda
  9248. :version "24.1"
  9249. :type 'boolean)
  9250. (defcustom org-agenda-bulk-mark-char ">"
  9251. "A single-character string to be used as the bulk mark."
  9252. :group 'org-agenda
  9253. :version "24.1"
  9254. :type 'string)
  9255. (defun org-agenda-add-entry-to-org-agenda-diary-file (type text &optional d1 d2)
  9256. "Add a diary entry with TYPE to `org-agenda-diary-file'.
  9257. If TEXT is not empty, it will become the headline of the new entry, and
  9258. the resulting entry will not be shown. When TEXT is empty, switch to
  9259. `org-agenda-diary-file' and let the user finish the entry there."
  9260. (let ((cw (current-window-configuration)))
  9261. (org-switch-to-buffer-other-window
  9262. (find-file-noselect org-agenda-diary-file))
  9263. (widen)
  9264. (goto-char (point-min))
  9265. (cl-case type
  9266. (anniversary
  9267. (or (re-search-forward "^\\*[ \t]+Anniversaries" nil t)
  9268. (progn
  9269. (or (org-at-heading-p t)
  9270. (progn
  9271. (outline-next-heading)
  9272. (insert "* Anniversaries\n\n")
  9273. (beginning-of-line -1)))))
  9274. (outline-next-heading)
  9275. (org-back-over-empty-lines)
  9276. (backward-char 1)
  9277. (insert "\n")
  9278. (insert (format "%%%%(org-anniversary %d %2d %2d) %s"
  9279. (nth 2 d1) (car d1) (nth 1 d1) text)))
  9280. (day
  9281. (let ((org-prefix-has-time t)
  9282. (org-agenda-time-leading-zero t)
  9283. fmt time time2)
  9284. (when org-agenda-insert-diary-extract-time
  9285. ;; Use org-agenda-format-item to parse text for a time-range and
  9286. ;; remove it. FIXME: This is a hack, we should refactor
  9287. ;; that function to make time extraction available separately
  9288. (setq fmt (org-agenda-format-item nil text nil nil nil t)
  9289. time (get-text-property 0 'time fmt)
  9290. time2 (if (> (length time) 0)
  9291. ;; split-string removes trailing ...... if
  9292. ;; no end time given. First space
  9293. ;; separates time from date.
  9294. (concat " " (car (split-string time "\\.")))
  9295. nil)
  9296. text (get-text-property 0 'txt fmt)))
  9297. (if (eq org-agenda-insert-diary-strategy 'top-level)
  9298. (org-agenda-insert-diary-as-top-level text)
  9299. (require 'org-datetree)
  9300. (org-datetree-find-date-create d1)
  9301. (org-agenda-insert-diary-make-new-entry text))
  9302. (org-insert-time-stamp (org-time-from-absolute
  9303. (calendar-absolute-from-gregorian d1))
  9304. nil nil nil nil time2))
  9305. (end-of-line 0))
  9306. ((block) ;; Wrap this in (strictly unnecessary) parens because
  9307. ;; otherwise the indentation gets confused by the
  9308. ;; special meaning of 'block
  9309. (when (> (calendar-absolute-from-gregorian d1)
  9310. (calendar-absolute-from-gregorian d2))
  9311. (setq d1 (prog1 d2 (setq d2 d1))))
  9312. (if (eq org-agenda-insert-diary-strategy 'top-level)
  9313. (org-agenda-insert-diary-as-top-level text)
  9314. (require 'org-datetree)
  9315. (org-datetree-find-date-create d1)
  9316. (org-agenda-insert-diary-make-new-entry text))
  9317. (org-insert-time-stamp (org-time-from-absolute
  9318. (calendar-absolute-from-gregorian d1)))
  9319. (insert "--")
  9320. (org-insert-time-stamp (org-time-from-absolute
  9321. (calendar-absolute-from-gregorian d2)))
  9322. (end-of-line 0)))
  9323. (if (string-match "\\S-" text)
  9324. (progn
  9325. (set-window-configuration cw)
  9326. (message "%s entry added to %s"
  9327. (capitalize (symbol-name type))
  9328. (abbreviate-file-name org-agenda-diary-file)))
  9329. (org-reveal t)
  9330. (message "Please finish entry here"))))
  9331. (defun org-agenda-insert-diary-as-top-level (text)
  9332. "Make new entry as a top-level entry at the end of the file.
  9333. Add TEXT as headline, and position the cursor in the second line so that
  9334. a timestamp can be added there."
  9335. (widen)
  9336. (goto-char (point-max))
  9337. (unless (bolp) (insert "\n"))
  9338. (org-insert-heading nil t t)
  9339. (insert text)
  9340. (org-end-of-meta-data)
  9341. (unless (bolp) (insert "\n"))
  9342. (when org-adapt-indentation (indent-to-column 2)))
  9343. (defun org-agenda-insert-diary-make-new-entry (text)
  9344. "Make a new entry with TEXT as a child of the current subtree.
  9345. Position the point in the heading's first body line so that
  9346. a timestamp can be added there."
  9347. (cond
  9348. ((eq org-agenda-insert-diary-strategy 'date-tree-last)
  9349. (end-of-line)
  9350. (org-insert-heading '(4) t)
  9351. (org-do-demote))
  9352. (t
  9353. (outline-next-heading)
  9354. (org-back-over-empty-lines)
  9355. (unless (looking-at "[ \t]*$") (save-excursion (insert "\n")))
  9356. (org-insert-heading nil t)
  9357. (org-do-demote)))
  9358. (let ((col (current-column)))
  9359. (insert text)
  9360. (org-end-of-meta-data)
  9361. ;; Ensure point is left on a blank line, at proper indentation.
  9362. (unless (bolp) (insert "\n"))
  9363. (unless (looking-at-p "^[ \t]*$") (save-excursion (insert "\n")))
  9364. (when org-adapt-indentation (indent-to-column col)))
  9365. (org-show-set-visibility 'lineage))
  9366. (defun org-agenda-diary-entry ()
  9367. "Make a diary entry, like the `i' command from the calendar.
  9368. All the standard commands work: block, weekly etc.
  9369. When `org-agenda-diary-file' points to a file,
  9370. `org-agenda-diary-entry-in-org-file' is called instead to create
  9371. entries in that Org file."
  9372. (interactive)
  9373. (if (not (eq org-agenda-diary-file 'diary-file))
  9374. (org-agenda-diary-entry-in-org-file)
  9375. (require 'diary-lib)
  9376. (let* ((char (read-char-exclusive
  9377. "Diary entry: [d]ay [w]eekly [m]onthly [y]early\
  9378. [a]nniversary [b]lock [c]yclic"))
  9379. (cmd (cdr (assoc char
  9380. '((?d . diary-insert-entry)
  9381. (?w . diary-insert-weekly-entry)
  9382. (?m . diary-insert-monthly-entry)
  9383. (?y . diary-insert-yearly-entry)
  9384. (?a . diary-insert-anniversary-entry)
  9385. (?b . diary-insert-block-entry)
  9386. (?c . diary-insert-cyclic-entry)))))
  9387. (oldf (symbol-function 'calendar-cursor-to-date))
  9388. ;; (buf (get-file-buffer (substitute-in-file-name diary-file)))
  9389. (point (point))
  9390. (mark (or (mark t) (point))))
  9391. (unless cmd
  9392. (user-error "No command associated with <%c>" char))
  9393. (unless (and (get-text-property point 'day)
  9394. (or (not (equal ?b char))
  9395. (get-text-property mark 'day)))
  9396. (user-error "Don't know which date to use for diary entry"))
  9397. ;; We implement this by hacking the `calendar-cursor-to-date' function
  9398. ;; and the `calendar-mark-ring' variable. Saves a lot of code.
  9399. (let ((calendar-mark-ring
  9400. (list (calendar-gregorian-from-absolute
  9401. (or (get-text-property mark 'day)
  9402. (get-text-property point 'day))))))
  9403. (unwind-protect
  9404. (progn
  9405. (fset 'calendar-cursor-to-date
  9406. (lambda (&optional error dummy)
  9407. (calendar-gregorian-from-absolute
  9408. (get-text-property point 'day))))
  9409. (call-interactively cmd))
  9410. (fset 'calendar-cursor-to-date oldf))))))
  9411. (defun org-agenda-execute-calendar-command (cmd)
  9412. "Execute a calendar command from the agenda with date from cursor."
  9413. (org-agenda-check-type t 'agenda)
  9414. (require 'diary-lib)
  9415. (unless (get-text-property (min (1- (point-max)) (point)) 'day)
  9416. (user-error "Don't know which date to use for the calendar command"))
  9417. (let* ((oldf (symbol-function 'calendar-cursor-to-date))
  9418. (point (point))
  9419. (date (calendar-gregorian-from-absolute
  9420. (get-text-property point 'day)))
  9421. ;; the following 2 vars are needed in the calendar
  9422. (displayed-month (car date))
  9423. (displayed-year (nth 2 date)))
  9424. (unwind-protect
  9425. (progn
  9426. (fset 'calendar-cursor-to-date
  9427. (lambda (&optional error dummy)
  9428. (calendar-gregorian-from-absolute
  9429. (get-text-property point 'day))))
  9430. (call-interactively cmd))
  9431. (fset 'calendar-cursor-to-date oldf))))
  9432. (defun org-agenda-phases-of-moon ()
  9433. "Display the phases of the moon for the 3 months around the cursor date."
  9434. (interactive)
  9435. (org-agenda-execute-calendar-command 'calendar-lunar-phases))
  9436. (defun org-agenda-holidays ()
  9437. "Display the holidays for the 3 months around the cursor date."
  9438. (interactive)
  9439. (org-agenda-execute-calendar-command 'calendar-list-holidays))
  9440. (defvar calendar-longitude) ; defined in calendar.el
  9441. (defvar calendar-latitude) ; defined in calendar.el
  9442. (defvar calendar-location-name) ; defined in calendar.el
  9443. (defun org-agenda-sunrise-sunset (arg)
  9444. "Display sunrise and sunset for the cursor date.
  9445. Latitude and longitude can be specified with the variables
  9446. `calendar-latitude' and `calendar-longitude'. When called with prefix
  9447. argument, latitude and longitude will be prompted for."
  9448. (interactive "P")
  9449. (require 'solar)
  9450. (let ((calendar-longitude (if arg nil calendar-longitude))
  9451. (calendar-latitude (if arg nil calendar-latitude))
  9452. (calendar-location-name
  9453. (if arg "the given coordinates" calendar-location-name)))
  9454. (org-agenda-execute-calendar-command 'calendar-sunrise-sunset)))
  9455. (defun org-agenda-goto-calendar ()
  9456. "Open the Emacs calendar with the date at the cursor."
  9457. (interactive)
  9458. (org-agenda-check-type t 'agenda)
  9459. (let* ((day (or (get-text-property (min (1- (point-max)) (point)) 'day)
  9460. (user-error "Don't know which date to open in calendar")))
  9461. (date (calendar-gregorian-from-absolute day))
  9462. (calendar-move-hook nil)
  9463. (calendar-view-holidays-initially-flag nil)
  9464. (calendar-view-diary-initially-flag nil))
  9465. (calendar)
  9466. (calendar-goto-date date)))
  9467. ;;;###autoload
  9468. (defun org-calendar-goto-agenda ()
  9469. "Compute the Org agenda for the calendar date displayed at the cursor.
  9470. This is a command that has to be installed in `calendar-mode-map'."
  9471. (interactive)
  9472. ;; Temporarily disable sticky agenda since user clearly wants to
  9473. ;; refresh view anyway.
  9474. (let ((org-agenda-buffer-tmp-name "*Org Agenda(a)*")
  9475. (org-agenda-sticky nil))
  9476. (org-agenda-list nil (calendar-absolute-from-gregorian
  9477. (calendar-cursor-to-date))
  9478. nil)))
  9479. (defun org-agenda-convert-date ()
  9480. (interactive)
  9481. (org-agenda-check-type t 'agenda)
  9482. (let ((day (get-text-property (min (1- (point-max)) (point)) 'day))
  9483. date s)
  9484. (unless day
  9485. (user-error "Don't know which date to convert"))
  9486. (setq date (calendar-gregorian-from-absolute day))
  9487. (setq s (concat
  9488. "Gregorian: " (calendar-date-string date) "\n"
  9489. "ISO: " (calendar-iso-date-string date) "\n"
  9490. "Day of Yr: " (calendar-day-of-year-string date) "\n"
  9491. "Julian: " (calendar-julian-date-string date) "\n"
  9492. "Astron. JD: " (calendar-astro-date-string date)
  9493. " (Julian date number at noon UTC)\n"
  9494. "Hebrew: " (calendar-hebrew-date-string date) " (until sunset)\n"
  9495. "Islamic: " (calendar-islamic-date-string date) " (until sunset)\n"
  9496. "French: " (calendar-french-date-string date) "\n"
  9497. "Bahá’í: " (calendar-bahai-date-string date) " (until sunset)\n"
  9498. "Mayan: " (calendar-mayan-date-string date) "\n"
  9499. "Coptic: " (calendar-coptic-date-string date) "\n"
  9500. "Ethiopic: " (calendar-ethiopic-date-string date) "\n"
  9501. "Persian: " (calendar-persian-date-string date) "\n"
  9502. "Chinese: " (calendar-chinese-date-string date) "\n"))
  9503. (with-output-to-temp-buffer "*Dates*"
  9504. (princ s))
  9505. (org-fit-window-to-buffer (get-buffer-window "*Dates*"))))
  9506. ;;; Bulk commands
  9507. (defun org-agenda-bulk-marked-p ()
  9508. "Non-nil when current entry is marked for bulk action."
  9509. (eq (get-char-property (point-at-bol) 'type)
  9510. 'org-marked-entry-overlay))
  9511. (defun org-agenda-bulk-mark (&optional arg)
  9512. "Mark entries for future bulk action.
  9513. When ARG is nil or one and region is not active then mark the
  9514. entry at point.
  9515. When ARG is nil or one and region is active then mark the entries
  9516. in the region.
  9517. When ARG is greater than one mark ARG lines."
  9518. (interactive "p")
  9519. (when (and (or (not arg) (= arg 1)) (use-region-p))
  9520. (setq arg (count-lines (region-beginning) (region-end)))
  9521. (goto-char (region-beginning))
  9522. (deactivate-mark))
  9523. (dotimes (i (or arg 1))
  9524. (unless (org-get-at-bol 'org-agenda-diary-link)
  9525. (let* ((m (org-get-at-bol 'org-hd-marker))
  9526. ov)
  9527. (unless (org-agenda-bulk-marked-p)
  9528. (unless m (user-error "Nothing to mark at point"))
  9529. (push m org-agenda-bulk-marked-entries)
  9530. (setq ov (make-overlay (point-at-bol) (+ 2 (point-at-bol))))
  9531. (org-overlay-display ov (concat org-agenda-bulk-mark-char " ")
  9532. (org-get-todo-face "TODO")
  9533. 'evaporate)
  9534. (overlay-put ov 'type 'org-marked-entry-overlay))
  9535. (end-of-line 1)
  9536. (or (ignore-errors
  9537. (goto-char (next-single-property-change (point) 'org-hd-marker)))
  9538. (beginning-of-line 2))
  9539. (while (and (get-char-property (point) 'invisible) (not (eobp)))
  9540. (beginning-of-line 2)))))
  9541. (message "%d entries marked for bulk action"
  9542. (length org-agenda-bulk-marked-entries)))
  9543. (defun org-agenda-bulk-mark-all ()
  9544. "Mark all entries for future agenda bulk action."
  9545. (interactive)
  9546. (org-agenda-bulk-mark-regexp "."))
  9547. (defun org-agenda-bulk-mark-regexp (regexp)
  9548. "Mark entries matching REGEXP for future agenda bulk action."
  9549. (interactive "sMark entries matching regexp: ")
  9550. (let ((entries-marked 0) txt-at-point)
  9551. (save-excursion
  9552. (goto-char (point-min))
  9553. (goto-char (next-single-property-change (point) 'org-hd-marker))
  9554. (while (and (re-search-forward regexp nil t)
  9555. (setq txt-at-point
  9556. (get-text-property (match-beginning 0) 'txt)))
  9557. (if (get-char-property (point) 'invisible)
  9558. (beginning-of-line 2)
  9559. (when (string-match-p regexp txt-at-point)
  9560. (setq entries-marked (1+ entries-marked))
  9561. (call-interactively 'org-agenda-bulk-mark)))))
  9562. (unless entries-marked
  9563. (message "No entry matching this regexp."))))
  9564. (defun org-agenda-bulk-unmark (&optional arg)
  9565. "Unmark the entry at point for future bulk action."
  9566. (interactive "P")
  9567. (if arg
  9568. (org-agenda-bulk-unmark-all)
  9569. (cond ((org-agenda-bulk-marked-p)
  9570. (org-agenda-bulk-remove-overlays
  9571. (point-at-bol) (+ 2 (point-at-bol)))
  9572. (setq org-agenda-bulk-marked-entries
  9573. (delete (org-get-at-bol 'org-hd-marker)
  9574. org-agenda-bulk-marked-entries))
  9575. (end-of-line 1)
  9576. (or (ignore-errors
  9577. (goto-char (next-single-property-change (point) 'txt)))
  9578. (beginning-of-line 2))
  9579. (while (and (get-char-property (point) 'invisible) (not (eobp)))
  9580. (beginning-of-line 2))
  9581. (message "%d entries left marked for bulk action"
  9582. (length org-agenda-bulk-marked-entries)))
  9583. (t (message "No entry to unmark here")))))
  9584. (defun org-agenda-bulk-toggle-all ()
  9585. "Toggle all marks for bulk action."
  9586. (interactive)
  9587. (save-excursion
  9588. (goto-char (point-min))
  9589. (while (ignore-errors
  9590. (goto-char (next-single-property-change (point) 'org-hd-marker)))
  9591. (org-agenda-bulk-toggle))))
  9592. (defun org-agenda-bulk-toggle ()
  9593. "Toggle the mark at point for bulk action."
  9594. (interactive)
  9595. (if (org-agenda-bulk-marked-p)
  9596. (org-agenda-bulk-unmark)
  9597. (org-agenda-bulk-mark)))
  9598. (defun org-agenda-bulk-remove-overlays (&optional beg end)
  9599. "Remove the mark overlays between BEG and END in the agenda buffer.
  9600. BEG and END default to the buffer limits.
  9601. This only removes the overlays, it does not remove the markers
  9602. from the list in `org-agenda-bulk-marked-entries'."
  9603. (interactive)
  9604. (mapc (lambda (ov)
  9605. (and (eq (overlay-get ov 'type) 'org-marked-entry-overlay)
  9606. (delete-overlay ov)))
  9607. (overlays-in (or beg (point-min)) (or end (point-max)))))
  9608. (defun org-agenda-bulk-unmark-all ()
  9609. "Remove all marks in the agenda buffer.
  9610. This will remove the markers and the overlays."
  9611. (interactive)
  9612. (if (null org-agenda-bulk-marked-entries)
  9613. (message "No entry to unmark")
  9614. (setq org-agenda-bulk-marked-entries nil)
  9615. (org-agenda-bulk-remove-overlays (point-min) (point-max))))
  9616. (defcustom org-agenda-persistent-marks nil
  9617. "Non-nil means marked items will stay marked after a bulk action.
  9618. You can toggle this interactively by typing `p' when prompted for a
  9619. bulk action."
  9620. :group 'org-agenda
  9621. :version "24.1"
  9622. :type 'boolean)
  9623. (defcustom org-agenda-loop-over-headlines-in-active-region t
  9624. "Shall some commands act upon headlines in the active region?
  9625. When set to t, some commands will be performed in all headlines
  9626. within the active region.
  9627. When set to `start-level', some commands will be performed in all
  9628. headlines within the active region, provided that these headlines
  9629. are of the same level than the first one.
  9630. When set to a regular expression, those commands will be
  9631. performed on the matching headlines within the active region.
  9632. The list of commands is: `org-agenda-schedule',
  9633. `org-agenda-deadline', `org-agenda-date-prompt',
  9634. `org-agenda-todo', `org-agenda-archive*', `org-agenda-kill'.
  9635. See `org-loop-over-headlines-in-active-region' for the equivalent
  9636. option for Org buffers."
  9637. :type '(choice (const :tag "Don't loop" nil)
  9638. (const :tag "All headlines in active region" t)
  9639. (const :tag "In active region, headlines at the same level than the first one" start-level)
  9640. (regexp :tag "Regular expression matcher"))
  9641. :version "27.1"
  9642. :package-version '(Org . "9.4")
  9643. :group 'org-agenda)
  9644. (defun org-agenda-bulk-action (&optional arg)
  9645. "Execute an remote-editing action on all marked entries.
  9646. The prefix arg is passed through to the command if possible."
  9647. (interactive "P")
  9648. ;; When there is no mark, act on the agenda entry at point.
  9649. (if (not org-agenda-bulk-marked-entries)
  9650. (save-excursion (org-agenda-bulk-mark)))
  9651. (dolist (m org-agenda-bulk-marked-entries)
  9652. (unless (and (markerp m)
  9653. (marker-buffer m)
  9654. (buffer-live-p (marker-buffer m))
  9655. (marker-position m))
  9656. (user-error "Marker %s for bulk command is invalid" m)))
  9657. ;; Prompt for the bulk command.
  9658. (org-unlogged-message
  9659. (concat "Bulk (" (if org-agenda-persistent-marks "" "don't ") "[p]ersist marks): "
  9660. "[$]arch [A]rch->sib [t]odo [+/-]tag [s]chd [d]eadline [r]efile "
  9661. "[S]catter [f]unction "
  9662. (and org-agenda-bulk-custom-functions
  9663. (format " Custom: [%s]"
  9664. (mapconcat (lambda (f) (char-to-string (car f)))
  9665. org-agenda-bulk-custom-functions
  9666. "")))))
  9667. (catch 'exit
  9668. (let* ((org-log-refile (if org-log-refile 'time nil))
  9669. (entries (reverse org-agenda-bulk-marked-entries))
  9670. (org-overriding-default-time
  9671. (and (get-text-property (point) 'org-agenda-date-header)
  9672. (org-get-cursor-date)))
  9673. redo-at-end
  9674. cmd)
  9675. (pcase (read-char-exclusive)
  9676. (?p
  9677. (let ((org-agenda-persistent-marks
  9678. (not org-agenda-persistent-marks)))
  9679. (org-agenda-bulk-action)
  9680. (throw 'exit nil)))
  9681. (?$
  9682. (setq cmd #'org-agenda-archive))
  9683. (?A
  9684. (setq cmd #'org-agenda-archive-to-archive-sibling))
  9685. ((or ?r ?w)
  9686. (let ((refile-location
  9687. (org-refile-get-location
  9688. "Refile to"
  9689. (marker-buffer (car entries))
  9690. org-refile-allow-creating-parent-nodes)))
  9691. (when (nth 3 refile-location)
  9692. (setcar (nthcdr 3 refile-location)
  9693. (move-marker
  9694. (make-marker)
  9695. (nth 3 refile-location)
  9696. (or (get-file-buffer (nth 1 refile-location))
  9697. (find-buffer-visiting (nth 1 refile-location))
  9698. (error "This should not happen")))))
  9699. (setq cmd `(lambda () (org-agenda-refile nil ',refile-location t)))
  9700. (setq redo-at-end t)))
  9701. (?t
  9702. (let ((state (completing-read
  9703. "Todo state: "
  9704. (with-current-buffer (marker-buffer (car entries))
  9705. (mapcar #'list org-todo-keywords-1)))))
  9706. (setq cmd `(lambda ()
  9707. (let ((org-inhibit-blocking t)
  9708. (org-inhibit-logging 'note))
  9709. (org-agenda-todo ,state))))))
  9710. ((and (or ?- ?+) action)
  9711. (let ((tag (completing-read
  9712. (format "Tag to %s: " (if (eq action ?+) "add" "remove"))
  9713. (with-current-buffer (marker-buffer (car entries))
  9714. (delq nil
  9715. (mapcar (lambda (x) (and (stringp (car x)) x))
  9716. org-current-tag-alist))))))
  9717. (setq cmd
  9718. `(lambda ()
  9719. (org-agenda-set-tags ,tag
  9720. ,(if (eq action ?+) ''on ''off))))))
  9721. ((and (or ?s ?d) c)
  9722. (let* ((schedule? (eq c ?s))
  9723. (prompt (if schedule? "(Re)Schedule to" "(Re)Set Deadline to"))
  9724. (time
  9725. (and (not arg)
  9726. (let ((new (org-read-date
  9727. nil nil nil prompt org-overriding-default-time)))
  9728. ;; A "double plus" answer applies to every
  9729. ;; scheduled time. Do not turn it into
  9730. ;; a fixed date yet.
  9731. (if (string-match-p "\\`[ \t]*\\+\\+"
  9732. org-read-date-final-answer)
  9733. org-read-date-final-answer
  9734. new)))))
  9735. ;; Make sure to not prompt for a note when bulk
  9736. ;; rescheduling/resetting deadline as Org cannot cope with
  9737. ;; simultaneous notes. Besides, it could be annoying
  9738. ;; depending on the number of marked items.
  9739. (setq cmd
  9740. (if schedule?
  9741. `(lambda ()
  9742. (let ((org-log-reschedule
  9743. (and org-log-reschedule 'time)))
  9744. (org-agenda-schedule arg ,time)))
  9745. `(lambda ()
  9746. (let ((org-log-redeadline (and org-log-redeadline 'time)))
  9747. (org-agenda-deadline arg ,time)))))))
  9748. (?S
  9749. (unless (org-agenda-check-type nil 'agenda 'todo)
  9750. (user-error "Can't scatter tasks in \"%s\" agenda view" org-agenda-type))
  9751. (let ((days (read-number
  9752. (format "Scatter tasks across how many %sdays: "
  9753. (if arg "week" ""))
  9754. 7)))
  9755. (setq cmd
  9756. `(lambda ()
  9757. (let ((distance (1+ (random ,days))))
  9758. (when arg
  9759. (let ((dist distance)
  9760. (day-of-week
  9761. (calendar-day-of-week
  9762. (calendar-gregorian-from-absolute (org-today)))))
  9763. (dotimes (i (1+ dist))
  9764. (while (member day-of-week org-agenda-weekend-days)
  9765. (cl-incf distance)
  9766. (cl-incf day-of-week)
  9767. (when (= day-of-week 7)
  9768. (setq day-of-week 0)))
  9769. (cl-incf day-of-week)
  9770. (when (= day-of-week 7)
  9771. (setq day-of-week 0)))))
  9772. ;; Silently fail when try to replan a sexp entry.
  9773. (ignore-errors
  9774. (let* ((date (calendar-gregorian-from-absolute
  9775. (+ (org-today) distance)))
  9776. (time (encode-time 0 0 0 (nth 1 date) (nth 0 date)
  9777. (nth 2 date))))
  9778. (org-agenda-schedule nil time))))))))
  9779. (?f
  9780. (setq cmd
  9781. (intern
  9782. (completing-read "Function: " obarray #'fboundp t nil nil))))
  9783. (action
  9784. (setq cmd
  9785. (pcase (assoc action org-agenda-bulk-custom-functions)
  9786. (`(,_ ,fn)
  9787. fn)
  9788. (`(,_ ,fn ,arg-fn)
  9789. (apply #'apply-partially fn (funcall arg-fn)))
  9790. (_
  9791. (user-error "Invalid bulk action: %c" action))))
  9792. (setq redo-at-end t)))
  9793. ;; Sort the markers, to make sure that parents are handled
  9794. ;; before children.
  9795. (setq entries (sort entries
  9796. (lambda (a b)
  9797. (cond
  9798. ((eq (marker-buffer a) (marker-buffer b))
  9799. (< (marker-position a) (marker-position b)))
  9800. (t
  9801. (string< (buffer-name (marker-buffer a))
  9802. (buffer-name (marker-buffer b))))))))
  9803. ;; Now loop over all markers and apply CMD.
  9804. (let ((processed 0)
  9805. (skipped 0))
  9806. (dolist (e entries)
  9807. (let ((pos (text-property-any (point-min) (point-max) 'org-hd-marker e)))
  9808. (if (not pos)
  9809. (progn (message "Skipping removed entry at %s" e)
  9810. (cl-incf skipped))
  9811. (goto-char pos)
  9812. (let (org-loop-over-headlines-in-active-region) (funcall cmd))
  9813. ;; `post-command-hook' is not run yet. We make sure any
  9814. ;; pending log note is processed.
  9815. (when (or (memq 'org-add-log-note (default-value 'post-command-hook))
  9816. (memq 'org-add-log-note post-command-hook))
  9817. (org-add-log-note))
  9818. (cl-incf processed))))
  9819. (when redo-at-end (org-agenda-redo))
  9820. (unless org-agenda-persistent-marks (org-agenda-bulk-unmark-all))
  9821. (message "Acted on %d entries%s%s"
  9822. processed
  9823. (if (= skipped 0)
  9824. ""
  9825. (format ", skipped %d (disappeared before their turn)"
  9826. skipped))
  9827. (if (not org-agenda-persistent-marks) "" " (kept marked)"))))))
  9828. (defun org-agenda-capture (&optional with-time)
  9829. "Call `org-capture' with the date at point.
  9830. With a `C-1' prefix, use the HH:MM value at point (if any) or the
  9831. current HH:MM time."
  9832. (interactive "P")
  9833. (if (not (eq major-mode 'org-agenda-mode))
  9834. (user-error "You cannot do this outside of agenda buffers")
  9835. (let ((org-overriding-default-time
  9836. (org-get-cursor-date (equal with-time 1))))
  9837. (call-interactively 'org-capture))))
  9838. ;;; Dragging agenda lines forward/backward
  9839. (defun org-agenda-reapply-filters ()
  9840. "Re-apply all agenda filters."
  9841. (mapcar
  9842. (lambda(f) (when (car f) (org-agenda-filter-apply (car f) (cadr f) t)))
  9843. `((,org-agenda-tag-filter tag)
  9844. (,org-agenda-category-filter category)
  9845. (,org-agenda-regexp-filter regexp)
  9846. (,org-agenda-effort-filter effort)
  9847. (,(get 'org-agenda-tag-filter :preset-filter) tag)
  9848. (,(get 'org-agenda-category-filter :preset-filter) category)
  9849. (,(get 'org-agenda-effort-filter :preset-filter) effort)
  9850. (,(get 'org-agenda-regexp-filter :preset-filter) regexp))))
  9851. (defun org-agenda-drag-line-forward (arg &optional backward)
  9852. "Drag an agenda line forward by ARG lines.
  9853. When the optional argument `backward' is non-nil, move backward."
  9854. (interactive "p")
  9855. (let ((inhibit-read-only t) lst line)
  9856. (if (or (not (get-text-property (point) 'txt))
  9857. (save-excursion
  9858. (dotimes (n arg)
  9859. (move-beginning-of-line (if backward 0 2))
  9860. (push (not (get-text-property (point) 'txt)) lst))
  9861. (delq nil lst)))
  9862. (message "Cannot move line forward")
  9863. (let ((end (save-excursion (move-beginning-of-line 2) (point))))
  9864. (move-beginning-of-line 1)
  9865. (setq line (buffer-substring (point) end))
  9866. (delete-region (point) end)
  9867. (move-beginning-of-line (funcall (if backward '1- '1+) arg))
  9868. (insert line)
  9869. (org-agenda-reapply-filters)
  9870. (org-agenda-mark-clocking-task)
  9871. (move-beginning-of-line 0)))))
  9872. (defun org-agenda-drag-line-backward (arg)
  9873. "Drag an agenda line backward by ARG lines."
  9874. (interactive "p")
  9875. (org-agenda-drag-line-forward arg t))
  9876. ;;; Flagging notes
  9877. (defun org-agenda-show-the-flagging-note ()
  9878. "Display the flagging note in the other window.
  9879. When called a second time in direct sequence, offer to remove the FLAGGING
  9880. tag and (if present) the flagging note."
  9881. (interactive)
  9882. (let ((hdmarker (org-get-at-bol 'org-hd-marker))
  9883. (win (selected-window))
  9884. note heading newhead)
  9885. (unless hdmarker
  9886. (user-error "No linked entry at point"))
  9887. (if (and (eq this-command last-command)
  9888. (y-or-n-p "Unflag and remove any flagging note? "))
  9889. (progn
  9890. (org-agenda-remove-flag hdmarker)
  9891. (let ((win (get-buffer-window "*Flagging Note*")))
  9892. (and win (delete-window win)))
  9893. (message "Entry unflagged"))
  9894. (setq note (org-entry-get hdmarker "THEFLAGGINGNOTE"))
  9895. (unless note
  9896. (user-error "No flagging note"))
  9897. (org-kill-new note)
  9898. (org-switch-to-buffer-other-window "*Flagging Note*")
  9899. (erase-buffer)
  9900. (insert note)
  9901. (goto-char (point-min))
  9902. (while (re-search-forward "\\\\n" nil t)
  9903. (replace-match "\n" t t))
  9904. (goto-char (point-min))
  9905. (select-window win)
  9906. (message "%s" (substitute-command-keys "Flagging note pushed to \
  9907. kill ring. Press `\\[org-agenda-show-the-flagging-note]' again to remove \
  9908. tag and note")))))
  9909. (defun org-agenda-remove-flag (marker)
  9910. "Remove the FLAGGED tag and any flagging note in the entry."
  9911. (let (newhead)
  9912. (org-with-point-at marker
  9913. (org-toggle-tag "FLAGGED" 'off)
  9914. (org-entry-delete nil "THEFLAGGINGNOTE")
  9915. (setq newhead (org-get-heading)))
  9916. (org-agenda-change-all-lines newhead marker)
  9917. (message "Entry unflagged")))
  9918. (defun org-agenda-get-any-marker (&optional pos)
  9919. (or (get-text-property (or pos (point-at-bol)) 'org-hd-marker)
  9920. (get-text-property (or pos (point-at-bol)) 'org-marker)))
  9921. ;;; Appointment reminders
  9922. (defvar appt-time-msg-list) ; defined in appt.el
  9923. ;;;###autoload
  9924. (defun org-agenda-to-appt (&optional refresh filter &rest args)
  9925. "Activate appointments found in `org-agenda-files'.
  9926. With a `\\[universal-argument]' prefix, refresh the list of \
  9927. appointments.
  9928. If FILTER is t, interactively prompt the user for a regular
  9929. expression, and filter out entries that don't match it.
  9930. If FILTER is a string, use this string as a regular expression
  9931. for filtering entries out.
  9932. If FILTER is a function, filter out entries against which
  9933. calling the function returns nil. This function takes one
  9934. argument: an entry from `org-agenda-get-day-entries'.
  9935. FILTER can also be an alist with the car of each cell being
  9936. either `headline' or `category'. For example:
  9937. \\='((headline \"IMPORTANT\")
  9938. (category \"Work\"))
  9939. will only add headlines containing IMPORTANT or headlines
  9940. belonging to the \"Work\" category.
  9941. ARGS are symbols indicating what kind of entries to consider.
  9942. By default `org-agenda-to-appt' will use :deadline*, :scheduled*
  9943. \(i.e., deadlines and scheduled items with a hh:mm specification)
  9944. and :timestamp entries. See the docstring of `org-diary' for
  9945. details and examples.
  9946. If an entry has a APPT_WARNTIME property, its value will be used
  9947. to override `appt-message-warning-time'."
  9948. (interactive "P")
  9949. (when refresh (setq appt-time-msg-list nil))
  9950. (when (eq filter t)
  9951. (setq filter (read-from-minibuffer "Regexp filter: ")))
  9952. (let* ((cnt 0) ; count added events
  9953. (scope (or args '(:deadline* :scheduled* :timestamp)))
  9954. (org-agenda-new-buffers nil)
  9955. (org-deadline-warning-days 0)
  9956. ;; Do not use `org-today' here because appt only takes
  9957. ;; time and without date as argument, so it may pass wrong
  9958. ;; information otherwise
  9959. (today (org-date-to-gregorian
  9960. (time-to-days nil)))
  9961. (org-agenda-restrict nil)
  9962. (files (org-agenda-files 'unrestricted)) entries file
  9963. (org-agenda-buffer nil))
  9964. ;; Get all entries which may contain an appt
  9965. (org-agenda-prepare-buffers files)
  9966. (while (setq file (pop files))
  9967. (setq entries
  9968. (delq nil
  9969. (append entries
  9970. (apply 'org-agenda-get-day-entries
  9971. file today scope)))))
  9972. ;; Map through entries and find if we should filter them out
  9973. (mapc
  9974. (lambda (x)
  9975. (let* ((evt (org-trim
  9976. (replace-regexp-in-string
  9977. org-link-bracket-re "\\2"
  9978. (or (get-text-property 1 'txt x) ""))))
  9979. (cat (get-text-property (1- (length x)) 'org-category x))
  9980. (tod (get-text-property 1 'time-of-day x))
  9981. (ok (or (null filter)
  9982. (and (stringp filter) (string-match filter evt))
  9983. (and (functionp filter) (funcall filter x))
  9984. (and (listp filter)
  9985. (let ((cat-filter (cadr (assq 'category filter)))
  9986. (evt-filter (cadr (assq 'headline filter))))
  9987. (or (and (stringp cat-filter)
  9988. (string-match cat-filter cat))
  9989. (and (stringp evt-filter)
  9990. (string-match evt-filter evt)))))))
  9991. (wrn (get-text-property 1 'warntime x)))
  9992. ;; FIXME: Shall we remove text-properties for the appt text?
  9993. ;; (setq evt (set-text-properties 0 (length evt) nil evt))
  9994. (when (and ok tod (not (string-match "\\`DONE\\|CANCELLED" evt)))
  9995. (setq tod (concat "00" (number-to-string tod)))
  9996. (setq tod (when (string-match
  9997. "\\([0-9]\\{1,2\\}\\)\\([0-9]\\{2\\}\\)\\'" tod)
  9998. (concat (match-string 1 tod) ":"
  9999. (match-string 2 tod))))
  10000. (when (appt-add tod evt wrn)
  10001. (setq cnt (1+ cnt))))))
  10002. entries)
  10003. (org-release-buffers org-agenda-new-buffers)
  10004. (if (eq cnt 0)
  10005. (message "No event to add")
  10006. (message "Added %d event%s for today" cnt (if (> cnt 1) "s" "")))))
  10007. (defun org-agenda-today-p (date)
  10008. "Non-nil when DATE means today.
  10009. DATE is either a list of the form (month day year) or a number of
  10010. days as returned by `calendar-absolute-from-gregorian' or
  10011. `org-today'. This function considers `org-extend-today-until'
  10012. when defining today."
  10013. (eq (org-today)
  10014. (if (consp date) (calendar-absolute-from-gregorian date) date)))
  10015. (defun org-agenda-todo-yesterday (&optional arg)
  10016. "Like `org-agenda-todo' but the time of change will be 23:59 of yesterday."
  10017. (interactive "P")
  10018. (let* ((org-use-effective-time t)
  10019. (hour (nth 2 (decode-time (org-current-time))))
  10020. (org-extend-today-until (1+ hour)))
  10021. (org-agenda-todo arg)))
  10022. (defun org-agenda-ctrl-c-ctrl-c ()
  10023. "Set tags in agenda buffer."
  10024. (interactive)
  10025. (org-agenda-set-tags))
  10026. (provide 'org-agenda)
  10027. ;;; org-agenda.el ends here