org-agenda.el 419 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858
  1. ;;; org-agenda.el --- Dynamic task and appointment lists for Org -*- lexical-binding: t; -*-
  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. ;; FIXME: Do we really want to evaluate those settings and thus force
  134. ;; the user to use `quote' all the time?
  135. "Alist of variable/value pairs that should be active during agenda export.
  136. This is a good place to set options for ps-print and for htmlize.
  137. Note that the way this is implemented, the values will be evaluated
  138. before assigned to the variables. So make sure to quote values you do
  139. *not* want evaluated, for example
  140. (setq org-agenda-exporter-settings
  141. \\='((ps-print-color-p \\='black-white)))"
  142. :group 'org-agenda-export
  143. :type '(repeat
  144. (list
  145. (variable)
  146. (sexp :tag "Value"))))
  147. (defcustom org-agenda-before-write-hook '(org-agenda-add-entry-text)
  148. "Hook run in a temporary buffer before writing the agenda to an export file.
  149. A useful function for this hook is `org-agenda-add-entry-text'."
  150. :group 'org-agenda-export
  151. :type 'hook
  152. :options '(org-agenda-add-entry-text))
  153. (defcustom org-agenda-add-entry-text-maxlines 0
  154. "Maximum number of entry text lines to be added to agenda.
  155. This is only relevant when `org-agenda-add-entry-text' is part of
  156. `org-agenda-before-write-hook', which is the default.
  157. When this is 0, nothing will happen. When it is greater than 0, it
  158. specifies the maximum number of lines that will be added for each entry
  159. that is listed in the agenda view.
  160. Note that this variable is not used during display, only when exporting
  161. the agenda. For agenda display, see the variables `org-agenda-entry-text-mode'
  162. and `org-agenda-entry-text-maxlines'."
  163. :group 'org-agenda
  164. :type 'integer)
  165. (defcustom org-agenda-add-entry-text-descriptive-links t
  166. "Non-nil means export org-links as descriptive links in agenda added text.
  167. This variable applies to the text added to the agenda when
  168. `org-agenda-add-entry-text-maxlines' is larger than 0.
  169. When this variable is nil, the URL will (also) be shown."
  170. :group 'org-agenda
  171. :type 'boolean)
  172. (defcustom org-agenda-export-html-style nil
  173. "The style specification for exported HTML Agenda files.
  174. If this variable contains a string, it will replace the default <style>
  175. section as produced by `htmlize'.
  176. Since there are different ways of setting style information, this variable
  177. needs to contain the full HTML structure to provide a style, including the
  178. surrounding HTML tags. The style specifications should include definitions
  179. the fonts used by the agenda, here is an example:
  180. <style type=\"text/css\">
  181. p { font-weight: normal; color: gray; }
  182. .org-agenda-structure {
  183. font-size: 110%;
  184. color: #003399;
  185. font-weight: 600;
  186. }
  187. .org-todo {
  188. color: #cc6666;
  189. font-weight: bold;
  190. }
  191. .org-agenda-done {
  192. color: #339933;
  193. }
  194. .org-done {
  195. color: #339933;
  196. }
  197. .title { text-align: center; }
  198. .todo, .deadline { color: red; }
  199. .done { color: green; }
  200. </style>
  201. or, if you want to keep the style in a file,
  202. <link rel=\"stylesheet\" type=\"text/css\" href=\"mystyles.css\">
  203. As the value of this option simply gets inserted into the HTML <head> header,
  204. you can \"misuse\" it to also add other text to the header."
  205. :group 'org-agenda-export
  206. :group 'org-export-html
  207. :type '(choice
  208. (const nil)
  209. (string)))
  210. (defcustom org-agenda-persistent-filter nil
  211. "When set, keep filters from one agenda view to the next."
  212. :group 'org-agenda
  213. :type 'boolean)
  214. (defgroup org-agenda-custom-commands nil
  215. "Options concerning agenda views in Org mode."
  216. :tag "Org Agenda Custom Commands"
  217. :group 'org-agenda)
  218. (defconst org-sorting-choice
  219. '(choice
  220. (const time-up) (const time-down)
  221. (const timestamp-up) (const timestamp-down)
  222. (const scheduled-up) (const scheduled-down)
  223. (const deadline-up) (const deadline-down)
  224. (const ts-up) (const ts-down)
  225. (const tsia-up) (const tsia-down)
  226. (const category-keep) (const category-up) (const category-down)
  227. (const tag-down) (const tag-up)
  228. (const priority-up) (const priority-down)
  229. (const todo-state-up) (const todo-state-down)
  230. (const effort-up) (const effort-down)
  231. (const habit-up) (const habit-down)
  232. (const alpha-up) (const alpha-down)
  233. (const user-defined-up) (const user-defined-down))
  234. "Sorting choices.")
  235. ;; Keep custom values for `org-agenda-filter-preset' compatible with
  236. ;; the new variable `org-agenda-tag-filter-preset'.
  237. (defvaralias 'org-agenda-filter-preset 'org-agenda-tag-filter-preset)
  238. (defvaralias 'org-agenda-filter 'org-agenda-tag-filter)
  239. (defvar org-agenda-entry-types '(:deadline :scheduled :timestamp :sexp)
  240. "List of types searched for when creating the daily/weekly agenda.
  241. This variable is a list of symbols that controls the types of
  242. items that appear in the daily/weekly agenda. Allowed symbols in this
  243. list are
  244. :timestamp List items containing a date stamp or date range matching
  245. the selected date. This includes sexp entries in angular
  246. brackets.
  247. :sexp List entries resulting from plain diary-like sexps.
  248. :deadline List deadline due on that date. When the date is today,
  249. also list any deadlines past due, or due within
  250. `org-deadline-warning-days'.
  251. :deadline* Same as above, but only include the deadline if it has an
  252. hour specification as [h]h:mm.
  253. :scheduled List all items which are scheduled for the given date.
  254. The diary for *today* also contains items which were
  255. scheduled earlier and are not yet marked DONE.
  256. :scheduled* Same as above, but only include the scheduled item if it
  257. has an hour specification as [h]h:mm.
  258. By default, all four non-starred types are turned on.
  259. When :scheduled* or :deadline* are included, :schedule or :deadline
  260. will be ignored.
  261. Never set this variable globally using `setq', because then it
  262. will apply to all future agenda commands. Instead, bind it with
  263. `let' to scope it dynamically into the agenda-constructing
  264. command. A good way to set it is through options in
  265. `org-agenda-custom-commands'. For a more flexible (though
  266. somewhat less efficient) way of determining what is included in
  267. the daily/weekly agenda, see `org-agenda-skip-function'.")
  268. (defconst org-agenda-custom-commands-local-options
  269. `(repeat :tag "Local settings for this command. Remember to quote values"
  270. (choice :tag "Setting"
  271. (list :tag "Heading for this block"
  272. (const org-agenda-overriding-header)
  273. (string :tag "Headline"))
  274. (list :tag "Files to be searched"
  275. (const org-agenda-files)
  276. (list
  277. (const :format "" quote)
  278. (repeat (file))))
  279. (list :tag "Sorting strategy"
  280. (const org-agenda-sorting-strategy)
  281. (list
  282. (const :format "" quote)
  283. (repeat
  284. ,org-sorting-choice)))
  285. (list :tag "Prefix format"
  286. (const org-agenda-prefix-format :value " %-12:c%?-12t% s")
  287. (string))
  288. (list :tag "Number of days in agenda"
  289. (const org-agenda-span)
  290. (list
  291. (const :format "" quote)
  292. (choice (const :tag "Day" day)
  293. (const :tag "Week" week)
  294. (const :tag "Fortnight" fortnight)
  295. (const :tag "Month" month)
  296. (const :tag "Year" year)
  297. (integer :tag "Custom"))))
  298. (list :tag "Fixed starting date"
  299. (const org-agenda-start-day)
  300. (string :value "2007-11-01"))
  301. (list :tag "Start on day of week"
  302. (const org-agenda-start-on-weekday)
  303. (choice :value 1
  304. (const :tag "Today" nil)
  305. (integer :tag "Weekday No.")))
  306. (list :tag "Include data from diary"
  307. (const org-agenda-include-diary)
  308. (boolean))
  309. (list :tag "Deadline Warning days"
  310. (const org-deadline-warning-days)
  311. (integer :value 1))
  312. (list :tag "Category filter preset"
  313. (const org-agenda-category-filter-preset)
  314. (list
  315. (const :format "" quote)
  316. (repeat
  317. (string :tag "+category or -category"))))
  318. (list :tag "Tags filter preset"
  319. (const org-agenda-tag-filter-preset)
  320. (list
  321. (const :format "" quote)
  322. (repeat
  323. (string :tag "+tag or -tag"))))
  324. (list :tag "Effort filter preset"
  325. (const org-agenda-effort-filter-preset)
  326. (list
  327. (const :format "" quote)
  328. (repeat
  329. (string :tag "+=10 or -=10 or +<10 or ->10"))))
  330. (list :tag "Regexp filter preset"
  331. (const org-agenda-regexp-filter-preset)
  332. (list
  333. (const :format "" quote)
  334. (repeat
  335. (string :tag "+regexp or -regexp"))))
  336. (list :tag "Set daily/weekly entry types"
  337. (const org-agenda-entry-types)
  338. (list
  339. (const :format "" quote)
  340. (set :greedy t :value ,org-agenda-entry-types
  341. (const :deadline)
  342. (const :scheduled)
  343. (const :deadline*)
  344. (const :scheduled*)
  345. (const :timestamp)
  346. (const :sexp))))
  347. (list :tag "Columns format"
  348. (const org-overriding-columns-format)
  349. (string :tag "Format"))
  350. (list :tag "Standard skipping condition"
  351. :value (org-agenda-skip-function '(org-agenda-skip-entry-if))
  352. (const org-agenda-skip-function)
  353. (list
  354. (const :format "" quote)
  355. (list
  356. (choice
  357. :tag "Skipping range"
  358. (const :tag "Skip entry" org-agenda-skip-entry-if)
  359. (const :tag "Skip subtree" org-agenda-skip-subtree-if))
  360. (repeat :inline t :tag "Conditions for skipping"
  361. (choice
  362. :tag "Condition type"
  363. (list :tag "Regexp matches" :inline t
  364. (const :format "" regexp)
  365. (regexp))
  366. (list :tag "Regexp does not match" :inline t
  367. (const :format "" notregexp)
  368. (regexp))
  369. (list :tag "TODO state is" :inline t
  370. (const todo)
  371. (choice
  372. (const :tag "Any not-done state" todo)
  373. (const :tag "Any done state" done)
  374. (const :tag "Any state" any)
  375. (list :tag "Keyword list"
  376. (const :format "" quote)
  377. (repeat (string :tag "Keyword")))))
  378. (list :tag "TODO state is not" :inline t
  379. (const nottodo)
  380. (choice
  381. (const :tag "Any not-done state" todo)
  382. (const :tag "Any done state" done)
  383. (const :tag "Any state" any)
  384. (list :tag "Keyword list"
  385. (const :format "" quote)
  386. (repeat (string :tag "Keyword")))))
  387. (const :tag "scheduled" scheduled)
  388. (const :tag "not scheduled" notscheduled)
  389. (const :tag "deadline" deadline)
  390. (const :tag "no deadline" notdeadline)
  391. (const :tag "timestamp" timestamp)
  392. (const :tag "no timestamp" nottimestamp))))))
  393. (list :tag "Non-standard skipping condition"
  394. :value (org-agenda-skip-function)
  395. (const org-agenda-skip-function)
  396. (sexp :tag "Function or form (quoted!)"))
  397. (list :tag "Any variable"
  398. (variable :tag "Variable")
  399. (sexp :tag "Value (sexp)"))))
  400. "Selection of examples for agenda command settings.
  401. This will be spliced into the custom type of
  402. `org-agenda-custom-commands'.")
  403. (defcustom org-agenda-custom-commands
  404. '(("n" "Agenda and all TODOs" ((agenda "") (alltodo ""))))
  405. "Custom commands for the agenda.
  406. \\<org-mode-map>
  407. These commands will be offered on the splash screen displayed by the
  408. agenda dispatcher `\\[org-agenda]'. Each entry is a list like this:
  409. (key desc type match settings files)
  410. key The key (one or more characters as a string) to be associated
  411. with the command.
  412. desc A description of the command, when omitted or nil, a default
  413. description is built using MATCH.
  414. type The command type, any of the following symbols:
  415. agenda The daily/weekly agenda.
  416. todo Entries with a specific TODO keyword, in all agenda files.
  417. search Entries containing search words entry or headline.
  418. tags Tags/Property/TODO match in all agenda files.
  419. tags-todo Tags/P/T match in all agenda files, TODO entries only.
  420. todo-tree Sparse tree of specific TODO keyword in *current* file.
  421. tags-tree Sparse tree with all tags matches in *current* file.
  422. occur-tree Occur sparse tree for *current* file.
  423. ... A user-defined function.
  424. match What to search for:
  425. - a single keyword for TODO keyword searches
  426. - a tags/property/todo match expression for searches
  427. - a word search expression for text searches.
  428. - a regular expression for occur searches
  429. For all other commands, this should be the empty string.
  430. settings A list of option settings, similar to that in a let form, so like
  431. this: ((opt1 val1) (opt2 val2) ...). The values will be
  432. evaluated at the moment of execution, so quote them when needed.
  433. files A list of files to write the produced agenda buffer to with
  434. the command `org-store-agenda-views'.
  435. If a file name ends in \".html\", an HTML version of the buffer
  436. is written out. If it ends in \".ps\", a postscript version is
  437. produced. Otherwise, only the plain text is written to the file.
  438. You can also define a set of commands, to create a composite agenda buffer.
  439. In this case, an entry looks like this:
  440. (key desc (cmd1 cmd2 ...) general-settings-for-whole-set files)
  441. where
  442. desc A description string to be displayed in the dispatcher menu.
  443. cmd An agenda command, similar to the above. However, tree commands
  444. are not allowed, but instead you can get agenda and global todo list.
  445. So valid commands for a set are:
  446. (agenda \"\" settings)
  447. (alltodo \"\" settings)
  448. (stuck \"\" settings)
  449. (todo \"match\" settings files)
  450. (search \"match\" settings files)
  451. (tags \"match\" settings files)
  452. (tags-todo \"match\" settings files)
  453. Each command can carry a list of options, and another set of options can be
  454. given for the whole set of commands. Individual command options take
  455. precedence over the general options.
  456. When using several characters as key to a command, the first characters
  457. are prefix commands. For the dispatcher to display useful information, you
  458. should provide a description for the prefix, like
  459. (setq org-agenda-custom-commands
  460. \\='((\"h\" . \"HOME + Name tag searches\") ; describe prefix \"h\"
  461. (\"hl\" tags \"+HOME+Lisa\")
  462. (\"hp\" tags \"+HOME+Peter\")
  463. (\"hk\" tags \"+HOME+Kim\")))"
  464. :group 'org-agenda-custom-commands
  465. :type `(repeat
  466. (choice :value ("x" "Describe command here" tags "" nil)
  467. (list :tag "Single command"
  468. (string :tag "Access Key(s) ")
  469. (option (string :tag "Description"))
  470. (choice
  471. (const :tag "Agenda" agenda)
  472. (const :tag "TODO list" alltodo)
  473. (const :tag "Search words" search)
  474. (const :tag "Stuck projects" stuck)
  475. (const :tag "Tags/Property match (all agenda files)" tags)
  476. (const :tag "Tags/Property match of TODO entries (all agenda files)" tags-todo)
  477. (const :tag "TODO keyword search (all agenda files)" todo)
  478. (const :tag "Tags sparse tree (current buffer)" tags-tree)
  479. (const :tag "TODO keyword tree (current buffer)" todo-tree)
  480. (const :tag "Occur tree (current buffer)" occur-tree)
  481. (sexp :tag "Other, user-defined function"))
  482. (string :tag "Match (only for some commands)")
  483. ,org-agenda-custom-commands-local-options
  484. (option (repeat :tag "Export" (file :tag "Export to"))))
  485. (list :tag "Command series, all agenda files"
  486. (string :tag "Access Key(s)")
  487. (string :tag "Description ")
  488. (repeat :tag "Component"
  489. (choice
  490. (list :tag "Agenda"
  491. (const :format "" agenda)
  492. (const :tag "" :format "" "")
  493. ,org-agenda-custom-commands-local-options)
  494. (list :tag "TODO list (all keywords)"
  495. (const :format "" alltodo)
  496. (const :tag "" :format "" "")
  497. ,org-agenda-custom-commands-local-options)
  498. (list :tag "Search words"
  499. (const :format "" search)
  500. (string :tag "Match")
  501. ,org-agenda-custom-commands-local-options)
  502. (list :tag "Stuck projects"
  503. (const :format "" stuck)
  504. (const :tag "" :format "" "")
  505. ,org-agenda-custom-commands-local-options)
  506. (list :tag "Tags/Property match (all agenda files)"
  507. (const :format "" tags)
  508. (string :tag "Match")
  509. ,org-agenda-custom-commands-local-options)
  510. (list :tag "Tags/Property match of TODO entries (all agenda files)"
  511. (const :format "" tags-todo)
  512. (string :tag "Match")
  513. ,org-agenda-custom-commands-local-options)
  514. (list :tag "TODO keyword search"
  515. (const :format "" todo)
  516. (string :tag "Match")
  517. ,org-agenda-custom-commands-local-options)
  518. (list :tag "Other, user-defined function"
  519. (symbol :tag "function")
  520. (string :tag "Match")
  521. ,org-agenda-custom-commands-local-options)))
  522. (repeat :tag "Settings for entire command set"
  523. (list (variable :tag "Any variable")
  524. (sexp :tag "Value")))
  525. (option (repeat :tag "Export" (file :tag "Export to"))))
  526. (cons :tag "Prefix key documentation"
  527. (string :tag "Access Key(s)")
  528. (string :tag "Description ")))))
  529. (defcustom org-agenda-query-register ?o
  530. "The register holding the current query string.
  531. The purpose of this is that if you construct a query string interactively,
  532. you can then use it to define a custom command."
  533. :group 'org-agenda-custom-commands
  534. :type 'character)
  535. (defcustom org-stuck-projects
  536. '("+LEVEL=2/-DONE" ("TODO" "NEXT" "NEXTACTION") nil "")
  537. "How to identify stuck projects.
  538. This is a list of four items:
  539. 1. A tags/todo/property matcher string that is used to identify a project.
  540. See the manual for a description of tag and property searches.
  541. The entire tree below a headline matched by this is considered one project.
  542. 2. A list of TODO keywords identifying non-stuck projects.
  543. If the project subtree contains any headline with one of these todo
  544. keywords, the project is considered to be not stuck. If you specify
  545. \"*\" as a keyword, any TODO keyword will mark the project unstuck.
  546. 3. A list of tags identifying non-stuck projects.
  547. If the project subtree contains any headline with one of these tags,
  548. the project is considered to be not stuck. If you specify \"*\" as
  549. a tag, any tag will mark the project unstuck. Note that this is about
  550. the explicit presence of a tag somewhere in the subtree, inherited
  551. tags do not count here. If inherited tags make a project not stuck,
  552. use \"-TAG\" in the tags part of the matcher under (1.) above.
  553. 4. An arbitrary regular expression matching non-stuck projects.
  554. If the project turns out to be not stuck, search continues also in the
  555. subtree to see if any of the subtasks have project status.
  556. See also the variable `org-tags-match-list-sublevels' which applies
  557. to projects matched by this search as well.
  558. After defining this variable, you may use `org-agenda-list-stuck-projects'
  559. \(bound to `\\[org-agenda] #') to produce the list."
  560. :group 'org-agenda-custom-commands
  561. :type '(list
  562. (string :tag "Tags/TODO match to identify a project")
  563. (repeat :tag "Projects are *not* stuck if they have an entry with \
  564. TODO keyword any of" (string))
  565. (repeat :tag "Projects are *not* stuck if they have an entry with \
  566. TAG being any of" (string))
  567. (regexp :tag "Projects are *not* stuck if this regexp matches inside \
  568. the subtree")))
  569. (defgroup org-agenda-skip nil
  570. "Options concerning skipping parts of agenda files."
  571. :tag "Org Agenda Skip"
  572. :group 'org-agenda)
  573. (defcustom org-agenda-skip-function-global nil
  574. "Function to be called at each match during agenda construction.
  575. If this function returns nil, the current match should not be skipped.
  576. If the function decided to skip an agenda match, is must return the
  577. buffer position from which the search should be continued.
  578. This may also be a Lisp form, which will be evaluated.
  579. This variable will be applied to every agenda match, including
  580. tags/property searches and TODO lists. So try to make the test function
  581. do its checking as efficiently as possible. To implement a skipping
  582. condition just for specific agenda commands, use the variable
  583. `org-agenda-skip-function' which can be set in the options section
  584. of custom agenda commands."
  585. :group 'org-agenda-skip
  586. :type 'sexp)
  587. (defgroup org-agenda-daily/weekly nil
  588. "Options concerning the daily/weekly agenda."
  589. :tag "Org Agenda Daily/Weekly"
  590. :group 'org-agenda)
  591. (defgroup org-agenda-todo-list nil
  592. "Options concerning the global todo list agenda view."
  593. :tag "Org Agenda Todo List"
  594. :group 'org-agenda)
  595. (defgroup org-agenda-match-view nil
  596. "Options concerning the general tags/property/todo match agenda view."
  597. :tag "Org Agenda Match View"
  598. :group 'org-agenda)
  599. (defgroup org-agenda-search-view nil
  600. "Options concerning the search agenda view."
  601. :tag "Org Agenda Search View"
  602. :group 'org-agenda)
  603. (defvar org-agenda-archives-mode nil
  604. "Non-nil means the agenda will include archived items.
  605. If this is the symbol `trees', trees in the selected agenda scope
  606. that are marked with the ARCHIVE tag will be included anyway. When this is
  607. t, also all archive files associated with the current selection of agenda
  608. files will be included.")
  609. (defcustom org-agenda-restriction-lock-highlight-subtree t
  610. "Non-nil means highlight the whole subtree when restriction is active.
  611. Otherwise only highlight the headline. Highlighting the whole subtree is
  612. useful to ensure no edits happen beyond the restricted region."
  613. :group 'org-agenda
  614. :type 'boolean)
  615. (defcustom org-agenda-skip-comment-trees t
  616. "Non-nil means skip trees that start with the COMMENT keyword.
  617. When nil, these trees are also scanned by agenda commands."
  618. :group 'org-agenda-skip
  619. :type 'boolean)
  620. (defcustom org-agenda-todo-list-sublevels t
  621. "Non-nil means check also the sublevels of a TODO entry for TODO entries.
  622. When nil, the sublevels of a TODO entry are not checked, resulting in
  623. potentially much shorter TODO lists."
  624. :group 'org-agenda-skip
  625. :group 'org-agenda-todo-list
  626. :type 'boolean)
  627. (defcustom org-agenda-todo-ignore-with-date nil
  628. "Non-nil means don't show entries with a date in the global todo list.
  629. You can use this if you prefer to mark mere appointments with a TODO keyword,
  630. but don't want them to show up in the TODO list.
  631. When this is set, it also covers deadlines and scheduled items, the settings
  632. of `org-agenda-todo-ignore-scheduled' and `org-agenda-todo-ignore-deadlines'
  633. will be ignored.
  634. See also the variable `org-agenda-tags-todo-honor-ignore-options'."
  635. :group 'org-agenda-skip
  636. :group 'org-agenda-todo-list
  637. :type 'boolean)
  638. (defcustom org-agenda-todo-ignore-timestamp nil
  639. "Non-nil means don't show entries with a timestamp.
  640. This applies when creating the global todo list.
  641. Valid values are:
  642. past Don't show entries for today or in the past.
  643. future Don't show entries with a timestamp in the future.
  644. The idea behind this is that if it has a future
  645. timestamp, you don't want to think about it until the
  646. date.
  647. all Don't show any entries with a timestamp in the global todo list.
  648. The idea behind this is that by setting a timestamp, you
  649. have already \"taken care\" of this item.
  650. This variable can also have an integer as a value. If positive (N),
  651. todos with a timestamp N or more days in the future will be ignored. If
  652. negative (-N), todos with a timestamp N or more days in the past will be
  653. ignored. If 0, todos with a timestamp either today or in the future will
  654. be ignored. For example, a value of -1 will exclude todos with a
  655. timestamp in the past (yesterday or earlier), while a value of 7 will
  656. exclude todos with a timestamp a week or more in the future.
  657. See also `org-agenda-todo-ignore-with-date'.
  658. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  659. to make his option also apply to the tags-todo list."
  660. :group 'org-agenda-skip
  661. :group 'org-agenda-todo-list
  662. :version "24.1"
  663. :type '(choice
  664. (const :tag "Ignore future timestamp todos" future)
  665. (const :tag "Ignore past or present timestamp todos" past)
  666. (const :tag "Ignore all timestamp todos" all)
  667. (const :tag "Show timestamp todos" nil)
  668. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  669. (defcustom org-agenda-todo-ignore-scheduled nil
  670. "Non-nil means, ignore some scheduled TODO items when making TODO list.
  671. This applies when creating the global todo list.
  672. Valid values are:
  673. past Don't show entries scheduled today or in the past.
  674. future Don't show entries scheduled in the future.
  675. The idea behind this is that by scheduling it, you don't want to
  676. think about it until the scheduled date.
  677. all Don't show any scheduled entries in the global todo list.
  678. The idea behind this is that by scheduling it, you have already
  679. \"taken care\" of this item.
  680. t Same as `all', for backward compatibility.
  681. This variable can also have an integer as a value. See
  682. `org-agenda-todo-ignore-timestamp' for more details.
  683. See also `org-agenda-todo-ignore-with-date'.
  684. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  685. to make his option also apply to the tags-todo list."
  686. :group 'org-agenda-skip
  687. :group 'org-agenda-todo-list
  688. :type '(choice
  689. (const :tag "Ignore future-scheduled todos" future)
  690. (const :tag "Ignore past- or present-scheduled todos" past)
  691. (const :tag "Ignore all scheduled todos" all)
  692. (const :tag "Ignore all scheduled todos (compatibility)" t)
  693. (const :tag "Show scheduled todos" nil)
  694. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  695. (defcustom org-agenda-todo-ignore-deadlines nil
  696. "Non-nil means ignore some deadline TODO items when making TODO list.
  697. There are different motivations for using different values, please think
  698. carefully when configuring this variable.
  699. This applies when creating the global TODO list.
  700. Valid values are:
  701. near Don't show near deadline entries. A deadline is near when it is
  702. closer than `org-deadline-warning-days' days. The idea behind this
  703. is that such items will appear in the agenda anyway.
  704. far Don't show TODO entries where a deadline has been defined, but
  705. is not going to happen anytime soon. This is useful if you want to use
  706. the TODO list to figure out what to do now.
  707. past Don't show entries with a deadline timestamp for today or in the past.
  708. future Don't show entries with a deadline timestamp in the future, not even
  709. when they become `near' ones. Use it with caution.
  710. all Ignore all TODO entries that do have a deadline.
  711. t Same as `near', for backward compatibility.
  712. This variable can also have an integer as a value. See
  713. `org-agenda-todo-ignore-timestamp' for more details.
  714. See also `org-agenda-todo-ignore-with-date'.
  715. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  716. to make his option also apply to the tags-todo list."
  717. :group 'org-agenda-skip
  718. :group 'org-agenda-todo-list
  719. :type '(choice
  720. (const :tag "Ignore near deadlines" near)
  721. (const :tag "Ignore near deadlines (compatibility)" t)
  722. (const :tag "Ignore far deadlines" far)
  723. (const :tag "Ignore all TODOs with a deadlines" all)
  724. (const :tag "Show all TODOs, even if they have a deadline" nil)
  725. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  726. (defcustom org-agenda-todo-ignore-time-comparison-use-seconds nil
  727. "Time unit to use when possibly ignoring an agenda item.
  728. See the docstring of various `org-agenda-todo-ignore-*' options.
  729. The default is to compare time stamps using days. An item is thus
  730. considered to be in the future if it is at least one day after today.
  731. Non-nil means to compare time stamps using seconds. An item is then
  732. considered future if it has a time value later than current time."
  733. :group 'org-agenda-skip
  734. :group 'org-agenda-todo-list
  735. :version "24.4"
  736. :package-version '(Org . "8.0")
  737. :type '(choice
  738. (const :tag "Compare time with days" nil)
  739. (const :tag "Compare time with seconds" t)))
  740. (defcustom org-agenda-tags-todo-honor-ignore-options nil
  741. "Non-nil means honor todo-list ignores options also in tags-todo search.
  742. The variables
  743. `org-agenda-todo-ignore-with-date',
  744. `org-agenda-todo-ignore-timestamp',
  745. `org-agenda-todo-ignore-scheduled',
  746. `org-agenda-todo-ignore-deadlines'
  747. make the global TODO list skip entries that have time stamps of certain
  748. kinds. If this option is set, the same options will also apply for the
  749. tags-todo search, which is the general tags/property matcher
  750. restricted to unfinished TODO entries only."
  751. :group 'org-agenda-skip
  752. :group 'org-agenda-todo-list
  753. :group 'org-agenda-match-view
  754. :type 'boolean)
  755. (defcustom org-agenda-skip-scheduled-if-done nil
  756. "Non-nil means don't show scheduled items in agenda when they are done.
  757. This is relevant for the daily/weekly agenda, not for the TODO list. It
  758. applies only to the actual date of the scheduling. Warnings about an item
  759. with a past scheduling dates are always turned off when the item is DONE."
  760. :group 'org-agenda-skip
  761. :group 'org-agenda-daily/weekly
  762. :type 'boolean)
  763. (defcustom org-agenda-skip-scheduled-if-deadline-is-shown nil
  764. "Non-nil means skip scheduling line if same entry shows because of deadline.
  765. In the agenda of today, an entry can show up multiple times
  766. because it is both scheduled and has a nearby deadline, and maybe
  767. a plain time stamp as well.
  768. When this variable is nil, the entry will be shown several times.
  769. When set to t, then only the deadline is shown and the fact that
  770. the entry is scheduled today or was scheduled previously is not
  771. shown.
  772. When set to the symbol `not-today', skip scheduled previously,
  773. but not scheduled today.
  774. When set to the symbol `repeated-after-deadline', skip scheduled
  775. items if they are repeated beyond the current deadline."
  776. :group 'org-agenda-skip
  777. :group 'org-agenda-daily/weekly
  778. :type '(choice
  779. (const :tag "Never" nil)
  780. (const :tag "Always" t)
  781. (const :tag "Not when scheduled today" not-today)
  782. (const :tag "When repeated past deadline" repeated-after-deadline)))
  783. (defcustom org-agenda-skip-timestamp-if-deadline-is-shown nil
  784. "Non-nil means skip timestamp line if same entry shows because of deadline.
  785. In the agenda of today, an entry can show up multiple times
  786. because it has both a plain timestamp and has a nearby deadline.
  787. When this variable is t, then only the deadline is shown and the
  788. fact that the entry has a timestamp for or including today is not
  789. shown. When this variable is nil, the entry will be shown
  790. several times."
  791. :group 'org-agenda-skip
  792. :group 'org-agenda-daily/weekly
  793. :version "24.1"
  794. :type '(choice
  795. (const :tag "Never" nil)
  796. (const :tag "Always" t)))
  797. (defcustom org-agenda-skip-deadline-if-done nil
  798. "Non-nil means don't show deadlines when the corresponding item is done.
  799. When nil, the deadline is still shown and should give you a happy feeling.
  800. This is relevant for the daily/weekly agenda. It applies only to the
  801. actual date of the deadline. Warnings about approaching and past-due
  802. deadlines are always turned off when the item is DONE."
  803. :group 'org-agenda-skip
  804. :group 'org-agenda-daily/weekly
  805. :type 'boolean)
  806. (defcustom org-agenda-skip-deadline-prewarning-if-scheduled nil
  807. "Non-nil means skip deadline prewarning when entry is also scheduled.
  808. This will apply on all days where a prewarning for the deadline would
  809. be shown, but not at the day when the entry is actually due. On that day,
  810. the deadline will be shown anyway.
  811. This variable may be set to nil, t, the symbol `pre-scheduled',
  812. or a number which will then give the number of days before the actual
  813. deadline when the prewarnings should resume. The symbol `pre-scheduled'
  814. eliminates the deadline prewarning only prior to the scheduled date.
  815. This can be used in a workflow where the first showing of the deadline will
  816. trigger you to schedule it, and then you don't want to be reminded of it
  817. because you will take care of it on the day when scheduled."
  818. :group 'org-agenda-skip
  819. :group 'org-agenda-daily/weekly
  820. :version "24.1"
  821. :type '(choice
  822. (const :tag "Always show prewarning" nil)
  823. (const :tag "Remove prewarning prior to scheduled date" pre-scheduled)
  824. (const :tag "Remove prewarning if entry is scheduled" t)
  825. (integer :tag "Restart prewarning N days before deadline")))
  826. (defcustom org-agenda-skip-scheduled-delay-if-deadline nil
  827. "Non-nil means skip scheduled delay when entry also has a deadline.
  828. This variable may be set to nil, t, the symbol `post-deadline',
  829. or a number which will then give the number of days after the actual
  830. scheduled date when the delay should expire. The symbol `post-deadline'
  831. eliminates the schedule delay when the date is posterior to the deadline."
  832. :group 'org-agenda-skip
  833. :group 'org-agenda-daily/weekly
  834. :version "24.4"
  835. :package-version '(Org . "8.0")
  836. :type '(choice
  837. (const :tag "Always honor delay" nil)
  838. (const :tag "Ignore delay if posterior to the deadline" post-deadline)
  839. (const :tag "Ignore delay if entry has a deadline" t)
  840. (integer :tag "Honor delay up until N days after the scheduled date")))
  841. (defcustom org-agenda-skip-additional-timestamps-same-entry nil
  842. "When nil, multiple same-day timestamps in entry make multiple agenda lines.
  843. When non-nil, after the search for timestamps has matched once in an
  844. entry, the rest of the entry will not be searched."
  845. :group 'org-agenda-skip
  846. :type 'boolean)
  847. (defcustom org-agenda-skip-timestamp-if-done nil
  848. "Non-nil means don't select item by timestamp or -range if it is DONE."
  849. :group 'org-agenda-skip
  850. :group 'org-agenda-daily/weekly
  851. :type 'boolean)
  852. (defcustom org-agenda-dim-blocked-tasks t
  853. "Non-nil means dim blocked tasks in the agenda display.
  854. This causes some overhead during agenda construction, but if you
  855. have turned on `org-enforce-todo-dependencies',
  856. `org-enforce-todo-checkbox-dependencies', or any other blocking
  857. mechanism, this will create useful feedback in the agenda.
  858. Instead of t, this variable can also have the value `invisible'.
  859. Then blocked tasks will be invisible and only become visible when
  860. they become unblocked. An exemption to this behavior is when a task is
  861. blocked because of unchecked checkboxes below it. Since checkboxes do
  862. not show up in the agenda views, making this task invisible you remove any
  863. trace from agenda views that there is something to do. Therefore, a task
  864. that is blocked because of checkboxes will never be made invisible, it
  865. will only be dimmed."
  866. :group 'org-agenda-daily/weekly
  867. :group 'org-agenda-todo-list
  868. :version "24.3"
  869. :type '(choice
  870. (const :tag "Do not dim" nil)
  871. (const :tag "Dim to a gray face" t)
  872. (const :tag "Make invisible" invisible)))
  873. (defgroup org-agenda-startup nil
  874. "Options concerning initial settings in the Agenda in Org Mode."
  875. :tag "Org Agenda Startup"
  876. :group 'org-agenda)
  877. (defcustom org-agenda-menu-show-matcher t
  878. "Non-nil means show the match string in the agenda dispatcher menu.
  879. When nil, the matcher string is not shown, but is put into the help-echo
  880. property so than moving the mouse over the command shows it.
  881. Setting it to nil is good if matcher strings are very long and/or if
  882. you want to use two-columns display (see `org-agenda-menu-two-columns')."
  883. :group 'org-agenda
  884. :version "24.1"
  885. :type 'boolean)
  886. (defcustom org-agenda-menu-two-columns nil
  887. "Non-nil means, use two columns to show custom commands in the dispatcher.
  888. If you use this, you probably want to set `org-agenda-menu-show-matcher'
  889. to nil."
  890. :group 'org-agenda
  891. :version "24.1"
  892. :type 'boolean)
  893. (defcustom org-agenda-finalize-hook nil
  894. "Hook run just before displaying an agenda buffer.
  895. The buffer is still writable when the hook is called.
  896. You can modify some of the buffer substrings but you should be
  897. extra careful not to modify the text properties of the agenda
  898. headlines as the agenda display heavily relies on them."
  899. :group 'org-agenda-startup
  900. :type 'hook)
  901. (defcustom org-agenda-filter-hook nil
  902. "Hook run just after filtering with `org-agenda-filter'."
  903. :group 'org-agenda-startup
  904. :package-version '(Org . "9.4")
  905. :type 'hook)
  906. (defcustom org-agenda-mouse-1-follows-link nil
  907. "Non-nil means mouse-1 on a link will follow the link in the agenda.
  908. A longer mouse click will still set point. Needs to be set
  909. before org.el is loaded."
  910. :group 'org-agenda-startup
  911. :type 'boolean)
  912. (defcustom org-agenda-start-with-follow-mode nil
  913. "The initial value of follow mode in a newly created agenda window."
  914. :group 'org-agenda-startup
  915. :type 'boolean)
  916. (defcustom org-agenda-follow-indirect nil
  917. "Non-nil means `org-agenda-follow-mode' displays only the
  918. current item's tree, in an indirect buffer."
  919. :group 'org-agenda
  920. :version "24.1"
  921. :type 'boolean)
  922. (defcustom org-agenda-show-outline-path t
  923. "Non-nil means show outline path in echo area after line motion."
  924. :group 'org-agenda-startup
  925. :type 'boolean)
  926. (defcustom org-agenda-start-with-entry-text-mode nil
  927. "The initial value of entry-text-mode in a newly created agenda window."
  928. :group 'org-agenda-startup
  929. :type 'boolean)
  930. (defcustom org-agenda-entry-text-maxlines 5
  931. "Number of text lines to be added when `E' is pressed in the agenda.
  932. Note that this variable only used during agenda display. To add entry text
  933. when exporting the agenda, configure the variable
  934. `org-agenda-add-entry-text-maxlines'."
  935. :group 'org-agenda
  936. :type 'integer)
  937. (defcustom org-agenda-entry-text-exclude-regexps nil
  938. "List of regular expressions to clean up entry text.
  939. The complete matches of all regular expressions in this list will be
  940. removed from entry text before it is shown in the agenda."
  941. :group 'org-agenda
  942. :type '(repeat (regexp)))
  943. (defcustom org-agenda-entry-text-leaders " > "
  944. "Text prepended to the entry text in agenda buffers."
  945. :version "24.4"
  946. :package-version '(Org . "8.0")
  947. :group 'org-agenda
  948. :type 'string)
  949. (defvar org-agenda-entry-text-cleanup-hook nil
  950. "Hook that is run after basic cleanup of entry text to be shown in agenda.
  951. This cleanup is done in a temporary buffer, so the function may inspect and
  952. change the entire buffer.
  953. Some default stuff like drawers and scheduling/deadline dates will already
  954. have been removed when this is called, as will any matches for regular
  955. expressions listed in `org-agenda-entry-text-exclude-regexps'.")
  956. (defvar org-agenda-include-inactive-timestamps nil
  957. "Non-nil means include inactive time stamps in agenda.
  958. Dynamically scoped.")
  959. (defgroup org-agenda-windows nil
  960. "Options concerning the windows used by the Agenda in Org Mode."
  961. :tag "Org Agenda Windows"
  962. :group 'org-agenda)
  963. (defcustom org-agenda-window-setup 'reorganize-frame
  964. "How the agenda buffer should be displayed.
  965. Possible values for this option are:
  966. current-window Show agenda in the current window, keeping all other windows.
  967. other-window Use `switch-to-buffer-other-window' to display agenda.
  968. only-window Show agenda, deleting all other windows.
  969. reorganize-frame Show only two windows on the current frame, the current
  970. window and the agenda.
  971. other-frame Use `switch-to-buffer-other-frame' to display agenda.
  972. Also, when exiting the agenda, kill that frame.
  973. other-tab Use `switch-to-buffer-other-tab' to display the
  974. agenda, making use of the `tab-bar-mode' introduced
  975. in Emacs version 27.1. Also, kill that tab when
  976. exiting the agenda view.
  977. See also the variable `org-agenda-restore-windows-after-quit'."
  978. :group 'org-agenda-windows
  979. :type '(choice
  980. (const current-window)
  981. (const other-frame)
  982. (const other-tab)
  983. (const other-window)
  984. (const only-window)
  985. (const reorganize-frame))
  986. :package-version '(Org . "9.4"))
  987. (defcustom org-agenda-window-frame-fractions '(0.5 . 0.75)
  988. "The min and max height of the agenda window as a fraction of frame height.
  989. The value of the variable is a cons cell with two numbers between 0 and 1.
  990. It only matters if `org-agenda-window-setup' is `reorganize-frame'."
  991. :group 'org-agenda-windows
  992. :type '(cons (number :tag "Minimum") (number :tag "Maximum")))
  993. (defcustom org-agenda-restore-windows-after-quit nil
  994. "Non-nil means restore window configuration upon exiting agenda.
  995. Before the window configuration is changed for displaying the
  996. agenda, the current status is recorded. When the agenda is
  997. exited with `q' or `x' and this option is set, the old state is
  998. restored. If `org-agenda-window-setup' is `other-frame' or
  999. `other-tab', the value of this option will be ignored."
  1000. :group 'org-agenda-windows
  1001. :type 'boolean)
  1002. (defcustom org-agenda-span 'week
  1003. "Number of days to include in overview display.
  1004. Can be day, week, month, year, or any number of days.
  1005. Custom commands can set this variable in the options section."
  1006. :group 'org-agenda-daily/weekly
  1007. :type '(choice (const :tag "Day" day)
  1008. (const :tag "Week" week)
  1009. (const :tag "Fortnight" fortnight)
  1010. (const :tag "Month" month)
  1011. (const :tag "Year" year)
  1012. (integer :tag "Custom")))
  1013. (defcustom org-agenda-start-on-weekday 1
  1014. "Non-nil means start the overview always on the specified weekday.
  1015. 0 denotes Sunday, 1 denotes Monday, etc.
  1016. When nil, always start on the current day.
  1017. Custom commands can set this variable in the options section."
  1018. :group 'org-agenda-daily/weekly
  1019. :type '(choice (const :tag "Today" nil)
  1020. (integer :tag "Weekday No.")))
  1021. (defcustom org-agenda-show-all-dates t
  1022. "Non-nil means `org-agenda' shows every day in the selected range.
  1023. When nil, only the days which actually have entries are shown."
  1024. :group 'org-agenda-daily/weekly
  1025. :type 'boolean)
  1026. (defcustom org-agenda-format-date 'org-agenda-format-date-aligned
  1027. "Format string for displaying dates in the agenda.
  1028. Used by the daily/weekly agenda. This should be a format string
  1029. understood by `format-time-string', or a function returning the
  1030. formatted date as a string. The function must take a single
  1031. argument, a calendar-style date list like (month day year)."
  1032. :group 'org-agenda-daily/weekly
  1033. :type '(choice
  1034. (string :tag "Format string")
  1035. (function :tag "Function")))
  1036. (defun org-agenda-end-of-line ()
  1037. "Go to the end of visible line."
  1038. (interactive)
  1039. (goto-char (line-end-position)))
  1040. (defun org-agenda-format-date-aligned (date)
  1041. "Format a DATE string for display in the daily/weekly agenda.
  1042. This function makes sure that dates are aligned for easy reading."
  1043. (require 'cal-iso)
  1044. (let* ((dayname (calendar-day-name date))
  1045. (day (cadr date))
  1046. (day-of-week (calendar-day-of-week date))
  1047. (month (car date))
  1048. (monthname (calendar-month-name month))
  1049. (year (nth 2 date))
  1050. (iso-week (org-days-to-iso-week
  1051. (calendar-absolute-from-gregorian date)))
  1052. ;; (weekyear (cond ((and (= month 1) (>= iso-week 52))
  1053. ;; (1- year))
  1054. ;; ((and (= month 12) (<= iso-week 1))
  1055. ;; (1+ year))
  1056. ;; (t year)))
  1057. (weekstring (if (= day-of-week 1)
  1058. (format " W%02d" iso-week)
  1059. "")))
  1060. (format "%-10s %2d %s %4d%s"
  1061. dayname day monthname year weekstring)))
  1062. (defcustom org-agenda-time-leading-zero nil
  1063. "Non-nil means use leading zero for military times in agenda.
  1064. For example, 9:30am would become 09:30 rather than 9:30."
  1065. :group 'org-agenda-daily/weekly
  1066. :version "24.1"
  1067. :type 'boolean)
  1068. (defcustom org-agenda-timegrid-use-ampm nil
  1069. "When set, show AM/PM style timestamps on the timegrid."
  1070. :group 'org-agenda
  1071. :version "24.1"
  1072. :type 'boolean)
  1073. (defun org-agenda-time-of-day-to-ampm (time)
  1074. "Convert TIME of a string like \"13:45\" to an AM/PM style time string."
  1075. (let* ((hour-number (string-to-number (substring time 0 -3)))
  1076. (minute (substring time -2))
  1077. (ampm "am"))
  1078. (cond
  1079. ((equal hour-number 12)
  1080. (setq ampm "pm"))
  1081. ((> hour-number 12)
  1082. (setq ampm "pm")
  1083. (setq hour-number (- hour-number 12))))
  1084. (concat
  1085. (if org-agenda-time-leading-zero
  1086. (format "%02d" hour-number)
  1087. (format "%02s" (number-to-string hour-number)))
  1088. ":" minute ampm)))
  1089. (defun org-agenda-time-of-day-to-ampm-maybe (time)
  1090. "Conditionally convert TIME to AM/PM format based on `org-agenda-timegrid-use-ampm'."
  1091. (if org-agenda-timegrid-use-ampm
  1092. (org-agenda-time-of-day-to-ampm time)
  1093. time))
  1094. (defcustom org-agenda-weekend-days '(6 0)
  1095. "Which days are weekend?
  1096. These days get the special face `org-agenda-date-weekend' in the agenda."
  1097. :group 'org-agenda-daily/weekly
  1098. :type '(set :greedy t
  1099. (const :tag "Monday" 1)
  1100. (const :tag "Tuesday" 2)
  1101. (const :tag "Wednesday" 3)
  1102. (const :tag "Thursday" 4)
  1103. (const :tag "Friday" 5)
  1104. (const :tag "Saturday" 6)
  1105. (const :tag "Sunday" 0)))
  1106. (defcustom org-agenda-move-date-from-past-immediately-to-today t
  1107. "Non-nil means jump to today when moving a past date forward in time.
  1108. When using S-right in the agenda to move a date forward, and the date
  1109. stamp currently points to the past, the first key press will move it
  1110. to today. When nil, just move one day forward even if the date stays
  1111. in the past."
  1112. :group 'org-agenda-daily/weekly
  1113. :version "24.1"
  1114. :type 'boolean)
  1115. (defcustom org-agenda-diary-file 'diary-file
  1116. "File to which to add new entries with the `i' key in agenda and calendar.
  1117. When this is the symbol `diary-file', the functionality in the Emacs
  1118. calendar will be used to add entries to the `diary-file'. But when this
  1119. points to a file, `org-agenda-diary-entry' will be used instead."
  1120. :group 'org-agenda
  1121. :type '(choice
  1122. (const :tag "The standard Emacs diary file" diary-file)
  1123. (file :tag "Special Org file diary entries")))
  1124. (defcustom org-agenda-include-diary nil
  1125. "If non-nil, include in the agenda entries from the Emacs Calendar's diary.
  1126. Custom commands can set this variable in the options section."
  1127. :group 'org-agenda-daily/weekly
  1128. :type 'boolean)
  1129. (defcustom org-agenda-include-deadlines t
  1130. "If non-nil, include entries within their deadline warning period.
  1131. Custom commands can set this variable in the options section."
  1132. :group 'org-agenda-daily/weekly
  1133. :version "24.1"
  1134. :type 'boolean)
  1135. (defcustom org-agenda-show-future-repeats t
  1136. "Non-nil shows repeated entries in the future part of the agenda.
  1137. When set to the symbol `next' only the first future repeat is shown."
  1138. :group 'org-agenda-daily/weekly
  1139. :type '(choice
  1140. (const :tag "Show all repeated entries" t)
  1141. (const :tag "Show next repeated entry" next)
  1142. (const :tag "Do not show repeated entries" nil))
  1143. :version "26.1"
  1144. :package-version '(Org . "9.1")
  1145. :safe #'symbolp)
  1146. (defcustom org-agenda-prefer-last-repeat nil
  1147. "Non-nil sets date for repeated entries to their last repeat.
  1148. When nil, display SCHEDULED and DEADLINE dates at their base
  1149. date, and in today's agenda, as a reminder. Display plain
  1150. time-stamps, on the other hand, at every repeat date in the past
  1151. in addition to the base date.
  1152. When non-nil, show a repeated entry at its latest repeat date,
  1153. possibly being today even if it wasn't marked as done. This
  1154. setting is useful if you do not always mark repeated entries as
  1155. done and, yet, consider that reaching repeat date starts the task
  1156. anew.
  1157. When set to a list of strings, prefer last repeats only for
  1158. entries with these TODO keywords."
  1159. :group 'org-agenda-daily/weekly
  1160. :type '(choice
  1161. (const :tag "Prefer last repeat" t)
  1162. (const :tag "Prefer base date" nil)
  1163. (repeat :tag "Prefer last repeat for entries with these TODO keywords"
  1164. (string :tag "TODO keyword")))
  1165. :version "26.1"
  1166. :package-version '(Org . "9.1")
  1167. :safe (lambda (x) (or (booleanp x) (consp x))))
  1168. (defcustom org-scheduled-past-days 10000
  1169. "Number of days to continue listing scheduled items not marked DONE.
  1170. When an item is scheduled on a date, it shows up in the agenda on
  1171. this day and will be listed until it is marked done or for the
  1172. number of days given here."
  1173. :group 'org-agenda-daily/weekly
  1174. :type 'integer
  1175. :safe 'integerp)
  1176. (defcustom org-deadline-past-days 10000
  1177. "Number of days to warn about missed deadlines.
  1178. When an item has deadline on a date, it shows up in the agenda on
  1179. this day and will appear as a reminder until it is marked DONE or
  1180. for the number of days given here."
  1181. :group 'org-agenda-daily/weekly
  1182. :type 'integer
  1183. :version "26.1"
  1184. :package-version '(Org . "9.1")
  1185. :safe 'integerp)
  1186. (defcustom org-agenda-log-mode-items '(closed clock)
  1187. "List of items that should be shown in agenda log mode.
  1188. \\<org-agenda-mode-map>\
  1189. This list may contain the following symbols:
  1190. closed Show entries that have been closed on that day.
  1191. clock Show entries that have received clocked time on that day.
  1192. state Show all logged state changes.
  1193. Note that instead of changing this variable, you can also press \
  1194. `\\[universal-argument] \\[org-agenda-log-mode]' in
  1195. the agenda to display all available LOG items temporarily."
  1196. :group 'org-agenda-daily/weekly
  1197. :type '(set :greedy t (const closed) (const clock) (const state)))
  1198. (defcustom org-agenda-clock-consistency-checks
  1199. '(:max-duration "10:00" :min-duration 0 :max-gap "0:05"
  1200. :gap-ok-around ("4:00")
  1201. :default-face ((:background "DarkRed") (:foreground "white"))
  1202. :overlap-face nil :gap-face nil :no-end-time-face nil
  1203. :long-face nil :short-face nil)
  1204. "This is a property list, with the following keys:
  1205. :max-duration Mark clocking chunks that are longer than this time.
  1206. This is a time string like \"HH:MM\", or the number
  1207. of minutes as an integer.
  1208. :min-duration Mark clocking chunks that are shorter that this.
  1209. This is a time string like \"HH:MM\", or the number
  1210. of minutes as an integer.
  1211. :max-gap Mark gaps between clocking chunks that are longer than
  1212. this duration. A number of minutes, or a string
  1213. like \"HH:MM\".
  1214. :gap-ok-around List of times during the day which are usually not working
  1215. times. When a gap is detected, but the gap contains any
  1216. of these times, the gap is *not* reported. For example,
  1217. if this is (\"4:00\" \"13:00\") then gaps that contain
  1218. 4:00 in the morning (i.e. the night) and 13:00
  1219. (i.e. a typical lunch time) do not cause a warning.
  1220. You should have at least one time during the night in this
  1221. list, or otherwise the first task each morning will trigger
  1222. a warning because it follows a long gap.
  1223. Furthermore, the following properties can be used to define faces for
  1224. issue display.
  1225. :default-face the default face, if the specific face is undefined
  1226. :overlap-face face for overlapping clocks
  1227. :gap-face face for gaps between clocks
  1228. :no-end-time-face face for incomplete clocks
  1229. :long-face face for clock intervals that are too long
  1230. :short-face face for clock intervals that are too short"
  1231. :group 'org-agenda-daily/weekly
  1232. :group 'org-clock
  1233. :version "24.1"
  1234. :type 'plist)
  1235. (defcustom org-agenda-log-mode-add-notes t
  1236. "Non-nil means add first line of notes to log entries in agenda views.
  1237. If a log item like a state change or a clock entry is associated with
  1238. notes, the first line of these notes will be added to the entry in the
  1239. agenda display."
  1240. :group 'org-agenda-daily/weekly
  1241. :type 'boolean)
  1242. (defcustom org-agenda-start-with-log-mode nil
  1243. "The initial value of log-mode in a newly created agenda window.
  1244. See `org-agenda-log-mode' and `org-agenda-log-mode-items' for further
  1245. explanations on the possible values."
  1246. :group 'org-agenda-startup
  1247. :group 'org-agenda-daily/weekly
  1248. :type '(choice (const :tag "Don't show log items" nil)
  1249. (const :tag "Show only log items" only)
  1250. (const :tag "Show all possible log items" clockcheck)
  1251. (repeat :tag "Choose among possible values for `org-agenda-log-mode-items'"
  1252. (choice (const :tag "Show closed log items" closed)
  1253. (const :tag "Show clocked log items" clock)
  1254. (const :tag "Show all logged state changes" state)))))
  1255. (defcustom org-agenda-start-with-clockreport-mode nil
  1256. "The initial value of clockreport-mode in a newly created agenda window."
  1257. :group 'org-agenda-startup
  1258. :group 'org-agenda-daily/weekly
  1259. :type 'boolean)
  1260. (defcustom org-agenda-clockreport-parameter-plist '(:link t :maxlevel 2)
  1261. "Property list with parameters for the clocktable in clockreport mode.
  1262. This is the display mode that shows a clock table in the daily/weekly
  1263. agenda, the properties for this dynamic block can be set here.
  1264. The usual clocktable parameters are allowed here, but you cannot set
  1265. the properties :name, :tstart, :tend, :block, and :scope - these will
  1266. be overwritten to make sure the content accurately reflects the
  1267. current display in the agenda."
  1268. :group 'org-agenda-daily/weekly
  1269. :type 'plist)
  1270. (defvaralias 'org-agenda-search-view-search-words-only
  1271. 'org-agenda-search-view-always-boolean)
  1272. (defcustom org-agenda-search-view-always-boolean nil
  1273. "Non-nil means the search string is interpreted as individual parts.
  1274. The search string for search view can either be interpreted as a phrase,
  1275. or as a list of snippets that define a boolean search for a number of
  1276. strings.
  1277. When this is non-nil, the string will be split on whitespace, and each
  1278. snippet will be searched individually, and all must match in order to
  1279. select an entry. A snippet is then a single string of non-white
  1280. characters, or a string in double quotes, or a regexp in {} braces.
  1281. If a snippet is preceded by \"-\", the snippet must *not* match.
  1282. \"+\" is syntactic sugar for positive selection. Each snippet may
  1283. be found as a full word or a partial word, but see the variable
  1284. `org-agenda-search-view-force-full-words'.
  1285. When this is nil, search will look for the entire search phrase as one,
  1286. with each space character matching any amount of whitespace, including
  1287. line breaks.
  1288. Even when this is nil, you can still switch to Boolean search dynamically
  1289. by preceding the first snippet with \"+\" or \"-\". If the first snippet
  1290. is a regexp marked with braces like \"{abc}\", this will also switch to
  1291. boolean search."
  1292. :group 'org-agenda-search-view
  1293. :version "24.1"
  1294. :type 'boolean)
  1295. (defcustom org-agenda-search-view-force-full-words nil
  1296. "Non-nil means, search words must be matches as complete words.
  1297. When nil, they may also match part of a word."
  1298. :group 'org-agenda-search-view
  1299. :version "24.1"
  1300. :type 'boolean)
  1301. (defcustom org-agenda-search-view-max-outline-level 0
  1302. "Maximum outline level to display in search view.
  1303. E.g. when this is set to 1, the search view will only
  1304. show headlines of level 1. When set to 0, the default
  1305. value, don't limit agenda view by outline level."
  1306. :group 'org-agenda-search-view
  1307. :version "26.1"
  1308. :package-version '(Org . "8.3")
  1309. :type 'integer)
  1310. (defgroup org-agenda-time-grid nil
  1311. "Options concerning the time grid in the Org Agenda."
  1312. :tag "Org Agenda Time Grid"
  1313. :group 'org-agenda)
  1314. (defcustom org-agenda-search-headline-for-time t
  1315. "Non-nil means search headline for a time-of-day.
  1316. If the headline contains a time-of-day in one format or another, it will
  1317. be used to sort the entry into the time sequence of items for a day.
  1318. Some people have time stamps in the headline that refer to the creation
  1319. time or so, and then this produces an unwanted side effect. If this is
  1320. the case for your, use this variable to turn off searching the headline
  1321. for a time."
  1322. :group 'org-agenda-time-grid
  1323. :type 'boolean)
  1324. (defcustom org-agenda-use-time-grid t
  1325. "Non-nil means show a time grid in the agenda schedule.
  1326. A time grid is a set of lines for specific times (like every two hours between
  1327. 8:00 and 20:00). The items scheduled for a day at specific times are
  1328. sorted in between these lines.
  1329. For details about when the grid will be shown, and what it will look like, see
  1330. the variable `org-agenda-time-grid'."
  1331. :group 'org-agenda-time-grid
  1332. :type 'boolean)
  1333. (defcustom org-agenda-time-grid
  1334. '((daily today require-timed)
  1335. (800 1000 1200 1400 1600 1800 2000)
  1336. "......"
  1337. "----------------")
  1338. "The settings for time grid for agenda display.
  1339. This is a list of four items. The first item is again a list. It contains
  1340. symbols specifying conditions when the grid should be displayed:
  1341. daily if the agenda shows a single day
  1342. weekly if the agenda shows an entire week
  1343. today show grid on current date, independent of daily/weekly display
  1344. require-timed show grid only if at least one item has a time specification
  1345. remove-match skip grid times already present in an entry
  1346. The second item is a list of integers, indicating the times that
  1347. should have a grid line.
  1348. The third item is a string which will be placed right after the
  1349. times that have a grid line.
  1350. The fourth item is a string placed after the grid times. This
  1351. will align with agenda items."
  1352. :group 'org-agenda-time-grid
  1353. :type
  1354. '(list
  1355. (set :greedy t :tag "Grid Display Options"
  1356. (const :tag "Show grid in single day agenda display" daily)
  1357. (const :tag "Show grid in weekly agenda display" weekly)
  1358. (const :tag "Always show grid for today" today)
  1359. (const :tag "Show grid only if any timed entries are present"
  1360. require-timed)
  1361. (const :tag "Skip grid times already present in an entry"
  1362. remove-match))
  1363. (repeat :tag "Grid Times" (integer :tag "Time"))
  1364. (string :tag "Grid String (after agenda times)")
  1365. (string :tag "Grid String (aligns with agenda items)")))
  1366. (defcustom org-agenda-show-current-time-in-grid t
  1367. "Non-nil means show the current time in the time grid."
  1368. :group 'org-agenda-time-grid
  1369. :version "24.1"
  1370. :type 'boolean)
  1371. (defcustom org-agenda-current-time-string
  1372. "now - - - - - - - - - - - - - - - - - - - - - - - - -"
  1373. "The string for the current time marker in the agenda."
  1374. :group 'org-agenda-time-grid
  1375. :version "24.1"
  1376. :type 'string)
  1377. (defgroup org-agenda-sorting nil
  1378. "Options concerning sorting in the Org Agenda."
  1379. :tag "Org Agenda Sorting"
  1380. :group 'org-agenda)
  1381. (defcustom org-agenda-sorting-strategy
  1382. '((agenda habit-down time-up priority-down category-keep)
  1383. (todo priority-down category-keep)
  1384. (tags priority-down category-keep)
  1385. (search category-keep))
  1386. "Sorting structure for the agenda items of a single day.
  1387. This is a list of symbols which will be used in sequence to determine
  1388. if an entry should be listed before another entry. The following
  1389. symbols are recognized:
  1390. time-up Put entries with time-of-day indications first, early first.
  1391. time-down Put entries with time-of-day indications first, late first.
  1392. timestamp-up Sort by any timestamp, early first.
  1393. timestamp-down Sort by any timestamp, late first.
  1394. scheduled-up Sort by scheduled timestamp, early first.
  1395. scheduled-down Sort by scheduled timestamp, late first.
  1396. deadline-up Sort by deadline timestamp, early first.
  1397. deadline-down Sort by deadline timestamp, late first.
  1398. ts-up Sort by active timestamp, early first.
  1399. ts-down Sort by active timestamp, late first.
  1400. tsia-up Sort by inactive timestamp, early first.
  1401. tsia-down Sort by inactive timestamp, late first.
  1402. category-keep Keep the default order of categories, corresponding to the
  1403. sequence in `org-agenda-files'.
  1404. category-up Sort alphabetically by category, A-Z.
  1405. category-down Sort alphabetically by category, Z-A.
  1406. tag-up Sort alphabetically by last tag, A-Z.
  1407. tag-down Sort alphabetically by last tag, Z-A.
  1408. priority-up Sort numerically by priority, high priority last.
  1409. priority-down Sort numerically by priority, high priority first.
  1410. todo-state-up Sort by todo state, tasks that are done last.
  1411. todo-state-down Sort by todo state, tasks that are done first.
  1412. effort-up Sort numerically by estimated effort, high effort last.
  1413. effort-down Sort numerically by estimated effort, high effort first.
  1414. user-defined-up Sort according to `org-agenda-cmp-user-defined', high last.
  1415. user-defined-down Sort according to `org-agenda-cmp-user-defined', high first.
  1416. habit-up Put entries that are habits first.
  1417. habit-down Put entries that are habits last.
  1418. alpha-up Sort headlines alphabetically.
  1419. alpha-down Sort headlines alphabetically, reversed.
  1420. The different possibilities will be tried in sequence, and testing stops
  1421. if one comparison returns a \"not-equal\". For example, the default
  1422. '(time-up category-keep priority-down)
  1423. means: Pull out all entries having a specified time of day and sort them,
  1424. in order to make a time schedule for the current day the first thing in the
  1425. agenda listing for the day. Of the entries without a time indication, keep
  1426. the grouped in categories, don't sort the categories, but keep them in
  1427. the sequence given in `org-agenda-files'. Within each category sort by
  1428. priority.
  1429. Leaving out `category-keep' would mean that items will be sorted across
  1430. categories by priority.
  1431. Instead of a single list, this can also be a set of list for specific
  1432. contents, with a context symbol in the car of the list, any of
  1433. `agenda', `todo', `tags', `search' for the corresponding agenda views.
  1434. Custom commands can bind this variable in the options section."
  1435. :group 'org-agenda-sorting
  1436. :type `(choice
  1437. (repeat :tag "General" ,org-sorting-choice)
  1438. (list :tag "Individually"
  1439. (cons (const :tag "Strategy for Weekly/Daily agenda" agenda)
  1440. (repeat ,org-sorting-choice))
  1441. (cons (const :tag "Strategy for TODO lists" todo)
  1442. (repeat ,org-sorting-choice))
  1443. (cons (const :tag "Strategy for Tags matches" tags)
  1444. (repeat ,org-sorting-choice))
  1445. (cons (const :tag "Strategy for search matches" search)
  1446. (repeat ,org-sorting-choice)))))
  1447. (defcustom org-agenda-cmp-user-defined nil
  1448. "A function to define the comparison `user-defined'.
  1449. This function must receive two arguments, agenda entry a and b.
  1450. If a>b, return +1. If a<b, return -1. If they are equal as seen by
  1451. the user comparison, return nil.
  1452. When this is defined, you can make `user-defined-up' and `user-defined-down'
  1453. part of an agenda sorting strategy."
  1454. :group 'org-agenda-sorting
  1455. :type 'symbol)
  1456. (defcustom org-agenda-sort-notime-is-late t
  1457. "Non-nil means items without time are considered late.
  1458. This is only relevant for sorting. When t, items which have no explicit
  1459. time like 15:30 will be considered as 99:01, i.e. later than any items which
  1460. do have a time. When nil, the default time is before 0:00. You can use this
  1461. option to decide if the schedule for today should come before or after timeless
  1462. agenda entries."
  1463. :group 'org-agenda-sorting
  1464. :type 'boolean)
  1465. (defcustom org-agenda-sort-noeffort-is-high t
  1466. "Non-nil means items without effort estimate are sorted as high effort.
  1467. This also applies when filtering an agenda view with respect to the
  1468. < or > effort operator. Then, tasks with no effort defined will be treated
  1469. as tasks with high effort.
  1470. When nil, such items are sorted as 0 minutes effort."
  1471. :group 'org-agenda-sorting
  1472. :type 'boolean)
  1473. (defgroup org-agenda-line-format nil
  1474. "Options concerning the entry prefix in the Org agenda display."
  1475. :tag "Org Agenda Line Format"
  1476. :group 'org-agenda)
  1477. (defcustom org-agenda-prefix-format
  1478. '((agenda . " %i %-12:c%?-12t% s")
  1479. (todo . " %i %-12:c")
  1480. (tags . " %i %-12:c")
  1481. (search . " %i %-12:c"))
  1482. "Format specifications for the prefix of items in the agenda views.
  1483. An alist with one entry per agenda type. The keys of the
  1484. sublists are `agenda', `todo', `search' and `tags'. The values
  1485. are format strings.
  1486. This format works similar to a printf format, with the following meaning:
  1487. %c the category of the item, \"Diary\" for entries from the diary,
  1488. or as given by the CATEGORY keyword or derived from the file name
  1489. %e the effort required by the item
  1490. %l the level of the item (insert X space(s) if item is of level X)
  1491. %i the icon category of the item, see `org-agenda-category-icon-alist'
  1492. %T the last tag of the item (ignore inherited tags, which come first)
  1493. %t the HH:MM time-of-day specification if one applies to the entry
  1494. %s Scheduling/Deadline information, a short string
  1495. %b show breadcrumbs, i.e., the names of the higher levels
  1496. %(expression) Eval EXPRESSION and replace the control string
  1497. by the result
  1498. All specifiers work basically like the standard `%s' of printf, but may
  1499. contain two additional characters: a question mark just after the `%'
  1500. and a whitespace/punctuation character just before the final letter.
  1501. If the first character after `%' is a question mark, the entire field
  1502. will only be included if the corresponding value applies to the current
  1503. entry. This is useful for fields which should have fixed width when
  1504. present, but zero width when absent. For example, \"%?-12t\" will
  1505. result in a 12 character time field if a time of the day is specified,
  1506. but will completely disappear in entries which do not contain a time.
  1507. If there is punctuation or whitespace character just before the
  1508. final format letter, this character will be appended to the field
  1509. value if the value is not empty. For example, the format
  1510. \"%-12:c\" leads to \"Diary: \" if the category is \"Diary\". If
  1511. the category is empty, no additional colon is inserted.
  1512. The default value for the agenda sublist is \" %-12:c%?-12t% s\",
  1513. which means:
  1514. - Indent the line with two space characters
  1515. - Give the category a 12 chars wide field, padded with whitespace on
  1516. the right (because of `-'). Append a colon if there is a category
  1517. (because of `:').
  1518. - If there is a time-of-day, put it into a 12 chars wide field. If no
  1519. time, don't put in an empty field, just skip it (because of '?').
  1520. - Finally, put the scheduling information.
  1521. See also the variables `org-agenda-remove-times-when-in-prefix' and
  1522. `org-agenda-remove-tags'.
  1523. Custom commands can set this variable in the options section."
  1524. :type '(choice
  1525. (string :tag "General format")
  1526. (list :greedy t :tag "View dependent"
  1527. (cons (const agenda) (string :tag "Format"))
  1528. (cons (const todo) (string :tag "Format"))
  1529. (cons (const tags) (string :tag "Format"))
  1530. (cons (const search) (string :tag "Format"))))
  1531. :group 'org-agenda-line-format
  1532. :version "26.1"
  1533. :package-version '(Org . "9.1"))
  1534. (defcustom org-agenda-breadcrumbs-separator "->"
  1535. "The separator of breadcrumbs in agenda lines."
  1536. :group 'org-agenda-line-format
  1537. :package-version '(Org . "9.3")
  1538. :type 'string
  1539. :safe #'stringp)
  1540. (defvar org-prefix-format-compiled nil
  1541. "The compiled prefix format and associated variables.
  1542. This is a list where first element is a list of variable bindings, and second
  1543. element is the compiled format expression. See the variable
  1544. `org-agenda-prefix-format'.")
  1545. (defcustom org-agenda-todo-keyword-format "%-1s"
  1546. "Format for the TODO keyword in agenda lines.
  1547. Set this to something like \"%-12s\" if you want all TODO keywords
  1548. to occupy a fixed space in the agenda display."
  1549. :group 'org-agenda-line-format
  1550. :type 'string)
  1551. (defcustom org-agenda-diary-sexp-prefix nil
  1552. "A regexp that matches part of a diary sexp entry
  1553. which should be treated as scheduling/deadline information in
  1554. `org-agenda'.
  1555. For example, you can use this to extract the `diary-remind-message' from
  1556. `diary-remind' entries."
  1557. :group 'org-agenda-line-format
  1558. :type '(choice (const :tag "None" nil) (regexp :tag "Regexp")))
  1559. (defcustom org-agenda-timerange-leaders '("" "(%d/%d): ")
  1560. "Text preceding timerange entries in the agenda view.
  1561. This is a list with two strings. The first applies when the range
  1562. is entirely on one day. The second applies if the range spans several days.
  1563. The strings may have two \"%d\" format specifiers which will be filled
  1564. with the sequence number of the days, and the total number of days in the
  1565. range, respectively."
  1566. :group 'org-agenda-line-format
  1567. :type '(list
  1568. (string :tag "Deadline today ")
  1569. (choice :tag "Deadline relative"
  1570. (string :tag "Format string")
  1571. (function))))
  1572. (defcustom org-agenda-scheduled-leaders '("Scheduled: " "Sched.%2dx: ")
  1573. "Text preceding scheduled items in the agenda view.
  1574. This is a list with two strings. The first applies when the item is
  1575. scheduled on the current day. The second applies when it has been scheduled
  1576. previously, it may contain a %d indicating that this is the nth time that
  1577. this item is scheduled, due to automatic rescheduling of unfinished items
  1578. for the following day. So this number is one larger than the number of days
  1579. that passed since this item was scheduled first."
  1580. :group 'org-agenda-line-format
  1581. :version "24.4"
  1582. :package-version '(Org . "8.0")
  1583. :type '(list
  1584. (string :tag "Scheduled today ")
  1585. (string :tag "Scheduled previously")))
  1586. (defcustom org-agenda-inactive-leader "["
  1587. "Text preceding item pulled into the agenda by inactive time stamps.
  1588. These entries are added to the agenda when pressing \"[\"."
  1589. :group 'org-agenda-line-format
  1590. :version "24.1"
  1591. :type 'string)
  1592. (defcustom org-agenda-deadline-leaders '("Deadline: " "In %3d d.: " "%2d d. ago: ")
  1593. "Text preceding deadline items in the agenda view.
  1594. This is a list with three strings. The first applies when the item has its
  1595. deadline on the current day. The second applies when the deadline is in the
  1596. future, the third one when it is in the past. The strings may contain %d
  1597. to capture the number of days."
  1598. :group 'org-agenda-line-format
  1599. :version "24.4"
  1600. :package-version '(Org . "8.0")
  1601. :type '(list
  1602. (string :tag "Deadline today ")
  1603. (string :tag "Deadline in the future ")
  1604. (string :tag "Deadline in the past ")))
  1605. (defcustom org-agenda-remove-times-when-in-prefix t
  1606. "Non-nil means remove duplicate time specifications in agenda items.
  1607. When the format `org-agenda-prefix-format' contains a `%t' specifier, a
  1608. time-of-day specification in a headline or diary entry is extracted and
  1609. placed into the prefix. If this option is non-nil, the original specification
  1610. \(a timestamp or -range, or just a plain time(range) specification like
  1611. 11:30-4pm) will be removed for agenda display. This makes the agenda less
  1612. cluttered.
  1613. The option can be t or nil. It may also be the symbol `beg', indicating
  1614. that the time should only be removed when it is located at the beginning of
  1615. the headline/diary entry."
  1616. :group 'org-agenda-line-format
  1617. :type '(choice
  1618. (const :tag "Always" t)
  1619. (const :tag "Never" nil)
  1620. (const :tag "When at beginning of entry" beg)))
  1621. (defcustom org-agenda-remove-timeranges-from-blocks nil
  1622. "Non-nil means remove time ranges specifications in agenda
  1623. items that span on several days."
  1624. :group 'org-agenda-line-format
  1625. :version "24.1"
  1626. :type 'boolean)
  1627. (defcustom org-agenda-default-appointment-duration nil
  1628. "Default duration for appointments that only have a starting time.
  1629. When nil, no duration is specified in such cases.
  1630. When non-nil, this must be the number of minutes, e.g. 60 for one hour."
  1631. :group 'org-agenda-line-format
  1632. :type '(choice
  1633. (integer :tag "Minutes")
  1634. (const :tag "No default duration")))
  1635. (defcustom org-agenda-show-inherited-tags t
  1636. "Non-nil means show inherited tags in each agenda line.
  1637. When this option is set to `always', it takes precedence over
  1638. `org-agenda-use-tag-inheritance' and inherited tags are shown
  1639. in every agenda.
  1640. When this option is set to t (the default), inherited tags are
  1641. shown when they are available, i.e. when the value of
  1642. `org-agenda-use-tag-inheritance' enables tag inheritance for the
  1643. given agenda type.
  1644. This can be set to a list of agenda types in which the agenda
  1645. must display the inherited tags. Available types are `todo',
  1646. `agenda' and `search'.
  1647. When set to nil, never show inherited tags in agenda lines."
  1648. :group 'org-agenda-line-format
  1649. :group 'org-agenda
  1650. :version "24.3"
  1651. :type '(choice
  1652. (const :tag "Show inherited tags when available" t)
  1653. (const :tag "Always show inherited tags" always)
  1654. (repeat :tag "Show inherited tags only in selected agenda types"
  1655. (symbol :tag "Agenda type"))))
  1656. (defcustom org-agenda-use-tag-inheritance '(todo search agenda)
  1657. "List of agenda view types where to use tag inheritance.
  1658. In tags/tags-todo/tags-tree agenda views, tag inheritance is
  1659. controlled by `org-use-tag-inheritance'. In other agenda types,
  1660. `org-use-tag-inheritance' is not used for the selection of the
  1661. agenda entries. Still, you may want the agenda to be aware of
  1662. the inherited tags anyway, e.g. for later tag filtering.
  1663. Allowed value are `todo', `search' and `agenda'.
  1664. This variable has no effect if `org-agenda-show-inherited-tags'
  1665. is set to `always'. In that case, the agenda is aware of those
  1666. tags.
  1667. The default value sets tags in every agenda type. Setting this
  1668. option to nil will speed up non-tags agenda view a lot."
  1669. :group 'org-agenda
  1670. :version "26.1"
  1671. :package-version '(Org . "9.1")
  1672. :type '(choice
  1673. (const :tag "Use tag inheritance in all agenda types" t)
  1674. (repeat :tag "Use tag inheritance in selected agenda types"
  1675. (symbol :tag "Agenda type"))))
  1676. (defcustom org-agenda-hide-tags-regexp nil
  1677. "Regular expression used to filter away specific tags in agenda views.
  1678. This means that these tags will be present, but not be shown in the agenda
  1679. line. Secondary filtering will still work on the hidden tags.
  1680. Nil means don't hide any tags."
  1681. :group 'org-agenda-line-format
  1682. :type '(choice
  1683. (const :tag "Hide none" nil)
  1684. (regexp :tag "Regexp ")))
  1685. (defvaralias 'org-agenda-remove-tags-when-in-prefix
  1686. 'org-agenda-remove-tags)
  1687. (defcustom org-agenda-remove-tags nil
  1688. "Non-nil means remove the tags from the headline copy in the agenda.
  1689. When this is the symbol `prefix', only remove tags when
  1690. `org-agenda-prefix-format' contains a `%T' specifier."
  1691. :group 'org-agenda-line-format
  1692. :type '(choice
  1693. (const :tag "Always" t)
  1694. (const :tag "Never" nil)
  1695. (const :tag "When prefix format contains %T" prefix)))
  1696. (defvaralias 'org-agenda-align-tags-to-column 'org-agenda-tags-column)
  1697. (defcustom org-agenda-tags-column 'auto
  1698. "Shift tags in agenda items to this column.
  1699. If set to `auto', tags will be automatically aligned to the right
  1700. edge of the window.
  1701. If set to a positive number, tags will be left-aligned to that
  1702. column. If set to a negative number, tags will be right-aligned
  1703. to that column. For example, -80 works well for a normal 80
  1704. character screen."
  1705. :group 'org-agenda-line-format
  1706. :type '(choice
  1707. (const :tag "Automatically align to right edge of window" auto)
  1708. (integer :tag "Specific column" -80))
  1709. :package-version '(Org . "9.1")
  1710. :version "26.1")
  1711. (defcustom org-agenda-fontify-priorities 'cookies
  1712. "Non-nil means highlight low and high priorities in agenda.
  1713. When t, the highest priority entries are bold, lowest priority italic.
  1714. However, settings in `org-priority-faces' will overrule these faces.
  1715. When this variable is the symbol `cookies', only fontify the
  1716. cookies, not the entire task.
  1717. This may also be an association list of priority faces, whose
  1718. keys are the character values of `org-priority-highest',
  1719. `org-priority-default', and `org-priority-lowest' (the default values
  1720. are ?A, ?B, and ?C, respectively). The face may be a named face, a
  1721. color as a string, or a list like `(:background \"Red\")'.
  1722. If it is a color, the variable `org-faces-easy-properties'
  1723. determines if it is a foreground or a background color."
  1724. :group 'org-agenda-line-format
  1725. :type '(choice
  1726. (const :tag "Never" nil)
  1727. (const :tag "Defaults" t)
  1728. (const :tag "Cookies only" cookies)
  1729. (repeat :tag "Specify"
  1730. (list (character :tag "Priority" :value ?A)
  1731. (choice :tag "Face "
  1732. (string :tag "Color")
  1733. (sexp :tag "Face"))))))
  1734. (defcustom org-agenda-day-face-function nil
  1735. "Function called to determine what face should be used to display a day.
  1736. The only argument passed to that function is the day. It should
  1737. returns a face, or nil if does not want to specify a face and let
  1738. the normal rules apply."
  1739. :group 'org-agenda-line-format
  1740. :version "24.1"
  1741. :type '(choice (const nil) (function)))
  1742. (defcustom org-agenda-category-icon-alist nil
  1743. "Alist of category icon to be displayed in agenda views.
  1744. Each entry should have the following format:
  1745. (CATEGORY-REGEXP FILE-OR-DATA TYPE DATA-P PROPS)
  1746. Where CATEGORY-REGEXP is a regexp matching the categories where
  1747. the icon should be displayed.
  1748. FILE-OR-DATA either a file path or a string containing image data.
  1749. The other fields can be omitted safely if not needed:
  1750. TYPE indicates the image type.
  1751. DATA-P is a boolean indicating whether the FILE-OR-DATA string is
  1752. image data.
  1753. PROPS are additional image attributes to assign to the image,
  1754. like, e.g. `:ascent center'.
  1755. (\"Org\" \"/path/to/icon.png\" nil nil :ascent center)
  1756. If you want to set the display properties yourself, just put a
  1757. list as second element:
  1758. (CATEGORY-REGEXP (MY PROPERTY LIST))
  1759. For example, to display a 16px horizontal space for Emacs
  1760. category, you can use:
  1761. (\"Emacs\" \\='(space . (:width (16))))"
  1762. :group 'org-agenda-line-format
  1763. :version "24.1"
  1764. :type '(alist :key-type (regexp :tag "Regexp matching category")
  1765. :value-type (choice (list :tag "Icon"
  1766. (string :tag "File or data")
  1767. (symbol :tag "Type")
  1768. (boolean :tag "Data?")
  1769. (repeat :tag "Extra image properties" :inline t sexp))
  1770. (list :tag "Display properties" sexp))))
  1771. (defgroup org-agenda-column-view nil
  1772. "Options concerning column view in the agenda."
  1773. :tag "Org Agenda Column View"
  1774. :group 'org-agenda)
  1775. (defcustom org-agenda-view-columns-initially nil
  1776. "When non-nil, switch to columns view right after creating the agenda."
  1777. :group 'org-agenda-column-view
  1778. :type 'boolean
  1779. :version "26.1"
  1780. :package-version '(Org . "9.0")
  1781. :safe #'booleanp)
  1782. (defcustom org-agenda-columns-show-summaries t
  1783. "Non-nil means show summaries for columns displayed in the agenda view."
  1784. :group 'org-agenda-column-view
  1785. :type 'boolean)
  1786. (defcustom org-agenda-columns-compute-summary-properties t
  1787. "Non-nil means recompute all summary properties before column view.
  1788. When column view in the agenda is listing properties that have a summary
  1789. operator, it can go to all relevant buffers and recompute the summaries
  1790. there. This can mean overhead for the agenda column view, but is necessary
  1791. to have thing up to date.
  1792. As a special case, a CLOCKSUM property also makes sure that the clock
  1793. computations are current."
  1794. :group 'org-agenda-column-view
  1795. :type 'boolean)
  1796. (defcustom org-agenda-columns-add-appointments-to-effort-sum nil
  1797. "Non-nil means the duration of an appointment will add to day effort.
  1798. The property to which appointment durations will be added is the one given
  1799. in the option `org-effort-property'. If an appointment does not have
  1800. an end time, `org-agenda-default-appointment-duration' will be used. If that
  1801. is not set, an appointment without end time will not contribute to the time
  1802. estimate."
  1803. :group 'org-agenda-column-view
  1804. :type 'boolean)
  1805. (defcustom org-agenda-auto-exclude-function nil
  1806. "A function called with a tag to decide if it is filtered on \
  1807. \\<org-agenda-mode-map>`\\[org-agenda-filter-by-tag] RET'.
  1808. The sole argument to the function, which is called once for each
  1809. possible tag, is a string giving the name of the tag. The
  1810. function should return either nil if the tag should be included
  1811. as normal, \"-<TAG>\" to exclude the tag, or \"+<TAG>\" to exclude
  1812. lines not carrying this tag.
  1813. Note that for the purpose of tag filtering, only the lower-case version of
  1814. all tags will be considered, so that this function will only ever see
  1815. the lower-case version of all tags."
  1816. :group 'org-agenda
  1817. :type '(choice (const nil) (function)))
  1818. (defcustom org-agenda-bulk-custom-functions nil
  1819. "Alist of characters and custom functions for bulk actions.
  1820. For example, this value makes those two functions available:
  1821. \\='((?R set-category)
  1822. (?C bulk-cut))
  1823. With selected entries in an agenda buffer, `B R' will call
  1824. the custom function `set-category' on the selected entries.
  1825. Note that functions in this alist don't need to be quoted.
  1826. You can also specify a function which collects arguments to be
  1827. used for each call to your bulk custom function. The argument
  1828. collecting function will be run once and should return a list of
  1829. arguments to pass to the bulk function. For example:
  1830. \\='((?R set-category get-category))
  1831. Now, `B R' will call the custom `get-category' which would prompt
  1832. the user once for a category. That category is then passed as an
  1833. argument to `set-category' for each entry it's called against."
  1834. :type
  1835. '(alist :key-type character
  1836. :value-type
  1837. (group (function :tag "Bulk Custom Function")
  1838. (choice (function :tag "Bulk Custom Argument Function")
  1839. (const :tag "No Bulk Custom Argument Function" nil))))
  1840. :package-version '(Org . "9.5")
  1841. :group 'org-agenda)
  1842. (defmacro org-agenda-with-point-at-orig-entry (string &rest body)
  1843. "Execute BODY with point at location given by `org-hd-marker' property.
  1844. If STRING is non-nil, the text property will be fetched from position 0
  1845. in that string. If STRING is nil, it will be fetched from the beginning
  1846. of the current line."
  1847. (declare (debug t))
  1848. (org-with-gensyms (marker)
  1849. `(let ((,marker (get-text-property (if ,string 0 (point-at-bol))
  1850. 'org-hd-marker ,string)))
  1851. (with-current-buffer (marker-buffer ,marker)
  1852. (save-excursion
  1853. (goto-char ,marker)
  1854. ,@body)))))
  1855. (defun org-add-agenda-custom-command (entry)
  1856. "Replace or add a command in `org-agenda-custom-commands'.
  1857. This is mostly for hacking and trying a new command - once the command
  1858. works you probably want to add it to `org-agenda-custom-commands' for good."
  1859. (let ((ass (assoc (car entry) org-agenda-custom-commands)))
  1860. (if ass
  1861. (setcdr ass (cdr entry))
  1862. (push entry org-agenda-custom-commands))))
  1863. (defmacro org-agenda--insert-overriding-header (default)
  1864. "Insert header into agenda view.
  1865. The inserted header depends on `org-agenda-overriding-header'.
  1866. If the empty string, don't insert a header. If any other string,
  1867. insert it as a header. If nil, insert DEFAULT, which should
  1868. evaluate to a string."
  1869. (declare (debug (form)) (indent defun))
  1870. `(cond
  1871. ((not org-agenda-overriding-header) (insert ,default))
  1872. ((equal org-agenda-overriding-header "") nil)
  1873. ((stringp org-agenda-overriding-header)
  1874. (insert (propertize org-agenda-overriding-header
  1875. 'face 'org-agenda-structure)
  1876. "\n"))
  1877. (t (user-error "Invalid value for `org-agenda-overriding-header': %S"
  1878. org-agenda-overriding-header))))
  1879. ;;; Define the org-agenda-mode
  1880. (defvaralias 'org-agenda-keymap 'org-agenda-mode-map)
  1881. (defvar org-agenda-mode-map (make-sparse-keymap)
  1882. "Keymap for `org-agenda-mode'.")
  1883. (org-remap org-agenda-mode-map 'move-end-of-line 'org-agenda-end-of-line)
  1884. (defvar org-agenda-menu) ; defined later in this file.
  1885. (defvar org-agenda-restrict nil) ; defined later in this file.
  1886. (defvar org-agenda-follow-mode nil)
  1887. (defvar org-agenda-entry-text-mode nil)
  1888. (defvar org-agenda-clockreport-mode nil)
  1889. (defvar org-agenda-show-log nil
  1890. "When non-nil, show the log in the agenda.
  1891. Do not set this directly; instead use
  1892. `org-agenda-start-with-log-mode', which see.")
  1893. (defvar org-agenda-redo-command nil)
  1894. (defvar org-agenda-query-string nil)
  1895. (defvar org-agenda-mode-hook nil
  1896. "Hook run after `org-agenda-mode' is turned on.
  1897. The buffer is still writable when this hook is called.")
  1898. (defvar org-agenda-type nil)
  1899. (defvar org-agenda-force-single-file nil)
  1900. (defvar org-agenda-bulk-marked-entries nil
  1901. "List of markers that refer to marked entries in the agenda.")
  1902. (defvar org-agenda-current-date nil
  1903. "Active date when building the agenda.")
  1904. ;;; Multiple agenda buffers support
  1905. (defcustom org-agenda-sticky nil
  1906. "Non-nil means agenda q key will bury agenda buffers.
  1907. Agenda commands will then show existing buffer instead of generating new ones.
  1908. When nil, `q' will kill the single agenda buffer."
  1909. :group 'org-agenda
  1910. :version "24.3"
  1911. :type 'boolean)
  1912. ;;;###autoload
  1913. (defun org-toggle-sticky-agenda (&optional arg)
  1914. "Toggle `org-agenda-sticky'."
  1915. (interactive "P")
  1916. (let ((new-value (if arg
  1917. (> (prefix-numeric-value arg) 0)
  1918. (not org-agenda-sticky))))
  1919. (if (equal new-value org-agenda-sticky)
  1920. (and (called-interactively-p 'interactive)
  1921. (message "Sticky agenda was already %s"
  1922. (if org-agenda-sticky "enabled" "disabled")))
  1923. (setq org-agenda-sticky new-value)
  1924. (org-agenda-kill-all-agenda-buffers)
  1925. (and (called-interactively-p 'interactive)
  1926. (message "Sticky agenda %s"
  1927. (if org-agenda-sticky "enabled" "disabled"))))))
  1928. (defvar org-agenda-buffer nil
  1929. "Agenda buffer currently being generated.")
  1930. (defvar org-agenda-last-prefix-arg nil)
  1931. (defvar org-agenda-this-buffer-name nil)
  1932. (defvar org-agenda-doing-sticky-redo nil)
  1933. (defvar org-agenda-this-buffer-is-sticky nil)
  1934. (defvar org-agenda-last-indirect-buffer nil
  1935. "Last buffer loaded by `org-agenda-tree-to-indirect-buffer'.")
  1936. (defconst org-agenda-local-vars
  1937. '(org-agenda-this-buffer-name
  1938. org-agenda-undo-list
  1939. org-agenda-pending-undo-list
  1940. org-agenda-follow-mode
  1941. org-agenda-entry-text-mode
  1942. org-agenda-clockreport-mode
  1943. org-agenda-show-log
  1944. org-agenda-redo-command
  1945. org-agenda-query-string
  1946. org-agenda-type
  1947. org-agenda-bulk-marked-entries
  1948. org-agenda-undo-has-started-in
  1949. org-agenda-info
  1950. org-agenda-pre-window-conf
  1951. org-agenda-columns-active
  1952. org-agenda-tag-filter
  1953. org-agenda-category-filter
  1954. org-agenda-top-headline-filter
  1955. org-agenda-regexp-filter
  1956. org-agenda-effort-filter
  1957. org-agenda-markers
  1958. org-agenda-last-search-view-search-was-boolean
  1959. org-agenda-last-indirect-buffer
  1960. org-agenda-filtered-by-category
  1961. org-agenda-filter-form
  1962. org-agenda-cycle-counter
  1963. org-agenda-last-prefix-arg)
  1964. "Variables that must be local in agenda buffers to allow multiple buffers.")
  1965. (defun org-agenda-mode ()
  1966. "Mode for time-sorted view on action items in Org files.
  1967. The following commands are available:
  1968. \\{org-agenda-mode-map}"
  1969. (interactive)
  1970. (ignore-errors (require 'face-remap))
  1971. (let ((agenda-local-vars-to-keep
  1972. '(text-scale-mode-amount
  1973. text-scale-mode
  1974. text-scale-mode-lighter
  1975. face-remapping-alist))
  1976. (save (buffer-local-variables)))
  1977. (kill-all-local-variables)
  1978. (cl-flet ((reset-saved (var-set)
  1979. "Reset variables in VAR-SET to possibly stored value in SAVE."
  1980. (dolist (elem save)
  1981. (pcase elem
  1982. (`(,var . ,val) ;ignore unbound variables
  1983. (when (and val (memq var var-set))
  1984. (set var val)))))))
  1985. (cond (org-agenda-doing-sticky-redo
  1986. ;; Refreshing sticky agenda-buffer
  1987. ;;
  1988. ;; Preserve the value of `org-agenda-local-vars' variables.
  1989. (mapc #'make-local-variable org-agenda-local-vars)
  1990. (reset-saved org-agenda-local-vars)
  1991. (setq-local org-agenda-this-buffer-is-sticky t))
  1992. (org-agenda-sticky
  1993. ;; Creating a sticky Agenda buffer for the first time
  1994. (mapc #'make-local-variable org-agenda-local-vars)
  1995. (setq-local org-agenda-this-buffer-is-sticky t))
  1996. (t
  1997. ;; Creating a non-sticky agenda buffer
  1998. (setq-local org-agenda-this-buffer-is-sticky nil)))
  1999. (mapc #'make-local-variable agenda-local-vars-to-keep)
  2000. (reset-saved agenda-local-vars-to-keep)))
  2001. (setq org-agenda-undo-list nil
  2002. org-agenda-pending-undo-list nil
  2003. org-agenda-bulk-marked-entries nil)
  2004. (setq major-mode 'org-agenda-mode)
  2005. ;; Keep global-font-lock-mode from turning on font-lock-mode
  2006. (setq-local font-lock-global-modes (list 'not major-mode))
  2007. (setq mode-name "Org-Agenda")
  2008. (setq indent-tabs-mode nil)
  2009. (use-local-map org-agenda-mode-map)
  2010. (when org-startup-truncated (setq truncate-lines t))
  2011. (setq-local line-move-visual nil)
  2012. (add-hook 'post-command-hook #'org-agenda-update-agenda-type nil 'local)
  2013. (add-hook 'pre-command-hook #'org-unhighlight nil 'local)
  2014. ;; Make sure properties are removed when copying text
  2015. (if (boundp 'filter-buffer-substring-functions)
  2016. (add-hook 'filter-buffer-substring-functions
  2017. (lambda (fun start end delete)
  2018. (substring-no-properties (funcall fun start end delete)))
  2019. nil t)
  2020. ;; Emacs >= 24.4.
  2021. (add-function :filter-return (local 'filter-buffer-substring-function)
  2022. #'substring-no-properties))
  2023. (unless org-agenda-keep-modes
  2024. (setq org-agenda-follow-mode org-agenda-start-with-follow-mode
  2025. org-agenda-entry-text-mode org-agenda-start-with-entry-text-mode
  2026. org-agenda-show-log org-agenda-start-with-log-mode
  2027. org-agenda-clockreport-mode org-agenda-start-with-clockreport-mode))
  2028. (add-to-invisibility-spec '(org-filtered))
  2029. (add-to-invisibility-spec '(org-link))
  2030. (easy-menu-change
  2031. '("Agenda") "Agenda Files"
  2032. (append
  2033. (list
  2034. (vector
  2035. (if (get 'org-agenda-files 'org-restrict)
  2036. "Restricted to single file"
  2037. "Edit File List")
  2038. '(org-edit-agenda-file-list)
  2039. (not (get 'org-agenda-files 'org-restrict)))
  2040. "--")
  2041. (mapcar #'org-file-menu-entry (org-agenda-files))))
  2042. (org-agenda-set-mode-name)
  2043. (run-mode-hooks '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 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* ((org-keys keys)
  2545. (prefix-descriptions nil)
  2546. (org-agenda-buffer-name org-agenda-buffer-name)
  2547. (org-agenda-window-setup (if (equal (buffer-name)
  2548. org-agenda-buffer-name)
  2549. 'current-window
  2550. org-agenda-window-setup))
  2551. (org-agenda-custom-commands-orig org-agenda-custom-commands)
  2552. (org-agenda-custom-commands
  2553. ;; normalize different versions
  2554. (delq nil
  2555. (mapcar
  2556. (lambda (x)
  2557. (cond ((stringp (cdr x))
  2558. (push x prefix-descriptions)
  2559. nil)
  2560. ((stringp (nth 1 x)) x)
  2561. ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
  2562. (t (cons (car x) (cons "" (cdr x))))))
  2563. org-agenda-custom-commands)))
  2564. (org-agenda-custom-commands
  2565. (org-contextualize-keys
  2566. org-agenda-custom-commands org-agenda-custom-commands-contexts))
  2567. ;; (buf (current-buffer))
  2568. (bfn (buffer-file-name (buffer-base-buffer)))
  2569. entry type org-match lprops ans) ;; key
  2570. ;; Turn off restriction unless there is an overriding one,
  2571. (unless org-agenda-overriding-restriction
  2572. (unless org-agenda-keep-restricted-file-list
  2573. ;; There is a request to keep the file list in place
  2574. (put 'org-agenda-files 'org-restrict nil))
  2575. (setq org-agenda-restrict nil)
  2576. (move-marker org-agenda-restrict-begin nil)
  2577. (move-marker org-agenda-restrict-end nil))
  2578. ;; Delete old local properties
  2579. (put 'org-agenda-redo-command 'org-lprops nil)
  2580. ;; Delete previously set last-arguments
  2581. (put 'org-agenda-redo-command 'last-args nil)
  2582. ;; Remember where this call originated
  2583. (setq org-agenda-last-dispatch-buffer (current-buffer))
  2584. (unless org-keys
  2585. (setq ans (org-agenda-get-restriction-and-command prefix-descriptions)
  2586. org-keys (car ans)
  2587. restriction (cdr ans)))
  2588. ;; If we have sticky agenda buffers, set a name for the buffer,
  2589. ;; depending on the invoking keys. The user may still set this
  2590. ;; as a command option, which will overwrite what we do here.
  2591. (when org-agenda-sticky
  2592. (setq org-agenda-buffer-name
  2593. (format "*Org Agenda(%s)*" org-keys)))
  2594. ;; Establish the restriction, if any
  2595. (when (and (not org-agenda-overriding-restriction) restriction)
  2596. (put 'org-agenda-files 'org-restrict (list bfn))
  2597. (cond
  2598. ((eq restriction 'region)
  2599. (setq org-agenda-restrict (current-buffer))
  2600. (move-marker org-agenda-restrict-begin (region-beginning))
  2601. (move-marker org-agenda-restrict-end (region-end)))
  2602. ((eq restriction 'subtree)
  2603. (save-excursion
  2604. (setq org-agenda-restrict (current-buffer))
  2605. (org-back-to-heading t)
  2606. (move-marker org-agenda-restrict-begin (point))
  2607. (move-marker org-agenda-restrict-end
  2608. (progn (org-end-of-subtree t)))))
  2609. ((and (eq restriction 'buffer)
  2610. (or (< 1 (point-min))
  2611. (< (point-max) (1+ (buffer-size)))))
  2612. (setq org-agenda-restrict (current-buffer))
  2613. (move-marker org-agenda-restrict-begin (point-min))
  2614. (move-marker org-agenda-restrict-end (point-max)))))
  2615. ;; For example the todo list should not need it (but does...)
  2616. (cond
  2617. ((setq entry (assoc org-keys org-agenda-custom-commands))
  2618. (if (or (symbolp (nth 2 entry)) (functionp (nth 2 entry)))
  2619. (progn
  2620. ;; FIXME: Is (nth 3 entry) supposed to have access (via dynvars)
  2621. ;; to some of the local variables? There's no doc about
  2622. ;; that for `org-agenda-custom-commands'.
  2623. (setq type (nth 2 entry) org-match (eval (nth 3 entry) t)
  2624. lprops (nth 4 entry))
  2625. (when org-agenda-sticky
  2626. (setq org-agenda-buffer-name
  2627. (or (and (stringp org-match) (format "*Org Agenda(%s:%s)*" org-keys org-match))
  2628. (format "*Org Agenda(%s)*" org-keys))))
  2629. (put 'org-agenda-redo-command 'org-lprops lprops)
  2630. (cl-progv
  2631. (mapcar #'car lprops)
  2632. (mapcar (lambda (binding) (eval (cadr binding) t)) lprops)
  2633. (pcase type
  2634. (`agenda
  2635. (org-agenda-list current-prefix-arg))
  2636. (`agenda*
  2637. (org-agenda-list current-prefix-arg nil nil t))
  2638. (`alltodo
  2639. (org-todo-list current-prefix-arg))
  2640. (`search
  2641. (org-search-view current-prefix-arg org-match nil))
  2642. (`stuck
  2643. (org-agenda-list-stuck-projects current-prefix-arg))
  2644. (`tags
  2645. (org-tags-view current-prefix-arg org-match))
  2646. (`tags-todo
  2647. (org-tags-view '(4) org-match))
  2648. (`todo
  2649. (org-todo-list org-match))
  2650. (`tags-tree
  2651. (org-check-for-org-mode)
  2652. (org-match-sparse-tree current-prefix-arg org-match))
  2653. (`todo-tree
  2654. (org-check-for-org-mode)
  2655. (org-occur (concat "^" org-outline-regexp "[ \t]*"
  2656. (regexp-quote org-match) "\\>")))
  2657. (`occur-tree
  2658. (org-check-for-org-mode)
  2659. (org-occur org-match))
  2660. ((pred functionp)
  2661. (funcall type org-match))
  2662. ;; FIXME: Will signal an error since it's not `functionp'!
  2663. ((pred fboundp) (funcall type org-match))
  2664. (_ (user-error "Invalid custom agenda command type %s" type)))))
  2665. (org-agenda-run-series (nth 1 entry) (cddr entry))))
  2666. ((equal org-keys "C")
  2667. (setq org-agenda-custom-commands org-agenda-custom-commands-orig)
  2668. (customize-variable 'org-agenda-custom-commands))
  2669. ((equal org-keys "a") (call-interactively 'org-agenda-list))
  2670. ((equal org-keys "s") (call-interactively 'org-search-view))
  2671. ((equal org-keys "S") (org-call-with-arg 'org-search-view (or arg '(4))))
  2672. ((equal org-keys "t") (call-interactively 'org-todo-list))
  2673. ((equal org-keys "T") (org-call-with-arg 'org-todo-list (or arg '(4))))
  2674. ((equal org-keys "m") (call-interactively 'org-tags-view))
  2675. ((equal org-keys "M") (org-call-with-arg 'org-tags-view (or arg '(4))))
  2676. ((equal org-keys "e") (call-interactively 'org-store-agenda-views))
  2677. ((equal org-keys "?") (org-tags-view nil "+FLAGGED")
  2678. (add-hook
  2679. 'post-command-hook
  2680. (lambda ()
  2681. (unless (current-message)
  2682. (let* ((m (org-agenda-get-any-marker))
  2683. (note (and m (org-entry-get m "THEFLAGGINGNOTE"))))
  2684. (when note
  2685. (message "FLAGGING-NOTE ([?] for more info): %s"
  2686. (org-add-props
  2687. (replace-regexp-in-string
  2688. "\\\\n" "//"
  2689. (copy-sequence note))
  2690. nil 'face 'org-warning))))))
  2691. t t))
  2692. ((equal org-keys "#") (call-interactively 'org-agenda-list-stuck-projects))
  2693. ((equal org-keys "/") (call-interactively 'org-occur-in-agenda-files))
  2694. ((equal org-keys "!") (customize-variable 'org-stuck-projects))
  2695. (t (user-error "Invalid agenda key"))))))
  2696. (defvar org-agenda-multi)
  2697. (defun org-agenda-append-agenda ()
  2698. "Append another agenda view to the current one.
  2699. This function allows interactive building of block agendas.
  2700. Agenda views are separated by `org-agenda-block-separator'."
  2701. (interactive)
  2702. (unless (derived-mode-p 'org-agenda-mode)
  2703. (user-error "Can only append from within agenda buffer"))
  2704. (let ((org-agenda-multi t))
  2705. (org-agenda)
  2706. (widen)
  2707. (org-agenda-finalize)
  2708. (setq buffer-read-only t)
  2709. (org-agenda-fit-window-to-buffer)))
  2710. (defun org-agenda-normalize-custom-commands (cmds)
  2711. "Normalize custom commands CMDS."
  2712. (delq nil
  2713. (mapcar
  2714. (lambda (x)
  2715. (cond ((stringp (cdr x)) nil)
  2716. ((stringp (nth 1 x)) x)
  2717. ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
  2718. (t (cons (car x) (cons "" (cdr x))))))
  2719. cmds)))
  2720. (defun org-agenda-get-restriction-and-command (prefix-descriptions)
  2721. "The user interface for selecting an agenda command."
  2722. (catch 'exit
  2723. (let* ((bfn (buffer-file-name (buffer-base-buffer)))
  2724. (restrict-ok (and bfn (derived-mode-p 'org-mode)))
  2725. (region-p (org-region-active-p))
  2726. (custom org-agenda-custom-commands)
  2727. (selstring "")
  2728. restriction second-time
  2729. c entry key type match prefixes rmheader header-end custom1 desc
  2730. line lines left right n n1)
  2731. (save-window-excursion
  2732. (delete-other-windows)
  2733. (org-switch-to-buffer-other-window " *Agenda Commands*")
  2734. (erase-buffer)
  2735. (insert (eval-when-compile
  2736. (let ((header
  2737. (copy-sequence
  2738. "Press key for an agenda command:
  2739. -------------------------------- < Buffer, subtree/region restriction
  2740. a Agenda for current week or day > Remove restriction
  2741. t List of all TODO entries e Export agenda views
  2742. m Match a TAGS/PROP/TODO query T Entries with special TODO kwd
  2743. s Search for keywords M Like m, but only TODO entries
  2744. / Multi-occur S Like s, but only TODO entries
  2745. ? Find :FLAGGED: entries C Configure custom agenda commands
  2746. * Toggle sticky agenda views # List stuck projects (!=configure)
  2747. "))
  2748. (start 0))
  2749. (while (string-match
  2750. "\\(^\\| \\|(\\)\\(\\S-\\)\\( \\|=\\)"
  2751. header start)
  2752. (setq start (match-end 0))
  2753. (add-text-properties (match-beginning 2) (match-end 2)
  2754. '(face bold) header))
  2755. header)))
  2756. (setq header-end (point-marker))
  2757. (while t
  2758. (setq custom1 custom)
  2759. (when (eq rmheader t)
  2760. (org-goto-line 1)
  2761. (re-search-forward ":" nil t)
  2762. (delete-region (match-end 0) (point-at-eol))
  2763. (forward-char 1)
  2764. (looking-at "-+")
  2765. (delete-region (match-end 0) (point-at-eol))
  2766. (move-marker header-end (match-end 0)))
  2767. (goto-char header-end)
  2768. (delete-region (point) (point-max))
  2769. ;; Produce all the lines that describe custom commands and prefixes
  2770. (setq lines nil)
  2771. (while (setq entry (pop custom1))
  2772. (setq key (car entry) desc (nth 1 entry)
  2773. type (nth 2 entry)
  2774. match (nth 3 entry))
  2775. (if (> (length key) 1)
  2776. (cl-pushnew (string-to-char key) prefixes :test #'equal)
  2777. (setq line
  2778. (format
  2779. "%-4s%-14s"
  2780. (org-add-props (copy-sequence key)
  2781. '(face bold))
  2782. (cond
  2783. ((string-match "\\S-" desc) desc)
  2784. ((eq type 'agenda) "Agenda for current week or day")
  2785. ((eq type 'agenda*) "Appointments for current week or day")
  2786. ((eq type 'alltodo) "List of all TODO entries")
  2787. ((eq type 'search) "Word search")
  2788. ((eq type 'stuck) "List of stuck projects")
  2789. ((eq type 'todo) "TODO keyword")
  2790. ((eq type 'tags) "Tags query")
  2791. ((eq type 'tags-todo) "Tags (TODO)")
  2792. ((eq type 'tags-tree) "Tags tree")
  2793. ((eq type 'todo-tree) "TODO kwd tree")
  2794. ((eq type 'occur-tree) "Occur tree")
  2795. ((functionp type) (if (symbolp type)
  2796. (symbol-name type)
  2797. "Lambda expression"))
  2798. (t "???"))))
  2799. (cond
  2800. ((not (org-string-nw-p match)) nil)
  2801. (org-agenda-menu-show-matcher
  2802. (setq line
  2803. (concat line ": "
  2804. (cond
  2805. ((stringp match)
  2806. (propertize match 'face 'org-warning))
  2807. ((listp type)
  2808. (format "set of %d commands" (length type)))))))
  2809. (t
  2810. (org-add-props line nil 'help-echo (concat "Matcher: " match))))
  2811. (push line lines)))
  2812. (setq lines (nreverse lines))
  2813. (when prefixes
  2814. (mapc (lambda (x)
  2815. (push
  2816. (format "%s %s"
  2817. (org-add-props (char-to-string x)
  2818. nil 'face 'bold)
  2819. (or (cdr (assoc (concat selstring
  2820. (char-to-string x))
  2821. prefix-descriptions))
  2822. "Prefix key"))
  2823. lines))
  2824. prefixes))
  2825. ;; Check if we should display in two columns
  2826. (if org-agenda-menu-two-columns
  2827. (progn
  2828. (setq n (length lines)
  2829. n1 (+ (/ n 2) (mod n 2))
  2830. right (nthcdr n1 lines)
  2831. left (copy-sequence lines))
  2832. (setcdr (nthcdr (1- n1) left) nil))
  2833. (setq left lines right nil))
  2834. (while left
  2835. (insert "\n" (pop left))
  2836. (when right
  2837. (if (< (current-column) 40)
  2838. (move-to-column 40 t)
  2839. (insert " "))
  2840. (insert (pop right))))
  2841. ;; Make the window the right size
  2842. (goto-char (point-min))
  2843. (if second-time
  2844. (when (not (pos-visible-in-window-p (point-max)))
  2845. (org-fit-window-to-buffer))
  2846. (setq second-time t)
  2847. (org-fit-window-to-buffer))
  2848. ;; Hint to navigation if window too small for all information
  2849. (setq header-line-format
  2850. (when (not (pos-visible-in-window-p (point-max)))
  2851. "Use C-v, M-v, C-n or C-p to navigate."))
  2852. ;; Ask for selection
  2853. (cl-loop
  2854. do (progn
  2855. (message "Press key for agenda command%s:"
  2856. (if (or restrict-ok org-agenda-overriding-restriction)
  2857. (if org-agenda-overriding-restriction
  2858. " (restriction lock active)"
  2859. (if restriction
  2860. (format " (restricted to %s)" restriction)
  2861. " (unrestricted)"))
  2862. ""))
  2863. (setq c (read-char-exclusive)))
  2864. until (not (memq c '(14 16 22 134217846)))
  2865. do (org-scroll c))
  2866. (message "")
  2867. (cond
  2868. ((assoc (char-to-string c) custom)
  2869. (setq selstring (concat selstring (char-to-string c)))
  2870. (throw 'exit (cons selstring restriction)))
  2871. ((memq c prefixes)
  2872. (setq selstring (concat selstring (char-to-string c))
  2873. prefixes nil
  2874. rmheader (or rmheader t)
  2875. custom (delq nil (mapcar
  2876. (lambda (x)
  2877. (if (or (= (length (car x)) 1)
  2878. (/= (string-to-char (car x)) c))
  2879. nil
  2880. (cons (substring (car x) 1) (cdr x))))
  2881. custom))))
  2882. ((eq c ?*)
  2883. (call-interactively 'org-toggle-sticky-agenda)
  2884. (sit-for 2))
  2885. ((and (not restrict-ok) (memq c '(?1 ?0 ?<)))
  2886. (message "Restriction is only possible in Org buffers")
  2887. (ding) (sit-for 1))
  2888. ((eq c ?1)
  2889. (org-agenda-remove-restriction-lock 'noupdate)
  2890. (setq restriction 'buffer))
  2891. ((eq c ?0)
  2892. (org-agenda-remove-restriction-lock 'noupdate)
  2893. (setq restriction (if region-p 'region 'subtree)))
  2894. ((eq c ?<)
  2895. (org-agenda-remove-restriction-lock 'noupdate)
  2896. (setq restriction
  2897. (cond
  2898. ((eq restriction 'buffer)
  2899. (if region-p 'region 'subtree))
  2900. ((memq restriction '(subtree region))
  2901. nil)
  2902. (t 'buffer))))
  2903. ((eq c ?>)
  2904. (org-agenda-remove-restriction-lock 'noupdate)
  2905. (setq restriction nil))
  2906. ((and (equal selstring "") (memq c '(?s ?S ?a ?t ?m ?L ?C ?e ?T ?M ?# ?! ?/ ??)))
  2907. (throw 'exit (cons (setq selstring (char-to-string c)) restriction)))
  2908. ((and (> (length selstring) 0) (eq c ?\d))
  2909. (delete-window)
  2910. (org-agenda-get-restriction-and-command prefix-descriptions))
  2911. ((equal c ?q) (error "Abort"))
  2912. (t (user-error "Invalid key %c" c))))))))
  2913. (defun org-agenda-fit-window-to-buffer ()
  2914. "Fit the window to the buffer size."
  2915. (and (memq org-agenda-window-setup '(reorganize-frame))
  2916. (fboundp 'fit-window-to-buffer)
  2917. (if (and (= (cdr org-agenda-window-frame-fractions) 1.0)
  2918. (= (car org-agenda-window-frame-fractions) 1.0))
  2919. (delete-other-windows)
  2920. (org-fit-window-to-buffer
  2921. nil
  2922. (floor (* (frame-height) (cdr org-agenda-window-frame-fractions)))
  2923. (floor (* (frame-height) (car org-agenda-window-frame-fractions)))))))
  2924. (defvar org-cmd nil)
  2925. (defvar org-agenda-overriding-cmd nil)
  2926. (defvar org-agenda-overriding-arguments nil)
  2927. (defvar org-agenda-overriding-cmd-arguments nil)
  2928. (defun org-let (list &rest body) ;FIXME: So many kittens are suffering here.
  2929. (declare (indent 1) (obsolete cl-progv "Mar 2021"))
  2930. (eval (cons 'let (cons list body))))
  2931. (defun org-let2 (list1 list2 &rest body) ;FIXME: Where did our karma go?
  2932. (declare (indent 2) (obsolete cl-progv "Mar 2021"))
  2933. (eval (cons 'let (cons list1 (list (cons 'let (cons list2 body)))))))
  2934. (defun org-agenda-run-series (name series)
  2935. "Run agenda NAME as a SERIES of agenda commands."
  2936. (let* ((gprops (nth 1 series))
  2937. (gvars (mapcar #'car gprops))
  2938. (gvals (mapcar (lambda (binding) (eval (cadr binding) t)) gprops)))
  2939. (cl-progv gvars gvals (org-agenda-prepare name))
  2940. ;; We need to reset agenda markers here, because when constructing a
  2941. ;; block agenda, the individual blocks do not do that.
  2942. (org-agenda-reset-markers)
  2943. (with-no-warnings
  2944. (defvar match)) ;Used via the `eval' below.
  2945. (let* ((org-agenda-multi t)
  2946. ;; FIXME: Redo should contain lists of (FUNS . ARGS) rather
  2947. ;; than expressions, so you don't need to `quote' the args
  2948. ;; and you just need to `apply' instead of `eval' when using it.
  2949. (redo (list 'org-agenda-run-series name (list 'quote series)))
  2950. (cmds (car series))
  2951. match
  2952. org-cmd type lprops)
  2953. (while (setq org-cmd (pop cmds))
  2954. (setq type (car org-cmd))
  2955. (setq match (eval (nth 1 org-cmd) t))
  2956. (setq lprops (nth 2 org-cmd))
  2957. (let ((org-agenda-overriding-arguments
  2958. (if (eq org-agenda-overriding-cmd org-cmd)
  2959. (or org-agenda-overriding-arguments
  2960. org-agenda-overriding-cmd-arguments)))
  2961. (lvars (mapcar #'car lprops))
  2962. (lvals (mapcar (lambda (binding) (eval (cadr binding) t)) lprops)))
  2963. (cl-progv (append gvars lvars) (append gvals lvals)
  2964. (pcase type
  2965. (`agenda
  2966. (call-interactively 'org-agenda-list))
  2967. (`agenda*
  2968. (funcall 'org-agenda-list nil nil t))
  2969. (`alltodo
  2970. (call-interactively 'org-todo-list))
  2971. (`search
  2972. (org-search-view current-prefix-arg match nil))
  2973. (`stuck
  2974. (call-interactively 'org-agenda-list-stuck-projects))
  2975. (`tags
  2976. (org-tags-view current-prefix-arg match))
  2977. (`tags-todo
  2978. (org-tags-view '(4) match))
  2979. (`todo
  2980. (org-todo-list match))
  2981. ((pred fboundp)
  2982. (funcall type match))
  2983. (_ (error "Invalid type in command series"))))))
  2984. (widen)
  2985. (let ((inhibit-read-only t))
  2986. (add-text-properties (point-min) (point-max)
  2987. `(org-series t org-series-redo-cmd ,redo)))
  2988. (setq org-agenda-redo-command redo)
  2989. (goto-char (point-min)))
  2990. (org-agenda-fit-window-to-buffer)
  2991. (cl-progv gvars gvals (org-agenda-finalize))))
  2992. (defun org-agenda--split-plist (plist)
  2993. ;; We could/should arguably use `map-keys' and `map-values'.
  2994. (let (keys vals)
  2995. (while plist
  2996. (push (pop plist) keys)
  2997. (push (pop plist) vals))
  2998. (cons (nreverse keys) (nreverse vals))))
  2999. ;;;###autoload
  3000. (defmacro org-batch-agenda (cmd-key &rest parameters)
  3001. "Run an agenda command in batch mode and send the result to STDOUT.
  3002. If CMD-KEY is a string of length 1, it is used as a key in
  3003. `org-agenda-custom-commands' and triggers this command. If it is a
  3004. longer string it is used as a tags/todo match string.
  3005. Parameters are alternating variable names and values that will be bound
  3006. before running the agenda command."
  3007. (pcase-let ((`(,vars . ,exps) (org-agenda--split-plist parameters)))
  3008. `(org--batch-agenda ,cmd-key ',vars (list ,@exps))))
  3009. (defun org--batch-agenda (cmd-key vars vals)
  3010. ;; `org-batch-agenda' is a macro because every other "parameter" is
  3011. ;; a variable name rather than an expression to evaluate. Yuck!
  3012. (cl-progv vars vals
  3013. (let (org-agenda-sticky)
  3014. (if (> (length cmd-key) 1)
  3015. (org-tags-view nil cmd-key)
  3016. (org-agenda nil cmd-key))))
  3017. (set-buffer org-agenda-buffer-name)
  3018. (princ (buffer-string)))
  3019. (defvar org-agenda-info nil)
  3020. ;;;###autoload
  3021. (defmacro org-batch-agenda-csv (cmd-key &rest parameters)
  3022. "Run an agenda command in batch mode and send the result to STDOUT.
  3023. If CMD-KEY is a string of length 1, it is used as a key in
  3024. `org-agenda-custom-commands' and triggers this command. If it is a
  3025. longer string it is used as a tags/todo match string.
  3026. Parameters are alternating variable names and values that will be bound
  3027. before running the agenda command.
  3028. The output gives a line for each selected agenda item. Each
  3029. item is a list of comma-separated values, like this:
  3030. category,head,type,todo,tags,date,time,extra,priority-l,priority-n
  3031. category The category of the item
  3032. head The headline, without TODO kwd, TAGS and PRIORITY
  3033. type The type of the agenda entry, can be
  3034. todo selected in TODO match
  3035. tagsmatch selected in tags match
  3036. diary imported from diary
  3037. deadline a deadline on given date
  3038. scheduled scheduled on given date
  3039. timestamp entry has timestamp on given date
  3040. closed entry was closed on given date
  3041. upcoming-deadline warning about deadline
  3042. past-scheduled forwarded scheduled item
  3043. block entry has date block including g. date
  3044. todo The todo keyword, if any
  3045. tags All tags including inherited ones, separated by colons
  3046. date The relevant date, like 2007-2-14
  3047. time The time, like 15:00-16:50
  3048. extra String with extra planning info
  3049. priority-l The priority letter if any was given
  3050. priority-n The computed numerical priority
  3051. agenda-day The day in the agenda where this is listed"
  3052. (pcase-let ((`(,vars . ,exps) (org-agenda--split-plist parameters)))
  3053. `(org--batch-agenda-csv ,cmd-key ',vars (list ,@exps))))
  3054. (defun org--batch-agenda-csv (cmd-key vars vals)
  3055. ;; `org-batch-agenda-csv' is a macro because every other "parameter" is
  3056. ;; a variable name rather than an expression to evaluate. Yuck!
  3057. (let ((org-agenda-remove-tags t))
  3058. (cl-progv vars vals
  3059. ;; FIXME: Shouldn't this be 1 (see commit 10173ad6d610b)?
  3060. (if (> (length cmd-key) 2)
  3061. (org-tags-view nil cmd-key)
  3062. (org-agenda nil cmd-key))))
  3063. (set-buffer org-agenda-buffer-name)
  3064. (let ((lines (org-split-string (buffer-string) "\n")))
  3065. (dolist (line lines)
  3066. (when (get-text-property 0 'org-category line)
  3067. (setq org-agenda-info
  3068. (org-fix-agenda-info (text-properties-at 0 line)))
  3069. (princ
  3070. (mapconcat #'org-agenda-export-csv-mapper
  3071. '(org-category txt type todo tags date time extra
  3072. priority-letter priority agenda-day)
  3073. ","))
  3074. (princ "\n")))))
  3075. (defun org-fix-agenda-info (props)
  3076. "Make sure all properties on an agenda item have a canonical form.
  3077. This ensures the export commands can easily use it."
  3078. (let (tmp re)
  3079. (when (setq tmp (plist-get props 'tags))
  3080. (setq props (plist-put props 'tags (mapconcat #'identity tmp ":"))))
  3081. (when (setq tmp (plist-get props 'date))
  3082. (when (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
  3083. (let ((calendar-date-display-form '(year "-" month "-" day)))
  3084. '((format "%4d, %9s %2s, %4s" dayname monthname day year))
  3085. (setq tmp (calendar-date-string tmp)))
  3086. (setq props (plist-put props 'date tmp)))
  3087. (when (setq tmp (plist-get props 'day))
  3088. (when (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
  3089. (let ((calendar-date-display-form '(year "-" month "-" day)))
  3090. (setq tmp (calendar-date-string tmp)))
  3091. (setq props (plist-put props 'day tmp))
  3092. (setq props (plist-put props 'agenda-day tmp)))
  3093. (when (setq tmp (plist-get props 'txt))
  3094. (when (string-match "\\[#\\([A-Z0-9]\\)\\] ?" tmp)
  3095. (plist-put props 'priority-letter (match-string 1 tmp))
  3096. (setq tmp (replace-match "" t t tmp)))
  3097. (when (and (setq re (plist-get props 'org-todo-regexp))
  3098. (setq re (concat "\\`\\.*" re " ?"))
  3099. (let ((case-fold-search nil)) (string-match re tmp)))
  3100. (plist-put props 'todo (match-string 1 tmp))
  3101. (setq tmp (replace-match "" t t tmp)))
  3102. (plist-put props 'txt tmp)))
  3103. props)
  3104. (defun org-agenda-export-csv-mapper (prop)
  3105. (let ((res (plist-get org-agenda-info prop)))
  3106. (setq res
  3107. (cond
  3108. ((not res) "")
  3109. ((stringp res) res)
  3110. (t (prin1-to-string res))))
  3111. (org-trim (replace-regexp-in-string "," ";" res nil t))))
  3112. ;;;###autoload
  3113. (defun org-store-agenda-views (&rest _parameters)
  3114. "Store agenda views."
  3115. (interactive)
  3116. (org--batch-store-agenda-views nil nil))
  3117. ;;;###autoload
  3118. (defmacro org-batch-store-agenda-views (&rest parameters)
  3119. "Run all custom agenda commands that have a file argument."
  3120. (pcase-let ((`(,vars . ,exps) (org-agenda--split-plist parameters)))
  3121. `(org--batch-store-agenda-views ',vars (list ,@exps))))
  3122. (defun org--batch-store-agenda-views (vars vals)
  3123. (let ((cmds (org-agenda-normalize-custom-commands org-agenda-custom-commands))
  3124. (pop-up-frames nil)
  3125. (dir default-directory)
  3126. cmd thiscmdkey thiscmdcmd match files opts cmd-or-set bufname)
  3127. (save-window-excursion
  3128. (while cmds
  3129. (setq cmd (pop cmds)
  3130. thiscmdkey (car cmd)
  3131. thiscmdcmd (cdr cmd)
  3132. match (nth 2 thiscmdcmd)
  3133. bufname (if org-agenda-sticky
  3134. (or (and (stringp match)
  3135. (format "*Org Agenda(%s:%s)*" thiscmdkey match))
  3136. (format "*Org Agenda(%s)*" thiscmdkey))
  3137. org-agenda-buffer-name)
  3138. cmd-or-set (nth 2 cmd)
  3139. opts (nth (if (listp cmd-or-set) 3 4) cmd)
  3140. files (nth (if (listp cmd-or-set) 4 5) cmd))
  3141. (if (stringp files) (setq files (list files)))
  3142. (when files
  3143. (let* ((opts (append org-agenda-exporter-settings opts))
  3144. (vars (append (mapcar #'car opts) vars))
  3145. (vals (append (mapcar (lambda (binding) (eval (cadr binding) t))
  3146. opts)
  3147. vals)))
  3148. (cl-progv vars vals
  3149. (org-agenda nil thiscmdkey))
  3150. (set-buffer bufname)
  3151. (while files
  3152. (cl-progv vars vals
  3153. (org-agenda-write (expand-file-name (pop files) dir)
  3154. nil t bufname))))
  3155. (and (get-buffer bufname)
  3156. (kill-buffer bufname)))))))
  3157. (defvar org-agenda-current-span nil
  3158. "The current span used in the agenda view.") ; local variable in the agenda buffer
  3159. (defun org-agenda-mark-header-line (pos)
  3160. "Mark the line at POS as an agenda structure header."
  3161. (save-excursion
  3162. (goto-char pos)
  3163. (put-text-property (point-at-bol) (point-at-eol)
  3164. 'org-agenda-structural-header t)
  3165. (when org-agenda-title-append
  3166. (put-text-property (point-at-bol) (point-at-eol)
  3167. 'org-agenda-title-append org-agenda-title-append))))
  3168. (defvar org-mobile-creating-agendas) ; defined in org-mobile.el
  3169. (defvar org-agenda-write-buffer-name "Agenda View")
  3170. (defun org-agenda-write (file &optional open nosettings agenda-bufname)
  3171. "Write the current buffer (an agenda view) as a file.
  3172. Depending on the extension of the file name, plain text (.txt),
  3173. HTML (.html or .htm), PDF (.pdf) or Postscript (.ps) is produced.
  3174. If the extension is .ics, translate visible agenda into iCalendar
  3175. format. If the extension is .org, collect all subtrees
  3176. corresponding to the agenda entries and add them in an .org file.
  3177. With prefix argument OPEN, open the new file immediately. If
  3178. NOSETTINGS is given, do not scope the settings of
  3179. `org-agenda-exporter-settings' into the export commands. This is
  3180. used when the settings have already been scoped and we do not
  3181. wish to overrule other, higher priority settings. If
  3182. AGENDA-BUFFER-NAME is provided, use this as the buffer name for
  3183. the agenda to write."
  3184. (interactive "FWrite agenda to file: \nP")
  3185. (if (or (not (file-writable-p file))
  3186. (and (file-exists-p file)
  3187. (if (called-interactively-p 'any)
  3188. (not (y-or-n-p (format "Overwrite existing file %s? " file))))))
  3189. (user-error "Cannot write agenda to file %s" file))
  3190. (cl-progv
  3191. (if nosettings nil (mapcar #'car org-agenda-exporter-settings))
  3192. (if nosettings nil (mapcar (lambda (binding) (eval (cadr binding) t))
  3193. org-agenda-exporter-settings))
  3194. (save-excursion
  3195. (save-window-excursion
  3196. (let ((bs (copy-sequence (buffer-string)))
  3197. (extension (file-name-extension file))
  3198. (default-directory (file-name-directory file))
  3199. ) ;; beg content
  3200. (with-temp-buffer
  3201. (rename-buffer org-agenda-write-buffer-name t)
  3202. (set-buffer-modified-p nil)
  3203. (insert bs)
  3204. (org-agenda-remove-marked-text 'invisible 'org-filtered)
  3205. (run-hooks 'org-agenda-before-write-hook)
  3206. (cond
  3207. ((bound-and-true-p org-mobile-creating-agendas)
  3208. (org-mobile-write-agenda-for-mobile file))
  3209. ((string= "org" extension)
  3210. (let (content p m message-log-max)
  3211. (goto-char (point-min))
  3212. (while (setq p (next-single-property-change (point) 'org-hd-marker nil))
  3213. (goto-char p)
  3214. (setq m (get-text-property (point) 'org-hd-marker))
  3215. (when m
  3216. (push (with-current-buffer (marker-buffer m)
  3217. (goto-char m)
  3218. (org-copy-subtree 1 nil t t)
  3219. org-subtree-clip)
  3220. content)))
  3221. (find-file file)
  3222. (erase-buffer)
  3223. (dolist (s content) (org-paste-subtree 1 s))
  3224. (write-file file)
  3225. (kill-buffer (current-buffer))
  3226. (message "Org file written to %s" file)))
  3227. ((member extension '("html" "htm"))
  3228. (or (require 'htmlize nil t)
  3229. (error "Please install htmlize from https://github.com/hniksic/emacs-htmlize"))
  3230. (declare-function htmlize-buffer "htmlize" (&optional buffer))
  3231. (set-buffer (htmlize-buffer (current-buffer)))
  3232. (when org-agenda-export-html-style
  3233. ;; replace <style> section with org-agenda-export-html-style
  3234. (goto-char (point-min))
  3235. (kill-region (- (search-forward "<style") 6)
  3236. (search-forward "</style>"))
  3237. (insert org-agenda-export-html-style))
  3238. (write-file file)
  3239. (kill-buffer (current-buffer))
  3240. (message "HTML written to %s" file))
  3241. ((string= "ps" extension)
  3242. (require 'ps-print)
  3243. (ps-print-buffer-with-faces file)
  3244. (message "Postscript written to %s" file))
  3245. ((string= "pdf" extension)
  3246. (require 'ps-print)
  3247. (ps-print-buffer-with-faces
  3248. (concat (file-name-sans-extension file) ".ps"))
  3249. (call-process "ps2pdf" nil nil nil
  3250. (expand-file-name
  3251. (concat (file-name-sans-extension file) ".ps"))
  3252. (expand-file-name file))
  3253. (delete-file (concat (file-name-sans-extension file) ".ps"))
  3254. (message "PDF written to %s" file))
  3255. ((string= "ics" extension)
  3256. (require 'ox-icalendar)
  3257. (declare-function org-icalendar-export-current-agenda
  3258. "ox-icalendar" (file))
  3259. (org-icalendar-export-current-agenda (expand-file-name file)))
  3260. (t
  3261. (let ((bs (buffer-string)))
  3262. (find-file file)
  3263. (erase-buffer)
  3264. (insert bs)
  3265. (save-buffer 0)
  3266. (kill-buffer (current-buffer))
  3267. (message "Plain text written to %s" file))))))))
  3268. (set-buffer (or agenda-bufname
  3269. ;; FIXME: I'm pretty sure called-interactively-p
  3270. ;; doesn't do what we want here!
  3271. (and (called-interactively-p 'any) (buffer-name))
  3272. org-agenda-buffer-name)))
  3273. (when open (org-open-file file)))
  3274. (defun org-agenda-remove-marked-text (property &optional value)
  3275. "Delete all text marked with VALUE of PROPERTY.
  3276. VALUE defaults to t."
  3277. (let (beg)
  3278. (setq value (or value t))
  3279. (while (setq beg (text-property-any (point-min) (point-max)
  3280. property value))
  3281. (delete-region
  3282. beg (or (next-single-property-change beg property)
  3283. (point-max))))))
  3284. (defun org-agenda-add-entry-text ()
  3285. "Add entry text to agenda lines.
  3286. This will add a maximum of `org-agenda-add-entry-text-maxlines' lines of the
  3287. entry text following headings shown in the agenda.
  3288. Drawers will be excluded, also the line with scheduling/deadline info."
  3289. (when (and (> org-agenda-add-entry-text-maxlines 0)
  3290. (not (bound-and-true-p org-mobile-creating-agendas)))
  3291. (let (m txt)
  3292. (goto-char (point-min))
  3293. (while (not (eobp))
  3294. (if (not (setq m (org-get-at-bol 'org-hd-marker)))
  3295. (beginning-of-line 2)
  3296. (setq txt (org-agenda-get-some-entry-text
  3297. m org-agenda-add-entry-text-maxlines " > "))
  3298. (end-of-line 1)
  3299. (if (string-match "\\S-" txt)
  3300. (insert "\n" txt)
  3301. (or (eobp) (forward-char 1))))))))
  3302. (defun org-agenda-get-some-entry-text (marker n-lines &optional indent
  3303. &rest keep)
  3304. "Extract entry text from MARKER, at most N-LINES lines.
  3305. This will ignore drawers etc, just get the text.
  3306. If INDENT is given, prefix every line with this string. If KEEP is
  3307. given, it is a list of symbols, defining stuff that should not be
  3308. removed from the entry content. Currently only `planning' is allowed here."
  3309. (let (txt drawer-re kwd-time-re ind)
  3310. (save-excursion
  3311. (with-current-buffer (marker-buffer marker)
  3312. (if (not (derived-mode-p 'org-mode))
  3313. (setq txt "")
  3314. (org-with-wide-buffer
  3315. (goto-char marker)
  3316. (end-of-line 1)
  3317. (setq txt (buffer-substring
  3318. (min (1+ (point)) (point-max))
  3319. (progn (outline-next-heading) (point)))
  3320. drawer-re org-drawer-regexp
  3321. kwd-time-re (concat "^[ \t]*" org-keyword-time-regexp
  3322. ".*\n?"))
  3323. (with-temp-buffer
  3324. (insert txt)
  3325. (when org-agenda-add-entry-text-descriptive-links
  3326. (goto-char (point-min))
  3327. (while (org-activate-links (point-max))
  3328. (goto-char (match-end 0))))
  3329. (goto-char (point-min))
  3330. (while (re-search-forward org-link-bracket-re (point-max) t)
  3331. (set-text-properties (match-beginning 0) (match-end 0)
  3332. nil))
  3333. (goto-char (point-min))
  3334. (while (re-search-forward drawer-re nil t)
  3335. (delete-region
  3336. (match-beginning 0)
  3337. (progn (re-search-forward
  3338. "^[ \t]*:END:.*\n?" nil 'move)
  3339. (point))))
  3340. (unless (member 'planning keep)
  3341. (goto-char (point-min))
  3342. (while (re-search-forward kwd-time-re nil t)
  3343. (replace-match "")))
  3344. (goto-char (point-min))
  3345. (when org-agenda-entry-text-exclude-regexps
  3346. (let ((re-list org-agenda-entry-text-exclude-regexps) re)
  3347. (while (setq re (pop re-list))
  3348. (goto-char (point-min))
  3349. (while (re-search-forward re nil t)
  3350. (replace-match "")))))
  3351. (goto-char (point-max))
  3352. (skip-chars-backward " \t\n")
  3353. (when (looking-at "[ \t\n]+\\'") (replace-match ""))
  3354. ;; find and remove min common indentation
  3355. (goto-char (point-min))
  3356. (untabify (point-min) (point-max))
  3357. (setq ind (current-indentation))
  3358. (while (not (eobp))
  3359. (unless (looking-at "[ \t]*$")
  3360. (setq ind (min ind (current-indentation))))
  3361. (beginning-of-line 2))
  3362. (goto-char (point-min))
  3363. (while (not (eobp))
  3364. (unless (looking-at "[ \t]*$")
  3365. (move-to-column ind)
  3366. (delete-region (point-at-bol) (point)))
  3367. (beginning-of-line 2))
  3368. (run-hooks 'org-agenda-entry-text-cleanup-hook)
  3369. (goto-char (point-min))
  3370. (when indent
  3371. (while (and (not (eobp)) (re-search-forward "^" nil t))
  3372. (replace-match indent t t)))
  3373. (goto-char (point-min))
  3374. (while (looking-at "[ \t]*\n") (replace-match ""))
  3375. (goto-char (point-max))
  3376. (when (> (org-current-line)
  3377. n-lines)
  3378. (org-goto-line (1+ n-lines))
  3379. (backward-char 1))
  3380. (setq txt (buffer-substring (point-min) (point))))))))
  3381. txt))
  3382. (defun org-check-for-org-mode ()
  3383. "Make sure current buffer is in Org mode. Error if not."
  3384. (or (derived-mode-p 'org-mode)
  3385. (error "Cannot execute Org agenda command on buffer in %s"
  3386. major-mode)))
  3387. ;;; Agenda prepare and finalize
  3388. (defvar org-agenda-multi nil) ; dynamically scoped
  3389. (defvar org-agenda-pre-window-conf nil)
  3390. (defvar org-agenda-columns-active nil)
  3391. (defvar org-agenda-name nil)
  3392. (defvar org-agenda-tag-filter nil)
  3393. (defvar org-agenda-category-filter nil)
  3394. (defvar org-agenda-regexp-filter nil)
  3395. (defvar org-agenda-effort-filter nil)
  3396. (defvar org-agenda-top-headline-filter nil)
  3397. (defvar org-agenda-represented-categories nil
  3398. "Cache for the list of all categories in the agenda.")
  3399. (defvar org-agenda-represented-tags nil
  3400. "Cache for the list of all categories in the agenda.")
  3401. (defvar org-agenda-tag-filter-preset nil
  3402. "A preset of the tags filter used for secondary agenda filtering.
  3403. This must be a list of strings, each string must be a single tag preceded
  3404. by \"+\" or \"-\".
  3405. This variable should not be set directly, but agenda custom commands can
  3406. bind it in the options section. The preset filter is a global property of
  3407. the entire agenda view. In a block agenda, it will not work reliably to
  3408. define a filter for one of the individual blocks. You need to set it in
  3409. the global options and expect it to be applied to the entire view.")
  3410. (defconst org-agenda-filter-variables
  3411. '((category . org-agenda-category-filter)
  3412. (tag . org-agenda-tag-filter)
  3413. (effort . org-agenda-effort-filter)
  3414. (regexp . org-agenda-regexp-filter))
  3415. "Alist of filter types and associated variables")
  3416. (defun org-agenda-filter-any ()
  3417. "Is any filter active?"
  3418. (cl-some (lambda (x)
  3419. (or (symbol-value (cdr x))
  3420. (get :preset-filter x)))
  3421. org-agenda-filter-variables))
  3422. (defvar org-agenda-category-filter-preset nil
  3423. "A preset of the category filter used for secondary agenda filtering.
  3424. This must be a list of strings, each string must be a single category
  3425. preceded by \"+\" or \"-\".
  3426. This variable should not be set directly, but agenda custom commands can
  3427. bind it in the options section. The preset filter is a global property of
  3428. the entire agenda view. In a block agenda, it will not work reliably to
  3429. define a filter for one of the individual blocks. You need to set it in
  3430. the global options and expect it to be applied to the entire view.")
  3431. (defvar org-agenda-regexp-filter-preset nil
  3432. "A preset of the regexp filter used for secondary agenda filtering.
  3433. This must be a list of strings, each string must be a single regexp
  3434. preceded by \"+\" or \"-\".
  3435. This variable should not be set directly, but agenda custom commands can
  3436. bind it in the options section. The preset filter is a global property of
  3437. the entire agenda view. In a block agenda, it will not work reliably to
  3438. define a filter for one of the individual blocks. You need to set it in
  3439. the global options and expect it to be applied to the entire view.")
  3440. (defvar org-agenda-effort-filter-preset nil
  3441. "A preset of the effort condition used for secondary agenda filtering.
  3442. This must be a list of strings, each string must be a single regexp
  3443. preceded by \"+\" or \"-\".
  3444. This variable should not be set directly, but agenda custom commands can
  3445. bind it in the options section. The preset filter is a global property of
  3446. the entire agenda view. In a block agenda, it will not work reliably to
  3447. define a filter for one of the individual blocks. You need to set it in
  3448. the global options and expect it to be applied to the entire view.")
  3449. (defun org-agenda-use-sticky-p ()
  3450. "Return non-nil if an agenda buffer named
  3451. `org-agenda-buffer-name' exists and should be shown instead of
  3452. generating a new one."
  3453. (and
  3454. ;; turned off by user
  3455. org-agenda-sticky
  3456. ;; For multi-agenda buffer already exists
  3457. (not org-agenda-multi)
  3458. ;; buffer found
  3459. (get-buffer org-agenda-buffer-name)
  3460. ;; C-u parameter is same as last call
  3461. (with-current-buffer (get-buffer org-agenda-buffer-name)
  3462. (and
  3463. (equal current-prefix-arg
  3464. org-agenda-last-prefix-arg)
  3465. ;; In case user turned stickiness on, while having existing
  3466. ;; Agenda buffer active, don't reuse that buffer, because it
  3467. ;; does not have org variables local
  3468. org-agenda-this-buffer-is-sticky))))
  3469. (defvar org-agenda-buffer-tmp-name nil)
  3470. (defun org-agenda--get-buffer-name (sticky-name)
  3471. (or org-agenda-buffer-tmp-name
  3472. (and org-agenda-doing-sticky-redo org-agenda-buffer-name)
  3473. sticky-name
  3474. "*Org Agenda*"))
  3475. (defun org-agenda-prepare-window (abuf filter-alist)
  3476. "Setup agenda buffer in the window.
  3477. ABUF is the buffer for the agenda window.
  3478. FILTER-ALIST is an alist of filters we need to apply when
  3479. `org-agenda-persistent-filter' is non-nil."
  3480. (let* ((awin (get-buffer-window abuf)) wconf)
  3481. (cond
  3482. ((equal (current-buffer) abuf) nil)
  3483. (awin (select-window awin))
  3484. ((not (setq wconf (current-window-configuration))))
  3485. ((eq org-agenda-window-setup 'current-window)
  3486. (pop-to-buffer-same-window abuf))
  3487. ((eq org-agenda-window-setup 'other-window)
  3488. (org-switch-to-buffer-other-window abuf))
  3489. ((eq org-agenda-window-setup 'other-frame)
  3490. (switch-to-buffer-other-frame abuf))
  3491. ((eq org-agenda-window-setup 'other-tab)
  3492. (if (fboundp 'switch-to-buffer-other-tab)
  3493. (switch-to-buffer-other-tab abuf)
  3494. (user-error "Your version of Emacs does not have tab bar support")))
  3495. ((eq org-agenda-window-setup 'only-window)
  3496. (delete-other-windows)
  3497. (pop-to-buffer-same-window abuf))
  3498. ((eq org-agenda-window-setup 'reorganize-frame)
  3499. (delete-other-windows)
  3500. (org-switch-to-buffer-other-window abuf)))
  3501. (setq org-agenda-tag-filter (cdr (assq 'tag filter-alist)))
  3502. (setq org-agenda-category-filter (cdr (assq 'cat filter-alist)))
  3503. (setq org-agenda-effort-filter (cdr (assq 'effort filter-alist)))
  3504. (setq org-agenda-regexp-filter (cdr (assq 're filter-alist)))
  3505. ;; Additional test in case agenda is invoked from within agenda
  3506. ;; buffer via elisp link.
  3507. (unless (equal (current-buffer) abuf)
  3508. (pop-to-buffer-same-window abuf))
  3509. (setq org-agenda-pre-window-conf
  3510. (or wconf org-agenda-pre-window-conf))))
  3511. (defun org-agenda-prepare (&optional name)
  3512. (let ((filter-alist (when org-agenda-persistent-filter
  3513. (with-current-buffer
  3514. (get-buffer-create org-agenda-buffer-name)
  3515. `((tag . ,org-agenda-tag-filter)
  3516. (re . ,org-agenda-regexp-filter)
  3517. (effort . ,org-agenda-effort-filter)
  3518. (cat . ,org-agenda-category-filter))))))
  3519. (if (org-agenda-use-sticky-p)
  3520. (progn
  3521. (put 'org-agenda-tag-filter :preset-filter nil)
  3522. (put 'org-agenda-category-filter :preset-filter nil)
  3523. (put 'org-agenda-regexp-filter :preset-filter nil)
  3524. (put 'org-agenda-effort-filter :preset-filter nil)
  3525. ;; Popup existing buffer
  3526. (org-agenda-prepare-window (get-buffer org-agenda-buffer-name)
  3527. filter-alist)
  3528. (message "Sticky Agenda buffer, use `r' to refresh")
  3529. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  3530. (throw 'exit "Sticky Agenda buffer, use `r' to refresh"))
  3531. (setq org-todo-keywords-for-agenda nil)
  3532. (put 'org-agenda-tag-filter :preset-filter
  3533. org-agenda-tag-filter-preset)
  3534. (put 'org-agenda-category-filter :preset-filter
  3535. org-agenda-category-filter-preset)
  3536. (put 'org-agenda-regexp-filter :preset-filter
  3537. org-agenda-regexp-filter-preset)
  3538. (put 'org-agenda-effort-filter :preset-filter
  3539. org-agenda-effort-filter-preset)
  3540. (if org-agenda-multi
  3541. (progn
  3542. (setq buffer-read-only nil)
  3543. (goto-char (point-max))
  3544. (unless (or (bobp) org-agenda-compact-blocks
  3545. (not org-agenda-block-separator))
  3546. (insert "\n"
  3547. (if (stringp org-agenda-block-separator)
  3548. org-agenda-block-separator
  3549. (make-string (window-width) org-agenda-block-separator))
  3550. "\n"))
  3551. (narrow-to-region (point) (point-max)))
  3552. (setq org-done-keywords-for-agenda nil)
  3553. ;; Setting any org variables that are in org-agenda-local-vars
  3554. ;; list need to be done after the prepare call
  3555. (org-agenda-prepare-window
  3556. (get-buffer-create org-agenda-buffer-name) filter-alist)
  3557. (setq buffer-read-only nil)
  3558. (org-agenda-reset-markers)
  3559. (let ((inhibit-read-only t)) (erase-buffer))
  3560. (org-agenda-mode)
  3561. (setq org-agenda-buffer (current-buffer))
  3562. (setq org-agenda-contributing-files nil)
  3563. (setq org-agenda-columns-active nil)
  3564. (org-agenda-prepare-buffers (org-agenda-files nil 'ifmode))
  3565. (setq org-todo-keywords-for-agenda
  3566. (org-uniquify org-todo-keywords-for-agenda))
  3567. (setq org-done-keywords-for-agenda
  3568. (org-uniquify org-done-keywords-for-agenda))
  3569. (setq org-agenda-last-prefix-arg current-prefix-arg)
  3570. (setq org-agenda-this-buffer-name org-agenda-buffer-name)
  3571. (and name (not org-agenda-name)
  3572. (setq-local org-agenda-name name)))
  3573. (setq buffer-read-only nil))))
  3574. (defvar org-overriding-columns-format)
  3575. (defvar org-local-columns-format)
  3576. (defun org-agenda-finalize ()
  3577. "Finishing touch for the agenda buffer.
  3578. This function is called just before displaying the agenda. If
  3579. you want to add your own functions to the finalization of the
  3580. agenda display, configure `org-agenda-finalize-hook'."
  3581. (unless org-agenda-multi
  3582. (let ((inhibit-read-only t))
  3583. (save-excursion
  3584. (goto-char (point-min))
  3585. (save-excursion
  3586. (while (org-activate-links (point-max))
  3587. (goto-char (match-end 0))))
  3588. (unless (eq org-agenda-remove-tags t)
  3589. (org-agenda-align-tags))
  3590. (unless org-agenda-with-colors
  3591. (remove-text-properties (point-min) (point-max) '(face nil)))
  3592. (when (bound-and-true-p org-overriding-columns-format)
  3593. (setq-local org-local-columns-format
  3594. org-overriding-columns-format))
  3595. (when org-agenda-view-columns-initially
  3596. (org-agenda-columns))
  3597. (when org-agenda-fontify-priorities
  3598. (org-agenda-fontify-priorities))
  3599. (when (and org-agenda-dim-blocked-tasks org-blocker-hook)
  3600. (org-agenda-dim-blocked-tasks))
  3601. (org-agenda-mark-clocking-task)
  3602. (when org-agenda-entry-text-mode
  3603. (org-agenda-entry-text-hide)
  3604. (org-agenda-entry-text-show))
  3605. (when (and (featurep 'org-habit)
  3606. (save-excursion (next-single-property-change (point-min) 'org-habit-p)))
  3607. (org-habit-insert-consistency-graphs))
  3608. (setq org-agenda-type (org-get-at-bol 'org-agenda-type))
  3609. (unless (or (eq org-agenda-show-inherited-tags 'always)
  3610. (and (listp org-agenda-show-inherited-tags)
  3611. (memq org-agenda-type org-agenda-show-inherited-tags))
  3612. (and (eq org-agenda-show-inherited-tags t)
  3613. (or (eq org-agenda-use-tag-inheritance t)
  3614. (and (listp org-agenda-use-tag-inheritance)
  3615. (not (memq org-agenda-type
  3616. org-agenda-use-tag-inheritance))))))
  3617. (let (mrk)
  3618. (save-excursion
  3619. (goto-char (point-min))
  3620. (while (equal (forward-line) 0)
  3621. (when (setq mrk (get-text-property (point) 'org-hd-marker))
  3622. (put-text-property (point-at-bol) (point-at-eol)
  3623. 'tags
  3624. (org-with-point-at mrk
  3625. (mapcar #'downcase (org-get-tags)))))))))
  3626. (setq org-agenda-represented-tags nil
  3627. org-agenda-represented-categories nil)
  3628. (when org-agenda-top-headline-filter
  3629. (org-agenda-filter-top-headline-apply
  3630. org-agenda-top-headline-filter))
  3631. (when org-agenda-tag-filter
  3632. (org-agenda-filter-apply org-agenda-tag-filter 'tag t))
  3633. (when (get 'org-agenda-tag-filter :preset-filter)
  3634. (org-agenda-filter-apply
  3635. (get 'org-agenda-tag-filter :preset-filter) 'tag t))
  3636. (when org-agenda-category-filter
  3637. (org-agenda-filter-apply org-agenda-category-filter 'category))
  3638. (when (get 'org-agenda-category-filter :preset-filter)
  3639. (org-agenda-filter-apply
  3640. (get 'org-agenda-category-filter :preset-filter) 'category))
  3641. (when org-agenda-regexp-filter
  3642. (org-agenda-filter-apply org-agenda-regexp-filter 'regexp))
  3643. (when (get 'org-agenda-regexp-filter :preset-filter)
  3644. (org-agenda-filter-apply
  3645. (get 'org-agenda-regexp-filter :preset-filter) 'regexp))
  3646. (when org-agenda-effort-filter
  3647. (org-agenda-filter-apply org-agenda-effort-filter 'effort))
  3648. (when (get 'org-agenda-effort-filter :preset-filter)
  3649. (org-agenda-filter-apply
  3650. (get 'org-agenda-effort-filter :preset-filter) 'effort))
  3651. (add-hook 'kill-buffer-hook #'org-agenda-reset-markers 'append 'local))
  3652. (run-hooks 'org-agenda-finalize-hook))))
  3653. (defun org-agenda-mark-clocking-task ()
  3654. "Mark the current clock entry in the agenda if it is present."
  3655. ;; We need to widen when `org-agenda-finalize' is called from
  3656. ;; `org-agenda-change-all-lines' (e.g. in `org-agenda-clock-in').
  3657. (when (bound-and-true-p org-clock-current-task)
  3658. (save-restriction
  3659. (widen)
  3660. (org-agenda-unmark-clocking-task)
  3661. (when (marker-buffer org-clock-hd-marker)
  3662. (save-excursion
  3663. (goto-char (point-min))
  3664. (let (s ov)
  3665. (while (setq s (next-single-property-change (point) 'org-hd-marker))
  3666. (goto-char s)
  3667. (when (equal (org-get-at-bol 'org-hd-marker)
  3668. org-clock-hd-marker)
  3669. (setq ov (make-overlay (point-at-bol) (1+ (point-at-eol))))
  3670. (overlay-put ov 'type 'org-agenda-clocking)
  3671. (overlay-put ov 'face 'org-agenda-clocking)
  3672. (overlay-put ov 'help-echo
  3673. "The clock is running in this item")))))))))
  3674. (defun org-agenda-unmark-clocking-task ()
  3675. "Unmark the current clocking task."
  3676. (mapc (lambda (o)
  3677. (when (eq (overlay-get o 'type) 'org-agenda-clocking)
  3678. (delete-overlay o)))
  3679. (overlays-in (point-min) (point-max))))
  3680. (defun org-agenda-fontify-priorities ()
  3681. "Make highest priority lines bold, and lowest italic."
  3682. (interactive)
  3683. (mapc (lambda (o) (when (eq (overlay-get o 'org-type) 'org-priority)
  3684. (delete-overlay o)))
  3685. (overlays-in (point-min) (point-max)))
  3686. (save-excursion
  3687. (let (b e p ov h l)
  3688. (goto-char (point-min))
  3689. (while (re-search-forward org-priority-regexp nil t)
  3690. (setq h (or (get-char-property (point) 'org-priority-highest)
  3691. org-priority-highest)
  3692. l (or (get-char-property (point) 'org-priority-lowest)
  3693. org-priority-lowest)
  3694. p (string-to-char (match-string 2))
  3695. b (match-beginning 1)
  3696. e (if (eq org-agenda-fontify-priorities 'cookies)
  3697. (1+ (match-end 2))
  3698. (point-at-eol))
  3699. ov (make-overlay b e))
  3700. (overlay-put
  3701. ov 'face
  3702. (let ((special-face
  3703. (cond ((org-face-from-face-or-color
  3704. 'priority 'org-priority
  3705. (cdr (assoc p org-priority-faces))))
  3706. ((and (listp org-agenda-fontify-priorities)
  3707. (org-face-from-face-or-color
  3708. 'priority 'org-priority
  3709. (cdr (assoc p org-agenda-fontify-priorities)))))
  3710. ((equal p l) 'italic)
  3711. ((equal p h) 'bold))))
  3712. (if special-face (list special-face 'org-priority) 'org-priority)))
  3713. (overlay-put ov 'org-type 'org-priority)))))
  3714. (defvar org-depend-tag-blocked)
  3715. (defun org-agenda-dim-blocked-tasks (&optional _invisible)
  3716. "Dim currently blocked TODOs in the agenda display.
  3717. When INVISIBLE is non-nil, hide currently blocked TODO instead of
  3718. dimming them." ;FIXME: The arg isn't used, actually!
  3719. (interactive "P")
  3720. (when (called-interactively-p 'interactive)
  3721. (message "Dim or hide blocked tasks..."))
  3722. (dolist (o (overlays-in (point-min) (point-max)))
  3723. (when (eq (overlay-get o 'face) 'org-agenda-dimmed-todo-face)
  3724. (delete-overlay o)))
  3725. (save-excursion
  3726. (let ((inhibit-read-only t))
  3727. (goto-char (point-min))
  3728. (while (let ((pos (text-property-not-all
  3729. (point) (point-max) 'org-todo-blocked nil)))
  3730. (when pos (goto-char pos)))
  3731. (let* ((invisible
  3732. (eq (org-get-at-bol 'org-todo-blocked) 'invisible))
  3733. (todo-blocked
  3734. (eq (org-get-at-bol 'org-filter-type) 'todo-blocked))
  3735. (ov (make-overlay (if invisible
  3736. (line-end-position 0)
  3737. (line-beginning-position))
  3738. (line-end-position))))
  3739. (when todo-blocked
  3740. (overlay-put ov 'face 'org-agenda-dimmed-todo-face))
  3741. (when invisible
  3742. (org-agenda-filter-hide-line 'todo-blocked)))
  3743. (move-beginning-of-line 2))))
  3744. (when (called-interactively-p 'interactive)
  3745. (message "Dim or hide blocked tasks...done")))
  3746. (defun org-agenda--mark-blocked-entry (entry)
  3747. "If ENTRY is blocked, mark it for fontification or invisibility.
  3748. If the header at `org-hd-marker' is blocked according to
  3749. `org-entry-blocked-p', then if `org-agenda-dim-blocked-tasks' is
  3750. 'invisible and the header is not blocked by checkboxes, set the
  3751. text property `org-todo-blocked' to `invisible', otherwise set it
  3752. to t."
  3753. (when (get-text-property 0 'todo-state entry)
  3754. (let ((entry-marker (get-text-property 0 'org-hd-marker entry))
  3755. (org-blocked-by-checkboxes nil)
  3756. ;; Necessary so that `org-entry-blocked-p' does not change
  3757. ;; the buffer.
  3758. (org-depend-tag-blocked nil))
  3759. (when entry-marker
  3760. (let ((blocked
  3761. (with-current-buffer (marker-buffer entry-marker)
  3762. (save-excursion
  3763. (goto-char entry-marker)
  3764. (org-entry-blocked-p)))))
  3765. (when blocked
  3766. (let ((really-invisible
  3767. (and (not org-blocked-by-checkboxes)
  3768. (eq org-agenda-dim-blocked-tasks 'invisible))))
  3769. (put-text-property
  3770. 0 (length entry) 'org-todo-blocked
  3771. (if really-invisible 'invisible t)
  3772. entry)
  3773. (put-text-property
  3774. 0 (length entry) 'org-filter-type 'todo-blocked entry)))))))
  3775. entry)
  3776. (defvar org-agenda-skip-function nil
  3777. "Function to be called at each match during agenda construction.
  3778. If this function returns nil, the current match should not be skipped.
  3779. Otherwise, the function must return a position from where the search
  3780. should be continued.
  3781. This may also be a Lisp form, it will be evaluated.
  3782. Never set this variable using `setq' or so, because then it will apply
  3783. to all future agenda commands. If you do want a global skipping condition,
  3784. use the option `org-agenda-skip-function-global' instead.
  3785. The correct usage for `org-agenda-skip-function' is to bind it with
  3786. `let' to scope it dynamically into the agenda-constructing command.
  3787. A good way to set it is through options in `org-agenda-custom-commands'.")
  3788. (defun org-agenda-skip ()
  3789. "Throw to `:skip' in places that should be skipped.
  3790. Also moves point to the end of the skipped region, so that search can
  3791. continue from there."
  3792. (let ((p (point-at-bol)) to)
  3793. (when (or
  3794. (save-excursion (goto-char p) (looking-at comment-start-skip))
  3795. (and org-agenda-skip-archived-trees (not org-agenda-archives-mode)
  3796. (or (and (get-text-property p :org-archived)
  3797. (org-end-of-subtree t))
  3798. (and (member org-archive-tag org-file-tags)
  3799. (goto-char (point-max)))))
  3800. (and org-agenda-skip-comment-trees
  3801. (get-text-property p :org-comment)
  3802. (org-end-of-subtree t))
  3803. (and (setq to (or (org-agenda-skip-eval org-agenda-skip-function-global)
  3804. (org-agenda-skip-eval org-agenda-skip-function)))
  3805. (goto-char to))
  3806. (org-in-src-block-p t))
  3807. (throw :skip t))))
  3808. (defun org-agenda-skip-eval (form)
  3809. "If FORM is a function or a list, call (or eval) it and return the result.
  3810. `save-excursion' and `save-match-data' are wrapped around the call, so point
  3811. and match data are returned to the previous state no matter what these
  3812. functions do."
  3813. (let (fp)
  3814. (and form
  3815. (or (setq fp (functionp form))
  3816. (consp form))
  3817. (save-excursion
  3818. (save-match-data
  3819. (if fp
  3820. (funcall form)
  3821. (eval form t)))))))
  3822. (defvar org-agenda-markers nil
  3823. "List of all currently active markers created by `org-agenda'.")
  3824. (defvar org-agenda-last-marker-time (float-time)
  3825. "Creation time of the last agenda marker.")
  3826. (defun org-agenda-new-marker (&optional pos)
  3827. "Return a new agenda marker.
  3828. Marker is at point, or at POS if non-nil. Org mode keeps a list
  3829. of these markers and resets them when they are no longer in use."
  3830. (let ((m (copy-marker (or pos (point)) t)))
  3831. (setq org-agenda-last-marker-time (float-time))
  3832. (if org-agenda-buffer
  3833. (with-current-buffer org-agenda-buffer
  3834. (push m org-agenda-markers))
  3835. (push m org-agenda-markers))
  3836. m))
  3837. (defun org-agenda-reset-markers ()
  3838. "Reset markers created by `org-agenda'."
  3839. (while org-agenda-markers
  3840. (move-marker (pop org-agenda-markers) nil)))
  3841. (defun org-agenda-save-markers-for-cut-and-paste (beg end)
  3842. "Save relative positions of markers in region.
  3843. This check for agenda markers in all agenda buffers currently active."
  3844. (dolist (buf (buffer-list))
  3845. (with-current-buffer buf
  3846. (when (eq major-mode 'org-agenda-mode)
  3847. (mapc (lambda (m) (org-check-and-save-marker m beg end))
  3848. org-agenda-markers)))))
  3849. ;;; Entry text mode
  3850. (defun org-agenda-entry-text-show-here ()
  3851. "Add some text from the entry as context to the current line."
  3852. (let (m txt o)
  3853. (setq m (org-get-at-bol 'org-hd-marker))
  3854. (unless (marker-buffer m)
  3855. (error "No marker points to an entry here"))
  3856. (setq txt (concat "\n" (org-no-properties
  3857. (org-agenda-get-some-entry-text
  3858. m org-agenda-entry-text-maxlines
  3859. org-agenda-entry-text-leaders))))
  3860. (when (string-match "\\S-" txt)
  3861. (setq o (make-overlay (point-at-bol) (point-at-eol)))
  3862. (overlay-put o 'evaporate t)
  3863. (overlay-put o 'org-overlay-type 'agenda-entry-content)
  3864. (overlay-put o 'after-string txt))))
  3865. (defun org-agenda-entry-text-show ()
  3866. "Add entry context for all agenda lines."
  3867. (interactive)
  3868. (save-excursion
  3869. (goto-char (point-max))
  3870. (beginning-of-line 1)
  3871. (while (not (bobp))
  3872. (when (org-get-at-bol 'org-hd-marker)
  3873. (org-agenda-entry-text-show-here))
  3874. (beginning-of-line 0))))
  3875. (defun org-agenda-entry-text-hide ()
  3876. "Remove any shown entry context."
  3877. (mapc (lambda (o)
  3878. (when (eq (overlay-get o 'org-overlay-type)
  3879. 'agenda-entry-content)
  3880. (delete-overlay o)))
  3881. (overlays-in (point-min) (point-max))))
  3882. (defun org-agenda-get-day-face (date)
  3883. "Return the face DATE should be displayed with."
  3884. (cond ((and (functionp org-agenda-day-face-function)
  3885. (funcall org-agenda-day-face-function date)))
  3886. ((org-agenda-today-p date) 'org-agenda-date-today)
  3887. ((memq (calendar-day-of-week date) org-agenda-weekend-days)
  3888. 'org-agenda-date-weekend)
  3889. (t 'org-agenda-date)))
  3890. (defvar org-agenda-show-log-scoped)
  3891. ;;; Agenda Daily/Weekly
  3892. (defvar org-agenda-start-day nil ; dynamically scoped parameter
  3893. "Start day for the agenda view.
  3894. Custom commands can set this variable in the options section.
  3895. This is usually a string like \"2007-11-01\", \"+2d\" or any other
  3896. input allowed when reading a date through the Org calendar.
  3897. See the docstring of `org-read-date' for details.")
  3898. (defvar org-starting-day nil) ; local variable in the agenda buffer
  3899. (defvar org-arg-loc nil) ; local variable
  3900. ;;;###autoload
  3901. (defun org-agenda-list (&optional arg start-day span with-hour)
  3902. "Produce a daily/weekly view from all files in variable `org-agenda-files'.
  3903. The view will be for the current day or week, but from the overview buffer
  3904. you will be able to go to other days/weeks.
  3905. With a numeric prefix argument in an interactive call, the agenda will
  3906. span ARG days. Lisp programs should instead specify SPAN to change
  3907. the number of days. SPAN defaults to `org-agenda-span'.
  3908. START-DAY defaults to TODAY, or to the most recent match for the weekday
  3909. given in `org-agenda-start-on-weekday'.
  3910. When WITH-HOUR is non-nil, only include scheduled and deadline
  3911. items if they have an hour specification like [h]h:mm."
  3912. (interactive "P")
  3913. (when org-agenda-overriding-arguments
  3914. (setq arg (car org-agenda-overriding-arguments)
  3915. start-day (nth 1 org-agenda-overriding-arguments)
  3916. span (nth 2 org-agenda-overriding-arguments)))
  3917. (when (and (integerp arg) (> arg 0))
  3918. (setq span arg arg nil))
  3919. (when (numberp span)
  3920. (unless (< 0 span)
  3921. (user-error "Agenda creation impossible for this span(=%d days)." span)))
  3922. (catch 'exit
  3923. (setq org-agenda-buffer-name
  3924. (org-agenda--get-buffer-name
  3925. (and org-agenda-sticky
  3926. (cond ((and org-keys (stringp org-match))
  3927. (format "*Org Agenda(%s:%s)*" org-keys org-match))
  3928. (org-keys
  3929. (format "*Org Agenda(%s)*" org-keys))
  3930. (t "*Org Agenda(a)*")))))
  3931. (org-agenda-prepare "Day/Week")
  3932. (setq start-day (or start-day org-agenda-start-day))
  3933. (when (stringp start-day)
  3934. ;; Convert to an absolute day number
  3935. (setq start-day (time-to-days (org-read-date nil t start-day))))
  3936. (org-compile-prefix-format 'agenda)
  3937. (org-set-sorting-strategy 'agenda)
  3938. (let* ((span (org-agenda-ndays-to-span (or span org-agenda-span)))
  3939. (today (org-today))
  3940. (sd (or start-day today))
  3941. (ndays (org-agenda-span-to-ndays span sd))
  3942. (org-agenda-start-on-weekday
  3943. (and (or (eq ndays 7) (eq ndays 14))
  3944. org-agenda-start-on-weekday))
  3945. (thefiles (org-agenda-files nil 'ifmode))
  3946. (files thefiles)
  3947. (start (if (or (null org-agenda-start-on-weekday)
  3948. (< ndays 7))
  3949. sd
  3950. (let* ((nt (calendar-day-of-week
  3951. (calendar-gregorian-from-absolute sd)))
  3952. (n1 org-agenda-start-on-weekday)
  3953. (d (- nt n1)))
  3954. (- sd (+ (if (< d 0) 7 0) d)))))
  3955. (day-numbers (list start))
  3956. (day-cnt 0)
  3957. (inhibit-redisplay (not debug-on-error))
  3958. (org-agenda-show-log-scoped org-agenda-show-log)
  3959. s rtn rtnall file date d start-pos end-pos todayp ;; e
  3960. clocktable-start clocktable-end) ;; filter
  3961. (setq org-agenda-redo-command
  3962. (list 'org-agenda-list (list 'quote arg) start-day (list 'quote span) with-hour))
  3963. (dotimes (_ (1- ndays))
  3964. (push (1+ (car day-numbers)) day-numbers))
  3965. (setq day-numbers (nreverse day-numbers))
  3966. (setq clocktable-start (car day-numbers)
  3967. clocktable-end (1+ (or (org-last day-numbers) 0)))
  3968. (setq-local org-starting-day (car day-numbers))
  3969. (setq-local org-arg-loc arg)
  3970. (setq-local org-agenda-current-span (org-agenda-ndays-to-span span))
  3971. (unless org-agenda-compact-blocks
  3972. (let* ((d1 (car day-numbers))
  3973. (d2 (org-last day-numbers))
  3974. (w1 (org-days-to-iso-week d1))
  3975. (w2 (org-days-to-iso-week d2)))
  3976. (setq s (point))
  3977. (org-agenda--insert-overriding-header
  3978. (concat (org-agenda-span-name span)
  3979. "-agenda"
  3980. (cond ((<= 350 (- d2 d1)) "")
  3981. ((= w1 w2) (format " (W%02d)" w1))
  3982. (t (format " (W%02d-W%02d)" w1 w2)))
  3983. ":\n")))
  3984. ;; Add properties if we actually inserted a header.
  3985. (when (> (point) s)
  3986. (add-text-properties s (1- (point))
  3987. (list 'face 'org-agenda-structure
  3988. 'org-date-line t))
  3989. (org-agenda-mark-header-line s)))
  3990. (while (setq d (pop day-numbers))
  3991. (setq date (calendar-gregorian-from-absolute d)
  3992. s (point))
  3993. (if (or (setq todayp (= d today))
  3994. (and (not start-pos) (= d sd)))
  3995. (setq start-pos (point))
  3996. (when (and start-pos (not end-pos))
  3997. (setq end-pos (point))))
  3998. (setq files thefiles
  3999. rtnall nil)
  4000. (while (setq file (pop files))
  4001. (catch 'nextfile
  4002. (org-check-agenda-file file)
  4003. (let ((org-agenda-entry-types org-agenda-entry-types))
  4004. ;; Starred types override non-starred equivalents
  4005. (when (member :deadline* org-agenda-entry-types)
  4006. (setq org-agenda-entry-types
  4007. (delq :deadline org-agenda-entry-types)))
  4008. (when (member :scheduled* org-agenda-entry-types)
  4009. (setq org-agenda-entry-types
  4010. (delq :scheduled org-agenda-entry-types)))
  4011. ;; Honor with-hour
  4012. (when with-hour
  4013. (when (member :deadline org-agenda-entry-types)
  4014. (setq org-agenda-entry-types
  4015. (delq :deadline org-agenda-entry-types))
  4016. (push :deadline* org-agenda-entry-types))
  4017. (when (member :scheduled org-agenda-entry-types)
  4018. (setq org-agenda-entry-types
  4019. (delq :scheduled org-agenda-entry-types))
  4020. (push :scheduled* org-agenda-entry-types)))
  4021. (unless org-agenda-include-deadlines
  4022. (setq org-agenda-entry-types
  4023. (delq :deadline* (delq :deadline org-agenda-entry-types))))
  4024. (cond
  4025. ((memq org-agenda-show-log-scoped '(only clockcheck))
  4026. (setq rtn (org-agenda-get-day-entries
  4027. file date :closed)))
  4028. (org-agenda-show-log-scoped
  4029. (setq rtn (apply #'org-agenda-get-day-entries
  4030. file date
  4031. (append '(:closed) org-agenda-entry-types))))
  4032. (t
  4033. (setq rtn (apply #'org-agenda-get-day-entries
  4034. file date
  4035. org-agenda-entry-types)))))
  4036. (setq rtnall (append rtnall rtn)))) ;; all entries
  4037. (when org-agenda-include-diary
  4038. (let ((org-agenda-search-headline-for-time t))
  4039. (require 'diary-lib)
  4040. (setq rtn (org-get-entries-from-diary date))
  4041. (setq rtnall (append rtnall rtn))))
  4042. (when (or rtnall org-agenda-show-all-dates)
  4043. (setq day-cnt (1+ day-cnt))
  4044. (insert
  4045. (if (stringp org-agenda-format-date)
  4046. (format-time-string org-agenda-format-date
  4047. (org-time-from-absolute date))
  4048. (funcall org-agenda-format-date date))
  4049. "\n")
  4050. (put-text-property s (1- (point)) 'face
  4051. (org-agenda-get-day-face date))
  4052. (put-text-property s (1- (point)) 'org-date-line t)
  4053. (put-text-property s (1- (point)) 'org-agenda-date-header t)
  4054. (put-text-property s (1- (point)) 'org-day-cnt day-cnt)
  4055. (when todayp
  4056. (put-text-property s (1- (point)) 'org-today t))
  4057. (setq rtnall
  4058. (org-agenda-add-time-grid-maybe rtnall ndays todayp))
  4059. (when rtnall (insert ;; all entries
  4060. (org-agenda-finalize-entries rtnall 'agenda)
  4061. "\n"))
  4062. (put-text-property s (1- (point)) 'day d)
  4063. (put-text-property s (1- (point)) 'org-day-cnt day-cnt)))
  4064. (when (and org-agenda-clockreport-mode clocktable-start)
  4065. (let ((org-agenda-files (org-agenda-files nil 'ifmode))
  4066. ;; the above line is to ensure the restricted range!
  4067. (p (copy-sequence org-agenda-clockreport-parameter-plist))
  4068. tbl)
  4069. (setq p (org-plist-delete p :block))
  4070. (setq p (plist-put p :tstart clocktable-start))
  4071. (setq p (plist-put p :tend clocktable-end))
  4072. (setq p (plist-put p :scope 'agenda))
  4073. (setq tbl (apply #'org-clock-get-clocktable p))
  4074. (insert tbl)))
  4075. (goto-char (point-min))
  4076. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4077. (unless (or (not (get-buffer-window org-agenda-buffer-name))
  4078. (and (pos-visible-in-window-p (point-min))
  4079. (pos-visible-in-window-p (point-max))))
  4080. (goto-char (1- (point-max)))
  4081. (recenter -1)
  4082. (when (not (pos-visible-in-window-p (or start-pos 1)))
  4083. (goto-char (or start-pos 1))
  4084. (recenter 1)))
  4085. (goto-char (or start-pos 1))
  4086. (add-text-properties (point-min) (point-max)
  4087. `(org-agenda-type agenda
  4088. org-last-args (,arg ,start-day ,span)
  4089. org-redo-cmd ,org-agenda-redo-command
  4090. org-series-cmd ,org-cmd))
  4091. (when (eq org-agenda-show-log-scoped 'clockcheck)
  4092. (org-agenda-show-clocking-issues))
  4093. (org-agenda-finalize)
  4094. (setq buffer-read-only t)
  4095. (message ""))))
  4096. (defun org-agenda-ndays-to-span (n)
  4097. "Return a span symbol for a span of N days, or N if none matches."
  4098. (cond ((symbolp n) n)
  4099. ((= n 1) 'day)
  4100. ((= n 7) 'week)
  4101. ((= n 14) 'fortnight)
  4102. (t n)))
  4103. (defun org-agenda-span-to-ndays (span &optional start-day)
  4104. "Return ndays from SPAN, possibly starting at START-DAY.
  4105. START-DAY is an absolute time value."
  4106. (cond ((numberp span) span)
  4107. ((eq span 'day) 1)
  4108. ((eq span 'week) 7)
  4109. ((eq span 'fortnight) 14)
  4110. ((eq span 'month)
  4111. (let ((date (calendar-gregorian-from-absolute start-day)))
  4112. (calendar-last-day-of-month (car date) (cl-caddr date))))
  4113. ((eq span 'year)
  4114. (let ((date (calendar-gregorian-from-absolute start-day)))
  4115. (if (calendar-leap-year-p (cl-caddr date)) 366 365)))))
  4116. (defun org-agenda-span-name (span)
  4117. "Return a SPAN name."
  4118. (if (null span)
  4119. ""
  4120. (if (symbolp span)
  4121. (capitalize (symbol-name span))
  4122. (format "%d days" span))))
  4123. ;;; Agenda word search
  4124. (defvar org-agenda-search-history nil)
  4125. (defvar org-search-syntax-table nil
  4126. "Special syntax table for Org search.
  4127. In this table, we have single quotes not as word constituents, to
  4128. that when \"+Ameli\" is searched as a work, it will also match \"Ameli's\"")
  4129. (defvar org-mode-syntax-table) ; From org.el
  4130. (defun org-search-syntax-table ()
  4131. (unless org-search-syntax-table
  4132. (setq org-search-syntax-table (copy-syntax-table org-mode-syntax-table))
  4133. (modify-syntax-entry ?' "." org-search-syntax-table)
  4134. (modify-syntax-entry ?` "." org-search-syntax-table))
  4135. org-search-syntax-table)
  4136. (defvar org-agenda-last-search-view-search-was-boolean nil)
  4137. ;;;###autoload
  4138. (defun org-search-view (&optional todo-only string edit-at)
  4139. "Show all entries that contain a phrase or words or regular expressions.
  4140. With optional prefix argument TODO-ONLY, only consider entries that are
  4141. TODO entries. The argument STRING can be used to pass a default search
  4142. string into this function. If EDIT-AT is non-nil, it means that the
  4143. user should get a chance to edit this string, with cursor at position
  4144. EDIT-AT.
  4145. The search string can be viewed either as a phrase that should be found as
  4146. is, or it can be broken into a number of snippets, each of which must match
  4147. in a Boolean way to select an entry. The default depends on the variable
  4148. `org-agenda-search-view-always-boolean'.
  4149. Even if this is turned off (the default) you can always switch to
  4150. Boolean search dynamically by preceding the first word with \"+\" or \"-\".
  4151. The default is a direct search of the whole phrase, where each space in
  4152. the search string can expand to an arbitrary amount of whitespace,
  4153. including newlines.
  4154. If using a Boolean search, the search string is split on whitespace and
  4155. each snippet is searched separately, with logical AND to select an entry.
  4156. Words prefixed with a minus must *not* occur in the entry. Words without
  4157. a prefix or prefixed with a plus must occur in the entry. Matching is
  4158. case-insensitive. Words are enclosed by word delimiters (i.e. they must
  4159. match whole words, not parts of a word) if
  4160. `org-agenda-search-view-force-full-words' is set (default is nil).
  4161. Boolean search snippets enclosed by curly braces are interpreted as
  4162. regular expressions that must or (when preceded with \"-\") must not
  4163. match in the entry. Snippets enclosed into double quotes will be taken
  4164. as a whole, to include whitespace.
  4165. - If the search string starts with an asterisk, search only in headlines.
  4166. - If (possibly after the leading star) the search string starts with an
  4167. exclamation mark, this also means to look at TODO entries only, an effect
  4168. that can also be achieved with a prefix argument.
  4169. - If (possibly after star and exclamation mark) the search string starts
  4170. with a colon, this will mean that the (non-regexp) snippets of the
  4171. Boolean search must match as full words.
  4172. This command searches the agenda files, and in addition the files
  4173. listed in `org-agenda-text-search-extra-files' unless a restriction lock
  4174. is active."
  4175. (interactive "P")
  4176. (when org-agenda-overriding-arguments
  4177. (setq todo-only (car org-agenda-overriding-arguments)
  4178. string (nth 1 org-agenda-overriding-arguments)
  4179. edit-at (nth 2 org-agenda-overriding-arguments)))
  4180. (let* ((props (list 'face nil
  4181. 'done-face 'org-agenda-done
  4182. 'org-not-done-regexp org-not-done-regexp
  4183. 'org-todo-regexp org-todo-regexp
  4184. 'org-complex-heading-regexp org-complex-heading-regexp
  4185. 'mouse-face 'highlight
  4186. 'help-echo (format "mouse-2 or RET jump to location")))
  4187. (full-words org-agenda-search-view-force-full-words)
  4188. (org-agenda-text-search-extra-files org-agenda-text-search-extra-files)
  4189. regexp rtn rtnall files file pos inherited-tags
  4190. marker category level tags c neg re boolean
  4191. ee txt beg end words regexps+ regexps- hdl-only buffer beg1 str)
  4192. (unless (and (not edit-at)
  4193. (stringp string)
  4194. (string-match "\\S-" string))
  4195. (setq string (read-string
  4196. (if org-agenda-search-view-always-boolean
  4197. "[+-]Word/{Regexp} ...: "
  4198. "Phrase or [+-]Word/{Regexp} ...: ")
  4199. (cond
  4200. ((integerp edit-at) (cons string edit-at))
  4201. (edit-at string))
  4202. 'org-agenda-search-history)))
  4203. (catch 'exit
  4204. (setq org-agenda-buffer-name
  4205. (org-agenda--get-buffer-name
  4206. (and org-agenda-sticky
  4207. (if (stringp string)
  4208. (format "*Org Agenda(%s:%s)*"
  4209. (or org-keys (or (and todo-only "S") "s"))
  4210. string)
  4211. (format "*Org Agenda(%s)*"
  4212. (or (and todo-only "S") "s"))))))
  4213. (org-agenda-prepare "SEARCH")
  4214. (org-compile-prefix-format 'search)
  4215. (org-set-sorting-strategy 'search)
  4216. (setq org-agenda-redo-command
  4217. (list 'org-search-view (if todo-only t nil)
  4218. (list 'if 'current-prefix-arg nil string)))
  4219. (setq org-agenda-query-string string)
  4220. (if (equal (string-to-char string) ?*)
  4221. (setq hdl-only t
  4222. words (substring string 1))
  4223. (setq words string))
  4224. (when (equal (string-to-char words) ?!)
  4225. (setq todo-only t
  4226. words (substring words 1)))
  4227. (when (equal (string-to-char words) ?:)
  4228. (setq full-words t
  4229. words (substring words 1)))
  4230. (when (or org-agenda-search-view-always-boolean
  4231. (member (string-to-char words) '(?- ?+ ?\{)))
  4232. (setq boolean t))
  4233. (setq words (split-string words))
  4234. (let (www w)
  4235. (while (setq w (pop words))
  4236. (while (and (string-match "\\\\\\'" w) words)
  4237. (setq w (concat (substring w 0 -1) " " (pop words))))
  4238. (push w www))
  4239. (setq words (nreverse www) www nil)
  4240. (while (setq w (pop words))
  4241. (when (and (string-match "\\`[-+]?{" w)
  4242. (not (string-match "}\\'" w)))
  4243. (while (and words (not (string-match "}\\'" (car words))))
  4244. (setq w (concat w " " (pop words))))
  4245. (setq w (concat w " " (pop words))))
  4246. (push w www))
  4247. (setq words (nreverse www)))
  4248. (setq org-agenda-last-search-view-search-was-boolean boolean)
  4249. (when boolean
  4250. (let (wds w)
  4251. (while (setq w (pop words))
  4252. (when (or (equal (substring w 0 1) "\"")
  4253. (and (> (length w) 1)
  4254. (member (substring w 0 1) '("+" "-"))
  4255. (equal (substring w 1 2) "\"")))
  4256. (while (and words (not (equal (substring w -1) "\"")))
  4257. (setq w (concat w " " (pop words)))))
  4258. (and (string-match "\\`\\([-+]?\\)\"" w)
  4259. (setq w (replace-match "\\1" nil nil w)))
  4260. (and (equal (substring w -1) "\"") (setq w (substring w 0 -1)))
  4261. (push w wds))
  4262. (setq words (nreverse wds))))
  4263. (if boolean
  4264. (mapc (lambda (w)
  4265. (setq c (string-to-char w))
  4266. (if (equal c ?-)
  4267. (setq neg t w (substring w 1))
  4268. (if (equal c ?+)
  4269. (setq neg nil w (substring w 1))
  4270. (setq neg nil)))
  4271. (if (string-match "\\`{.*}\\'" w)
  4272. (setq re (substring w 1 -1))
  4273. (if full-words
  4274. (setq re (concat "\\<" (regexp-quote (downcase w)) "\\>"))
  4275. (setq re (regexp-quote (downcase w)))))
  4276. (if neg (push re regexps-) (push re regexps+)))
  4277. words)
  4278. (push (mapconcat #'regexp-quote words "\\s-+")
  4279. regexps+))
  4280. (setq regexps+ (sort regexps+ (lambda (a b) (> (length a) (length b)))))
  4281. (if (not regexps+)
  4282. (setq regexp org-outline-regexp-bol)
  4283. (setq regexp (pop regexps+))
  4284. (when hdl-only (setq regexp (concat org-outline-regexp-bol ".*?"
  4285. regexp))))
  4286. (setq files (org-agenda-files nil 'ifmode))
  4287. ;; Add `org-agenda-text-search-extra-files' unless there is some
  4288. ;; restriction.
  4289. (when (eq (car org-agenda-text-search-extra-files) 'agenda-archives)
  4290. (pop org-agenda-text-search-extra-files)
  4291. (unless (get 'org-agenda-files 'org-restrict)
  4292. (setq files (org-add-archive-files files))))
  4293. ;; Uniquify files. However, let `org-check-agenda-file' handle
  4294. ;; non-existent ones.
  4295. (setq files (cl-remove-duplicates
  4296. (append files org-agenda-text-search-extra-files)
  4297. :test (lambda (a b)
  4298. (and (file-exists-p a)
  4299. (file-exists-p b)
  4300. (file-equal-p a b))))
  4301. rtnall nil)
  4302. (while (setq file (pop files))
  4303. (setq ee nil)
  4304. (catch 'nextfile
  4305. (org-check-agenda-file file)
  4306. (setq buffer (if (file-exists-p file)
  4307. (org-get-agenda-file-buffer file)
  4308. (error "No such file %s" file)))
  4309. (unless buffer
  4310. ;; If file does not exist, make sure an error message is sent
  4311. (setq rtn (list (format "ORG-AGENDA-ERROR: No such org-file %s"
  4312. file))))
  4313. (with-current-buffer buffer
  4314. (with-syntax-table (org-search-syntax-table)
  4315. (unless (derived-mode-p 'org-mode)
  4316. (error "Agenda file %s is not in Org mode" file))
  4317. (let ((case-fold-search t))
  4318. (save-excursion
  4319. (save-restriction
  4320. (if (eq buffer org-agenda-restrict)
  4321. (narrow-to-region org-agenda-restrict-begin
  4322. org-agenda-restrict-end)
  4323. (widen))
  4324. (goto-char (point-min))
  4325. (unless (or (org-at-heading-p)
  4326. (outline-next-heading))
  4327. (throw 'nextfile t))
  4328. (goto-char (max (point-min) (1- (point))))
  4329. (while (re-search-forward regexp nil t)
  4330. (org-back-to-heading t)
  4331. (while (and (not (zerop org-agenda-search-view-max-outline-level))
  4332. (> (org-reduced-level (org-outline-level))
  4333. org-agenda-search-view-max-outline-level)
  4334. (forward-line -1)
  4335. (org-back-to-heading t)))
  4336. (skip-chars-forward "* ")
  4337. (setq beg (point-at-bol)
  4338. beg1 (point)
  4339. end (progn
  4340. (outline-next-heading)
  4341. (while (and (not (zerop org-agenda-search-view-max-outline-level))
  4342. (> (org-reduced-level (org-outline-level))
  4343. org-agenda-search-view-max-outline-level)
  4344. (forward-line 1)
  4345. (outline-next-heading)))
  4346. (point)))
  4347. (catch :skip
  4348. (goto-char beg)
  4349. (org-agenda-skip)
  4350. (setq str (buffer-substring-no-properties
  4351. (point-at-bol)
  4352. (if hdl-only (point-at-eol) end)))
  4353. (mapc (lambda (wr) (when (string-match wr str)
  4354. (goto-char (1- end))
  4355. (throw :skip t)))
  4356. regexps-)
  4357. (mapc (lambda (wr) (unless (string-match wr str)
  4358. (goto-char (1- end))
  4359. (throw :skip t)))
  4360. (if todo-only
  4361. (cons (concat "^\\*+[ \t]+"
  4362. org-not-done-regexp)
  4363. regexps+)
  4364. regexps+))
  4365. (goto-char beg)
  4366. (setq marker (org-agenda-new-marker (point))
  4367. category (org-get-category)
  4368. level (make-string (org-reduced-level (org-outline-level)) ? )
  4369. inherited-tags
  4370. (or (eq org-agenda-show-inherited-tags 'always)
  4371. (and (listp org-agenda-show-inherited-tags)
  4372. (memq 'todo org-agenda-show-inherited-tags))
  4373. (and (eq org-agenda-show-inherited-tags t)
  4374. (or (eq org-agenda-use-tag-inheritance t)
  4375. (memq 'todo org-agenda-use-tag-inheritance))))
  4376. tags (org-get-tags nil (not inherited-tags))
  4377. txt (org-agenda-format-item
  4378. ""
  4379. (buffer-substring-no-properties
  4380. beg1 (point-at-eol))
  4381. level category tags t))
  4382. (org-add-props txt props
  4383. 'org-marker marker 'org-hd-marker marker
  4384. 'org-todo-regexp org-todo-regexp
  4385. 'level level
  4386. 'org-complex-heading-regexp org-complex-heading-regexp
  4387. 'priority 1000
  4388. 'type "search")
  4389. (push txt ee)
  4390. (goto-char (1- end))))))))))
  4391. (setq rtn (nreverse ee))
  4392. (setq rtnall (append rtnall rtn)))
  4393. (org-agenda--insert-overriding-header
  4394. (with-temp-buffer
  4395. (insert "Search words: ")
  4396. (add-text-properties (point-min) (1- (point))
  4397. (list 'face 'org-agenda-structure))
  4398. (setq pos (point))
  4399. (insert string "\n")
  4400. (add-text-properties pos (1- (point)) (list 'face 'org-warning))
  4401. (setq pos (point))
  4402. (unless org-agenda-multi
  4403. (insert (substitute-command-keys "\\<org-agenda-mode-map>\
  4404. Press `\\[org-agenda-manipulate-query-add]', \
  4405. `\\[org-agenda-manipulate-query-subtract]' to add/sub word, \
  4406. `\\[org-agenda-manipulate-query-add-re]', \
  4407. `\\[org-agenda-manipulate-query-subtract-re]' to add/sub regexp, \
  4408. `\\[universal-argument] \\[org-agenda-redo]' for a fresh search\n"))
  4409. (add-text-properties pos (1- (point))
  4410. (list 'face 'org-agenda-structure)))
  4411. (buffer-string)))
  4412. (org-agenda-mark-header-line (point-min))
  4413. (when rtnall
  4414. (insert (org-agenda-finalize-entries rtnall 'search) "\n"))
  4415. (goto-char (point-min))
  4416. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4417. (add-text-properties (point-min) (point-max)
  4418. `(org-agenda-type search
  4419. org-last-args (,todo-only ,string ,edit-at)
  4420. org-redo-cmd ,org-agenda-redo-command
  4421. org-series-cmd ,org-cmd))
  4422. (org-agenda-finalize)
  4423. (setq buffer-read-only t))))
  4424. ;;; Agenda TODO list
  4425. (defun org-agenda-propertize-selected-todo-keywords (keywords)
  4426. "Use `org-todo-keyword-faces' for the selected todo KEYWORDS."
  4427. (concat
  4428. (if (or (equal keywords "ALL") (not keywords))
  4429. (propertize "ALL" 'face 'warning)
  4430. (mapconcat
  4431. (lambda (kw)
  4432. (propertize kw 'face (org-get-todo-face kw)))
  4433. (org-split-string keywords "|")
  4434. "|"))
  4435. "\n"))
  4436. (defvar org-select-this-todo-keyword nil)
  4437. (defvar org-last-arg nil)
  4438. (defvar crm-separator)
  4439. ;;;###autoload
  4440. (defun org-todo-list (&optional arg)
  4441. "Show all (not done) TODO entries from all agenda file in a single list.
  4442. The prefix arg can be used to select a specific TODO keyword and limit
  4443. the list to these. When using `\\[universal-argument]', you will be prompted
  4444. for a keyword. A numeric prefix directly selects the Nth keyword in
  4445. `org-todo-keywords-1'."
  4446. (interactive "P")
  4447. (when org-agenda-overriding-arguments
  4448. (setq arg org-agenda-overriding-arguments))
  4449. (when (and (stringp arg) (not (string-match "\\S-" arg))) (setq arg nil))
  4450. (let* ((today (org-today))
  4451. (date (calendar-gregorian-from-absolute today))
  4452. (completion-ignore-case t)
  4453. kwds org-select-this-todo-keyword rtn rtnall files file pos)
  4454. (catch 'exit
  4455. (setq org-agenda-buffer-name
  4456. (org-agenda--get-buffer-name
  4457. (and org-agenda-sticky
  4458. (if (stringp org-select-this-todo-keyword)
  4459. (format "*Org Agenda(%s:%s)*" (or org-keys "t")
  4460. org-select-this-todo-keyword)
  4461. (format "*Org Agenda(%s)*" (or org-keys "t"))))))
  4462. (org-agenda-prepare "TODO")
  4463. (setq kwds org-todo-keywords-for-agenda
  4464. org-select-this-todo-keyword (if (stringp arg) arg
  4465. (and (integerp arg)
  4466. (> arg 0)
  4467. (nth (1- arg) kwds))))
  4468. (when (equal arg '(4))
  4469. (setq org-select-this-todo-keyword
  4470. (mapconcat #'identity
  4471. (let ((crm-separator "|"))
  4472. (completing-read-multiple
  4473. "Keyword (or KWD1|KWD2|...): "
  4474. (mapcar #'list kwds) nil nil))
  4475. "|")))
  4476. (and (equal 0 arg) (setq org-select-this-todo-keyword nil))
  4477. (org-compile-prefix-format 'todo)
  4478. (org-set-sorting-strategy 'todo)
  4479. (setq org-agenda-redo-command
  4480. `(org-todo-list (or (and (numberp current-prefix-arg)
  4481. current-prefix-arg)
  4482. ,org-select-this-todo-keyword
  4483. current-prefix-arg ,arg)))
  4484. (setq files (org-agenda-files nil 'ifmode)
  4485. rtnall nil)
  4486. (while (setq file (pop files))
  4487. (catch 'nextfile
  4488. (org-check-agenda-file file)
  4489. (setq rtn (org-agenda-get-day-entries file date :todo))
  4490. (setq rtnall (append rtnall rtn))))
  4491. (org-agenda--insert-overriding-header
  4492. (with-temp-buffer
  4493. (insert "Global list of TODO items of type: ")
  4494. (add-text-properties (point-min) (1- (point))
  4495. (list 'face 'org-agenda-structure
  4496. 'short-heading
  4497. (concat "ToDo: "
  4498. (or org-select-this-todo-keyword "ALL"))))
  4499. (org-agenda-mark-header-line (point-min))
  4500. (insert (org-agenda-propertize-selected-todo-keywords
  4501. org-select-this-todo-keyword))
  4502. (setq pos (point))
  4503. (unless org-agenda-multi
  4504. (insert (substitute-command-keys "Press \
  4505. \\<org-agenda-mode-map>`N \\[org-agenda-redo]' (e.g. `0 \\[org-agenda-redo]') \
  4506. to search again: (0)[ALL]"))
  4507. (let ((n 0))
  4508. (dolist (k kwds)
  4509. (let ((s (format "(%d)%s" (cl-incf n) k)))
  4510. (when (> (+ (current-column) (string-width s) 1) (window-width))
  4511. (insert "\n "))
  4512. (insert " " s))))
  4513. (insert "\n"))
  4514. (add-text-properties pos (1- (point)) (list 'face 'org-agenda-structure))
  4515. (buffer-string)))
  4516. (org-agenda-mark-header-line (point-min))
  4517. (when rtnall
  4518. (insert (org-agenda-finalize-entries rtnall 'todo) "\n"))
  4519. (goto-char (point-min))
  4520. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4521. (add-text-properties (point-min) (point-max)
  4522. `(org-agenda-type todo
  4523. org-last-args ,arg
  4524. org-redo-cmd ,org-agenda-redo-command
  4525. org-series-cmd ,org-cmd))
  4526. (org-agenda-finalize)
  4527. (setq buffer-read-only t))))
  4528. ;;; Agenda tags match
  4529. ;;;###autoload
  4530. (defun org-tags-view (&optional todo-only match)
  4531. "Show all headlines for all `org-agenda-files' matching a TAGS criterion.
  4532. The prefix arg TODO-ONLY limits the search to TODO entries."
  4533. (interactive "P")
  4534. (when org-agenda-overriding-arguments
  4535. (setq todo-only (car org-agenda-overriding-arguments)
  4536. match (nth 1 org-agenda-overriding-arguments)))
  4537. (let* ((org-tags-match-list-sublevels
  4538. org-tags-match-list-sublevels)
  4539. (completion-ignore-case t)
  4540. (org--matcher-tags-todo-only todo-only)
  4541. rtn rtnall files file pos matcher
  4542. buffer)
  4543. (when (and (stringp match) (not (string-match "\\S-" match)))
  4544. (setq match nil))
  4545. (catch 'exit
  4546. (setq org-agenda-buffer-name
  4547. (org-agenda--get-buffer-name
  4548. (and org-agenda-sticky
  4549. (if (stringp match)
  4550. (format "*Org Agenda(%s:%s)*"
  4551. (or org-keys (or (and todo-only "M") "m"))
  4552. match)
  4553. (format "*Org Agenda(%s)*"
  4554. (or (and todo-only "M") "m"))))))
  4555. (setq matcher (org-make-tags-matcher match))
  4556. ;; Prepare agendas (and `org-tag-alist-for-agenda') before
  4557. ;; expanding tags within `org-make-tags-matcher'
  4558. (org-agenda-prepare (concat "TAGS " match))
  4559. (setq match (car matcher)
  4560. matcher (cdr matcher))
  4561. (org-compile-prefix-format 'tags)
  4562. (org-set-sorting-strategy 'tags)
  4563. (setq org-agenda-query-string match)
  4564. (setq org-agenda-redo-command
  4565. (list 'org-tags-view
  4566. `(quote ,org--matcher-tags-todo-only)
  4567. `(if current-prefix-arg nil ,org-agenda-query-string)))
  4568. (setq files (org-agenda-files nil 'ifmode)
  4569. rtnall nil)
  4570. (while (setq file (pop files))
  4571. (catch 'nextfile
  4572. (org-check-agenda-file file)
  4573. (setq buffer (if (file-exists-p file)
  4574. (org-get-agenda-file-buffer file)
  4575. (error "No such file %s" file)))
  4576. (if (not buffer)
  4577. ;; If file does not exist, error message to agenda
  4578. (setq rtn (list
  4579. (format "ORG-AGENDA-ERROR: No such org-file %s" file))
  4580. rtnall (append rtnall rtn))
  4581. (with-current-buffer buffer
  4582. (unless (derived-mode-p 'org-mode)
  4583. (error "Agenda file %s is not in Org mode" file))
  4584. (save-excursion
  4585. (save-restriction
  4586. (if (eq buffer org-agenda-restrict)
  4587. (narrow-to-region org-agenda-restrict-begin
  4588. org-agenda-restrict-end)
  4589. (widen))
  4590. (setq rtn (org-scan-tags 'agenda
  4591. matcher
  4592. org--matcher-tags-todo-only))
  4593. (setq rtnall (append rtnall rtn))))))))
  4594. (org-agenda--insert-overriding-header
  4595. (with-temp-buffer
  4596. (insert "Headlines with TAGS match: ")
  4597. (add-text-properties (point-min) (1- (point))
  4598. (list 'face 'org-agenda-structure
  4599. 'short-heading
  4600. (concat "Match: " match)))
  4601. (setq pos (point))
  4602. (insert match "\n")
  4603. (add-text-properties pos (1- (point)) (list 'face 'org-warning))
  4604. (setq pos (point))
  4605. (unless org-agenda-multi
  4606. (insert (substitute-command-keys
  4607. "Press \
  4608. \\<org-agenda-mode-map>`\\[universal-argument] \\[org-agenda-redo]' \
  4609. to search again\n")))
  4610. (add-text-properties pos (1- (point))
  4611. (list 'face 'org-agenda-structure))
  4612. (buffer-string)))
  4613. (org-agenda-mark-header-line (point-min))
  4614. (when rtnall
  4615. (insert (org-agenda-finalize-entries rtnall 'tags) "\n"))
  4616. (goto-char (point-min))
  4617. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4618. (add-text-properties
  4619. (point-min) (point-max)
  4620. `(org-agenda-type tags
  4621. org-last-args (,org--matcher-tags-todo-only ,match)
  4622. org-redo-cmd ,org-agenda-redo-command
  4623. org-series-cmd ,org-cmd))
  4624. (org-agenda-finalize)
  4625. (setq buffer-read-only t))))
  4626. ;;; Agenda Finding stuck projects
  4627. (defvar org-agenda-skip-regexp nil
  4628. "Regular expression used in skipping subtrees for the agenda.
  4629. This is basically a temporary global variable that can be set and then
  4630. used by user-defined selections using `org-agenda-skip-function'.")
  4631. (defvar org-agenda-overriding-header nil
  4632. "When set during agenda, todo and tags searches it replaces the header.
  4633. If an empty string, no header will be inserted. If any other
  4634. string, it will be inserted as a header. If nil, a header will
  4635. be generated automatically according to the command. This
  4636. variable should not be set directly, but custom commands can bind
  4637. it in the options section.")
  4638. (defun org-agenda-skip-entry-if (&rest conditions)
  4639. "Skip entry if any of CONDITIONS is true.
  4640. See `org-agenda-skip-if' for details."
  4641. (org-agenda-skip-if nil conditions))
  4642. (defun org-agenda-skip-subtree-if (&rest conditions)
  4643. "Skip subtree if any of CONDITIONS is true.
  4644. See `org-agenda-skip-if' for details."
  4645. (org-agenda-skip-if t conditions))
  4646. (defun org-agenda-skip-if (subtree conditions)
  4647. "Checks current entity for CONDITIONS.
  4648. If SUBTREE is non-nil, the entire subtree is checked. Otherwise, only
  4649. the entry (i.e. the text before the next heading) is checked.
  4650. CONDITIONS is a list of symbols, boolean OR is used to combine the results
  4651. from different tests. Valid conditions are:
  4652. scheduled Check if there is a scheduled cookie
  4653. notscheduled Check if there is no scheduled cookie
  4654. deadline Check if there is a deadline
  4655. notdeadline Check if there is no deadline
  4656. timestamp Check if there is a timestamp (also deadline or scheduled)
  4657. nottimestamp Check if there is no timestamp (also deadline or scheduled)
  4658. regexp Check if regexp matches
  4659. notregexp Check if regexp does not match.
  4660. todo Check if TODO keyword matches
  4661. nottodo Check if TODO keyword does not match
  4662. The regexp is taken from the conditions list, it must come right after
  4663. the `regexp' or `notregexp' element.
  4664. `todo' and `nottodo' accept as an argument a list of todo
  4665. keywords, which may include \"*\" to match any todo keyword.
  4666. (org-agenda-skip-entry-if \\='todo \\='(\"TODO\" \"WAITING\"))
  4667. would skip all entries with \"TODO\" or \"WAITING\" keywords.
  4668. Instead of a list, a keyword class may be given. For example:
  4669. (org-agenda-skip-entry-if \\='nottodo \\='done)
  4670. would skip entries that haven't been marked with any of \"DONE\"
  4671. keywords. Possible classes are: `todo', `done', `any'.
  4672. If any of these conditions is met, this function returns the end point of
  4673. the entity, causing the search to continue from there. This is a function
  4674. that can be put into `org-agenda-skip-function' for the duration of a command."
  4675. (org-back-to-heading t)
  4676. (let* (;; (beg (point))
  4677. (end (if subtree (save-excursion (org-end-of-subtree t) (point))
  4678. (org-entry-end-position)))
  4679. (planning-end (if subtree end (line-end-position 2)))
  4680. m)
  4681. (and
  4682. (or (and (memq 'scheduled conditions)
  4683. (re-search-forward org-scheduled-time-regexp planning-end t))
  4684. (and (memq 'notscheduled conditions)
  4685. (not
  4686. (save-excursion
  4687. (re-search-forward org-scheduled-time-regexp planning-end t))))
  4688. (and (memq 'deadline conditions)
  4689. (re-search-forward org-deadline-time-regexp planning-end t))
  4690. (and (memq 'notdeadline conditions)
  4691. (not
  4692. (save-excursion
  4693. (re-search-forward org-deadline-time-regexp planning-end t))))
  4694. (and (memq 'timestamp conditions)
  4695. (re-search-forward org-ts-regexp end t))
  4696. (and (memq 'nottimestamp conditions)
  4697. (not (save-excursion (re-search-forward org-ts-regexp end t))))
  4698. (and (setq m (memq 'regexp conditions))
  4699. (stringp (nth 1 m))
  4700. (re-search-forward (nth 1 m) end t))
  4701. (and (setq m (memq 'notregexp conditions))
  4702. (stringp (nth 1 m))
  4703. (not (save-excursion (re-search-forward (nth 1 m) end t))))
  4704. (and (or
  4705. (setq m (memq 'nottodo conditions))
  4706. (setq m (memq 'todo-unblocked conditions))
  4707. (setq m (memq 'nottodo-unblocked conditions))
  4708. (setq m (memq 'todo conditions)))
  4709. (org-agenda-skip-if-todo m end)))
  4710. end)))
  4711. (defun org-agenda-skip-if-todo (args end)
  4712. "Helper function for `org-agenda-skip-if', do not use it directly.
  4713. ARGS is a list with first element either `todo', `nottodo',
  4714. `todo-unblocked' or `nottodo-unblocked'. The remainder is either
  4715. a list of TODO keywords, or a state symbol `todo' or `done' or
  4716. `any'."
  4717. (let ((todo-re
  4718. (concat "^\\*+[ \t]+"
  4719. (regexp-opt
  4720. (pcase args
  4721. (`(,_ todo)
  4722. (org-delete-all org-done-keywords
  4723. (copy-sequence org-todo-keywords-1)))
  4724. (`(,_ done) org-done-keywords)
  4725. (`(,_ any) org-todo-keywords-1)
  4726. (`(,_ ,(pred atom))
  4727. (error "Invalid TODO class or type: %S" args))
  4728. (`(,_ ,(pred (member "*"))) org-todo-keywords-1)
  4729. (`(,_ ,todo-list) todo-list))
  4730. 'words))))
  4731. (pcase args
  4732. (`(todo . ,_)
  4733. (let (case-fold-search) (re-search-forward todo-re end t)))
  4734. (`(nottodo . ,_)
  4735. (not (let (case-fold-search) (re-search-forward todo-re end t))))
  4736. (`(todo-unblocked . ,_)
  4737. (catch :unblocked
  4738. (while (let (case-fold-search) (re-search-forward todo-re end t))
  4739. (when (org-entry-blocked-p) (throw :unblocked t)))
  4740. nil))
  4741. (`(nottodo-unblocked . ,_)
  4742. (catch :unblocked
  4743. (while (let (case-fold-search) (re-search-forward todo-re end t))
  4744. (when (org-entry-blocked-p) (throw :unblocked nil)))
  4745. t))
  4746. (`(,type . ,_) (error "Unknown TODO skip type: %S" type)))))
  4747. ;;;###autoload
  4748. (defun org-agenda-list-stuck-projects (&rest _ignore)
  4749. "Create agenda view for projects that are stuck.
  4750. Stuck projects are project that have no next actions. For the definitions
  4751. of what a project is and how to check if it stuck, customize the variable
  4752. `org-stuck-projects'."
  4753. (interactive)
  4754. (let* ((org-agenda-overriding-header
  4755. (or org-agenda-overriding-header "List of stuck projects: "))
  4756. (matcher (nth 0 org-stuck-projects))
  4757. (todo (nth 1 org-stuck-projects))
  4758. (tags (nth 2 org-stuck-projects))
  4759. (gen-re (org-string-nw-p (nth 3 org-stuck-projects)))
  4760. (todo-wds
  4761. (if (not (member "*" todo)) todo
  4762. (org-agenda-prepare-buffers (org-agenda-files nil 'ifmode))
  4763. (org-delete-all org-done-keywords-for-agenda
  4764. (copy-sequence org-todo-keywords-for-agenda))))
  4765. (todo-re (and todo
  4766. (format "^\\*+[ \t]+\\(%s\\)\\>"
  4767. (mapconcat #'identity todo-wds "\\|"))))
  4768. (tags-re (cond ((null tags) nil)
  4769. ((member "*" tags) org-tag-line-re)
  4770. (tags
  4771. (let ((other-tags (format "\\(?:%s:\\)*" org-tag-re)))
  4772. (concat org-outline-regexp-bol
  4773. ".*?[ \t]:"
  4774. other-tags
  4775. (regexp-opt tags t)
  4776. ":" other-tags "[ \t]*$")))
  4777. (t nil)))
  4778. (re-list (delq nil (list todo-re tags-re gen-re)))
  4779. (skip-re
  4780. (if (null re-list)
  4781. (error "Missing information to identify unstuck projects")
  4782. (mapconcat #'identity re-list "\\|")))
  4783. (org-agenda-skip-function
  4784. ;; Skip entry if `org-agenda-skip-regexp' matches anywhere
  4785. ;; in the subtree.
  4786. (lambda ()
  4787. (and (save-excursion
  4788. (let ((case-fold-search nil))
  4789. (re-search-forward
  4790. skip-re (save-excursion (org-end-of-subtree t)) t)))
  4791. (progn (outline-next-heading) (point))))))
  4792. (org-tags-view nil matcher)
  4793. (setq org-agenda-buffer-name (buffer-name))
  4794. (with-current-buffer org-agenda-buffer-name
  4795. (setq org-agenda-redo-command
  4796. `(org-agenda-list-stuck-projects ,current-prefix-arg))
  4797. (let ((inhibit-read-only t))
  4798. (add-text-properties
  4799. (point-min) (point-max)
  4800. `(org-redo-cmd ,org-agenda-redo-command))))))
  4801. ;;; Diary integration
  4802. (defvar org-disable-agenda-to-diary nil) ;Dynamically-scoped param.
  4803. (defvar diary-list-entries-hook)
  4804. (defvar diary-time-regexp)
  4805. (defvar diary-modify-entry-list-string-function)
  4806. (defvar diary-file-name-prefix)
  4807. (defvar diary-display-function)
  4808. (defun org-get-entries-from-diary (date)
  4809. "Get the (Emacs Calendar) diary entries for DATE."
  4810. (require 'diary-lib)
  4811. (declare-function diary-fancy-display "diary-lib" ())
  4812. (let* ((diary-fancy-buffer "*temporary-fancy-diary-buffer*")
  4813. (diary-display-function #'diary-fancy-display)
  4814. (pop-up-frames nil)
  4815. (diary-list-entries-hook
  4816. (cons 'org-diary-default-entry diary-list-entries-hook))
  4817. (diary-file-name-prefix nil) ; turn this feature off
  4818. (diary-modify-entry-list-string-function
  4819. #'org-modify-diary-entry-string)
  4820. (diary-time-regexp (concat "^" diary-time-regexp))
  4821. entries
  4822. (org-disable-agenda-to-diary t))
  4823. (save-excursion
  4824. (save-window-excursion
  4825. (funcall (if (fboundp 'diary-list-entries)
  4826. 'diary-list-entries 'list-diary-entries)
  4827. date 1)))
  4828. (if (not (get-buffer diary-fancy-buffer))
  4829. (setq entries nil)
  4830. (with-current-buffer diary-fancy-buffer
  4831. (setq buffer-read-only nil)
  4832. (if (zerop (buffer-size))
  4833. ;; No entries
  4834. (setq entries nil)
  4835. ;; Omit the date and other unnecessary stuff
  4836. (org-agenda-cleanup-fancy-diary)
  4837. ;; Add prefix to each line and extend the text properties
  4838. (if (zerop (buffer-size))
  4839. (setq entries nil)
  4840. (setq entries (buffer-substring (point-min) (- (point-max) 1)))
  4841. (setq entries
  4842. (with-temp-buffer
  4843. (insert entries) (goto-char (point-min))
  4844. (while (re-search-forward "\n[ \t]+\\(.+\\)$" nil t)
  4845. (unless (save-match-data (string-match diary-time-regexp (match-string 1)))
  4846. (replace-match (concat "; " (match-string 1)))))
  4847. (buffer-string)))))
  4848. (set-buffer-modified-p nil)
  4849. (kill-buffer diary-fancy-buffer)))
  4850. (when entries
  4851. (setq entries (org-split-string entries "\n"))
  4852. (setq entries
  4853. (mapcar
  4854. (lambda (x)
  4855. (setq x (org-agenda-format-item "" x nil "Diary" nil 'time))
  4856. ;; Extend the text properties to the beginning of the line
  4857. (org-add-props x (text-properties-at (1- (length x)) x)
  4858. 'type "diary" 'date date 'face 'org-agenda-diary))
  4859. entries)))))
  4860. (defvar org-agenda-cleanup-fancy-diary-hook nil
  4861. "Hook run when the fancy diary buffer is cleaned up.")
  4862. (defun org-agenda-cleanup-fancy-diary ()
  4863. "Remove unwanted stuff in buffer created by `fancy-diary-display'.
  4864. This gets rid of the date, the underline under the date, and the
  4865. dummy entry installed by Org mode to ensure non-empty diary for
  4866. each date. It also removes lines that contain only whitespace."
  4867. (goto-char (point-min))
  4868. (if (looking-at ".*?:[ \t]*")
  4869. (progn
  4870. (replace-match "")
  4871. (re-search-forward "\n=+$" nil t)
  4872. (replace-match "")
  4873. (while (re-search-backward "^ +\n?" nil t) (replace-match "")))
  4874. (re-search-forward "\n=+$" nil t)
  4875. (delete-region (point-min) (min (point-max) (1+ (match-end 0)))))
  4876. (goto-char (point-min))
  4877. (while (re-search-forward "^ +\n" nil t)
  4878. (replace-match ""))
  4879. (goto-char (point-min))
  4880. (when (re-search-forward "^Org mode dummy\n?" nil t)
  4881. (replace-match ""))
  4882. (run-hooks 'org-agenda-cleanup-fancy-diary-hook))
  4883. (defun org-modify-diary-entry-string (string)
  4884. "Add text properties to string, allowing Org to act on it."
  4885. (org-add-props string nil
  4886. 'mouse-face 'highlight
  4887. 'help-echo (if buffer-file-name
  4888. (format "mouse-2 or RET jump to diary file %s"
  4889. (abbreviate-file-name buffer-file-name))
  4890. "")
  4891. 'org-agenda-diary-link t
  4892. 'org-marker (org-agenda-new-marker (point-at-bol))))
  4893. (defun org-diary-default-entry ()
  4894. "Add a dummy entry to the diary.
  4895. Needed to avoid empty dates which mess up holiday display."
  4896. ;; Catch the error if dealing with the new add-to-diary-alist
  4897. (when org-disable-agenda-to-diary
  4898. (diary-add-to-list original-date "Org mode dummy" "")))
  4899. (defvar org-diary-last-run-time nil)
  4900. ;;;###autoload
  4901. (defun org-diary (&rest args)
  4902. "Return diary information from org files.
  4903. This function can be used in a \"sexp\" diary entry in the Emacs calendar.
  4904. It accesses org files and extracts information from those files to be
  4905. listed in the diary. The function accepts arguments specifying what
  4906. items should be listed. For a list of arguments allowed here, see the
  4907. variable `org-agenda-entry-types'.
  4908. The call in the diary file should look like this:
  4909. &%%(org-diary) ~/path/to/some/orgfile.org
  4910. Use a separate line for each org file to check. Or, if you omit the file name,
  4911. all files listed in `org-agenda-files' will be checked automatically:
  4912. &%%(org-diary)
  4913. If you don't give any arguments (as in the example above), the default value
  4914. of `org-agenda-entry-types' is used: (:deadline :scheduled :timestamp :sexp).
  4915. So the example above may also be written as
  4916. &%%(org-diary :deadline :timestamp :sexp :scheduled)
  4917. The function expects the lisp variables `entry' and `date' to be provided
  4918. by the caller, because this is how the calendar works. Don't use this
  4919. function from a program - use `org-agenda-get-day-entries' instead."
  4920. (with-no-warnings (defvar date) (defvar entry))
  4921. (when (> (- (float-time)
  4922. org-agenda-last-marker-time)
  4923. 5)
  4924. ;; I am not sure if this works with sticky agendas, because the marker
  4925. ;; list is then no longer a global variable.
  4926. (org-agenda-reset-markers))
  4927. (org-compile-prefix-format 'agenda)
  4928. (org-set-sorting-strategy 'agenda)
  4929. (setq args (or args org-agenda-entry-types))
  4930. (let* ((files (if (and entry (stringp entry) (string-match "\\S-" entry))
  4931. (list entry)
  4932. (org-agenda-files t)))
  4933. (time (float-time))
  4934. file rtn results)
  4935. (when (or (not org-diary-last-run-time)
  4936. (> (- time
  4937. org-diary-last-run-time)
  4938. 3))
  4939. (org-agenda-prepare-buffers files))
  4940. (setq org-diary-last-run-time time)
  4941. ;; If this is called during org-agenda, don't return any entries to
  4942. ;; the calendar. Org Agenda will list these entries itself.
  4943. (when org-disable-agenda-to-diary (setq files nil))
  4944. (while (setq file (pop files))
  4945. (setq rtn (apply #'org-agenda-get-day-entries file date args))
  4946. (setq results (append results rtn)))
  4947. (when results
  4948. (setq results
  4949. (mapcar (lambda (i) (replace-regexp-in-string
  4950. org-link-bracket-re "\\2" i))
  4951. results))
  4952. (concat (org-agenda-finalize-entries results) "\n"))))
  4953. ;;; Agenda entry finders
  4954. (defun org-agenda--timestamp-to-absolute (&rest args)
  4955. "Call `org-time-string-to-absolute' with ARGS.
  4956. However, throw `:skip' whenever an error is raised."
  4957. (condition-case e
  4958. (apply #'org-time-string-to-absolute args)
  4959. (org-diary-sexp-no-match (throw :skip nil))
  4960. (error
  4961. (message "%s; Skipping entry" (error-message-string e))
  4962. (throw :skip nil))))
  4963. (defun org-agenda-get-day-entries (file date &rest args)
  4964. "Does the work for `org-diary' and `org-agenda'.
  4965. FILE is the path to a file to be checked for entries. DATE is date like
  4966. the one returned by `calendar-current-date'. ARGS are symbols indicating
  4967. which kind of entries should be extracted. For details about these, see
  4968. the documentation of `org-diary'."
  4969. (let* ((org-startup-folded nil)
  4970. (org-startup-align-all-tables nil)
  4971. (buffer (if (file-exists-p file) (org-get-agenda-file-buffer file)
  4972. (error "No such file %s" file))))
  4973. (if (not buffer)
  4974. ;; If file does not exist, signal it in diary nonetheless.
  4975. (list (format "ORG-AGENDA-ERROR: No such org-file %s" file))
  4976. (with-current-buffer buffer
  4977. (unless (derived-mode-p 'org-mode)
  4978. (error "Agenda file %s is not in Org mode" file))
  4979. (setq org-agenda-buffer (or org-agenda-buffer buffer))
  4980. (setf org-agenda-current-date date)
  4981. (save-excursion
  4982. (save-restriction
  4983. (if (eq buffer org-agenda-restrict)
  4984. (narrow-to-region org-agenda-restrict-begin
  4985. org-agenda-restrict-end)
  4986. (widen))
  4987. ;; Rationalize ARGS. Also make sure `:deadline' comes
  4988. ;; first in order to populate DEADLINES before passing it.
  4989. ;;
  4990. ;; We use `delq' since `org-uniquify' duplicates ARGS,
  4991. ;; guarding us from modifying `org-agenda-entry-types'.
  4992. (setf args (org-uniquify (or args org-agenda-entry-types)))
  4993. (when (and (memq :scheduled args) (memq :scheduled* args))
  4994. (setf args (delq :scheduled* args)))
  4995. (cond
  4996. ((memq :deadline args)
  4997. (setf args (cons :deadline
  4998. (delq :deadline (delq :deadline* args)))))
  4999. ((memq :deadline* args)
  5000. (setf args (cons :deadline* (delq :deadline* args)))))
  5001. ;; Collect list of headlines. Return them flattened.
  5002. (let ((case-fold-search nil) results deadlines)
  5003. (org-dlet
  5004. ((date date))
  5005. (dolist (arg args (apply #'nconc (nreverse results)))
  5006. (pcase arg
  5007. ((and :todo (guard (org-agenda-today-p date)))
  5008. (push (org-agenda-get-todos) results))
  5009. (:timestamp
  5010. (push (org-agenda-get-blocks) results)
  5011. (push (org-agenda-get-timestamps deadlines) results))
  5012. (:sexp
  5013. (push (org-agenda-get-sexps) results))
  5014. (:scheduled
  5015. (push (org-agenda-get-scheduled deadlines) results))
  5016. (:scheduled*
  5017. (push (org-agenda-get-scheduled deadlines t) results))
  5018. (:closed
  5019. (push (org-agenda-get-progress) results))
  5020. (:deadline
  5021. (setf deadlines (org-agenda-get-deadlines))
  5022. (push deadlines results))
  5023. (:deadline*
  5024. (setf deadlines (org-agenda-get-deadlines t))
  5025. (push deadlines results))))))))))))
  5026. (defsubst org-em (x y list)
  5027. "Is X or Y a member of LIST?"
  5028. (or (memq x list) (memq y list)))
  5029. (defvar org-heading-keyword-regexp-format) ; defined in org.el
  5030. (defvar org-agenda-sorting-strategy-selected nil)
  5031. (defun org-agenda-entry-get-agenda-timestamp (pom)
  5032. "Retrieve timestamp information for sorting agenda views.
  5033. Given a point or marker POM, returns a cons cell of the timestamp
  5034. and the timestamp type relevant for the sorting strategy in
  5035. `org-agenda-sorting-strategy-selected'."
  5036. (let (ts ts-date-type)
  5037. (save-match-data
  5038. (cond ((org-em 'scheduled-up 'scheduled-down
  5039. org-agenda-sorting-strategy-selected)
  5040. (setq ts (org-entry-get pom "SCHEDULED")
  5041. ts-date-type " scheduled"))
  5042. ((org-em 'deadline-up 'deadline-down
  5043. org-agenda-sorting-strategy-selected)
  5044. (setq ts (org-entry-get pom "DEADLINE")
  5045. ts-date-type " deadline"))
  5046. ((org-em 'ts-up 'ts-down
  5047. org-agenda-sorting-strategy-selected)
  5048. (setq ts (org-entry-get pom "TIMESTAMP")
  5049. ts-date-type " timestamp"))
  5050. ((org-em 'tsia-up 'tsia-down
  5051. org-agenda-sorting-strategy-selected)
  5052. (setq ts (org-entry-get pom "TIMESTAMP_IA")
  5053. ts-date-type " timestamp_ia"))
  5054. ((org-em 'timestamp-up 'timestamp-down
  5055. org-agenda-sorting-strategy-selected)
  5056. (setq ts (or (org-entry-get pom "SCHEDULED")
  5057. (org-entry-get pom "DEADLINE")
  5058. (org-entry-get pom "TIMESTAMP")
  5059. (org-entry-get pom "TIMESTAMP_IA"))
  5060. ts-date-type ""))
  5061. (t (setq ts-date-type "")))
  5062. (cons (when ts (ignore-errors (org-time-string-to-absolute ts)))
  5063. ts-date-type))))
  5064. (defun org-agenda-get-todos ()
  5065. "Return the TODO information for agenda display."
  5066. (let* ((props (list 'face nil
  5067. 'done-face 'org-agenda-done
  5068. 'org-not-done-regexp org-not-done-regexp
  5069. 'org-todo-regexp org-todo-regexp
  5070. 'org-complex-heading-regexp org-complex-heading-regexp
  5071. 'mouse-face 'highlight
  5072. 'help-echo
  5073. (format "mouse-2 or RET jump to org file %s"
  5074. (abbreviate-file-name buffer-file-name))))
  5075. (case-fold-search nil)
  5076. (regexp (format org-heading-keyword-regexp-format
  5077. (cond
  5078. ((and org-select-this-todo-keyword
  5079. (equal org-select-this-todo-keyword "*"))
  5080. org-todo-regexp)
  5081. (org-select-this-todo-keyword
  5082. (concat "\\("
  5083. (mapconcat #'identity
  5084. (org-split-string
  5085. org-select-this-todo-keyword
  5086. "|")
  5087. "\\|")
  5088. "\\)"))
  5089. (t org-not-done-regexp))))
  5090. marker priority category level tags todo-state
  5091. ts-date ts-date-type ts-date-pair
  5092. ee txt beg end inherited-tags todo-state-end-pos)
  5093. (goto-char (point-min))
  5094. (while (re-search-forward regexp nil t)
  5095. (catch :skip
  5096. (save-match-data
  5097. (beginning-of-line)
  5098. (org-agenda-skip)
  5099. (setq beg (point) end (save-excursion (outline-next-heading) (point)))
  5100. (unless (and (setq todo-state (org-get-todo-state))
  5101. (setq todo-state-end-pos (match-end 2)))
  5102. (goto-char end)
  5103. (throw :skip nil))
  5104. (when (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item end)
  5105. (goto-char (1+ beg))
  5106. (or org-agenda-todo-list-sublevels (org-end-of-subtree 'invisible))
  5107. (throw :skip nil)))
  5108. (goto-char (match-beginning 2))
  5109. (setq marker (org-agenda-new-marker (match-beginning 0))
  5110. category (org-get-category)
  5111. ts-date-pair (org-agenda-entry-get-agenda-timestamp (point))
  5112. ts-date (car ts-date-pair)
  5113. ts-date-type (cdr ts-date-pair)
  5114. txt (org-trim (buffer-substring (match-beginning 2) (match-end 0)))
  5115. inherited-tags
  5116. (or (eq org-agenda-show-inherited-tags 'always)
  5117. (and (listp org-agenda-show-inherited-tags)
  5118. (memq 'todo org-agenda-show-inherited-tags))
  5119. (and (eq org-agenda-show-inherited-tags t)
  5120. (or (eq org-agenda-use-tag-inheritance t)
  5121. (memq 'todo org-agenda-use-tag-inheritance))))
  5122. tags (org-get-tags nil (not inherited-tags))
  5123. level (make-string (org-reduced-level (org-outline-level)) ? )
  5124. txt (org-agenda-format-item "" txt level category tags t)
  5125. priority (1+ (org-get-priority txt)))
  5126. (org-add-props txt props
  5127. 'org-marker marker 'org-hd-marker marker
  5128. 'priority priority
  5129. 'level level
  5130. 'ts-date ts-date
  5131. 'type (concat "todo" ts-date-type) 'todo-state todo-state)
  5132. (push txt ee)
  5133. (if org-agenda-todo-list-sublevels
  5134. (goto-char todo-state-end-pos)
  5135. (org-end-of-subtree 'invisible))))
  5136. (nreverse ee)))
  5137. (defun org-agenda-todo-custom-ignore-p (time n)
  5138. "Check whether timestamp is farther away than n number of days.
  5139. This function is invoked if `org-agenda-todo-ignore-deadlines',
  5140. `org-agenda-todo-ignore-scheduled' or
  5141. `org-agenda-todo-ignore-timestamp' is set to an integer."
  5142. (let ((days (org-time-stamp-to-now
  5143. time org-agenda-todo-ignore-time-comparison-use-seconds)))
  5144. (if (>= n 0)
  5145. (>= days n)
  5146. (<= days n))))
  5147. ;;;###autoload
  5148. (defun org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item
  5149. (&optional end)
  5150. "Do we have a reason to ignore this TODO entry because it has a time stamp?"
  5151. (when (or org-agenda-todo-ignore-with-date
  5152. org-agenda-todo-ignore-scheduled
  5153. org-agenda-todo-ignore-deadlines
  5154. org-agenda-todo-ignore-timestamp)
  5155. (setq end (or end (save-excursion (outline-next-heading) (point))))
  5156. (save-excursion
  5157. (or (and org-agenda-todo-ignore-with-date
  5158. (re-search-forward org-ts-regexp end t))
  5159. (and org-agenda-todo-ignore-scheduled
  5160. (re-search-forward org-scheduled-time-regexp end t)
  5161. (cond
  5162. ((eq org-agenda-todo-ignore-scheduled 'future)
  5163. (> (org-time-stamp-to-now
  5164. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds)
  5165. 0))
  5166. ((eq org-agenda-todo-ignore-scheduled 'past)
  5167. (<= (org-time-stamp-to-now
  5168. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds)
  5169. 0))
  5170. ((numberp org-agenda-todo-ignore-scheduled)
  5171. (org-agenda-todo-custom-ignore-p
  5172. (match-string 1) org-agenda-todo-ignore-scheduled))
  5173. (t)))
  5174. (and org-agenda-todo-ignore-deadlines
  5175. (re-search-forward org-deadline-time-regexp end t)
  5176. (cond
  5177. ((eq org-agenda-todo-ignore-deadlines 'all) t)
  5178. ((eq org-agenda-todo-ignore-deadlines 'far)
  5179. (not (org-deadline-close-p (match-string 1))))
  5180. ((eq org-agenda-todo-ignore-deadlines 'future)
  5181. (> (org-time-stamp-to-now
  5182. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds)
  5183. 0))
  5184. ((eq org-agenda-todo-ignore-deadlines 'past)
  5185. (<= (org-time-stamp-to-now
  5186. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds)
  5187. 0))
  5188. ((numberp org-agenda-todo-ignore-deadlines)
  5189. (org-agenda-todo-custom-ignore-p
  5190. (match-string 1) org-agenda-todo-ignore-deadlines))
  5191. (t (org-deadline-close-p (match-string 1)))))
  5192. (and org-agenda-todo-ignore-timestamp
  5193. (let ((buffer (current-buffer))
  5194. (regexp
  5195. (concat
  5196. org-scheduled-time-regexp "\\|" org-deadline-time-regexp))
  5197. (start (point)))
  5198. ;; Copy current buffer into a temporary one
  5199. (with-temp-buffer
  5200. (insert-buffer-substring buffer start end)
  5201. (goto-char (point-min))
  5202. ;; Delete SCHEDULED and DEADLINE items
  5203. (while (re-search-forward regexp end t)
  5204. (delete-region (match-beginning 0) (match-end 0)))
  5205. (goto-char (point-min))
  5206. ;; No search for timestamp left
  5207. (when (re-search-forward org-ts-regexp nil t)
  5208. (cond
  5209. ((eq org-agenda-todo-ignore-timestamp 'future)
  5210. (> (org-time-stamp-to-now
  5211. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds)
  5212. 0))
  5213. ((eq org-agenda-todo-ignore-timestamp 'past)
  5214. (<= (org-time-stamp-to-now
  5215. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds)
  5216. 0))
  5217. ((numberp org-agenda-todo-ignore-timestamp)
  5218. (org-agenda-todo-custom-ignore-p
  5219. (match-string 1) org-agenda-todo-ignore-timestamp))
  5220. (t))))))))))
  5221. (defun org-agenda-get-timestamps (&optional deadlines)
  5222. "Return the date stamp information for agenda display.
  5223. Optional argument DEADLINES is a list of deadline items to be
  5224. displayed in agenda view."
  5225. (with-no-warnings (defvar date))
  5226. (let* ((props (list 'face 'org-agenda-calendar-event
  5227. 'org-not-done-regexp org-not-done-regexp
  5228. 'org-todo-regexp org-todo-regexp
  5229. 'org-complex-heading-regexp org-complex-heading-regexp
  5230. 'mouse-face 'highlight
  5231. 'help-echo
  5232. (format "mouse-2 or RET jump to Org file %s"
  5233. (abbreviate-file-name buffer-file-name))))
  5234. (current (calendar-absolute-from-gregorian date))
  5235. (today (org-today))
  5236. (deadline-position-alist
  5237. (mapcar (lambda (d)
  5238. (let ((m (get-text-property 0 'org-hd-marker d)))
  5239. (and m (marker-position m))))
  5240. deadlines))
  5241. ;; Match time-stamps set to current date, time-stamps with
  5242. ;; a repeater, and S-exp time-stamps.
  5243. (regexp
  5244. (concat
  5245. (if org-agenda-include-inactive-timestamps "[[<]" "<")
  5246. (regexp-quote
  5247. (substring
  5248. (format-time-string
  5249. (car org-time-stamp-formats)
  5250. (encode-time ; DATE bound by calendar
  5251. 0 0 0 (nth 1 date) (car date) (nth 2 date)))
  5252. 1 11))
  5253. "\\|\\(<[0-9]+-[0-9]+-[0-9]+[^>\n]+?\\+[0-9]+[hdwmy]>\\)"
  5254. "\\|\\(<%%\\(([^>\n]+)\\)>\\)"))
  5255. timestamp-items)
  5256. (goto-char (point-min))
  5257. (while (re-search-forward regexp nil t)
  5258. ;; Skip date ranges, scheduled and deadlines, which are handled
  5259. ;; specially. Also skip time-stamps before first headline as
  5260. ;; there would be no entry to add to the agenda. Eventually,
  5261. ;; ignore clock entries.
  5262. (catch :skip
  5263. (save-match-data
  5264. (when (or (org-at-date-range-p)
  5265. (org-at-planning-p)
  5266. (org-before-first-heading-p)
  5267. (and org-agenda-include-inactive-timestamps
  5268. (org-at-clock-log-p)))
  5269. (throw :skip nil))
  5270. (org-agenda-skip))
  5271. (let* ((pos (match-beginning 0))
  5272. (repeat (match-string 1))
  5273. (sexp-entry (match-string 3))
  5274. (time-stamp (if (or repeat sexp-entry) (match-string 0)
  5275. (save-excursion
  5276. (goto-char pos)
  5277. (looking-at org-ts-regexp-both)
  5278. (match-string 0))))
  5279. (todo-state (org-get-todo-state))
  5280. (warntime (get-text-property (point) 'org-appt-warntime))
  5281. (done? (member todo-state org-done-keywords)))
  5282. ;; Possibly skip done tasks.
  5283. (when (and done? org-agenda-skip-timestamp-if-done)
  5284. (throw :skip t))
  5285. ;; S-exp entry doesn't match current day: skip it.
  5286. (when (and sexp-entry (not (org-diary-sexp-entry sexp-entry "" date)))
  5287. (throw :skip nil))
  5288. (when repeat
  5289. (let* ((past
  5290. ;; A repeating time stamp is shown at its base
  5291. ;; date and every repeated date up to TODAY. If
  5292. ;; `org-agenda-prefer-last-repeat' is non-nil,
  5293. ;; however, only the last repeat before today
  5294. ;; (inclusive) is shown.
  5295. (org-agenda--timestamp-to-absolute
  5296. repeat
  5297. (if (or (> current today)
  5298. (eq org-agenda-prefer-last-repeat t)
  5299. (member todo-state org-agenda-prefer-last-repeat))
  5300. today
  5301. current)
  5302. 'past (current-buffer) pos))
  5303. (future
  5304. ;; Display every repeated date past TODAY
  5305. ;; (exclusive) unless
  5306. ;; `org-agenda-show-future-repeats' is nil. If
  5307. ;; this variable is set to `next', only display
  5308. ;; the first repeated date after TODAY
  5309. ;; (exclusive).
  5310. (cond
  5311. ((<= current today) past)
  5312. ((not org-agenda-show-future-repeats) past)
  5313. (t
  5314. (let ((base (if (eq org-agenda-show-future-repeats 'next)
  5315. (1+ today)
  5316. current)))
  5317. (org-agenda--timestamp-to-absolute
  5318. repeat base 'future (current-buffer) pos))))))
  5319. (when (and (/= current past) (/= current future))
  5320. (throw :skip nil))))
  5321. (save-excursion
  5322. (re-search-backward org-outline-regexp-bol nil t)
  5323. ;; Possibly skip time-stamp when a deadline is set.
  5324. (when (and org-agenda-skip-timestamp-if-deadline-is-shown
  5325. (assq (point) deadline-position-alist))
  5326. (throw :skip nil))
  5327. (let* ((category (org-get-category pos))
  5328. (inherited-tags
  5329. (or (eq org-agenda-show-inherited-tags 'always)
  5330. (and (consp org-agenda-show-inherited-tags)
  5331. (memq 'agenda org-agenda-show-inherited-tags))
  5332. (and (eq org-agenda-show-inherited-tags t)
  5333. (or (eq org-agenda-use-tag-inheritance t)
  5334. (memq 'agenda
  5335. org-agenda-use-tag-inheritance)))))
  5336. (tags (org-get-tags nil (not inherited-tags)))
  5337. (level (make-string (org-reduced-level (org-outline-level))
  5338. ?\s))
  5339. (head (and (looking-at "\\*+[ \t]+\\(.*\\)")
  5340. (match-string 1)))
  5341. (inactive? (= (char-after pos) ?\[))
  5342. (habit? (and (fboundp 'org-is-habit-p) (org-is-habit-p)))
  5343. (item
  5344. (org-agenda-format-item
  5345. (and inactive? org-agenda-inactive-leader)
  5346. head level category tags time-stamp org-ts-regexp habit?)))
  5347. (org-add-props item props
  5348. 'priority (if habit?
  5349. (org-habit-get-priority (org-habit-parse-todo))
  5350. (org-get-priority item))
  5351. 'org-marker (org-agenda-new-marker pos)
  5352. 'org-hd-marker (org-agenda-new-marker)
  5353. 'date date
  5354. 'level level
  5355. 'ts-date (if repeat (org-agenda--timestamp-to-absolute repeat)
  5356. current)
  5357. 'todo-state todo-state
  5358. 'warntime warntime
  5359. 'type "timestamp")
  5360. (push item timestamp-items))))
  5361. (when org-agenda-skip-additional-timestamps-same-entry
  5362. (outline-next-heading))))
  5363. (nreverse timestamp-items)))
  5364. (defun org-agenda-get-sexps ()
  5365. "Return the sexp information for agenda display."
  5366. (require 'diary-lib)
  5367. (with-no-warnings (defvar date) (defvar entry))
  5368. (let* ((props (list 'face 'org-agenda-calendar-sexp
  5369. 'mouse-face 'highlight
  5370. 'help-echo
  5371. (format "mouse-2 or RET jump to org file %s"
  5372. (abbreviate-file-name buffer-file-name))))
  5373. (regexp "^&?%%(")
  5374. ;; FIXME: Is this `entry' binding intended to be dynamic,
  5375. ;; so as to "hide" any current binding for it?
  5376. marker category extra level ee txt tags entry
  5377. result beg b sexp sexp-entry todo-state warntime inherited-tags)
  5378. (goto-char (point-min))
  5379. (while (re-search-forward regexp nil t)
  5380. (catch :skip
  5381. (org-agenda-skip)
  5382. (setq beg (match-beginning 0))
  5383. (goto-char (1- (match-end 0)))
  5384. (setq b (point))
  5385. (forward-sexp 1)
  5386. (setq sexp (buffer-substring b (point)))
  5387. (setq sexp-entry (if (looking-at "[ \t]*\\(\\S-.*\\)")
  5388. (org-trim (match-string 1))
  5389. ""))
  5390. (setq result (org-diary-sexp-entry sexp sexp-entry date))
  5391. (when result
  5392. (setq marker (org-agenda-new-marker beg)
  5393. level (make-string (org-reduced-level (org-outline-level)) ? )
  5394. category (org-get-category beg)
  5395. inherited-tags
  5396. (or (eq org-agenda-show-inherited-tags 'always)
  5397. (and (listp org-agenda-show-inherited-tags)
  5398. (memq 'agenda org-agenda-show-inherited-tags))
  5399. (and (eq org-agenda-show-inherited-tags t)
  5400. (or (eq org-agenda-use-tag-inheritance t)
  5401. (memq 'agenda org-agenda-use-tag-inheritance))))
  5402. tags (org-get-tags nil (not inherited-tags))
  5403. todo-state (org-get-todo-state)
  5404. warntime (get-text-property (point) 'org-appt-warntime)
  5405. extra nil)
  5406. (dolist (r (if (stringp result)
  5407. (list result)
  5408. result)) ;; we expect a list here
  5409. (when (and org-agenda-diary-sexp-prefix
  5410. (string-match org-agenda-diary-sexp-prefix r))
  5411. (setq extra (match-string 0 r)
  5412. r (replace-match "" nil nil r)))
  5413. (if (string-match "\\S-" r)
  5414. (setq txt r)
  5415. (setq txt "SEXP entry returned empty string"))
  5416. (setq txt (org-agenda-format-item extra txt level category tags 'time))
  5417. (org-add-props txt props 'org-marker marker
  5418. 'date date 'todo-state todo-state
  5419. 'level level 'type "sexp" 'warntime warntime)
  5420. (push txt ee)))))
  5421. (nreverse ee)))
  5422. ;; Calendar sanity: define some functions that are independent of
  5423. ;; `calendar-date-style'.
  5424. (defun org-anniversary (year month day &optional mark)
  5425. "Like `diary-anniversary', but with fixed (ISO) order of arguments."
  5426. (with-no-warnings
  5427. (let ((calendar-date-style 'iso))
  5428. (diary-anniversary year month day mark))))
  5429. (defun org-cyclic (N year month day &optional mark)
  5430. "Like `diary-cyclic', but with fixed (ISO) order of arguments."
  5431. (with-no-warnings
  5432. (let ((calendar-date-style 'iso))
  5433. (diary-cyclic N year month day mark))))
  5434. (defun org-block (Y1 M1 D1 Y2 M2 D2 &optional mark)
  5435. "Like `diary-block', but with fixed (ISO) order of arguments."
  5436. (with-no-warnings
  5437. (let ((calendar-date-style 'iso))
  5438. (diary-block Y1 M1 D1 Y2 M2 D2 mark))))
  5439. (defun org-date (year month day &optional mark)
  5440. "Like `diary-date', but with fixed (ISO) order of arguments."
  5441. (with-no-warnings
  5442. (let ((calendar-date-style 'iso))
  5443. (diary-date year month day mark))))
  5444. ;; Define the `org-class' function
  5445. (defun org-class (y1 m1 d1 y2 m2 d2 dayname &rest skip-weeks)
  5446. "Entry applies if date is between dates on DAYNAME, but skips SKIP-WEEKS.
  5447. DAYNAME is a number between 0 (Sunday) and 6 (Saturday).
  5448. SKIP-WEEKS is any number of ISO weeks in the block period for which the
  5449. item should be skipped. If any of the SKIP-WEEKS arguments is the symbol
  5450. `holidays', then any date that is known by the Emacs calendar to be a
  5451. holiday will also be skipped. If SKIP-WEEKS arguments are holiday strings,
  5452. then those holidays will be skipped."
  5453. (with-no-warnings (defvar date) (defvar entry))
  5454. (let* ((date1 (calendar-absolute-from-gregorian (list m1 d1 y1)))
  5455. (date2 (calendar-absolute-from-gregorian (list m2 d2 y2)))
  5456. (d (calendar-absolute-from-gregorian date))
  5457. (h (when skip-weeks (calendar-check-holidays date))))
  5458. (and
  5459. (<= date1 d)
  5460. (<= d date2)
  5461. (= (calendar-day-of-week date) dayname)
  5462. (or (not skip-weeks)
  5463. (progn
  5464. (require 'cal-iso)
  5465. (not (member (car (calendar-iso-from-absolute d)) skip-weeks))))
  5466. (not (or (and h (memq 'holidays skip-weeks))
  5467. (delq nil (mapcar (lambda(g) (member g skip-weeks)) h))))
  5468. entry)))
  5469. (defalias 'org-get-closed #'org-agenda-get-progress)
  5470. (defun org-agenda-get-progress ()
  5471. "Return the logged TODO entries for agenda display."
  5472. (with-no-warnings (defvar date))
  5473. (let* ((props (list 'mouse-face 'highlight
  5474. 'org-not-done-regexp org-not-done-regexp
  5475. 'org-todo-regexp org-todo-regexp
  5476. 'org-complex-heading-regexp org-complex-heading-regexp
  5477. 'help-echo
  5478. (format "mouse-2 or RET jump to org file %s"
  5479. (abbreviate-file-name buffer-file-name))))
  5480. (items (if (consp org-agenda-show-log-scoped)
  5481. org-agenda-show-log-scoped
  5482. (if (eq org-agenda-show-log-scoped 'clockcheck)
  5483. '(clock)
  5484. org-agenda-log-mode-items)))
  5485. (parts
  5486. (delq nil
  5487. (list
  5488. (when (memq 'closed items) (concat "\\<" org-closed-string))
  5489. (when (memq 'clock items) (concat "\\<" org-clock-string))
  5490. (when (memq 'state items)
  5491. (format "- +State \"%s\".*?" org-todo-regexp)))))
  5492. (parts-re (if parts (mapconcat #'identity parts "\\|")
  5493. (error "`org-agenda-log-mode-items' is empty")))
  5494. (regexp (concat
  5495. "\\(" parts-re "\\)"
  5496. " *\\["
  5497. (regexp-quote
  5498. (substring
  5499. (format-time-string
  5500. (car org-time-stamp-formats)
  5501. (encode-time ; DATE bound by calendar
  5502. 0 0 0 (nth 1 date) (car date) (nth 2 date)))
  5503. 1 11))))
  5504. (org-agenda-search-headline-for-time nil)
  5505. marker hdmarker priority category level tags closedp type
  5506. statep clockp state ee txt extra timestr rest clocked inherited-tags)
  5507. (goto-char (point-min))
  5508. (while (re-search-forward regexp nil t)
  5509. (catch :skip
  5510. (org-agenda-skip)
  5511. (setq marker (org-agenda-new-marker (match-beginning 0))
  5512. closedp (equal (match-string 1) org-closed-string)
  5513. statep (equal (string-to-char (match-string 1)) ?-)
  5514. clockp (not (or closedp statep))
  5515. state (and statep (match-string 2))
  5516. category (org-get-category (match-beginning 0))
  5517. timestr (buffer-substring (match-beginning 0) (point-at-eol)))
  5518. (when (string-match "\\]" timestr)
  5519. ;; substring should only run to end of time stamp
  5520. (setq rest (substring timestr (match-end 0))
  5521. timestr (substring timestr 0 (match-end 0)))
  5522. (if (and (not closedp) (not statep)
  5523. (string-match "\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)\\].*?\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)"
  5524. rest))
  5525. (progn (setq timestr (concat (substring timestr 0 -1)
  5526. "-" (match-string 1 rest) "]"))
  5527. (setq clocked (match-string 2 rest)))
  5528. (setq clocked "-")))
  5529. (save-excursion
  5530. (setq extra
  5531. (cond
  5532. ((not org-agenda-log-mode-add-notes) nil)
  5533. (statep
  5534. (and (looking-at ".*\\\\\n[ \t]*\\([^-\n \t].*?\\)[ \t]*$")
  5535. (match-string 1)))
  5536. (clockp
  5537. (and (looking-at ".*\n[ \t]*-[ \t]+\\([^-\n \t].*?\\)[ \t]*$")
  5538. (match-string 1)))))
  5539. (if (not (re-search-backward org-outline-regexp-bol nil t))
  5540. (throw :skip nil)
  5541. (goto-char (match-beginning 0))
  5542. (setq hdmarker (org-agenda-new-marker)
  5543. inherited-tags
  5544. (or (eq org-agenda-show-inherited-tags 'always)
  5545. (and (listp org-agenda-show-inherited-tags)
  5546. (memq 'todo org-agenda-show-inherited-tags))
  5547. (and (eq org-agenda-show-inherited-tags t)
  5548. (or (eq org-agenda-use-tag-inheritance t)
  5549. (memq 'todo org-agenda-use-tag-inheritance))))
  5550. tags (org-get-tags nil (not inherited-tags))
  5551. level (make-string (org-reduced-level (org-outline-level)) ? ))
  5552. (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
  5553. (setq txt (match-string 1))
  5554. (when extra
  5555. (if (string-match "\\([ \t]+\\)\\(:[^ \n\t]*?:\\)[ \t]*$" txt)
  5556. (setq txt (concat (substring txt 0 (match-beginning 1))
  5557. " - " extra " " (match-string 2 txt)))
  5558. (setq txt (concat txt " - " extra))))
  5559. (setq txt (org-agenda-format-item
  5560. (cond
  5561. (closedp "Closed: ")
  5562. (statep (concat "State: (" state ")"))
  5563. (t (concat "Clocked: (" clocked ")")))
  5564. txt level category tags timestr)))
  5565. (setq type (cond (closedp "closed")
  5566. (statep "state")
  5567. (t "clock")))
  5568. (setq priority 100000)
  5569. (org-add-props txt props
  5570. 'org-marker marker 'org-hd-marker hdmarker 'face 'org-agenda-done
  5571. 'priority priority 'level level
  5572. 'type type 'date date
  5573. 'undone-face 'org-warning 'done-face 'org-agenda-done)
  5574. (push txt ee))
  5575. (goto-char (point-at-eol))))
  5576. (nreverse ee)))
  5577. (defun org-agenda-show-clocking-issues ()
  5578. "Add overlays, showing issues with clocking.
  5579. See also the user option `org-agenda-clock-consistency-checks'."
  5580. (interactive)
  5581. (let* ((pl org-agenda-clock-consistency-checks)
  5582. (re (concat "^[ \t]*"
  5583. org-clock-string
  5584. "[ \t]+"
  5585. "\\(\\[.*?\\]\\)" ; group 1 is first stamp
  5586. "\\(-\\{1,3\\}\\(\\[.*?\\]\\)\\)?")) ; group 3 is second
  5587. (tlstart 0.)
  5588. (tlend 0.)
  5589. (maxtime (org-duration-to-minutes
  5590. (or (plist-get pl :max-duration) "24:00")))
  5591. (mintime (org-duration-to-minutes
  5592. (or (plist-get pl :min-duration) 0)))
  5593. (maxgap (org-duration-to-minutes
  5594. ;; default 30:00 means never complain
  5595. (or (plist-get pl :max-gap) "30:00")))
  5596. (gapok (mapcar #'org-duration-to-minutes
  5597. (plist-get pl :gap-ok-around)))
  5598. (def-face (or (plist-get pl :default-face)
  5599. '((:background "DarkRed") (:foreground "white"))))
  5600. issue face m te ts dt ov)
  5601. (goto-char (point-min))
  5602. (while (re-search-forward " Clocked: +(-\\|\\([0-9]+:[0-9]+\\))" nil t)
  5603. (setq issue nil face def-face)
  5604. (catch 'next
  5605. (setq m (org-get-at-bol 'org-marker)
  5606. te nil ts nil)
  5607. (unless (and m (markerp m))
  5608. (setq issue "No valid clock line") (throw 'next t))
  5609. (org-with-point-at m
  5610. (save-excursion
  5611. (goto-char (point-at-bol))
  5612. (unless (looking-at re)
  5613. (error "No valid Clock line")
  5614. (throw 'next t))
  5615. (unless (match-end 3)
  5616. (setq issue
  5617. (format
  5618. "No end time: (%s)"
  5619. (org-duration-from-minutes
  5620. (floor
  5621. (- (float-time (org-current-time))
  5622. (float-time (org-time-string-to-time (match-string 1))))
  5623. 60)))
  5624. face (or (plist-get pl :no-end-time-face) face))
  5625. (throw 'next t))
  5626. (setq ts (match-string 1)
  5627. te (match-string 3)
  5628. ts (float-time (org-time-string-to-time ts))
  5629. te (float-time (org-time-string-to-time te))
  5630. dt (- te ts))))
  5631. (cond
  5632. ((> dt (* 60 maxtime))
  5633. ;; a very long clocking chunk
  5634. (setq issue (format "Clocking interval is very long: %s"
  5635. (org-duration-from-minutes (floor dt 60)))
  5636. face (or (plist-get pl :long-face) face)))
  5637. ((< dt (* 60 mintime))
  5638. ;; a very short clocking chunk
  5639. (setq issue (format "Clocking interval is very short: %s"
  5640. (org-duration-from-minutes (floor dt 60)))
  5641. face (or (plist-get pl :short-face) face)))
  5642. ((and (> tlend 0) (< ts tlend))
  5643. ;; Two clock entries are overlapping
  5644. (setq issue (format "Clocking overlap: %d minutes"
  5645. (/ (- tlend ts) 60))
  5646. face (or (plist-get pl :overlap-face) face)))
  5647. ((and (> tlend 0) (> ts (+ tlend (* 60 maxgap))))
  5648. ;; There is a gap, lets see if we need to report it
  5649. (unless (org-agenda-check-clock-gap tlend ts gapok)
  5650. (setq issue (format "Clocking gap: %d minutes"
  5651. (/ (- ts tlend) 60))
  5652. face (or (plist-get pl :gap-face) face))))
  5653. (t nil)))
  5654. (setq tlend (or te tlend) tlstart (or ts tlstart))
  5655. (when issue
  5656. ;; OK, there was some issue, add an overlay to show the issue
  5657. (setq ov (make-overlay (point-at-bol) (point-at-eol)))
  5658. (overlay-put ov 'before-string
  5659. (concat
  5660. (org-add-props
  5661. (format "%-43s" (concat " " issue))
  5662. nil
  5663. 'face face)
  5664. "\n"))
  5665. (overlay-put ov 'evaporate t)))))
  5666. (defun org-agenda-check-clock-gap (t1 t2 ok-list)
  5667. "Check if gap T1 -> T2 contains one of the OK-LIST time-of-day values."
  5668. (catch 'exit
  5669. (unless ok-list
  5670. ;; there are no OK times for gaps...
  5671. (throw 'exit nil))
  5672. (when (> (- (/ t2 36000) (/ t1 36000)) 24)
  5673. ;; This is more than 24 hours, so it is OK.
  5674. ;; because we have at least one OK time, that must be in the
  5675. ;; 24 hour interval.
  5676. (throw 'exit t))
  5677. ;; We have a shorter gap.
  5678. ;; Now we have to get the minute of the day when these times are
  5679. (let* ((t1dec (org-decode-time t1))
  5680. (t2dec (org-decode-time t2))
  5681. ;; compute the minute on the day
  5682. (min1 (+ (nth 1 t1dec) (* 60 (nth 2 t1dec))))
  5683. (min2 (+ (nth 1 t2dec) (* 60 (nth 2 t2dec)))))
  5684. (when (< min2 min1)
  5685. ;; if min2 is smaller than min1, this means it is on the next day.
  5686. ;; Wrap it to after midnight.
  5687. (setq min2 (+ min2 1440)))
  5688. ;; Now check if any of the OK times is in the gap
  5689. (mapc (lambda (x)
  5690. ;; Wrap the time to after midnight if necessary
  5691. (when (< x min1) (setq x (+ x 1440)))
  5692. ;; Check if in interval
  5693. (and (<= min1 x) (>= min2 x) (throw 'exit t)))
  5694. ok-list)
  5695. ;; Nope, this gap is not OK
  5696. nil)))
  5697. (defun org-agenda-get-deadlines (&optional with-hour)
  5698. "Return the deadline information for agenda display.
  5699. When WITH-HOUR is non-nil, only return deadlines with an hour
  5700. specification like [h]h:mm."
  5701. (with-no-warnings (defvar date))
  5702. (let* ((props (list 'mouse-face 'highlight
  5703. 'org-not-done-regexp org-not-done-regexp
  5704. 'org-todo-regexp org-todo-regexp
  5705. 'org-complex-heading-regexp org-complex-heading-regexp
  5706. 'help-echo
  5707. (format "mouse-2 or RET jump to org file %s"
  5708. (abbreviate-file-name buffer-file-name))))
  5709. (regexp (if with-hour
  5710. org-deadline-time-hour-regexp
  5711. org-deadline-time-regexp))
  5712. (today (org-today))
  5713. (today? (org-agenda-today-p date)) ; DATE bound by calendar.
  5714. (current (calendar-absolute-from-gregorian date))
  5715. deadline-items)
  5716. (goto-char (point-min))
  5717. (while (re-search-forward regexp nil t)
  5718. (catch :skip
  5719. (unless (save-match-data (org-at-planning-p)) (throw :skip nil))
  5720. (org-agenda-skip)
  5721. (let* ((s (match-string 1))
  5722. (pos (1- (match-beginning 1)))
  5723. (todo-state (save-match-data (org-get-todo-state)))
  5724. (done? (member todo-state org-done-keywords))
  5725. (sexp? (string-prefix-p "%%" s))
  5726. ;; DEADLINE is the deadline date for the entry. It is
  5727. ;; either the base date or the last repeat, according
  5728. ;; to `org-agenda-prefer-last-repeat'.
  5729. (deadline
  5730. (cond
  5731. (sexp? (org-agenda--timestamp-to-absolute s current))
  5732. ((or (eq org-agenda-prefer-last-repeat t)
  5733. (member todo-state org-agenda-prefer-last-repeat))
  5734. (org-agenda--timestamp-to-absolute
  5735. s today 'past (current-buffer) pos))
  5736. (t (org-agenda--timestamp-to-absolute s))))
  5737. ;; REPEAT is the future repeat closest from CURRENT,
  5738. ;; according to `org-agenda-show-future-repeats'. If
  5739. ;; the latter is nil, or if the time stamp has no
  5740. ;; repeat part, default to DEADLINE.
  5741. (repeat
  5742. (cond
  5743. (sexp? deadline)
  5744. ((<= current today) deadline)
  5745. ((not org-agenda-show-future-repeats) deadline)
  5746. (t
  5747. (let ((base (if (eq org-agenda-show-future-repeats 'next)
  5748. (1+ today)
  5749. current)))
  5750. (org-agenda--timestamp-to-absolute
  5751. s base 'future (current-buffer) pos)))))
  5752. (diff (- deadline current))
  5753. (suppress-prewarning
  5754. (let ((scheduled
  5755. (and org-agenda-skip-deadline-prewarning-if-scheduled
  5756. (org-entry-get nil "SCHEDULED"))))
  5757. (cond
  5758. ((not scheduled) nil)
  5759. ;; The current item has a scheduled date, so
  5760. ;; evaluate its prewarning lead time.
  5761. ((integerp org-agenda-skip-deadline-prewarning-if-scheduled)
  5762. ;; Use global prewarning-restart lead time.
  5763. org-agenda-skip-deadline-prewarning-if-scheduled)
  5764. ((eq org-agenda-skip-deadline-prewarning-if-scheduled
  5765. 'pre-scheduled)
  5766. ;; Set pre-warning to no earlier than SCHEDULED.
  5767. (min (- deadline
  5768. (org-agenda--timestamp-to-absolute scheduled))
  5769. org-deadline-warning-days))
  5770. ;; Set pre-warning to deadline.
  5771. (t 0))))
  5772. (wdays (or suppress-prewarning (org-get-wdays s))))
  5773. (cond
  5774. ;; Only display deadlines at their base date, at future
  5775. ;; repeat occurrences or in today agenda.
  5776. ((= current deadline) nil)
  5777. ((= current repeat) nil)
  5778. ((not today?) (throw :skip nil))
  5779. ;; Upcoming deadline: display within warning period WDAYS.
  5780. ((> deadline current) (when (> diff wdays) (throw :skip nil)))
  5781. ;; Overdue deadline: warn about it for
  5782. ;; `org-deadline-past-days' duration.
  5783. (t (when (< org-deadline-past-days (- diff)) (throw :skip nil))))
  5784. ;; Possibly skip done tasks.
  5785. (when (and done?
  5786. (or org-agenda-skip-deadline-if-done
  5787. (/= deadline current)))
  5788. (throw :skip nil))
  5789. (save-excursion
  5790. (re-search-backward "^\\*+[ \t]+" nil t)
  5791. (goto-char (match-end 0))
  5792. (let* ((category (org-get-category))
  5793. (level (make-string (org-reduced-level (org-outline-level))
  5794. ?\s))
  5795. (head (buffer-substring (point) (line-end-position)))
  5796. (inherited-tags
  5797. (or (eq org-agenda-show-inherited-tags 'always)
  5798. (and (listp org-agenda-show-inherited-tags)
  5799. (memq 'agenda org-agenda-show-inherited-tags))
  5800. (and (eq org-agenda-show-inherited-tags t)
  5801. (or (eq org-agenda-use-tag-inheritance t)
  5802. (memq 'agenda
  5803. org-agenda-use-tag-inheritance)))))
  5804. (tags (org-get-tags nil (not inherited-tags)))
  5805. (time
  5806. (cond
  5807. ;; No time of day designation if it is only
  5808. ;; a reminder.
  5809. ((and (/= current deadline) (/= current repeat)) nil)
  5810. ((string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
  5811. (concat (substring s (match-beginning 1)) " "))
  5812. (t 'time)))
  5813. (item
  5814. (org-agenda-format-item
  5815. ;; Insert appropriate suffixes before deadlines.
  5816. ;; Those only apply to today agenda.
  5817. (pcase-let ((`(,now ,future ,past)
  5818. org-agenda-deadline-leaders))
  5819. (cond
  5820. ((and today? (< deadline today)) (format past (- diff)))
  5821. ((and today? (> deadline today)) (format future diff))
  5822. (t now)))
  5823. head level category tags time))
  5824. (face (org-agenda-deadline-face
  5825. (- 1 (/ (float diff) (max wdays 1)))))
  5826. (upcoming? (and today? (> deadline today)))
  5827. (warntime (get-text-property (point) 'org-appt-warntime)))
  5828. (org-add-props item props
  5829. 'org-marker (org-agenda-new-marker pos)
  5830. 'org-hd-marker (org-agenda-new-marker (line-beginning-position))
  5831. 'warntime warntime
  5832. 'level level
  5833. 'ts-date deadline
  5834. 'priority
  5835. ;; Adjust priority to today reminders about deadlines.
  5836. ;; Overdue deadlines get the highest priority
  5837. ;; increase, then imminent deadlines and eventually
  5838. ;; more distant deadlines.
  5839. (let ((adjust (if today? (- diff) 0)))
  5840. (+ adjust (org-get-priority item)))
  5841. 'todo-state todo-state
  5842. 'type (if upcoming? "upcoming-deadline" "deadline")
  5843. 'date (if upcoming? date deadline)
  5844. 'face (if done? 'org-agenda-done face)
  5845. 'undone-face face
  5846. 'done-face 'org-agenda-done)
  5847. (push item deadline-items))))))
  5848. (nreverse deadline-items)))
  5849. (defun org-agenda-deadline-face (fraction)
  5850. "Return the face to displaying a deadline item.
  5851. FRACTION is what fraction of the head-warning time has passed."
  5852. (assoc-default fraction org-agenda-deadline-faces #'<=))
  5853. (defun org-agenda-get-scheduled (&optional deadlines with-hour)
  5854. "Return the scheduled information for agenda display.
  5855. Optional argument DEADLINES is a list of deadline items to be
  5856. displayed in agenda view. When WITH-HOUR is non-nil, only return
  5857. scheduled items with an hour specification like [h]h:mm."
  5858. (with-no-warnings (defvar date))
  5859. (let* ((props (list 'org-not-done-regexp org-not-done-regexp
  5860. 'org-todo-regexp org-todo-regexp
  5861. 'org-complex-heading-regexp org-complex-heading-regexp
  5862. 'done-face 'org-agenda-done
  5863. 'mouse-face 'highlight
  5864. 'help-echo
  5865. (format "mouse-2 or RET jump to Org file %s"
  5866. (abbreviate-file-name buffer-file-name))))
  5867. (regexp (if with-hour
  5868. org-scheduled-time-hour-regexp
  5869. org-scheduled-time-regexp))
  5870. (today (org-today))
  5871. (todayp (org-agenda-today-p date)) ; DATE bound by calendar.
  5872. (current (calendar-absolute-from-gregorian date))
  5873. (deadline-pos
  5874. (mapcar (lambda (d)
  5875. (let ((m (get-text-property 0 'org-hd-marker d)))
  5876. (and m (marker-position m))))
  5877. deadlines))
  5878. scheduled-items)
  5879. (goto-char (point-min))
  5880. (while (re-search-forward regexp nil t)
  5881. (catch :skip
  5882. (unless (save-match-data (org-at-planning-p)) (throw :skip nil))
  5883. (org-agenda-skip)
  5884. (let* ((s (match-string 1))
  5885. (pos (1- (match-beginning 1)))
  5886. (todo-state (save-match-data (org-get-todo-state)))
  5887. (donep (member todo-state org-done-keywords))
  5888. (sexp? (string-prefix-p "%%" s))
  5889. ;; SCHEDULE is the scheduled date for the entry. It is
  5890. ;; either the bare date or the last repeat, according
  5891. ;; to `org-agenda-prefer-last-repeat'.
  5892. (schedule
  5893. (cond
  5894. (sexp? (org-agenda--timestamp-to-absolute s current))
  5895. ((or (eq org-agenda-prefer-last-repeat t)
  5896. (member todo-state org-agenda-prefer-last-repeat))
  5897. (org-agenda--timestamp-to-absolute
  5898. s today 'past (current-buffer) pos))
  5899. (t (org-agenda--timestamp-to-absolute s))))
  5900. ;; REPEAT is the future repeat closest from CURRENT,
  5901. ;; according to `org-agenda-show-future-repeats'. If
  5902. ;; the latter is nil, or if the time stamp has no
  5903. ;; repeat part, default to SCHEDULE.
  5904. (repeat
  5905. (cond
  5906. (sexp? schedule)
  5907. ((<= current today) schedule)
  5908. ((not org-agenda-show-future-repeats) schedule)
  5909. (t
  5910. (let ((base (if (eq org-agenda-show-future-repeats 'next)
  5911. (1+ today)
  5912. current)))
  5913. (org-agenda--timestamp-to-absolute
  5914. s base 'future (current-buffer) pos)))))
  5915. (diff (- current schedule))
  5916. (warntime (get-text-property (point) 'org-appt-warntime))
  5917. (pastschedp (< schedule today))
  5918. (futureschedp (> schedule today))
  5919. (habitp (and (fboundp 'org-is-habit-p) (org-is-habit-p)))
  5920. (suppress-delay
  5921. (let ((deadline (and org-agenda-skip-scheduled-delay-if-deadline
  5922. (org-entry-get nil "DEADLINE"))))
  5923. (cond
  5924. ((not deadline) nil)
  5925. ;; The current item has a deadline date, so
  5926. ;; evaluate its delay time.
  5927. ((integerp org-agenda-skip-scheduled-delay-if-deadline)
  5928. ;; Use global delay time.
  5929. (- org-agenda-skip-scheduled-delay-if-deadline))
  5930. ((eq org-agenda-skip-scheduled-delay-if-deadline
  5931. 'post-deadline)
  5932. ;; Set delay to no later than DEADLINE.
  5933. (min (- schedule
  5934. (org-agenda--timestamp-to-absolute deadline))
  5935. org-scheduled-delay-days))
  5936. (t 0))))
  5937. (ddays
  5938. (cond
  5939. ;; Nullify delay when a repeater triggered already
  5940. ;; and the delay is of the form --Xd.
  5941. ((and (string-match-p "--[0-9]+[hdwmy]" s)
  5942. (> schedule (org-agenda--timestamp-to-absolute s)))
  5943. 0)
  5944. (suppress-delay
  5945. (let ((org-scheduled-delay-days suppress-delay))
  5946. (org-get-wdays s t t)))
  5947. (t (org-get-wdays s t)))))
  5948. ;; Display scheduled items at base date (SCHEDULE), today if
  5949. ;; scheduled before the current date, and at any repeat past
  5950. ;; today. However, skip delayed items and items that have
  5951. ;; been displayed for more than `org-scheduled-past-days'.
  5952. (unless (and todayp
  5953. habitp
  5954. (bound-and-true-p org-habit-show-all-today))
  5955. (when (or (and (> ddays 0) (< diff ddays))
  5956. (> diff (or (and habitp org-habit-scheduled-past-days)
  5957. org-scheduled-past-days))
  5958. (> schedule current)
  5959. (and (/= current schedule)
  5960. (/= current today)
  5961. (/= current repeat)))
  5962. (throw :skip nil)))
  5963. ;; Possibly skip done tasks.
  5964. (when (and donep
  5965. (or org-agenda-skip-scheduled-if-done
  5966. (/= schedule current)))
  5967. (throw :skip nil))
  5968. ;; Skip entry if it already appears as a deadline, per
  5969. ;; `org-agenda-skip-scheduled-if-deadline-is-shown'. This
  5970. ;; doesn't apply to habits.
  5971. (when (pcase org-agenda-skip-scheduled-if-deadline-is-shown
  5972. ((guard
  5973. (or (not (memq (line-beginning-position 0) deadline-pos))
  5974. habitp))
  5975. nil)
  5976. (`repeated-after-deadline
  5977. (let ((deadline (time-to-days
  5978. (org-get-deadline-time (point)))))
  5979. (and (<= schedule deadline) (> current deadline))))
  5980. (`not-today pastschedp)
  5981. (`t t)
  5982. (_ nil))
  5983. (throw :skip nil))
  5984. ;; Skip habits if `org-habit-show-habits' is nil, or if we
  5985. ;; only show them for today. Also skip done habits.
  5986. (when (and habitp
  5987. (or donep
  5988. (not (bound-and-true-p org-habit-show-habits))
  5989. (and (not todayp)
  5990. (bound-and-true-p
  5991. org-habit-show-habits-only-for-today))))
  5992. (throw :skip nil))
  5993. (save-excursion
  5994. (re-search-backward "^\\*+[ \t]+" nil t)
  5995. (goto-char (match-end 0))
  5996. (let* ((category (org-get-category))
  5997. (inherited-tags
  5998. (or (eq org-agenda-show-inherited-tags 'always)
  5999. (and (listp org-agenda-show-inherited-tags)
  6000. (memq 'agenda org-agenda-show-inherited-tags))
  6001. (and (eq org-agenda-show-inherited-tags t)
  6002. (or (eq org-agenda-use-tag-inheritance t)
  6003. (memq 'agenda
  6004. org-agenda-use-tag-inheritance)))))
  6005. (tags (org-get-tags nil (not inherited-tags)))
  6006. (level (make-string (org-reduced-level (org-outline-level))
  6007. ?\s))
  6008. (head (buffer-substring (point) (line-end-position)))
  6009. (time
  6010. (cond
  6011. ;; No time of day designation if it is only a
  6012. ;; reminder, except for habits, which always show
  6013. ;; the time of day. Habits are an exception
  6014. ;; because if there is a time of day, that is
  6015. ;; interpreted to mean they should usually happen
  6016. ;; then, even if doing the habit was missed.
  6017. ((and
  6018. (not habitp)
  6019. (/= current schedule)
  6020. (/= current repeat))
  6021. nil)
  6022. ((string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
  6023. (concat (substring s (match-beginning 1)) " "))
  6024. (t 'time)))
  6025. (item
  6026. (org-agenda-format-item
  6027. (pcase-let ((`(,first ,past) org-agenda-scheduled-leaders))
  6028. ;; Show a reminder of a past scheduled today.
  6029. (if (and todayp pastschedp)
  6030. (format past diff)
  6031. first))
  6032. head level category tags time nil habitp))
  6033. (face (cond ((and (not habitp) pastschedp)
  6034. 'org-scheduled-previously)
  6035. ((and habitp futureschedp)
  6036. 'org-agenda-done)
  6037. (todayp 'org-scheduled-today)
  6038. (t 'org-scheduled)))
  6039. (habitp (and habitp (org-habit-parse-todo))))
  6040. (org-add-props item props
  6041. 'undone-face face
  6042. 'face (if donep 'org-agenda-done face)
  6043. 'org-marker (org-agenda-new-marker pos)
  6044. 'org-hd-marker (org-agenda-new-marker (line-beginning-position))
  6045. 'type (if pastschedp "past-scheduled" "scheduled")
  6046. 'date (if pastschedp schedule date)
  6047. 'ts-date schedule
  6048. 'warntime warntime
  6049. 'level level
  6050. 'priority (if habitp (org-habit-get-priority habitp)
  6051. (+ 99 diff (org-get-priority item)))
  6052. 'org-habit-p habitp
  6053. 'todo-state todo-state)
  6054. (push item scheduled-items))))))
  6055. (nreverse scheduled-items)))
  6056. (defun org-agenda-get-blocks ()
  6057. "Return the date-range information for agenda display."
  6058. (with-no-warnings (defvar date))
  6059. (let* ((props (list 'face nil
  6060. 'org-not-done-regexp org-not-done-regexp
  6061. 'org-todo-regexp org-todo-regexp
  6062. 'org-complex-heading-regexp org-complex-heading-regexp
  6063. 'mouse-face 'highlight
  6064. 'help-echo
  6065. (format "mouse-2 or RET jump to org file %s"
  6066. (abbreviate-file-name buffer-file-name))))
  6067. (regexp org-tr-regexp)
  6068. (d0 (calendar-absolute-from-gregorian date))
  6069. marker hdmarker ee txt d1 d2 s1 s2 category
  6070. level todo-state tags pos head donep inherited-tags)
  6071. (goto-char (point-min))
  6072. (while (re-search-forward regexp nil t)
  6073. (catch :skip
  6074. (org-agenda-skip)
  6075. (setq pos (point))
  6076. (let ((start-time (match-string 1))
  6077. (end-time (match-string 2)))
  6078. (setq s1 (match-string 1)
  6079. s2 (match-string 2)
  6080. d1 (time-to-days
  6081. (condition-case err
  6082. (org-time-string-to-time s1)
  6083. (error
  6084. (error
  6085. "Bad timestamp %S at %d in buffer %S\nError was: %s"
  6086. s1
  6087. pos
  6088. (current-buffer)
  6089. (error-message-string err)))))
  6090. d2 (time-to-days
  6091. (condition-case err
  6092. (org-time-string-to-time s2)
  6093. (error
  6094. (error
  6095. "Bad timestamp %S at %d in buffer %S\nError was: %s"
  6096. s2
  6097. pos
  6098. (current-buffer)
  6099. (error-message-string err))))))
  6100. (when (and (> (- d0 d1) -1) (> (- d2 d0) -1))
  6101. ;; Only allow days between the limits, because the normal
  6102. ;; date stamps will catch the limits.
  6103. (save-excursion
  6104. (setq todo-state (org-get-todo-state))
  6105. (setq donep (member todo-state org-done-keywords))
  6106. (when (and donep org-agenda-skip-timestamp-if-done)
  6107. (throw :skip t))
  6108. (setq marker (org-agenda-new-marker (point))
  6109. category (org-get-category))
  6110. (if (not (re-search-backward org-outline-regexp-bol nil t))
  6111. (throw :skip nil)
  6112. (goto-char (match-beginning 0))
  6113. (setq hdmarker (org-agenda-new-marker (point))
  6114. inherited-tags
  6115. (or (eq org-agenda-show-inherited-tags 'always)
  6116. (and (listp org-agenda-show-inherited-tags)
  6117. (memq 'agenda org-agenda-show-inherited-tags))
  6118. (and (eq org-agenda-show-inherited-tags t)
  6119. (or (eq org-agenda-use-tag-inheritance t)
  6120. (memq 'agenda org-agenda-use-tag-inheritance))))
  6121. tags (org-get-tags nil (not inherited-tags)))
  6122. (setq level (make-string (org-reduced-level (org-outline-level)) ? ))
  6123. (looking-at "\\*+[ \t]+\\(.*\\)")
  6124. (setq head (match-string 1))
  6125. (let ((remove-re
  6126. (if org-agenda-remove-timeranges-from-blocks
  6127. (concat
  6128. "<" (regexp-quote s1) ".*?>"
  6129. "--"
  6130. "<" (regexp-quote s2) ".*?>")
  6131. nil)))
  6132. (setq txt (org-agenda-format-item
  6133. (format
  6134. (nth (if (= d1 d2) 0 1)
  6135. org-agenda-timerange-leaders)
  6136. (1+ (- d0 d1)) (1+ (- d2 d1)))
  6137. head level category tags
  6138. (save-match-data
  6139. (let ((hhmm1 (and (string-match org-ts-regexp1 s1)
  6140. (match-string 6 s1)))
  6141. (hhmm2 (and (string-match org-ts-regexp1 s2)
  6142. (match-string 6 s2))))
  6143. (cond ((string= hhmm1 hhmm2)
  6144. (concat "<" start-time ">--<" end-time ">"))
  6145. ((and (= d1 d0) (= d2 d0))
  6146. (concat "<" start-time ">--<" end-time ">"))
  6147. ((= d1 d0)
  6148. (concat "<" start-time ">"))
  6149. ((= d2 d0)
  6150. (concat "<" end-time ">")))))
  6151. remove-re))))
  6152. (org-add-props txt props
  6153. 'org-marker marker 'org-hd-marker hdmarker
  6154. 'type "block" 'date date
  6155. 'level level
  6156. 'todo-state todo-state
  6157. 'priority (org-get-priority txt))
  6158. (push txt ee))))
  6159. (goto-char pos)))
  6160. ;; Sort the entries by expiration date.
  6161. (nreverse ee)))
  6162. ;;; Agenda presentation and sorting
  6163. (defvar org-prefix-has-time nil
  6164. "A flag, set by `org-compile-prefix-format'.
  6165. The flag is set if the currently compiled format contains a `%t'.")
  6166. (defvar org-prefix-has-tag nil
  6167. "A flag, set by `org-compile-prefix-format'.
  6168. The flag is set if the currently compiled format contains a `%T'.")
  6169. (defvar org-prefix-has-effort nil
  6170. "A flag, set by `org-compile-prefix-format'.
  6171. The flag is set if the currently compiled format contains a `%e'.")
  6172. (defvar org-prefix-has-breadcrumbs nil
  6173. "A flag, set by `org-compile-prefix-format'.
  6174. The flag is set if the currently compiled format contains a `%b'.")
  6175. (defvar org-prefix-category-length nil
  6176. "Used by `org-compile-prefix-format' to remember the category field width.")
  6177. (defvar org-prefix-category-max-length nil
  6178. "Used by `org-compile-prefix-format' to remember the category field width.")
  6179. (defun org-agenda-get-category-icon (category)
  6180. "Return an image for CATEGORY according to `org-agenda-category-icon-alist'."
  6181. (cl-dolist (entry org-agenda-category-icon-alist)
  6182. (when (string-match-p (car entry) category)
  6183. (if (listp (cadr entry))
  6184. (cl-return (cadr entry))
  6185. (cl-return (apply #'create-image (cdr entry)))))))
  6186. (defun org-agenda-format-item (extra txt &optional level category tags dotime
  6187. remove-re habitp)
  6188. "Format TXT to be inserted into the agenda buffer.
  6189. In particular, add the prefix and corresponding text properties.
  6190. EXTRA must be a string to replace the `%s' specifier in the prefix format.
  6191. LEVEL may be a string to replace the `%l' specifier.
  6192. CATEGORY (a string, a symbol or nil) may be used to overrule the default
  6193. category taken from local variable or file name. It will replace the `%c'
  6194. specifier in the format.
  6195. DOTIME, when non-nil, indicates that a time-of-day should be extracted from
  6196. TXT for sorting of this entry, and for the `%t' specifier in the format.
  6197. When DOTIME is a string, this string is searched for a time before TXT is.
  6198. TAGS can be the tags of the headline.
  6199. Any match of REMOVE-RE will be removed from TXT."
  6200. ;; We keep the org-prefix-* variable values along with a compiled
  6201. ;; formatter, so that multiple agendas existing at the same time do
  6202. ;; not step on each other toes.
  6203. ;;
  6204. ;; It was inconvenient to make these variables buffer local in
  6205. ;; Agenda buffers, because this function expects to be called with
  6206. ;; the buffer where item comes from being current, and not agenda
  6207. ;; buffer
  6208. (let* ((bindings (car org-prefix-format-compiled))
  6209. (formatter (cadr org-prefix-format-compiled)))
  6210. (cl-loop for (var value) in bindings
  6211. do (set var value))
  6212. (save-match-data
  6213. ;; Diary entries sometimes have extra whitespace at the beginning
  6214. (setq txt (org-trim txt))
  6215. ;; Fix the tags part in txt
  6216. (setq txt (org-agenda-fix-displayed-tags
  6217. txt tags
  6218. org-agenda-show-inherited-tags
  6219. org-agenda-hide-tags-regexp))
  6220. (with-no-warnings
  6221. ;; `time', `tag', `effort' are needed for the eval of the prefix format.
  6222. ;; Based on what I see in `org-compile-prefix-format', I added
  6223. ;; a few more.
  6224. (defvar breadcrumbs) (defvar category) (defvar category-icon)
  6225. (defvar effort) (defvar extra)
  6226. (defvar level) (defvar tag) (defvar time))
  6227. (let* ((category (or category
  6228. (if buffer-file-name
  6229. (file-name-sans-extension
  6230. (file-name-nondirectory buffer-file-name))
  6231. "")))
  6232. (category-icon (org-agenda-get-category-icon category))
  6233. (category-icon (if category-icon
  6234. (propertize " " 'display category-icon)
  6235. ""))
  6236. (effort (and (not (string= txt ""))
  6237. (get-text-property 1 'effort txt)))
  6238. (tag (if tags (nth (1- (length tags)) tags) ""))
  6239. (time-grid-trailing-characters (nth 2 org-agenda-time-grid))
  6240. (extra (or (and (not habitp) extra) ""))
  6241. time
  6242. (ts (when dotime (concat
  6243. (if (stringp dotime) dotime "")
  6244. (and org-agenda-search-headline-for-time txt))))
  6245. (time-of-day (and dotime (org-get-time-of-day ts)))
  6246. stamp plain s0 s1 s2 rtn srp l
  6247. duration breadcrumbs)
  6248. (and (derived-mode-p 'org-mode) buffer-file-name
  6249. (add-to-list 'org-agenda-contributing-files buffer-file-name))
  6250. (when (and dotime time-of-day)
  6251. ;; Extract starting and ending time and move them to prefix
  6252. (when (or (setq stamp (string-match org-stamp-time-of-day-regexp ts))
  6253. (setq plain (string-match org-plain-time-of-day-regexp ts)))
  6254. (setq s0 (match-string 0 ts)
  6255. srp (and stamp (match-end 3))
  6256. s1 (match-string (if plain 1 2) ts)
  6257. s2 (match-string (if plain 8 (if srp 4 6)) ts))
  6258. ;; If the times are in TXT (not in DOTIMES), and the prefix will list
  6259. ;; them, we might want to remove them there to avoid duplication.
  6260. ;; The user can turn this off with a variable.
  6261. (when (and org-prefix-has-time
  6262. org-agenda-remove-times-when-in-prefix (or stamp plain)
  6263. (string-match (concat (regexp-quote s0) " *") txt)
  6264. (not (equal ?\] (string-to-char (substring txt (match-end 0)))))
  6265. (if (eq org-agenda-remove-times-when-in-prefix 'beg)
  6266. (= (match-beginning 0) 0)
  6267. t))
  6268. (setq txt (replace-match "" nil nil txt))))
  6269. ;; Normalize the time(s) to 24 hour
  6270. (when s1 (setq s1 (org-get-time-of-day s1 'string t)))
  6271. (when s2 (setq s2 (org-get-time-of-day s2 'string t)))
  6272. ;; Try to set s2 if s1 and
  6273. ;; `org-agenda-default-appointment-duration' are set
  6274. (when (and s1 (not s2) org-agenda-default-appointment-duration)
  6275. (setq s2
  6276. (org-duration-from-minutes
  6277. (+ (org-duration-to-minutes s1 t)
  6278. org-agenda-default-appointment-duration)
  6279. nil t)))
  6280. ;; Compute the duration
  6281. (when s2
  6282. (setq duration (- (org-duration-to-minutes s2)
  6283. (org-duration-to-minutes s1)))))
  6284. (when (string-match org-tag-group-re txt)
  6285. ;; Tags are in the string
  6286. (if (or (eq org-agenda-remove-tags t)
  6287. (and org-agenda-remove-tags
  6288. org-prefix-has-tag))
  6289. (setq txt (replace-match "" t t txt))
  6290. (setq txt (replace-match
  6291. (concat (make-string (max (- 50 (length txt)) 1) ?\ )
  6292. (match-string 1 txt))
  6293. t t txt))))
  6294. (when remove-re
  6295. (while (string-match remove-re txt)
  6296. (setq txt (replace-match "" t t txt))))
  6297. ;; Set org-heading property on `txt' to mark the start of the
  6298. ;; heading.
  6299. (add-text-properties 0 (length txt) '(org-heading t) txt)
  6300. ;; Prepare the variables needed in the eval of the compiled format
  6301. (when org-prefix-has-breadcrumbs
  6302. (setq breadcrumbs (org-with-point-at (org-get-at-bol 'org-marker)
  6303. (let ((s (org-format-outline-path (org-get-outline-path)
  6304. (1- (frame-width))
  6305. nil org-agenda-breadcrumbs-separator)))
  6306. (if (eq "" s) "" (concat s org-agenda-breadcrumbs-separator))))))
  6307. (setq time (cond (s2 (concat
  6308. (org-agenda-time-of-day-to-ampm-maybe s1)
  6309. "-" (org-agenda-time-of-day-to-ampm-maybe s2)
  6310. (when org-agenda-timegrid-use-ampm " ")))
  6311. (s1 (concat
  6312. (org-agenda-time-of-day-to-ampm-maybe s1)
  6313. (if org-agenda-timegrid-use-ampm
  6314. (concat time-grid-trailing-characters " ")
  6315. time-grid-trailing-characters)))
  6316. (t ""))
  6317. category (if (symbolp category) (symbol-name category) category)
  6318. level (or level ""))
  6319. (if (string-match org-link-bracket-re category)
  6320. (progn
  6321. (setq l (string-width (or (match-string 2) (match-string 1))))
  6322. (when (< l (or org-prefix-category-length 0))
  6323. (setq category (copy-sequence category))
  6324. (org-add-props category nil
  6325. 'extra-space (make-string
  6326. (- org-prefix-category-length l 1) ?\ ))))
  6327. (when (and org-prefix-category-max-length
  6328. (>= (length category) org-prefix-category-max-length))
  6329. (setq category (substring category 0 (1- org-prefix-category-max-length)))))
  6330. ;; Evaluate the compiled format
  6331. (setq rtn (concat (eval formatter t) txt))
  6332. ;; And finally add the text properties
  6333. (remove-text-properties 0 (length rtn) '(line-prefix t wrap-prefix t) rtn)
  6334. (org-add-props rtn nil
  6335. 'org-category category
  6336. 'tags (mapcar #'org-downcase-keep-props tags)
  6337. 'org-priority-highest org-priority-highest
  6338. 'org-priority-lowest org-priority-lowest
  6339. 'time-of-day time-of-day
  6340. 'duration duration
  6341. 'breadcrumbs breadcrumbs
  6342. 'txt txt
  6343. 'level level
  6344. 'time time
  6345. 'extra extra
  6346. 'format org-prefix-format-compiled
  6347. 'dotime dotime)))))
  6348. (defun org-agenda-fix-displayed-tags (txt tags add-inherited hide-re)
  6349. "Remove tags string from TXT, and add a modified list of tags.
  6350. The modified list may contain inherited tags, and tags matched by
  6351. `org-agenda-hide-tags-regexp' will be removed."
  6352. (when (or add-inherited hide-re)
  6353. (when (string-match org-tag-group-re txt)
  6354. (setq txt (substring txt 0 (match-beginning 0))))
  6355. (setq tags
  6356. (delq nil
  6357. (mapcar (lambda (tg)
  6358. (if (or (and hide-re (string-match hide-re tg))
  6359. (and (not add-inherited)
  6360. (get-text-property 0 'inherited tg)))
  6361. nil
  6362. tg))
  6363. tags)))
  6364. (when tags
  6365. (let ((have-i (get-text-property 0 'inherited (car tags)))
  6366. i)
  6367. (setq txt (concat txt " :"
  6368. (mapconcat
  6369. (lambda (x)
  6370. (setq i (get-text-property 0 'inherited x))
  6371. (if (and have-i (not i))
  6372. (progn
  6373. (setq have-i nil)
  6374. (concat ":" x))
  6375. x))
  6376. tags ":")
  6377. (if have-i "::" ":"))))))
  6378. txt)
  6379. (defun org-downcase-keep-props (s)
  6380. (let ((props (text-properties-at 0 s)))
  6381. (setq s (downcase s))
  6382. (add-text-properties 0 (length s) props s)
  6383. s))
  6384. (defvar org-agenda-sorting-strategy) ;; because the def is in a let form
  6385. (defun org-agenda-add-time-grid-maybe (list ndays todayp)
  6386. "Add a time-grid for agenda items which need it.
  6387. LIST is the list of agenda items formatted by `org-agenda-list'.
  6388. NDAYS is the span of the current agenda view.
  6389. TODAYP is t when the current agenda view is on today."
  6390. (catch 'exit
  6391. (cond ((not org-agenda-use-time-grid) (throw 'exit list))
  6392. ((and todayp (member 'today (car org-agenda-time-grid))))
  6393. ((and (= ndays 1) (member 'daily (car org-agenda-time-grid))))
  6394. ((member 'weekly (car org-agenda-time-grid)))
  6395. (t (throw 'exit list)))
  6396. (let* ((have (delq nil (mapcar
  6397. (lambda (x) (get-text-property 1 'time-of-day x))
  6398. list)))
  6399. (string (nth 3 org-agenda-time-grid))
  6400. (gridtimes (nth 1 org-agenda-time-grid))
  6401. (req (car org-agenda-time-grid))
  6402. (remove (member 'remove-match req))
  6403. new time)
  6404. (when (and (member 'require-timed req) (not have))
  6405. ;; don't show empty grid
  6406. (throw 'exit list))
  6407. (while (setq time (pop gridtimes))
  6408. (unless (and remove (member time have))
  6409. (setq time (replace-regexp-in-string " " "0" (format "%04s" time)))
  6410. (push (org-agenda-format-item
  6411. nil string nil "" nil
  6412. (concat (substring time 0 -2) ":" (substring time -2)))
  6413. new)
  6414. (put-text-property
  6415. 2 (length (car new)) 'face 'org-time-grid (car new))))
  6416. (when (and todayp org-agenda-show-current-time-in-grid)
  6417. (push (org-agenda-format-item
  6418. nil org-agenda-current-time-string nil "" nil
  6419. (format-time-string "%H:%M "))
  6420. new)
  6421. (put-text-property
  6422. 2 (length (car new)) 'face 'org-agenda-current-time (car new)))
  6423. (if (member 'time-up org-agenda-sorting-strategy-selected)
  6424. (append new list)
  6425. (append list new)))))
  6426. (defun org-compile-prefix-format (key)
  6427. "Compile the prefix format into a Lisp form that can be evaluated.
  6428. The resulting form and associated variable bindings is returned
  6429. and stored in the variable `org-prefix-format-compiled'."
  6430. (setq org-prefix-has-time nil
  6431. org-prefix-has-tag nil
  6432. org-prefix-category-length nil
  6433. org-prefix-has-effort nil
  6434. org-prefix-has-breadcrumbs nil)
  6435. (let ((s (cond
  6436. ((stringp org-agenda-prefix-format)
  6437. org-agenda-prefix-format)
  6438. ((assq key org-agenda-prefix-format)
  6439. (cdr (assq key org-agenda-prefix-format)))
  6440. (t " %-12:c%?-12t% s")))
  6441. (start 0)
  6442. varform vars var c f opt) ;; e
  6443. (while (string-match "%\\(\\?\\)?\\([-+]?[0-9.]*\\)\\([ .;,:!?=|/<>]?\\)\\([cltseib]\\|(.+)\\)"
  6444. s start)
  6445. (setq var (or (cdr (assoc (match-string 4 s)
  6446. '(("c" . category) ("t" . time) ("l" . level) ("s" . extra)
  6447. ("i" . category-icon) ("T" . tag) ("e" . effort) ("b" . breadcrumbs))))
  6448. 'eval)
  6449. c (or (match-string 3 s) "")
  6450. opt (match-beginning 1)
  6451. start (1+ (match-beginning 0)))
  6452. (cl-case var
  6453. (time (setq org-prefix-has-time t))
  6454. (tag (setq org-prefix-has-tag t))
  6455. (effort (setq org-prefix-has-effort t))
  6456. (breadcrumbs (setq org-prefix-has-breadcrumbs t)))
  6457. (setq f (concat "%" (match-string 2 s) "s"))
  6458. (when (eq var 'category)
  6459. (setq org-prefix-category-length
  6460. (floor (abs (string-to-number (match-string 2 s)))))
  6461. (setq org-prefix-category-max-length
  6462. (let ((x (match-string 2 s)))
  6463. (save-match-data
  6464. (and (string-match "\\.[0-9]+" x)
  6465. (string-to-number (substring (match-string 0 x) 1)))))))
  6466. (if (eq var 'eval)
  6467. (setq varform `(format ,f (org-eval ,(read (match-string 4 s)))))
  6468. (if opt
  6469. (setq varform
  6470. `(if (member ,var '("" nil))
  6471. ""
  6472. (format ,f (concat ,var ,c))))
  6473. (setq varform
  6474. `(format ,f (if (member ,var '("" nil)) ""
  6475. (concat ,var ,c (get-text-property 0 'extra-space ,var)))))))
  6476. (setq s (replace-match "%s" t nil s))
  6477. (push varform vars))
  6478. (setq vars (nreverse vars))
  6479. (with-current-buffer (or org-agenda-buffer (current-buffer))
  6480. (setq org-prefix-format-compiled
  6481. (list
  6482. `((org-prefix-has-time ,org-prefix-has-time)
  6483. (org-prefix-has-tag ,org-prefix-has-tag)
  6484. (org-prefix-category-length ,org-prefix-category-length)
  6485. (org-prefix-has-effort ,org-prefix-has-effort)
  6486. (org-prefix-has-breadcrumbs ,org-prefix-has-breadcrumbs))
  6487. `(format ,s ,@vars))))))
  6488. (defun org-set-sorting-strategy (key)
  6489. (setq org-agenda-sorting-strategy-selected
  6490. (if (symbolp (car org-agenda-sorting-strategy))
  6491. ;; the old format
  6492. org-agenda-sorting-strategy
  6493. (or (cdr (assq key org-agenda-sorting-strategy))
  6494. (cdr (assq 'agenda org-agenda-sorting-strategy))
  6495. '(time-up category-keep priority-down)))))
  6496. (defun org-get-time-of-day (s &optional string mod24)
  6497. "Check string S for a time of day.
  6498. If found, return it as a military time number between 0 and 2400.
  6499. If not found, return nil.
  6500. The optional STRING argument forces conversion into a 5 character wide string
  6501. HH:MM."
  6502. (save-match-data
  6503. (when
  6504. (and
  6505. (or (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)\\([AaPp][Mm]\\)?\\> *" s)
  6506. (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?\\([AaPp][Mm]\\)\\> *" s))
  6507. (not (eq (get-text-property 1 'face s) 'org-link)))
  6508. (let* ((h (string-to-number (match-string 1 s)))
  6509. (m (if (match-end 3) (string-to-number (match-string 3 s)) 0))
  6510. (ampm (when (match-end 4) (downcase (match-string 4 s))))
  6511. (am-p (equal ampm "am"))
  6512. (h1 (cond ((not ampm) h)
  6513. ((= h 12) (if am-p 0 12))
  6514. (t (+ h (if am-p 0 12)))))
  6515. (h2 (if (and string mod24 (not (and (= m 0) (= h1 24))))
  6516. (mod h1 24) h1))
  6517. (t0 (+ (* 100 h2) m))
  6518. (t1 (concat (if (>= h1 24) "+" " ")
  6519. (if (and org-agenda-time-leading-zero
  6520. (< t0 1000)) "0" "")
  6521. (if (< t0 100) "0" "")
  6522. (if (< t0 10) "0" "")
  6523. (number-to-string t0))))
  6524. (if string (concat (substring t1 -4 -2) ":" (substring t1 -2)) t0)))))
  6525. (defvar org-agenda-before-sorting-filter-function nil
  6526. "Function to be applied to agenda items prior to sorting.
  6527. Prior to sorting also means just before they are inserted into the agenda.
  6528. To aid sorting, you may revisit the original entries and add more text
  6529. properties which will later be used by the sorting functions.
  6530. The function should take a string argument, an agenda line.
  6531. It has access to the text properties in that line, which contain among
  6532. other things, the property `org-hd-marker' that points to the entry
  6533. where the line comes from. Note that not all lines going into the agenda
  6534. have this property, only most.
  6535. The function should return the modified string. It is probably best
  6536. to ONLY change text properties.
  6537. You can also use this function as a filter, by returning nil for lines
  6538. you don't want to have in the agenda at all. For this application, you
  6539. could bind the variable in the options section of a custom command.")
  6540. (defun org-agenda-finalize-entries (list &optional type)
  6541. "Sort, limit and concatenate the LIST of agenda items.
  6542. The optional argument TYPE tells the agenda type."
  6543. (let ((max-effort (cond ((listp org-agenda-max-effort)
  6544. (cdr (assoc type org-agenda-max-effort)))
  6545. (t org-agenda-max-effort)))
  6546. (max-todo (cond ((listp org-agenda-max-todos)
  6547. (cdr (assoc type org-agenda-max-todos)))
  6548. (t org-agenda-max-todos)))
  6549. (max-tags (cond ((listp org-agenda-max-tags)
  6550. (cdr (assoc type org-agenda-max-tags)))
  6551. (t org-agenda-max-tags)))
  6552. (max-entries (cond ((listp org-agenda-max-entries)
  6553. (cdr (assoc type org-agenda-max-entries)))
  6554. (t org-agenda-max-entries))))
  6555. (when org-agenda-before-sorting-filter-function
  6556. (setq list
  6557. (delq nil
  6558. (mapcar
  6559. org-agenda-before-sorting-filter-function list))))
  6560. (setq list (mapcar #'org-agenda-highlight-todo list)
  6561. list (mapcar #'identity (sort list #'org-entries-lessp)))
  6562. (when max-effort
  6563. (setq list (org-agenda-limit-entries
  6564. list 'effort-minutes max-effort
  6565. (lambda (e) (or e (if org-agenda-sort-noeffort-is-high
  6566. 32767 -1))))))
  6567. (when max-todo
  6568. (setq list (org-agenda-limit-entries list 'todo-state max-todo)))
  6569. (when max-tags
  6570. (setq list (org-agenda-limit-entries list 'tags max-tags)))
  6571. (when max-entries
  6572. (setq list (org-agenda-limit-entries list 'org-hd-marker max-entries)))
  6573. (when (and org-agenda-dim-blocked-tasks org-blocker-hook)
  6574. (setq list (mapcar #'org-agenda--mark-blocked-entry list)))
  6575. (mapconcat #'identity list "\n")))
  6576. (defun org-agenda-limit-entries (list prop limit &optional fn)
  6577. "Limit the number of agenda entries."
  6578. (let ((include (and limit (< limit 0))))
  6579. (if limit
  6580. (let ((fun (or fn (lambda (p) (when p 1))))
  6581. (lim 0))
  6582. (delq nil
  6583. (mapcar
  6584. (lambda (e)
  6585. (let ((pval (funcall
  6586. fun (get-text-property (1- (length e))
  6587. prop e))))
  6588. (when pval (setq lim (+ lim pval)))
  6589. (cond ((and pval (<= lim (abs limit))) e)
  6590. ((and include (not pval)) e))))
  6591. list)))
  6592. list)))
  6593. (defun org-agenda-limit-interactively (remove)
  6594. "In agenda, interactively limit entries to various maximums."
  6595. (interactive "P")
  6596. (if remove
  6597. (progn (setq org-agenda-max-entries nil
  6598. org-agenda-max-todos nil
  6599. org-agenda-max-tags nil
  6600. org-agenda-max-effort nil)
  6601. (org-agenda-redo))
  6602. (let* ((max (read-char "Number of [e]ntries [t]odos [T]ags [E]ffort? "))
  6603. (msg (cond ((= max ?E) "How many minutes? ")
  6604. ((= max ?e) "How many entries? ")
  6605. ((= max ?t) "How many TODO entries? ")
  6606. ((= max ?T) "How many tagged entries? ")
  6607. (t (user-error "Wrong input"))))
  6608. (num (string-to-number (read-from-minibuffer msg))))
  6609. (cond ((equal max ?e)
  6610. (let ((org-agenda-max-entries num)) (org-agenda-redo)))
  6611. ((equal max ?t)
  6612. (let ((org-agenda-max-todos num)) (org-agenda-redo)))
  6613. ((equal max ?T)
  6614. (let ((org-agenda-max-tags num)) (org-agenda-redo)))
  6615. ((equal max ?E)
  6616. (let ((org-agenda-max-effort num)) (org-agenda-redo))))))
  6617. (org-agenda-fit-window-to-buffer))
  6618. (defun org-agenda-highlight-todo (x)
  6619. (let ((org-done-keywords org-done-keywords-for-agenda)
  6620. (case-fold-search nil)
  6621. re)
  6622. (if (eq x 'line)
  6623. (save-excursion
  6624. (beginning-of-line 1)
  6625. (setq re (org-get-at-bol 'org-todo-regexp))
  6626. (goto-char (or (text-property-any (point-at-bol) (point-at-eol) 'org-heading t) (point)))
  6627. (when (looking-at (concat "[ \t]*\\.*\\(" re "\\) +"))
  6628. (add-text-properties (match-beginning 0) (match-end 1)
  6629. (list 'face (org-get-todo-face 1)))
  6630. (let ((s (buffer-substring (match-beginning 1) (match-end 1))))
  6631. (delete-region (match-beginning 1) (1- (match-end 0)))
  6632. (goto-char (match-beginning 1))
  6633. (insert (format org-agenda-todo-keyword-format s)))))
  6634. (let ((pl (text-property-any 0 (length x) 'org-heading t x)))
  6635. (setq re (get-text-property 0 'org-todo-regexp x))
  6636. (when (and re
  6637. ;; Test `pl' because if there's no heading content,
  6638. ;; there's no point matching to highlight. Note
  6639. ;; that if we didn't test `pl' first, and there
  6640. ;; happened to be no keyword from `org-todo-regexp'
  6641. ;; on this heading line, then the `equal' comparison
  6642. ;; afterwards would spuriously succeed in the case
  6643. ;; where `pl' is nil -- causing an args-out-of-range
  6644. ;; error when we try to add text properties to text
  6645. ;; that isn't there.
  6646. pl
  6647. (equal (string-match (concat "\\(\\.*\\)" re "\\( +\\)")
  6648. x pl)
  6649. pl))
  6650. (add-text-properties
  6651. (or (match-end 1) (match-end 0)) (match-end 0)
  6652. (list 'face (org-get-todo-face (match-string 2 x)))
  6653. x)
  6654. (when (match-end 1)
  6655. (setq x
  6656. (concat
  6657. (substring x 0 (match-end 1))
  6658. (format org-agenda-todo-keyword-format
  6659. (match-string 2 x))
  6660. ;; Remove `display' property as the icon could leak
  6661. ;; on the white space.
  6662. (org-add-props " " (org-plist-delete (text-properties-at 0 x)
  6663. 'display))
  6664. (substring x (match-end 3)))))))
  6665. x)))
  6666. (defsubst org-cmp-values (a b property)
  6667. "Compare the numeric value of text PROPERTY for string A and B."
  6668. (let ((pa (or (get-text-property (1- (length a)) property a) 0))
  6669. (pb (or (get-text-property (1- (length b)) property b) 0)))
  6670. (cond ((> pa pb) +1)
  6671. ((< pa pb) -1))))
  6672. (defsubst org-cmp-effort (a b)
  6673. "Compare the effort values of string A and B."
  6674. (let* ((def (if org-agenda-sort-noeffort-is-high 32767 -1))
  6675. ;; `effort-minutes' property is not directly accessible from
  6676. ;; the strings, but is stored as a property in `txt'.
  6677. (ea (or (get-text-property
  6678. 0 'effort-minutes (get-text-property 0 'txt a))
  6679. def))
  6680. (eb (or (get-text-property
  6681. 0 'effort-minutes (get-text-property 0 'txt b))
  6682. def)))
  6683. (cond ((> ea eb) +1)
  6684. ((< ea eb) -1))))
  6685. (defsubst org-cmp-category (a b)
  6686. "Compare the string values of categories of strings A and B."
  6687. (let ((ca (or (get-text-property (1- (length a)) 'org-category a) ""))
  6688. (cb (or (get-text-property (1- (length b)) 'org-category b) "")))
  6689. (cond ((string-lessp ca cb) -1)
  6690. ((string-lessp cb ca) +1))))
  6691. (defsubst org-cmp-todo-state (a b)
  6692. "Compare the todo states of strings A and B."
  6693. (let* ((ma (or (get-text-property 1 'org-marker a)
  6694. (get-text-property 1 'org-hd-marker a)))
  6695. (mb (or (get-text-property 1 'org-marker b)
  6696. (get-text-property 1 'org-hd-marker b)))
  6697. (fa (and ma (marker-buffer ma)))
  6698. (fb (and mb (marker-buffer mb)))
  6699. (todo-kwds
  6700. (or (and fa (with-current-buffer fa org-todo-keywords-1))
  6701. (and fb (with-current-buffer fb org-todo-keywords-1))))
  6702. (ta (or (get-text-property 1 'todo-state a) ""))
  6703. (tb (or (get-text-property 1 'todo-state b) ""))
  6704. (la (- (length (member ta todo-kwds))))
  6705. (lb (- (length (member tb todo-kwds))))
  6706. (donepa (member ta org-done-keywords-for-agenda))
  6707. (donepb (member tb org-done-keywords-for-agenda)))
  6708. (cond ((and donepa (not donepb)) -1)
  6709. ((and (not donepa) donepb) +1)
  6710. ((< la lb) -1)
  6711. ((< lb la) +1))))
  6712. (defsubst org-cmp-alpha (a b)
  6713. "Compare the headlines, alphabetically."
  6714. (let* ((pla (text-property-any 0 (length a) 'org-heading t a))
  6715. (plb (text-property-any 0 (length b) 'org-heading t b))
  6716. (ta (and pla (substring a pla)))
  6717. (tb (and plb (substring b plb)))
  6718. (case-fold-search nil))
  6719. (when pla
  6720. (when (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp a) "")
  6721. "\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *")
  6722. ta)
  6723. (setq ta (substring ta (match-end 0))))
  6724. (setq ta (downcase ta)))
  6725. (when plb
  6726. (when (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp b) "")
  6727. "\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *")
  6728. tb)
  6729. (setq tb (substring tb (match-end 0))))
  6730. (setq tb (downcase tb)))
  6731. (cond ((not (or ta tb)) nil)
  6732. ((not ta) +1)
  6733. ((not tb) -1)
  6734. ((string-lessp ta tb) -1)
  6735. ((string-lessp tb ta) +1))))
  6736. (defsubst org-cmp-tag (a b)
  6737. "Compare the string values of the first tags of A and B."
  6738. (let ((ta (car (last (get-text-property 1 'tags a))))
  6739. (tb (car (last (get-text-property 1 'tags b)))))
  6740. (cond ((not (or ta tb)) nil)
  6741. ((not ta) +1)
  6742. ((not tb) -1)
  6743. ((string-lessp ta tb) -1)
  6744. ((string-lessp tb ta) +1))))
  6745. (defsubst org-cmp-time (a b)
  6746. "Compare the time-of-day values of strings A and B."
  6747. (let* ((def (if org-agenda-sort-notime-is-late 9901 -1))
  6748. (ta (or (get-text-property 1 'time-of-day a) def))
  6749. (tb (or (get-text-property 1 'time-of-day b) def)))
  6750. (cond ((< ta tb) -1)
  6751. ((< tb ta) +1))))
  6752. (defsubst org-cmp-ts (a b type)
  6753. "Compare the timestamps values of entries A and B.
  6754. When TYPE is \"scheduled\", \"deadline\", \"timestamp\" or
  6755. \"timestamp_ia\", compare within each of these type. When TYPE
  6756. is the empty string, compare all timestamps without respect of
  6757. their type."
  6758. (let* ((def (and (not org-agenda-sort-notime-is-late) -1))
  6759. (ta (or (and (string-match type (or (get-text-property 1 'type a) ""))
  6760. (get-text-property 1 'ts-date a))
  6761. def))
  6762. (tb (or (and (string-match type (or (get-text-property 1 'type b) ""))
  6763. (get-text-property 1 'ts-date b))
  6764. def)))
  6765. (cond ((if ta (and tb (< ta tb)) tb) -1)
  6766. ((if tb (and ta (< tb ta)) ta) +1))))
  6767. (defsubst org-cmp-habit-p (a b)
  6768. "Compare the todo states of strings A and B."
  6769. (let ((ha (get-text-property 1 'org-habit-p a))
  6770. (hb (get-text-property 1 'org-habit-p b)))
  6771. (cond ((and ha (not hb)) -1)
  6772. ((and (not ha) hb) +1))))
  6773. (defun org-entries-lessp (a b)
  6774. "Predicate for sorting agenda entries."
  6775. ;; The following variables will be used when the form is evaluated.
  6776. ;; So even though the compiler complains, keep them.
  6777. (let ((ss org-agenda-sorting-strategy-selected))
  6778. (org-dlet
  6779. ((timestamp-up (and (org-em 'timestamp-up 'timestamp-down ss)
  6780. (org-cmp-ts a b "")))
  6781. (timestamp-down (if timestamp-up (- timestamp-up) nil))
  6782. (scheduled-up (and (org-em 'scheduled-up 'scheduled-down ss)
  6783. (org-cmp-ts a b "scheduled")))
  6784. (scheduled-down (if scheduled-up (- scheduled-up) nil))
  6785. (deadline-up (and (org-em 'deadline-up 'deadline-down ss)
  6786. (org-cmp-ts a b "deadline")))
  6787. (deadline-down (if deadline-up (- deadline-up) nil))
  6788. (tsia-up (and (org-em 'tsia-up 'tsia-down ss)
  6789. (org-cmp-ts a b "timestamp_ia")))
  6790. (tsia-down (if tsia-up (- tsia-up) nil))
  6791. (ts-up (and (org-em 'ts-up 'ts-down ss)
  6792. (org-cmp-ts a b "timestamp")))
  6793. (ts-down (if ts-up (- ts-up) nil))
  6794. (time-up (and (org-em 'time-up 'time-down ss)
  6795. (org-cmp-time a b)))
  6796. (time-down (if time-up (- time-up) nil))
  6797. (stats-up (and (org-em 'stats-up 'stats-down ss)
  6798. (org-cmp-values a b 'org-stats)))
  6799. (stats-down (if stats-up (- stats-up) nil))
  6800. (priority-up (and (org-em 'priority-up 'priority-down ss)
  6801. (org-cmp-values a b 'priority)))
  6802. (priority-down (if priority-up (- priority-up) nil))
  6803. (effort-up (and (org-em 'effort-up 'effort-down ss)
  6804. (org-cmp-effort a b)))
  6805. (effort-down (if effort-up (- effort-up) nil))
  6806. (category-up (and (or (org-em 'category-up 'category-down ss)
  6807. (memq 'category-keep ss))
  6808. (org-cmp-category a b)))
  6809. (category-down (if category-up (- category-up) nil))
  6810. (category-keep (if category-up +1 nil))
  6811. (tag-up (and (org-em 'tag-up 'tag-down ss)
  6812. (org-cmp-tag a b)))
  6813. (tag-down (if tag-up (- tag-up) nil))
  6814. (todo-state-up (and (org-em 'todo-state-up 'todo-state-down ss)
  6815. (org-cmp-todo-state a b)))
  6816. (todo-state-down (if todo-state-up (- todo-state-up) nil))
  6817. (habit-up (and (org-em 'habit-up 'habit-down ss)
  6818. (org-cmp-habit-p a b)))
  6819. (habit-down (if habit-up (- habit-up) nil))
  6820. (alpha-up (and (org-em 'alpha-up 'alpha-down ss)
  6821. (org-cmp-alpha a b)))
  6822. (alpha-down (if alpha-up (- alpha-up) nil))
  6823. (need-user-cmp (org-em 'user-defined-up 'user-defined-down ss))
  6824. user-defined-up user-defined-down)
  6825. (when (and need-user-cmp org-agenda-cmp-user-defined
  6826. (functionp org-agenda-cmp-user-defined))
  6827. (setq user-defined-up
  6828. (funcall org-agenda-cmp-user-defined a b)
  6829. user-defined-down (if user-defined-up (- user-defined-up) nil)))
  6830. (cdr (assoc
  6831. (eval (cons 'or org-agenda-sorting-strategy-selected) t)
  6832. '((-1 . t) (1 . nil) (nil . nil)))))))
  6833. ;;; Agenda restriction lock
  6834. (defvar org-agenda-restriction-lock-overlay (make-overlay 1 1)
  6835. "Overlay to mark the headline to which agenda commands are restricted.")
  6836. (overlay-put org-agenda-restriction-lock-overlay
  6837. 'face 'org-agenda-restriction-lock)
  6838. (overlay-put org-agenda-restriction-lock-overlay
  6839. 'help-echo "Agendas are currently limited to this subtree.")
  6840. (delete-overlay org-agenda-restriction-lock-overlay)
  6841. (defun org-agenda-set-restriction-lock-from-agenda (arg)
  6842. "Set the restriction lock to the agenda item at point from within the agenda.
  6843. When called with a `\\[universal-argument]' prefix, restrict to
  6844. the file which contains the item.
  6845. Argument ARG is the prefix argument."
  6846. (interactive "P")
  6847. (unless (derived-mode-p 'org-agenda-mode)
  6848. (user-error "Not in an Org agenda buffer"))
  6849. (let* ((marker (or (org-get-at-bol 'org-marker)
  6850. (org-agenda-error)))
  6851. (buffer (marker-buffer marker))
  6852. (pos (marker-position marker)))
  6853. (with-current-buffer buffer
  6854. (goto-char pos)
  6855. (org-agenda-set-restriction-lock arg))))
  6856. ;;;###autoload
  6857. (defun org-agenda-set-restriction-lock (&optional type)
  6858. "Set restriction lock for agenda to current subtree or file.
  6859. When in a restricted subtree, remove it.
  6860. The restriction will span over the entire file if TYPE is `file',
  6861. or if type is '(4), or if the cursor is before the first headline
  6862. in the file. Otherwise, only apply the restriction to the current
  6863. subtree."
  6864. (interactive "P")
  6865. (if (and org-agenda-overriding-restriction
  6866. (member org-agenda-restriction-lock-overlay
  6867. (overlays-at (point)))
  6868. (equal (overlay-start org-agenda-restriction-lock-overlay)
  6869. (point)))
  6870. (org-agenda-remove-restriction-lock 'noupdate)
  6871. (org-agenda-remove-restriction-lock 'noupdate)
  6872. (and (equal type '(4)) (setq type 'file))
  6873. (setq type (cond
  6874. (type type)
  6875. ((org-at-heading-p) 'subtree)
  6876. ((condition-case nil (org-back-to-heading t) (error nil))
  6877. 'subtree)
  6878. (t 'file)))
  6879. (if (eq type 'subtree)
  6880. (progn
  6881. (setq org-agenda-restrict (current-buffer))
  6882. (setq org-agenda-overriding-restriction 'subtree)
  6883. (put 'org-agenda-files 'org-restrict
  6884. (list (buffer-file-name (buffer-base-buffer))))
  6885. (org-back-to-heading t)
  6886. (move-overlay org-agenda-restriction-lock-overlay
  6887. (point)
  6888. (if org-agenda-restriction-lock-highlight-subtree
  6889. (save-excursion (org-end-of-subtree t t) (point))
  6890. (point-at-eol)))
  6891. (move-marker org-agenda-restrict-begin (point))
  6892. (move-marker org-agenda-restrict-end
  6893. (save-excursion (org-end-of-subtree t t)))
  6894. (message "Locking agenda restriction to subtree"))
  6895. (put 'org-agenda-files 'org-restrict
  6896. (list (buffer-file-name (buffer-base-buffer))))
  6897. (setq org-agenda-restrict nil)
  6898. (setq org-agenda-overriding-restriction 'file)
  6899. (move-marker org-agenda-restrict-begin nil)
  6900. (move-marker org-agenda-restrict-end nil)
  6901. (message "Locking agenda restriction to file"))
  6902. (setq current-prefix-arg nil))
  6903. (org-agenda-maybe-redo))
  6904. (defun org-agenda-remove-restriction-lock (&optional noupdate)
  6905. "Remove agenda restriction lock."
  6906. (interactive "P")
  6907. (if (not org-agenda-restrict)
  6908. (message "No agenda restriction to remove.")
  6909. (delete-overlay org-agenda-restriction-lock-overlay)
  6910. (delete-overlay org-speedbar-restriction-lock-overlay)
  6911. (setq org-agenda-overriding-restriction nil)
  6912. (setq org-agenda-restrict nil)
  6913. (put 'org-agenda-files 'org-restrict nil)
  6914. (move-marker org-agenda-restrict-begin nil)
  6915. (move-marker org-agenda-restrict-end nil)
  6916. (setq current-prefix-arg nil)
  6917. (message "Agenda restriction lock removed")
  6918. (or noupdate (org-agenda-maybe-redo))))
  6919. (defun org-agenda-maybe-redo ()
  6920. "If there is any window showing the agenda view, update it."
  6921. (let ((w (get-buffer-window (or org-agenda-this-buffer-name
  6922. org-agenda-buffer-name)
  6923. t))
  6924. (w0 (selected-window)))
  6925. (when w
  6926. (select-window w)
  6927. (org-agenda-redo)
  6928. (select-window w0)
  6929. (if org-agenda-overriding-restriction
  6930. (message "Agenda view shifted to new %s restriction"
  6931. org-agenda-overriding-restriction)
  6932. (message "Agenda restriction lock removed")))))
  6933. ;;; Agenda commands
  6934. (defun org-agenda-check-type (error &rest types)
  6935. "Check if agenda buffer or component is of allowed type.
  6936. If ERROR is non-nil, throw an error, otherwise just return nil.
  6937. Allowed types are `agenda' `todo' `tags' `search'."
  6938. (cond ((not org-agenda-type)
  6939. (error "No Org agenda currently displayed"))
  6940. ((memq org-agenda-type types) t)
  6941. (error
  6942. (error "Not allowed in '%s'-type agenda buffer or component" org-agenda-type))
  6943. (t nil)))
  6944. (defun org-agenda-Quit ()
  6945. "Exit the agenda, killing the agenda buffer.
  6946. Like `org-agenda-quit', but kill the buffer even when
  6947. `org-agenda-sticky' is non-nil."
  6948. (interactive)
  6949. (org-agenda--quit))
  6950. (defun org-agenda-quit ()
  6951. "Exit the agenda.
  6952. When `org-agenda-sticky' is non-nil, bury the agenda buffer
  6953. instead of killing it.
  6954. When `org-agenda-restore-windows-after-quit' is non-nil, restore
  6955. the pre-agenda window configuration.
  6956. When column view is active, exit column view instead of the
  6957. agenda."
  6958. (interactive)
  6959. (org-agenda--quit org-agenda-sticky))
  6960. (defun org-agenda--quit (&optional bury)
  6961. (if org-agenda-columns-active
  6962. (org-columns-quit)
  6963. (let ((wconf org-agenda-pre-window-conf)
  6964. (buf (current-buffer))
  6965. (org-agenda-last-indirect-window
  6966. (and (eq org-indirect-buffer-display 'other-window)
  6967. org-agenda-last-indirect-buffer
  6968. (get-buffer-window org-agenda-last-indirect-buffer))))
  6969. (cond
  6970. ((eq org-agenda-window-setup 'other-frame)
  6971. (delete-frame))
  6972. ((eq org-agenda-window-setup 'other-tab)
  6973. (if (fboundp 'tab-bar-close-tab)
  6974. (tab-bar-close-tab)
  6975. (user-error "Your version of Emacs does not have tab bar mode support")))
  6976. ((and org-agenda-restore-windows-after-quit
  6977. wconf)
  6978. ;; Maybe restore the pre-agenda window configuration. Reset
  6979. ;; `org-agenda-pre-window-conf' before running
  6980. ;; `set-window-configuration', which loses the current buffer.
  6981. (setq org-agenda-pre-window-conf nil)
  6982. (set-window-configuration wconf))
  6983. (t
  6984. (when org-agenda-last-indirect-window
  6985. (delete-window org-agenda-last-indirect-window))
  6986. (and (not (eq org-agenda-window-setup 'current-window))
  6987. (not (one-window-p))
  6988. (delete-window))))
  6989. (if bury
  6990. ;; Set the agenda buffer as the current buffer instead of
  6991. ;; passing it as an argument to `bury-buffer' so that
  6992. ;; `bury-buffer' removes it from the window.
  6993. (with-current-buffer buf
  6994. (bury-buffer))
  6995. (kill-buffer buf)
  6996. (setq org-agenda-archives-mode nil
  6997. org-agenda-buffer nil)))))
  6998. (defun org-agenda-exit ()
  6999. "Exit the agenda, killing Org buffers loaded by the agenda.
  7000. Like `org-agenda-Quit', but kill any buffers that were created by
  7001. the agenda. Org buffers visited directly by the user will not be
  7002. touched. Also, exit the agenda even if it is in column view."
  7003. (interactive)
  7004. (when org-agenda-columns-active
  7005. (org-columns-quit))
  7006. (org-release-buffers org-agenda-new-buffers)
  7007. (setq org-agenda-new-buffers nil)
  7008. (org-agenda-Quit))
  7009. (defun org-agenda-kill-all-agenda-buffers ()
  7010. "Kill all buffers in `org-agenda-mode'.
  7011. This is used when toggling sticky agendas."
  7012. (interactive)
  7013. (let (blist)
  7014. (dolist (buf (buffer-list))
  7015. (when (with-current-buffer buf (eq major-mode 'org-agenda-mode))
  7016. (push buf blist)))
  7017. (mapc #'kill-buffer blist)))
  7018. (defun org-agenda-execute (arg)
  7019. "Execute another agenda command, keeping same window.
  7020. So this is just a shortcut for \\<global-map>`\\[org-agenda]', available
  7021. in the agenda."
  7022. (interactive "P")
  7023. (let ((org-agenda-window-setup 'current-window))
  7024. (org-agenda arg)))
  7025. (defun org-agenda-redo (&optional all)
  7026. "Rebuild possibly ALL agenda view(s) in the current buffer."
  7027. (interactive "P")
  7028. (defvar org-agenda-tag-filter-while-redo) ;FIXME: Where is this var used?
  7029. (let* ((p (or (and (looking-at "\\'") (1- (point))) (point)))
  7030. (cpa (unless (eq all t) current-prefix-arg))
  7031. (org-agenda-doing-sticky-redo org-agenda-sticky)
  7032. (org-agenda-sticky nil)
  7033. (org-agenda-buffer-name (or org-agenda-this-buffer-name
  7034. org-agenda-buffer-name))
  7035. (org-agenda-keep-modes t)
  7036. (tag-filter org-agenda-tag-filter)
  7037. (tag-preset (get 'org-agenda-tag-filter :preset-filter))
  7038. (top-hl-filter org-agenda-top-headline-filter)
  7039. (cat-filter org-agenda-category-filter)
  7040. (cat-preset (get 'org-agenda-category-filter :preset-filter))
  7041. (re-filter org-agenda-regexp-filter)
  7042. (re-preset (get 'org-agenda-regexp-filter :preset-filter))
  7043. (effort-filter org-agenda-effort-filter)
  7044. (effort-preset (get 'org-agenda-effort-filter :preset-filter))
  7045. (org-agenda-tag-filter-while-redo (or tag-filter tag-preset))
  7046. (cols org-agenda-columns-active)
  7047. (line (org-current-line))
  7048. (window-line (- line (org-current-line (window-start))))
  7049. (lprops (get 'org-agenda-redo-command 'org-lprops))
  7050. (redo-cmd (get-text-property p 'org-redo-cmd))
  7051. (last-args (get-text-property p 'org-last-args))
  7052. (org-agenda-overriding-cmd (get-text-property p 'org-series-cmd))
  7053. (org-agenda-overriding-cmd-arguments
  7054. (unless (eq all t)
  7055. (cond ((listp last-args)
  7056. (cons (or cpa (car last-args)) (cdr last-args)))
  7057. ((stringp last-args)
  7058. last-args))))
  7059. (series-redo-cmd (get-text-property p 'org-series-redo-cmd)))
  7060. (put 'org-agenda-tag-filter :preset-filter nil)
  7061. (put 'org-agenda-category-filter :preset-filter nil)
  7062. (put 'org-agenda-regexp-filter :preset-filter nil)
  7063. (put 'org-agenda-effort-filter :preset-filter nil)
  7064. (and cols (org-columns-quit))
  7065. (message "Rebuilding agenda buffer...")
  7066. (if series-redo-cmd
  7067. (eval series-redo-cmd t)
  7068. (cl-progv
  7069. (mapcar #'car lprops)
  7070. (mapcar (lambda (binding) (eval (cadr binding) t)) lprops)
  7071. (eval redo-cmd t)))
  7072. (setq org-agenda-undo-list nil
  7073. org-agenda-pending-undo-list nil
  7074. org-agenda-tag-filter tag-filter
  7075. org-agenda-category-filter cat-filter
  7076. org-agenda-regexp-filter re-filter
  7077. org-agenda-effort-filter effort-filter
  7078. org-agenda-top-headline-filter top-hl-filter)
  7079. (message "Rebuilding agenda buffer...done")
  7080. (put 'org-agenda-tag-filter :preset-filter tag-preset)
  7081. (put 'org-agenda-category-filter :preset-filter cat-preset)
  7082. (put 'org-agenda-regexp-filter :preset-filter re-preset)
  7083. (put 'org-agenda-effort-filter :preset-filter effort-preset)
  7084. (let ((tag (or tag-filter tag-preset))
  7085. (cat (or cat-filter cat-preset))
  7086. (effort (or effort-filter effort-preset))
  7087. (re (or re-filter re-preset)))
  7088. (when tag (org-agenda-filter-apply tag 'tag t))
  7089. (when cat (org-agenda-filter-apply cat 'category))
  7090. (when effort (org-agenda-filter-apply effort 'effort))
  7091. (when re (org-agenda-filter-apply re 'regexp)))
  7092. (and top-hl-filter (org-agenda-filter-top-headline-apply top-hl-filter))
  7093. (and cols (called-interactively-p 'any) (org-agenda-columns))
  7094. (org-goto-line line)
  7095. (when (called-interactively-p 'any) (recenter window-line))))
  7096. (defun org-agenda-redo-all (&optional exhaustive)
  7097. "Rebuild all agenda views in the current buffer.
  7098. With a prefix argument, do so in all agenda buffers."
  7099. (interactive "P")
  7100. (if exhaustive
  7101. (dolist (buffer (buffer-list))
  7102. (with-current-buffer buffer
  7103. (when (derived-mode-p 'org-agenda-mode)
  7104. (org-agenda-redo t))))
  7105. (org-agenda-redo t)))
  7106. (defvar org-global-tags-completion-table nil)
  7107. (defvar org-agenda-filter-form nil)
  7108. (defvar org-agenda-filtered-by-category nil)
  7109. (defsubst org-agenda-get-category ()
  7110. "Return the category of the agenda line."
  7111. (org-get-at-bol 'org-category))
  7112. (defun org-agenda-filter-by-category (strip)
  7113. "Filter lines in the agenda buffer that have a specific category.
  7114. The category is that of the current line.
  7115. With a `\\[universal-argument]' prefix argument, exclude the lines of that category.
  7116. When there is already a category filter in place, this command removes the
  7117. filter."
  7118. (interactive "P")
  7119. (if (and org-agenda-filtered-by-category
  7120. org-agenda-category-filter)
  7121. (org-agenda-filter-show-all-cat)
  7122. (let ((cat (org-no-properties (org-get-at-eol 'org-category 1))))
  7123. (cond
  7124. ((and cat strip)
  7125. (org-agenda-filter-apply
  7126. (push (concat "-" cat) org-agenda-category-filter) 'category))
  7127. (cat
  7128. (org-agenda-filter-apply
  7129. (setq org-agenda-category-filter
  7130. (list (concat "+" cat)))
  7131. 'category))
  7132. (t (error "No category at point"))))))
  7133. (defun org-find-top-headline (&optional pos)
  7134. "Find the topmost parent headline and return it.
  7135. POS when non-nil is the marker or buffer position to start the
  7136. search from."
  7137. (save-excursion
  7138. (with-current-buffer (if (markerp pos) (marker-buffer pos) (current-buffer))
  7139. (when pos (goto-char pos))
  7140. ;; Skip up to the topmost parent.
  7141. (while (org-up-heading-safe))
  7142. (ignore-errors
  7143. (replace-regexp-in-string
  7144. "^\\[[0-9]+/[0-9]+\\] *\\|^\\[%[0-9]+\\] *" ""
  7145. (nth 4 (org-heading-components)))))))
  7146. (defvar org-agenda-filtered-by-top-headline nil)
  7147. (defun org-agenda-filter-by-top-headline (strip)
  7148. "Keep only those lines that are descendants from the same top headline.
  7149. The top headline is that of the current line. With prefix arg STRIP, hide
  7150. all lines of the category at point."
  7151. (interactive "P")
  7152. (if org-agenda-filtered-by-top-headline
  7153. (progn
  7154. (setq org-agenda-filtered-by-top-headline nil
  7155. org-agenda-top-headline-filter nil)
  7156. (org-agenda-filter-show-all-top-filter))
  7157. (let ((toph (org-find-top-headline (org-get-at-bol 'org-hd-marker))))
  7158. (if toph (org-agenda-filter-top-headline-apply toph strip)
  7159. (error "No top-level headline at point")))))
  7160. (defvar org-agenda-regexp-filter nil)
  7161. (defun org-agenda-filter-by-regexp (strip-or-accumulate)
  7162. "Filter agenda entries by a regular expressions.
  7163. You will be prompted for the regular expression, and the agenda
  7164. view will only show entries that are matched by that expression.
  7165. With one `\\[universal-argument]' prefix argument, hide entries matching the regexp.
  7166. When there is already a regexp filter active, this command removed the
  7167. filter. However, with two `\\[universal-argument]' prefix arguments, add a new condition to
  7168. an already existing regexp filter."
  7169. (interactive "P")
  7170. (let* ((strip (equal strip-or-accumulate '(4)))
  7171. (accumulate (equal strip-or-accumulate '(16))))
  7172. (cond
  7173. ((and org-agenda-regexp-filter (not accumulate))
  7174. (org-agenda-filter-show-all-re)
  7175. (message "Regexp filter removed"))
  7176. (t (let ((flt (concat (if strip "-" "+")
  7177. (read-from-minibuffer
  7178. (if strip
  7179. "Hide entries matching regexp: "
  7180. "Narrow to entries matching regexp: ")))))
  7181. (push flt org-agenda-regexp-filter)
  7182. (org-agenda-filter-apply org-agenda-regexp-filter 'regexp))))))
  7183. (defvar org-agenda-effort-filter nil)
  7184. (defun org-agenda-filter-by-effort (strip-or-accumulate)
  7185. "Filter agenda entries by effort.
  7186. With no `\\[universal-argument]' prefix argument, keep entries matching the effort condition.
  7187. With one `\\[universal-argument]' prefix argument, filter out entries matching the condition.
  7188. With two `\\[universal-argument]' prefix arguments, add a second condition to the existing filter.
  7189. This last option is in practice not very useful, but it is available for
  7190. consistency with the other filter commands."
  7191. (interactive "P")
  7192. (let* ((efforts (split-string
  7193. (or (cdr (assoc-string (concat org-effort-property "_ALL")
  7194. org-global-properties
  7195. t))
  7196. "0 0:10 0:30 1:00 2:00 3:00 4:00 5:00 6:00 7:00")))
  7197. ;; XXX: the following handles only up to 10 different
  7198. ;; effort values.
  7199. (allowed-keys (if (null efforts) nil
  7200. (mapcar (lambda (n) (mod n 10)) ;turn 10 into 0
  7201. (number-sequence 1 (length efforts)))))
  7202. (keep (equal strip-or-accumulate '(16)))
  7203. (negative (equal strip-or-accumulate '(4)))
  7204. (current org-agenda-effort-filter)
  7205. (op nil))
  7206. (while (not (memq op '(?< ?> ?= ?_)))
  7207. (setq op (read-char-exclusive
  7208. "Effort operator? (> = or <) or press `_' again to remove filter")))
  7209. ;; Select appropriate duration. Ignore non-digit characters.
  7210. (if (eq op ?_)
  7211. (progn
  7212. (org-agenda-filter-show-all-effort)
  7213. (message "Effort filter removed"))
  7214. (let ((prompt
  7215. (apply #'format
  7216. (concat "Effort %c "
  7217. (mapconcat (lambda (s) (concat "[%d]" s))
  7218. efforts
  7219. " "))
  7220. op allowed-keys))
  7221. (eff -1))
  7222. (while (not (memq eff allowed-keys))
  7223. (message prompt)
  7224. (setq eff (- (read-char-exclusive) 48)))
  7225. (org-agenda-filter-show-all-effort)
  7226. (setq org-agenda-effort-filter
  7227. (append
  7228. (list (concat (if negative "-" "+")
  7229. (char-to-string op)
  7230. ;; Numbering is 1 2 3 ... 9 0, but we want
  7231. ;; 0 1 2 ... 8 9.
  7232. (nth (mod (1- eff) 10) efforts)))
  7233. (if keep current nil)))
  7234. (org-agenda-filter-apply org-agenda-effort-filter 'effort)))))
  7235. (defun org-agenda-filter (&optional strip-or-accumulate)
  7236. "Prompt for a general filter string and apply it to the agenda.
  7237. The string may contain filter elements like
  7238. +category
  7239. +tag
  7240. +<effort > and = are also allowed as effort operators
  7241. +/regexp/
  7242. Instead of `+', `-' is allowed to strip the agenda of matching entries.
  7243. `+' is optional if it is not required to separate two string parts.
  7244. Multiple filter elements can be concatenated without spaces, for example
  7245. +work-John<0:10-/plot/
  7246. selects entries with category `work' and effort estimates below 10 minutes,
  7247. and deselects entries with tag `John' or matching the regexp `plot'.
  7248. During entry of the filter, completion for tags, categories and effort
  7249. values is offered. Since the syntax for categories and tags is identical
  7250. there should be no overlap between categories and tags. If there is, tags
  7251. get priority.
  7252. A single `\\[universal-argument]' prefix arg STRIP-OR-ACCUMULATE will negate the
  7253. entire filter, which can be useful in connection with the prompt history.
  7254. A double `\\[universal-argument] \\[universal-argument]' prefix arg will add the new filter elements to the
  7255. existing ones. A shortcut for this is to add an additional `+' at the
  7256. beginning of the string, like `+-John'.
  7257. With a triple prefix argument, execute the computed filtering defined in
  7258. the variable `org-agenda-auto-exclude-function'."
  7259. (interactive "P")
  7260. (if (equal strip-or-accumulate '(64))
  7261. ;; Execute the auto-exclude action
  7262. (if (not org-agenda-auto-exclude-function)
  7263. (user-error "`org-agenda-auto-exclude-function' is undefined")
  7264. (org-agenda-filter-show-all-tag)
  7265. (setq org-agenda-tag-filter nil)
  7266. (dolist (tag (org-agenda-get-represented-tags))
  7267. (let ((modifier (funcall org-agenda-auto-exclude-function tag)))
  7268. (when modifier
  7269. (push modifier org-agenda-tag-filter))))
  7270. (unless (null org-agenda-tag-filter)
  7271. (org-agenda-filter-apply org-agenda-tag-filter 'tag 'expand)))
  7272. ;; Prompt for a filter and act
  7273. (let* ((tag-list (org-agenda-get-represented-tags))
  7274. (category-list (org-agenda-get-represented-categories))
  7275. (negate (equal strip-or-accumulate '(4)))
  7276. (cf (mapconcat #'identity org-agenda-category-filter ""))
  7277. (tf (mapconcat #'identity org-agenda-tag-filter ""))
  7278. ;; (rpl-fn (lambda (c) (replace-regexp-in-string "^\\+" "" (or (car c) ""))))
  7279. (ef (replace-regexp-in-string "^\\+" "" (or (car org-agenda-effort-filter) "")))
  7280. (rf (replace-regexp-in-string "^\\+" "" (or (car org-agenda-regexp-filter) "")))
  7281. (ff (concat cf tf ef (when (not (equal rf "")) (concat "/" rf "/"))))
  7282. (f-string (completing-read
  7283. (concat
  7284. (if negate "Negative filter" "Filter")
  7285. " [+cat-tag<0:10-/regexp/]: ")
  7286. #'org-agenda-filter-completion-function
  7287. nil nil ff))
  7288. (keep (or (if (string-match "^\\+[+-]" f-string)
  7289. (progn (setq f-string (substring f-string 1)) t))
  7290. (equal strip-or-accumulate '(16))))
  7291. (fc (if keep org-agenda-category-filter))
  7292. (ft (if keep org-agenda-tag-filter))
  7293. (fe (if keep org-agenda-effort-filter))
  7294. (fr (if keep org-agenda-regexp-filter))
  7295. pm s)
  7296. ;; If the filter contains a double-quoted string, replace a
  7297. ;; single hyphen by the arbitrary and temporary string "~~~"
  7298. ;; to disambiguate such hyphens from syntactic ones.
  7299. (setq f-string (replace-regexp-in-string
  7300. "\"\\([^\"]*\\)-\\([^\"]*\\)\"" "\"\\1~~~\\2\"" f-string))
  7301. (while (string-match "^[ \t]*\\([-+]\\)?\\(\\([^-+<>=/ \t]+\\)\\|\\([<>=][0-9:]+\\)\\|\\(/\\([^/]+\\)/?\\)\\)" f-string)
  7302. (setq pm (if (match-beginning 1) (match-string 1 f-string) "+"))
  7303. (when negate
  7304. (setq pm (if (equal pm "+") "-" "+")))
  7305. (cond
  7306. ((match-beginning 3)
  7307. ;; category or tag
  7308. (setq s (replace-regexp-in-string ; Remove the temporary special string.
  7309. "~~~" "-" (match-string 3 f-string)))
  7310. (cond
  7311. ((member (downcase s) tag-list)
  7312. (org-pushnew-to-end (concat pm (downcase s)) ft))
  7313. ((member s category-list)
  7314. (org-pushnew-to-end (concat pm ; Remove temporary double quotes.
  7315. (replace-regexp-in-string "\"\\(.*\\)\"" "\\1" s))
  7316. fc))
  7317. (t (message
  7318. "`%s%s' filter ignored because tag/category is not represented"
  7319. pm s))))
  7320. ((match-beginning 4)
  7321. ;; effort
  7322. (org-pushnew-to-end (concat pm (match-string 4 f-string)) fe))
  7323. ((match-beginning 5)
  7324. ;; regexp
  7325. (org-pushnew-to-end (concat pm (match-string 6 f-string)) fr)))
  7326. (setq f-string (substring f-string (match-end 0))))
  7327. (org-agenda-filter-remove-all)
  7328. (and fc (org-agenda-filter-apply
  7329. (setq org-agenda-category-filter fc) 'category))
  7330. (and ft (org-agenda-filter-apply
  7331. (setq org-agenda-tag-filter ft) 'tag 'expand))
  7332. (and fe (org-agenda-filter-apply
  7333. (setq org-agenda-effort-filter fe) 'effort))
  7334. (and fr (org-agenda-filter-apply
  7335. (setq org-agenda-regexp-filter fr) 'regexp))
  7336. (run-hooks 'org-agenda-filter-hook))))
  7337. (defun org-agenda-filter-completion-function (string _predicate &optional flag)
  7338. "Complete a complex filter string.
  7339. FLAG specifies the type of completion operation to perform. This
  7340. function is passed as a collection function to `completing-read',
  7341. which see."
  7342. (let ((completion-ignore-case t) ;tags are case-sensitive
  7343. (confirm (lambda (x) (stringp x)))
  7344. (prefix "")
  7345. (operator "")
  7346. table)
  7347. (when (string-match "^\\(.*\\([-+<>=]\\)\\)\\([^-+<>=]*\\)$" string)
  7348. (setq prefix (match-string 1 string)
  7349. operator (match-string 2 string)
  7350. string (match-string 3 string)))
  7351. (cond
  7352. ((member operator '("+" "-" "" nil))
  7353. (setq table (append (org-agenda-get-represented-categories)
  7354. (org-agenda-get-represented-tags))))
  7355. ((member operator '("<" ">" "="))
  7356. (setq table (split-string
  7357. (or (cdr (assoc-string (concat org-effort-property "_ALL")
  7358. org-global-properties
  7359. t))
  7360. "0 0:10 0:30 1:00 2:00 3:00 4:00 5:00 6:00 7:00")
  7361. " +")))
  7362. (t (setq table nil)))
  7363. (pcase flag
  7364. (`t (all-completions string table confirm))
  7365. (`lambda (assoc string table)) ;exact match?
  7366. (`nil
  7367. (pcase (try-completion string table confirm)
  7368. ((and completion (pred stringp))
  7369. (concat prefix completion))
  7370. (completion completion)))
  7371. (_ nil))))
  7372. (defun org-agenda-filter-remove-all ()
  7373. "Remove all filters from the current agenda buffer."
  7374. (interactive)
  7375. (when org-agenda-tag-filter
  7376. (org-agenda-filter-show-all-tag))
  7377. (when org-agenda-category-filter
  7378. (org-agenda-filter-show-all-cat))
  7379. (when org-agenda-regexp-filter
  7380. (org-agenda-filter-show-all-re))
  7381. (when org-agenda-top-headline-filter
  7382. (org-agenda-filter-show-all-top-filter))
  7383. (when org-agenda-effort-filter
  7384. (org-agenda-filter-show-all-effort))
  7385. (org-agenda-finalize)
  7386. (when (called-interactively-p 'interactive)
  7387. (message "All agenda filters removed")))
  7388. (defun org-agenda-filter-by-tag (strip-or-accumulate &optional char exclude)
  7389. "Keep only those lines in the agenda buffer that have a specific tag.
  7390. The tag is selected with its fast selection letter, as configured.
  7391. With a `\\[universal-argument]' prefix, apply the filter negatively, stripping all matches.
  7392. With a `\\[universal-argument] \\[universal-argument]' prefix, add the new tag to the existing filter
  7393. instead of replacing it.
  7394. With a `\\[universal-argument] \\[universal-argument] \\[universal-argument]' prefix, filter the literal tag, \
  7395. i.e. don't
  7396. filter on all its group members.
  7397. A lisp caller can specify CHAR. EXCLUDE means that the new tag
  7398. should be used to exclude the search - the interactive user can
  7399. also press `-' or `+' to switch between filtering and excluding."
  7400. (interactive "P")
  7401. (let* ((alist org-tag-alist-for-agenda)
  7402. (seen-chars nil)
  7403. (tag-chars (mapconcat
  7404. (lambda (x) (if (and (not (symbolp (car x)))
  7405. (cdr x)
  7406. (not (member (cdr x) seen-chars)))
  7407. (progn
  7408. (push (cdr x) seen-chars)
  7409. (char-to-string (cdr x)))
  7410. ""))
  7411. org-tag-alist-for-agenda ""))
  7412. (valid-char-list (append '(?\t ?\r ?\\ ?. ?\s ?q)
  7413. (string-to-list tag-chars)))
  7414. (exclude (or exclude (equal strip-or-accumulate '(4))))
  7415. (accumulate (equal strip-or-accumulate '(16)))
  7416. (expand (not (equal strip-or-accumulate '(64))))
  7417. (inhibit-read-only t)
  7418. (current org-agenda-tag-filter)
  7419. a tag) ;; n
  7420. (unless char
  7421. (while (not (memq char valid-char-list))
  7422. (org-unlogged-message
  7423. "%s by tag%s: [%s ]tag-char [TAB]tag %s[\\]off [q]uit"
  7424. (if exclude "Exclude[+]" "Filter[-]")
  7425. (if expand "" " (no grouptag expand)")
  7426. tag-chars
  7427. (if org-agenda-auto-exclude-function "[RET] " ""))
  7428. (setq char (read-char-exclusive))
  7429. ;; Excluding or filtering down
  7430. (cond ((eq char ?-) (setq exclude t))
  7431. ((eq char ?+) (setq exclude nil)))))
  7432. (when (eq char ?\t)
  7433. (unless (local-variable-p 'org-global-tags-completion-table)
  7434. (setq-local org-global-tags-completion-table
  7435. (org-global-tags-completion-table)))
  7436. (let ((completion-ignore-case t))
  7437. (setq tag (completing-read
  7438. "Tag: " org-global-tags-completion-table nil t))))
  7439. (cond
  7440. ((eq char ?\r)
  7441. (org-agenda-filter-show-all-tag)
  7442. (when org-agenda-auto-exclude-function
  7443. (setq org-agenda-tag-filter nil)
  7444. (dolist (tag (org-agenda-get-represented-tags))
  7445. (let ((modifier (funcall org-agenda-auto-exclude-function tag)))
  7446. (when modifier
  7447. (push modifier org-agenda-tag-filter))))
  7448. (unless (null org-agenda-tag-filter)
  7449. (org-agenda-filter-apply org-agenda-tag-filter 'tag expand))))
  7450. ((eq char ?\\)
  7451. (org-agenda-filter-show-all-tag)
  7452. (when (get 'org-agenda-tag-filter :preset-filter)
  7453. (org-agenda-filter-apply org-agenda-tag-filter 'tag expand)))
  7454. ((eq char ?.)
  7455. (setq org-agenda-tag-filter
  7456. (mapcar (lambda(tag) (concat "+" tag))
  7457. (org-get-at-bol 'tags)))
  7458. (org-agenda-filter-apply org-agenda-tag-filter 'tag expand))
  7459. ((eq char ?q)) ;If q, abort (even if there is a q-key for a tag...)
  7460. ((or (eq char ?\s)
  7461. (setq a (rassoc char alist))
  7462. (and tag (setq a (cons tag nil))))
  7463. (org-agenda-filter-show-all-tag)
  7464. (setq tag (car a))
  7465. (setq org-agenda-tag-filter
  7466. (cons (concat (if exclude "-" "+") tag)
  7467. (if accumulate current nil)))
  7468. (org-agenda-filter-apply org-agenda-tag-filter 'tag expand))
  7469. (t (error "Invalid tag selection character %c" char)))))
  7470. (defun org-agenda-get-represented-categories ()
  7471. "Return a list of all categories used in this agenda buffer."
  7472. (or org-agenda-represented-categories
  7473. (when (derived-mode-p 'org-agenda-mode)
  7474. (let ((pos (point-min)) categories)
  7475. (while (and (< pos (point-max))
  7476. (setq pos (next-single-property-change
  7477. pos 'org-category nil (point-max))))
  7478. (push (get-text-property pos 'org-category) categories))
  7479. (setq org-agenda-represented-categories
  7480. ;; Enclose category names with a hyphen in double
  7481. ;; quotes to process them specially in `org-agenda-filter'.
  7482. (mapcar (lambda (s) (if (string-match-p "-" s) (format "\"%s\"" s) s))
  7483. (nreverse (org-uniquify (delq nil categories)))))))))
  7484. (defvar org-tag-groups-alist-for-agenda)
  7485. (defun org-agenda-get-represented-tags ()
  7486. "Return a list of all tags used in this agenda buffer.
  7487. These will be lower-case, for filtering."
  7488. (or org-agenda-represented-tags
  7489. (when (derived-mode-p 'org-agenda-mode)
  7490. (let ((pos (point-min)) tags-lists tt)
  7491. (while (and (< pos (point-max))
  7492. (setq pos (next-single-property-change
  7493. pos 'tags nil (point-max))))
  7494. (setq tt (get-text-property pos 'tags))
  7495. (if tt (push tt tags-lists)))
  7496. (setq tags-lists
  7497. (nreverse (org-uniquify
  7498. (delq nil (apply #'append tags-lists)))))
  7499. (dolist (tag tags-lists)
  7500. (mapc
  7501. (lambda (group)
  7502. (when (member tag (mapcar #'downcase group))
  7503. (push (downcase (car group)) tags-lists)))
  7504. org-tag-groups-alist-for-agenda))
  7505. (setq org-agenda-represented-tags tags-lists)))))
  7506. (defun org-agenda-filter-make-matcher (filter type &optional expand)
  7507. "Create the form that tests a line for agenda filter. Optional
  7508. argument EXPAND can be used for the TYPE tag and will expand the
  7509. tags in the FILTER if any of the tags in FILTER are grouptags."
  7510. (let ((multi-pos-cats
  7511. (and (eq type 'category)
  7512. (string-match-p "\\+.*\\+"
  7513. (mapconcat (lambda (cat) (substring cat 0 1))
  7514. filter ""))))
  7515. f f1)
  7516. (cond
  7517. ;; Tag filter
  7518. ((eq type 'tag)
  7519. (setq filter
  7520. (delete-dups
  7521. (append (get 'org-agenda-tag-filter :preset-filter)
  7522. filter)))
  7523. (dolist (x filter)
  7524. (let ((op (string-to-char x)))
  7525. (if expand (setq x (org-agenda-filter-expand-tags (list x) t))
  7526. (setq x (list x)))
  7527. (setq f1 (org-agenda-filter-make-matcher-tag-exp x op))
  7528. (push f1 f))))
  7529. ;; Category filter
  7530. ((eq type 'category)
  7531. (setq filter
  7532. (delete-dups
  7533. (append (get 'org-agenda-category-filter :preset-filter)
  7534. filter)))
  7535. (dolist (x filter)
  7536. (if (equal "-" (substring x 0 1))
  7537. (setq f1 (list 'not (list 'equal (substring x 1) 'cat)))
  7538. (setq f1 (list 'equal (substring x 1) 'cat)))
  7539. (push f1 f)))
  7540. ;; Regexp filter
  7541. ((eq type 'regexp)
  7542. (setq filter
  7543. (delete-dups
  7544. (append (get 'org-agenda-regexp-filter :preset-filter)
  7545. filter)))
  7546. (dolist (x filter)
  7547. (if (equal "-" (substring x 0 1))
  7548. (setq f1 (list 'not (list 'string-match (substring x 1) 'txt)))
  7549. (setq f1 (list 'string-match (substring x 1) 'txt)))
  7550. (push f1 f)))
  7551. ;; Effort filter
  7552. ((eq type 'effort)
  7553. (setq filter
  7554. (delete-dups
  7555. (append (get 'org-agenda-effort-filter :preset-filter)
  7556. filter)))
  7557. (dolist (x filter)
  7558. (push (org-agenda-filter-effort-form x) f))))
  7559. (cons (if multi-pos-cats 'or 'and) (nreverse f))))
  7560. (defun org-agenda-filter-make-matcher-tag-exp (tags op)
  7561. "Return a form associated to tag-expression TAGS.
  7562. Build a form testing a line for agenda filter for
  7563. tag-expressions. OP is an operator of type CHAR that allows the
  7564. function to set the right switches in the returned form."
  7565. (let (form)
  7566. ;; Any of the expressions can match if OP is +, all must match if
  7567. ;; the operator is -.
  7568. (dolist (x tags (cons (if (eq op ?-) 'and 'or) form))
  7569. (let* ((tag (substring x 1))
  7570. (f (cond
  7571. ((string= "" tag) 'tags)
  7572. ((and (string-match-p "\\`{" tag) (string-match-p "}\\'" tag))
  7573. ;; TAG is a regexp.
  7574. (list 'org-match-any-p (substring tag 1 -1) 'tags))
  7575. (t (list 'member (downcase tag) 'tags)))))
  7576. (push (if (eq op ?-) (list 'not f) f) form)))))
  7577. (defun org-agenda-filter-effort-form (e)
  7578. "Return the form to compare the effort of the current line with what E says.
  7579. E looks like \"+<2:25\"."
  7580. (let (op)
  7581. (setq e (substring e 1))
  7582. (setq op (string-to-char e) e (substring e 1))
  7583. (setq op (cond ((equal op ?<) '<=)
  7584. ((equal op ?>) '>=)
  7585. ((equal op ??) op)
  7586. (t '=)))
  7587. (list 'org-agenda-compare-effort (list 'quote op)
  7588. (org-duration-to-minutes e))))
  7589. (defun org-agenda-compare-effort (op value)
  7590. "Compare the effort of the current line with VALUE, using OP.
  7591. If the line does not have an effort defined, return nil."
  7592. ;; `effort-minutes' property cannot be extracted directly from
  7593. ;; current line but is stored as a property in `txt'.
  7594. (let ((effort (get-text-property 0 'effort-minutes (org-get-at-bol 'txt))))
  7595. (funcall op
  7596. (or effort (if org-agenda-sort-noeffort-is-high 32767 -1))
  7597. value)))
  7598. (defun org-agenda-filter-expand-tags (filter &optional no-operator)
  7599. "Expand group tags in FILTER for the agenda.
  7600. When NO-OPERATOR is non-nil, do not add the + operator to
  7601. returned tags."
  7602. (if org-group-tags
  7603. (let ((case-fold-search t) rtn)
  7604. (mapc
  7605. (lambda (f)
  7606. (let (f0 dir)
  7607. (if (string-match "^\\([+-]\\)\\(.+\\)" f)
  7608. (setq dir (match-string 1 f) f0 (match-string 2 f))
  7609. (setq dir (if no-operator "" "+") f0 f))
  7610. (setq rtn (append (mapcar (lambda(f1) (concat dir f1))
  7611. (org-tags-expand f0 t t))
  7612. rtn))))
  7613. filter)
  7614. (reverse rtn))
  7615. filter))
  7616. (defun org-agenda-filter-apply (filter type &optional expand)
  7617. "Set FILTER as the new agenda filter and apply it.
  7618. Optional argument EXPAND can be used for the TYPE tag and will
  7619. expand the tags in the FILTER if any of the tags in FILTER are
  7620. grouptags."
  7621. ;; Deactivate `org-agenda-entry-text-mode' when filtering
  7622. (when org-agenda-entry-text-mode (org-agenda-entry-text-mode))
  7623. (setq org-agenda-filter-form (org-agenda-filter-make-matcher
  7624. filter type expand))
  7625. ;; Only set `org-agenda-filtered-by-category' to t when a unique
  7626. ;; category is used as the filter:
  7627. (setq org-agenda-filtered-by-category
  7628. (and (eq type 'category)
  7629. (not (equal (substring (car filter) 0 1) "-"))))
  7630. (org-agenda-set-mode-name)
  7631. (save-excursion
  7632. (goto-char (point-min))
  7633. (while (not (eobp))
  7634. (when (or (org-get-at-bol 'org-hd-marker)
  7635. (org-get-at-bol 'org-marker))
  7636. (org-dlet
  7637. ((tags (org-get-at-bol 'tags))
  7638. (cat (org-agenda-get-category))
  7639. (txt (or (org-get-at-bol 'txt) "")))
  7640. (unless (eval org-agenda-filter-form t)
  7641. (org-agenda-filter-hide-line type))))
  7642. (beginning-of-line 2)))
  7643. (when (get-char-property (point) 'invisible)
  7644. (ignore-errors (org-agenda-previous-line))))
  7645. (defun org-agenda-filter-top-headline-apply (hl &optional negative)
  7646. "Filter by top headline HL."
  7647. (org-agenda-set-mode-name)
  7648. (save-excursion
  7649. (goto-char (point-min))
  7650. (while (not (eobp))
  7651. (let* ((pos (org-get-at-bol 'org-hd-marker))
  7652. (tophl (and pos (org-find-top-headline pos))))
  7653. (when (and tophl (funcall (if negative 'identity 'not)
  7654. (string= hl tophl)))
  7655. (org-agenda-filter-hide-line 'top-headline)))
  7656. (beginning-of-line 2)))
  7657. (when (get-char-property (point) 'invisible)
  7658. (org-agenda-previous-line))
  7659. (setq org-agenda-top-headline-filter hl
  7660. org-agenda-filtered-by-top-headline t))
  7661. (defun org-agenda-filter-hide-line (type)
  7662. "If current line is TYPE, hide it in the agenda buffer."
  7663. (let* (buffer-invisibility-spec
  7664. (beg (max (point-min) (1- (point-at-bol))))
  7665. (end (point-at-eol)))
  7666. (let ((inhibit-read-only t))
  7667. (add-text-properties
  7668. beg end `(invisible org-filtered org-filter-type ,type)))))
  7669. (defun org-agenda-remove-filter (type)
  7670. "Remove filter of type TYPE from the agenda buffer."
  7671. (interactive)
  7672. (save-excursion
  7673. (goto-char (point-min))
  7674. (let ((inhibit-read-only t) pos)
  7675. (while (setq pos (text-property-any (point) (point-max)
  7676. 'org-filter-type type))
  7677. (goto-char pos)
  7678. (remove-text-properties
  7679. (point) (next-single-property-change (point) 'org-filter-type)
  7680. `(invisible org-filtered org-filter-type ,type))))
  7681. (set (intern (format "org-agenda-%s-filter" (intern-soft type))) nil)
  7682. (setq org-agenda-filter-form nil)
  7683. (org-agenda-set-mode-name)
  7684. (org-agenda-finalize)))
  7685. (defun org-agenda-filter-show-all-tag nil
  7686. (org-agenda-remove-filter 'tag))
  7687. (defun org-agenda-filter-show-all-re nil
  7688. (org-agenda-remove-filter 'regexp))
  7689. (defun org-agenda-filter-show-all-effort nil
  7690. (org-agenda-remove-filter 'effort))
  7691. (defun org-agenda-filter-show-all-cat nil
  7692. (org-agenda-remove-filter 'category))
  7693. (defun org-agenda-filter-show-all-top-filter nil
  7694. (org-agenda-remove-filter 'top-headline))
  7695. (defun org-agenda-manipulate-query-add ()
  7696. "Manipulate the query by adding a search term with positive selection.
  7697. Positive selection means the term must be matched for selection of an entry."
  7698. (interactive)
  7699. (org-agenda-manipulate-query ?\[))
  7700. (defun org-agenda-manipulate-query-subtract ()
  7701. "Manipulate the query by adding a search term with negative selection.
  7702. Negative selection means term must not be matched for selection of an entry."
  7703. (interactive)
  7704. (org-agenda-manipulate-query ?\]))
  7705. (defun org-agenda-manipulate-query-add-re ()
  7706. "Manipulate the query by adding a search regexp with positive selection.
  7707. Positive selection means the regexp must match for selection of an entry."
  7708. (interactive)
  7709. (org-agenda-manipulate-query ?\{))
  7710. (defun org-agenda-manipulate-query-subtract-re ()
  7711. "Manipulate the query by adding a search regexp with negative selection.
  7712. Negative selection means regexp must not match for selection of an entry."
  7713. (interactive)
  7714. (org-agenda-manipulate-query ?\}))
  7715. (defun org-agenda-manipulate-query (char)
  7716. (cond
  7717. ((eq org-agenda-type 'agenda)
  7718. (let ((org-agenda-include-inactive-timestamps t))
  7719. (org-agenda-redo))
  7720. (message "Display now includes inactive timestamps as well"))
  7721. ((eq org-agenda-type 'search)
  7722. (org-add-to-string
  7723. 'org-agenda-query-string
  7724. (if org-agenda-last-search-view-search-was-boolean
  7725. (cdr (assoc char '((?\[ . " +") (?\] . " -")
  7726. (?\{ . " +{}") (?\} . " -{}"))))
  7727. " "))
  7728. (setq org-agenda-redo-command
  7729. (list 'org-search-view
  7730. (car (get-text-property (min (1- (point-max)) (point))
  7731. 'org-last-args))
  7732. org-agenda-query-string
  7733. (+ (length org-agenda-query-string)
  7734. (if (member char '(?\{ ?\})) 0 1))))
  7735. (set-register org-agenda-query-register org-agenda-query-string)
  7736. (let ((org-agenda-overriding-arguments
  7737. (cdr org-agenda-redo-command)))
  7738. (org-agenda-redo)))
  7739. (t (error "Cannot manipulate query for %s-type agenda buffers"
  7740. org-agenda-type))))
  7741. (defun org-add-to-string (var string)
  7742. (set var (concat (symbol-value var) string)))
  7743. (defun org-agenda-goto-date (date)
  7744. "Jump to DATE in agenda."
  7745. (interactive
  7746. (list
  7747. (let ((org-read-date-prefer-future org-agenda-jump-prefer-future))
  7748. (org-read-date))))
  7749. (let* ((day (time-to-days (org-time-string-to-time date)))
  7750. (org-agenda-sticky-orig org-agenda-sticky)
  7751. (org-agenda-buffer-tmp-name (buffer-name))
  7752. (args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7753. (0-arg (or current-prefix-arg (car args)))
  7754. (2-arg (nth 2 args))
  7755. (with-hour-p (nth 4 org-agenda-redo-command))
  7756. (newcmd (list 'org-agenda-list 0-arg date
  7757. (org-agenda-span-to-ndays
  7758. 2-arg (org-time-string-to-absolute date))
  7759. with-hour-p))
  7760. (newargs (cdr newcmd))
  7761. (inhibit-read-only t)
  7762. org-agenda-sticky)
  7763. (if (not (org-agenda-check-type t 'agenda))
  7764. (error "Not available in non-agenda views")
  7765. (add-text-properties (point-min) (point-max)
  7766. `(org-redo-cmd ,newcmd org-last-args ,newargs))
  7767. (org-agenda-redo)
  7768. (goto-char (point-min))
  7769. (while (not (or (= (or (get-text-property (point) 'day) 0) day)
  7770. (save-excursion (move-beginning-of-line 2) (eobp))))
  7771. (move-beginning-of-line 2))
  7772. (setq org-agenda-sticky org-agenda-sticky-orig
  7773. org-agenda-this-buffer-is-sticky org-agenda-sticky))))
  7774. (defun org-agenda-goto-today ()
  7775. "Go to today."
  7776. (interactive)
  7777. (org-agenda-check-type t 'agenda)
  7778. (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7779. (curspan (nth 2 args))
  7780. (tdpos (text-property-any (point-min) (point-max) 'org-today t)))
  7781. (cond
  7782. (tdpos (goto-char tdpos))
  7783. ((eq org-agenda-type 'agenda)
  7784. (let* ((sd (org-agenda-compute-starting-span
  7785. (org-today) (or curspan org-agenda-span)))
  7786. (org-agenda-overriding-arguments args))
  7787. (setf (nth 1 org-agenda-overriding-arguments) sd)
  7788. (org-agenda-redo)
  7789. (org-agenda-find-same-or-today-or-agenda)))
  7790. (t (error "Cannot find today")))))
  7791. (defun org-agenda-find-same-or-today-or-agenda (&optional cnt)
  7792. (goto-char
  7793. (or (and cnt (text-property-any (point-min) (point-max) 'org-day-cnt cnt))
  7794. (text-property-any (point-min) (point-max) 'org-today t)
  7795. (text-property-any (point-min) (point-max) 'org-agenda-type 'agenda)
  7796. (and (get-text-property (min (1- (point-max)) (point)) 'org-series)
  7797. (org-agenda-backward-block))
  7798. (point-min))))
  7799. (defun org-agenda-backward-block ()
  7800. "Move backward by one agenda block."
  7801. (interactive)
  7802. (org-agenda-forward-block 'backward))
  7803. (defun org-agenda-forward-block (&optional backward)
  7804. "Move forward by one agenda block.
  7805. When optional argument BACKWARD is set, go backward."
  7806. (interactive)
  7807. (cond ((not (derived-mode-p 'org-agenda-mode))
  7808. (user-error
  7809. "Cannot execute this command outside of org-agenda-mode buffers"))
  7810. ((looking-at (if backward "\\`" "\\'"))
  7811. (message "Already at the %s block" (if backward "first" "last")))
  7812. (t (let ((_pos (prog1 (point)
  7813. (ignore-errors (if backward (backward-char 1)
  7814. (move-end-of-line 1)))))
  7815. (f (if backward
  7816. #'previous-single-property-change
  7817. #'next-single-property-change))
  7818. moved dest)
  7819. (while (and (setq dest (funcall
  7820. f (point) 'org-agenda-structural-header))
  7821. (not (get-text-property
  7822. (point) 'org-agenda-structural-header)))
  7823. (setq moved t)
  7824. (goto-char dest))
  7825. (if moved (move-beginning-of-line 1)
  7826. (goto-char (if backward (point-min) (point-max)))
  7827. (move-beginning-of-line 1)
  7828. (message "No %s block" (if backward "previous" "further")))))))
  7829. (defun org-agenda-later (arg)
  7830. "Go forward in time by the current span.
  7831. With prefix ARG, go forward that many times the current span."
  7832. (interactive "p")
  7833. (org-agenda-check-type t 'agenda)
  7834. (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7835. (span (or (nth 2 args) org-agenda-current-span))
  7836. (sd (or (nth 1 args) (org-get-at-bol 'day) org-starting-day))
  7837. (greg (calendar-gregorian-from-absolute sd))
  7838. (cnt (org-get-at-bol 'org-day-cnt))
  7839. greg2)
  7840. (cond
  7841. ((numberp span)
  7842. (setq sd (+ (* span arg) sd)))
  7843. ((eq span 'day)
  7844. (setq sd (+ arg sd)))
  7845. ((eq span 'week)
  7846. (setq sd (+ (* 7 arg) sd)))
  7847. ((eq span 'fortnight)
  7848. (setq sd (+ (* 14 arg) sd)))
  7849. ((eq span 'month)
  7850. (setq greg2 (list (+ (car greg) arg) (nth 1 greg) (nth 2 greg))
  7851. sd (calendar-absolute-from-gregorian greg2))
  7852. (setcar greg2 (1+ (car greg2))))
  7853. ((eq span 'year)
  7854. (setq greg2 (list (car greg) (nth 1 greg) (+ arg (nth 2 greg)))
  7855. sd (calendar-absolute-from-gregorian greg2))
  7856. (setcar (nthcdr 2 greg2) (1+ (nth 2 greg2))))
  7857. (t
  7858. (setq sd (+ (* span arg) sd))))
  7859. (let ((org-agenda-overriding-cmd
  7860. ;; `cmd' may have been set by `org-agenda-run-series' which
  7861. ;; uses `org-agenda-overriding-cmd' to decide whether
  7862. ;; overriding is allowed for `cmd'
  7863. (get-text-property (min (1- (point-max)) (point)) 'org-series-cmd))
  7864. (org-agenda-overriding-arguments
  7865. (list (car args) sd span)))
  7866. (org-agenda-redo)
  7867. (org-agenda-find-same-or-today-or-agenda cnt))))
  7868. (defun org-agenda-earlier (arg)
  7869. "Go backward in time by the current span.
  7870. With prefix ARG, go backward that many times the current span."
  7871. (interactive "p")
  7872. (org-agenda-later (- arg)))
  7873. (defun org-agenda-view-mode-dispatch ()
  7874. "Call one of the view mode commands."
  7875. (interactive)
  7876. (org-unlogged-message
  7877. "View: [d]ay [w]eek for[t]night [m]onth [y]ear [SPC]reset [q]uit/abort
  7878. time[G]rid [[]inactive [f]ollow [l]og [L]og-all [c]lockcheck
  7879. [a]rch-trees [A]rch-files clock[R]eport include[D]iary [E]ntryText")
  7880. (pcase (read-char-exclusive)
  7881. (?\ (call-interactively 'org-agenda-reset-view))
  7882. (?d (call-interactively 'org-agenda-day-view))
  7883. (?w (call-interactively 'org-agenda-week-view))
  7884. (?t (call-interactively 'org-agenda-fortnight-view))
  7885. (?m (call-interactively 'org-agenda-month-view))
  7886. (?y (call-interactively 'org-agenda-year-view))
  7887. (?l (call-interactively 'org-agenda-log-mode))
  7888. (?L (org-agenda-log-mode '(4)))
  7889. (?c (org-agenda-log-mode 'clockcheck))
  7890. ((or ?F ?f) (call-interactively 'org-agenda-follow-mode))
  7891. (?a (call-interactively 'org-agenda-archives-mode))
  7892. (?A (org-agenda-archives-mode 'files))
  7893. ((or ?R ?r) (call-interactively 'org-agenda-clockreport-mode))
  7894. ((or ?E ?e) (call-interactively 'org-agenda-entry-text-mode))
  7895. (?G (call-interactively 'org-agenda-toggle-time-grid))
  7896. (?D (call-interactively 'org-agenda-toggle-diary))
  7897. (?\! (call-interactively 'org-agenda-toggle-deadlines))
  7898. (?\[ (let ((org-agenda-include-inactive-timestamps t))
  7899. (org-agenda-check-type t 'agenda)
  7900. (org-agenda-redo))
  7901. (message "Display now includes inactive timestamps as well"))
  7902. (?q (message "Abort"))
  7903. (key (user-error "Invalid key: %s" key))))
  7904. (defun org-agenda-reset-view ()
  7905. "Switch to default view for agenda."
  7906. (interactive)
  7907. (org-agenda-change-time-span org-agenda-span))
  7908. (defun org-agenda-day-view (&optional day-of-month)
  7909. "Switch to daily view for agenda.
  7910. With argument DAY-OF-MONTH, switch to that day of the month."
  7911. (interactive "P")
  7912. (org-agenda-change-time-span 'day day-of-month))
  7913. (defun org-agenda-week-view (&optional iso-week)
  7914. "Switch to weekly view for agenda.
  7915. With argument ISO-WEEK, switch to the corresponding ISO week.
  7916. If ISO-WEEK has more then 2 digits, only the last two encode
  7917. the week. Any digits before this encode a year. So 200712
  7918. means week 12 of year 2007. Years ranging from 70 years ago
  7919. to 30 years in the future can also be written as 2-digit years."
  7920. (interactive "P")
  7921. (org-agenda-change-time-span 'week iso-week))
  7922. (defun org-agenda-fortnight-view (&optional iso-week)
  7923. "Switch to fortnightly view for agenda.
  7924. With argument ISO-WEEK, switch to the corresponding ISO week.
  7925. If ISO-WEEK has more then 2 digits, only the last two encode
  7926. the week. Any digits before this encode a year. So 200712
  7927. means week 12 of year 2007. Years ranging from 70 years ago
  7928. to 30 years in the future can also be written as 2-digit years."
  7929. (interactive "P")
  7930. (org-agenda-change-time-span 'fortnight iso-week))
  7931. (defun org-agenda-month-view (&optional month)
  7932. "Switch to monthly view for agenda.
  7933. With argument MONTH, switch to that month. If MONTH has more
  7934. then 2 digits, only the last two encode the month. Any digits
  7935. before this encode a year. So 200712 means December year 2007.
  7936. Years ranging from 70 years ago to 30 years in the future can
  7937. also be written as 2-digit years."
  7938. (interactive "P")
  7939. (org-agenda-change-time-span 'month month))
  7940. (defun org-agenda-year-view (&optional year)
  7941. "Switch to yearly view for agenda.
  7942. With argument YEAR, switch to that year. Years ranging from 70
  7943. years ago to 30 years in the future can also be written as
  7944. 2-digit years."
  7945. (interactive "P")
  7946. (when year
  7947. (setq year (org-small-year-to-year year)))
  7948. (if (y-or-n-p "Are you sure you want to compute the agenda for an entire year? ")
  7949. (org-agenda-change-time-span 'year year)
  7950. (error "Abort")))
  7951. (defun org-agenda-change-time-span (span &optional n)
  7952. "Change the agenda view to SPAN.
  7953. SPAN may be `day', `week', `fortnight', `month', `year'."
  7954. (org-agenda-check-type t 'agenda)
  7955. (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7956. (curspan (nth 2 args)))
  7957. (when (and (not n) (equal curspan span))
  7958. (error "Viewing span is already \"%s\"" span))
  7959. (let* ((sd (or (org-get-at-bol 'day)
  7960. (nth 1 args)
  7961. org-starting-day))
  7962. (sd (org-agenda-compute-starting-span sd span n))
  7963. (org-agenda-overriding-cmd
  7964. (get-text-property (min (1- (point-max)) (point)) 'org-series-cmd))
  7965. (org-agenda-overriding-arguments
  7966. (list (car args) sd span)))
  7967. (org-agenda-redo)
  7968. (org-agenda-find-same-or-today-or-agenda))
  7969. (org-agenda-set-mode-name)
  7970. (message "Switched to %s view" span)))
  7971. (defun org-agenda-compute-starting-span (sd span &optional n)
  7972. "Compute starting date for agenda.
  7973. SPAN may be `day', `week', `fortnight', `month', `year'. The return value
  7974. is a cons cell with the starting date and the number of days,
  7975. so that the date SD will be in that range."
  7976. (let* ((greg (calendar-gregorian-from-absolute sd))
  7977. ;; (dg (nth 1 greg))
  7978. (mg (car greg))
  7979. (yg (nth 2 greg)))
  7980. (cond
  7981. ((eq span 'day)
  7982. (when n
  7983. (setq sd (+ (calendar-absolute-from-gregorian
  7984. (list mg 1 yg))
  7985. n -1))))
  7986. ((or (eq span 'week) (eq span 'fortnight))
  7987. (let* ((nt (calendar-day-of-week
  7988. (calendar-gregorian-from-absolute sd)))
  7989. (d (if org-agenda-start-on-weekday
  7990. (- nt org-agenda-start-on-weekday)
  7991. 0))
  7992. y1)
  7993. (setq sd (- sd (+ (if (< d 0) 7 0) d)))
  7994. (when n
  7995. (require 'cal-iso)
  7996. (when (> n 99)
  7997. (setq y1 (org-small-year-to-year (/ n 100))
  7998. n (mod n 100)))
  7999. (setq sd
  8000. (calendar-iso-to-absolute
  8001. (list n 1
  8002. (or y1 (nth 2 (calendar-iso-from-absolute sd)))))))))
  8003. ((eq span 'month)
  8004. (let (y1)
  8005. (when (and n (> n 99))
  8006. (setq y1 (org-small-year-to-year (/ n 100))
  8007. n (mod n 100)))
  8008. (setq sd (calendar-absolute-from-gregorian
  8009. (list (or n mg) 1 (or y1 yg))))))
  8010. ((eq span 'year)
  8011. (setq sd (calendar-absolute-from-gregorian
  8012. (list 1 1 (or n yg))))))
  8013. sd))
  8014. (defun org-agenda-next-date-line (&optional arg)
  8015. "Jump to the next line indicating a date in agenda buffer."
  8016. (interactive "p")
  8017. (org-agenda-check-type t 'agenda)
  8018. (beginning-of-line 1)
  8019. ;; This does not work if user makes date format that starts with a blank
  8020. (when (looking-at-p "^\\S-") (forward-char 1))
  8021. (unless (re-search-forward "^\\S-" nil t arg)
  8022. (backward-char 1)
  8023. (error "No next date after this line in this buffer"))
  8024. (goto-char (match-beginning 0)))
  8025. (defun org-agenda-previous-date-line (&optional arg)
  8026. "Jump to the previous line indicating a date in agenda buffer."
  8027. (interactive "p")
  8028. (org-agenda-check-type t 'agenda)
  8029. (beginning-of-line 1)
  8030. (unless (re-search-backward "^\\S-" nil t arg)
  8031. (error "No previous date before this line in this buffer")))
  8032. ;; Initialize the highlight
  8033. (defvar org-hl (make-overlay 1 1))
  8034. (overlay-put org-hl 'face 'highlight)
  8035. (defun org-highlight (begin end &optional buffer)
  8036. "Highlight a region with overlay."
  8037. (move-overlay org-hl begin end (or buffer (current-buffer))))
  8038. (defun org-unhighlight ()
  8039. "Detach overlay INDEX."
  8040. (delete-overlay org-hl))
  8041. (defun org-unhighlight-once ()
  8042. "Remove the highlight from its position, and this function from the hook."
  8043. (remove-hook 'pre-command-hook #'org-unhighlight-once)
  8044. (org-unhighlight))
  8045. (defvar org-agenda-pre-follow-window-conf nil)
  8046. (defun org-agenda-follow-mode ()
  8047. "Toggle follow mode in an agenda buffer."
  8048. (interactive)
  8049. (unless org-agenda-follow-mode
  8050. (setq org-agenda-pre-follow-window-conf
  8051. (current-window-configuration)))
  8052. (setq org-agenda-follow-mode (not org-agenda-follow-mode))
  8053. (unless org-agenda-follow-mode
  8054. (set-window-configuration org-agenda-pre-follow-window-conf))
  8055. (org-agenda-set-mode-name)
  8056. (org-agenda-do-context-action)
  8057. (message "Follow mode is %s"
  8058. (if org-agenda-follow-mode "on" "off")))
  8059. (defun org-agenda-entry-text-mode (&optional arg)
  8060. "Toggle entry text mode in an agenda buffer."
  8061. (interactive "P")
  8062. (if (or org-agenda-tag-filter
  8063. org-agenda-category-filter
  8064. org-agenda-regexp-filter
  8065. org-agenda-top-headline-filter)
  8066. (user-error "Can't show entry text in filtered views")
  8067. (setq org-agenda-entry-text-mode (or (integerp arg)
  8068. (not org-agenda-entry-text-mode)))
  8069. (org-agenda-entry-text-hide)
  8070. (and org-agenda-entry-text-mode
  8071. (let ((org-agenda-entry-text-maxlines
  8072. (if (integerp arg) arg org-agenda-entry-text-maxlines)))
  8073. (org-agenda-entry-text-show)))
  8074. (org-agenda-set-mode-name)
  8075. (message "Entry text mode is %s%s"
  8076. (if org-agenda-entry-text-mode "on" "off")
  8077. (if (not org-agenda-entry-text-mode) ""
  8078. (format " (maximum number of lines is %d)"
  8079. (if (integerp arg) arg org-agenda-entry-text-maxlines))))))
  8080. (defun org-agenda-clockreport-mode ()
  8081. "Toggle clocktable mode in an agenda buffer."
  8082. (interactive)
  8083. (org-agenda-check-type t 'agenda)
  8084. (setq org-agenda-clockreport-mode (not org-agenda-clockreport-mode))
  8085. (org-agenda-set-mode-name)
  8086. (org-agenda-redo)
  8087. (message "Clocktable mode is %s"
  8088. (if org-agenda-clockreport-mode "on" "off")))
  8089. (defun org-agenda-log-mode (&optional special)
  8090. "Toggle log mode in an agenda buffer.
  8091. With argument SPECIAL, show all possible log items, not only the ones
  8092. configured in `org-agenda-log-mode-items'.
  8093. With a `\\[universal-argument] \\[universal-argument]' prefix, show *only* \
  8094. log items, nothing else."
  8095. (interactive "P")
  8096. (org-agenda-check-type t 'agenda)
  8097. (setq org-agenda-show-log
  8098. (cond
  8099. ((equal special '(16)) 'only)
  8100. ((eq special 'clockcheck)
  8101. (if (eq org-agenda-show-log 'clockcheck)
  8102. nil 'clockcheck))
  8103. (special '(closed clock state))
  8104. (t (not org-agenda-show-log))))
  8105. (org-agenda-set-mode-name)
  8106. (org-agenda-redo)
  8107. (message "Log mode is %s" (if org-agenda-show-log "on" "off")))
  8108. (defun org-agenda-archives-mode (&optional with-files)
  8109. "Toggle inclusion of items in trees marked with :ARCHIVE:.
  8110. When called with a prefix argument, include all archive files as well."
  8111. (interactive "P")
  8112. (setq org-agenda-archives-mode
  8113. (cond ((and with-files (eq org-agenda-archives-mode t)) nil)
  8114. (with-files t)
  8115. (org-agenda-archives-mode nil)
  8116. (t 'trees)))
  8117. (org-agenda-set-mode-name)
  8118. (org-agenda-redo)
  8119. (message
  8120. "%s"
  8121. (cond
  8122. ((eq org-agenda-archives-mode nil)
  8123. "No archives are included")
  8124. ((eq org-agenda-archives-mode 'trees)
  8125. (format "Trees with :%s: tag are included" org-archive-tag))
  8126. ((eq org-agenda-archives-mode t)
  8127. (format "Trees with :%s: tag and all active archive files are included"
  8128. org-archive-tag)))))
  8129. (defun org-agenda-toggle-diary ()
  8130. "Toggle diary inclusion in an agenda buffer."
  8131. (interactive)
  8132. (org-agenda-check-type t 'agenda)
  8133. (setq org-agenda-include-diary (not org-agenda-include-diary))
  8134. (org-agenda-redo)
  8135. (org-agenda-set-mode-name)
  8136. (message "Diary inclusion turned %s"
  8137. (if org-agenda-include-diary "on" "off")))
  8138. (defun org-agenda-toggle-deadlines ()
  8139. "Toggle inclusion of entries with a deadline in an agenda buffer."
  8140. (interactive)
  8141. (org-agenda-check-type t 'agenda)
  8142. (setq org-agenda-include-deadlines (not org-agenda-include-deadlines))
  8143. (org-agenda-redo)
  8144. (org-agenda-set-mode-name)
  8145. (message "Deadlines inclusion turned %s"
  8146. (if org-agenda-include-deadlines "on" "off")))
  8147. (defun org-agenda-toggle-time-grid ()
  8148. "Toggle time grid in an agenda buffer."
  8149. (interactive)
  8150. (org-agenda-check-type t 'agenda)
  8151. (setq org-agenda-use-time-grid (not org-agenda-use-time-grid))
  8152. (org-agenda-redo)
  8153. (org-agenda-set-mode-name)
  8154. (message "Time-grid turned %s"
  8155. (if org-agenda-use-time-grid "on" "off")))
  8156. (defun org-agenda-set-mode-name ()
  8157. "Set the mode name to indicate all the small mode settings."
  8158. (setq mode-name
  8159. (list "Org-Agenda"
  8160. (if (get 'org-agenda-files 'org-restrict) " []" "")
  8161. " "
  8162. '(:eval (org-agenda-span-name org-agenda-current-span))
  8163. (if org-agenda-follow-mode " Follow" "")
  8164. (if org-agenda-entry-text-mode " ETxt" "")
  8165. (if org-agenda-include-diary " Diary" "")
  8166. (if org-agenda-include-deadlines " Ddl" "")
  8167. (if org-agenda-use-time-grid " Grid" "")
  8168. (if (and (boundp 'org-habit-show-habits)
  8169. org-habit-show-habits)
  8170. " Habit" "")
  8171. (cond
  8172. ((consp org-agenda-show-log) " LogAll")
  8173. ((eq org-agenda-show-log 'clockcheck) " ClkCk")
  8174. (org-agenda-show-log " Log")
  8175. (t ""))
  8176. (if (org-agenda-filter-any) " " "")
  8177. (if (or org-agenda-category-filter
  8178. (get 'org-agenda-category-filter :preset-filter))
  8179. '(:eval (propertize
  8180. (concat "["
  8181. (mapconcat
  8182. #'identity
  8183. (append
  8184. (get 'org-agenda-category-filter :preset-filter)
  8185. org-agenda-category-filter)
  8186. "")
  8187. "]")
  8188. 'face 'org-agenda-filter-category
  8189. 'help-echo "Category used in filtering"))
  8190. "")
  8191. (if (or org-agenda-tag-filter
  8192. (get 'org-agenda-tag-filter :preset-filter))
  8193. '(:eval (propertize
  8194. (concat (mapconcat
  8195. #'identity
  8196. (append
  8197. (get 'org-agenda-tag-filter :preset-filter)
  8198. org-agenda-tag-filter)
  8199. ""))
  8200. 'face 'org-agenda-filter-tags
  8201. 'help-echo "Tags used in filtering"))
  8202. "")
  8203. (if (or org-agenda-effort-filter
  8204. (get 'org-agenda-effort-filter :preset-filter))
  8205. '(:eval (propertize
  8206. (concat (mapconcat
  8207. #'identity
  8208. (append
  8209. (get 'org-agenda-effort-filter :preset-filter)
  8210. org-agenda-effort-filter)
  8211. ""))
  8212. 'face 'org-agenda-filter-effort
  8213. 'help-echo "Effort conditions used in filtering"))
  8214. "")
  8215. (if (or org-agenda-regexp-filter
  8216. (get 'org-agenda-regexp-filter :preset-filter))
  8217. '(:eval (propertize
  8218. (concat (mapconcat
  8219. (lambda (x) (concat (substring x 0 1) "/" (substring x 1) "/"))
  8220. (append
  8221. (get 'org-agenda-regexp-filter :preset-filter)
  8222. org-agenda-regexp-filter)
  8223. ""))
  8224. 'face 'org-agenda-filter-regexp
  8225. 'help-echo "Regexp used in filtering"))
  8226. "")
  8227. (if org-agenda-archives-mode
  8228. (if (eq org-agenda-archives-mode t)
  8229. " Archives"
  8230. (format " :%s:" org-archive-tag))
  8231. "")
  8232. (if org-agenda-clockreport-mode " Clock" "")))
  8233. (force-mode-line-update))
  8234. (defun org-agenda-update-agenda-type ()
  8235. "Update the agenda type after each command."
  8236. (setq org-agenda-type
  8237. (or (get-text-property (point) 'org-agenda-type)
  8238. (get-text-property (max (point-min) (1- (point))) 'org-agenda-type))))
  8239. (defun org-agenda-next-line ()
  8240. "Move cursor to the next line, and show if follow mode is active."
  8241. (interactive)
  8242. (call-interactively 'next-line)
  8243. (org-agenda-do-context-action))
  8244. (defun org-agenda-previous-line ()
  8245. "Move cursor to the previous line, and show if follow-mode is active."
  8246. (interactive)
  8247. (call-interactively 'previous-line)
  8248. (org-agenda-do-context-action))
  8249. (defun org-agenda-next-item (n)
  8250. "Move cursor to next agenda item."
  8251. (interactive "p")
  8252. (let ((col (current-column)))
  8253. (dotimes (_ n)
  8254. (when (next-single-property-change (point-at-eol) 'org-marker)
  8255. (move-end-of-line 1)
  8256. (goto-char (next-single-property-change (point) 'org-marker))))
  8257. (org-move-to-column col))
  8258. (org-agenda-do-context-action))
  8259. (defun org-agenda-previous-item (n)
  8260. "Move cursor to next agenda item."
  8261. (interactive "p")
  8262. (dotimes (_ n)
  8263. (let ((col (current-column))
  8264. (goto (save-excursion
  8265. (move-end-of-line 0)
  8266. (previous-single-property-change (point) 'org-marker))))
  8267. (when goto (goto-char goto))
  8268. (org-move-to-column col)))
  8269. (org-agenda-do-context-action))
  8270. (defun org-agenda-do-context-action ()
  8271. "Show outline path and, maybe, follow mode window."
  8272. (let ((m (org-get-at-bol 'org-marker)))
  8273. (when (and (markerp m) (marker-buffer m))
  8274. (and org-agenda-follow-mode
  8275. (if org-agenda-follow-indirect
  8276. (org-agenda-tree-to-indirect-buffer nil)
  8277. (org-agenda-show)))
  8278. (and org-agenda-show-outline-path
  8279. (org-with-point-at m (org-display-outline-path t))))))
  8280. (defun org-agenda-show-tags ()
  8281. "Show the tags applicable to the current item."
  8282. (interactive)
  8283. (let* ((tags (org-get-at-bol 'tags)))
  8284. (if tags
  8285. (message "Tags are :%s:"
  8286. (org-no-properties (mapconcat #'identity tags ":")))
  8287. (message "No tags associated with this line"))))
  8288. (defun org-agenda-goto (&optional highlight)
  8289. "Go to the entry at point in the corresponding Org file."
  8290. (interactive)
  8291. (let* ((marker (or (org-get-at-bol 'org-marker)
  8292. (org-agenda-error)))
  8293. (buffer (marker-buffer marker))
  8294. (pos (marker-position marker)))
  8295. ;; FIXME: use `org-switch-to-buffer-other-window'?
  8296. (switch-to-buffer-other-window buffer)
  8297. (widen)
  8298. (push-mark)
  8299. (goto-char pos)
  8300. (when (derived-mode-p 'org-mode)
  8301. (org-show-context 'agenda)
  8302. (recenter (/ (window-height) 2))
  8303. (org-back-to-heading t)
  8304. (let ((case-fold-search nil))
  8305. (when (re-search-forward org-complex-heading-regexp nil t)
  8306. (goto-char (match-beginning 4)))))
  8307. (run-hooks 'org-agenda-after-show-hook)
  8308. (and highlight (org-highlight (point-at-bol) (point-at-eol)))))
  8309. (defvar org-agenda-after-show-hook nil
  8310. "Normal hook run after an item has been shown from the agenda.
  8311. Point is in the buffer where the item originated.")
  8312. ;; Defined later in org-agenda.el
  8313. (defvar org-agenda-loop-over-headlines-in-active-region nil)
  8314. (defun org-agenda-do-in-region (beg end cmd &optional arg force-arg delete)
  8315. "Between region BEG and END, call agenda command CMD.
  8316. When optional argument ARG is non-nil or FORCE-ARG is `t', pass
  8317. ARG to CMD. When optional argument DELETE is non-nil, assume CMD
  8318. deletes the agenda entry and don't move to the next entry."
  8319. (save-excursion
  8320. (goto-char beg)
  8321. (let ((mend (move-marker (make-marker) end))
  8322. (all (eq org-agenda-loop-over-headlines-in-active-region t))
  8323. (match (and (stringp org-agenda-loop-over-headlines-in-active-region)
  8324. org-agenda-loop-over-headlines-in-active-region))
  8325. (level (and (eq org-agenda-loop-over-headlines-in-active-region 'start-level)
  8326. (org-get-at-bol 'level))))
  8327. (while (< (point) mend)
  8328. (let ((ov (make-overlay (point) (point-at-eol))))
  8329. (if (not (or all
  8330. (and match (looking-at-p match))
  8331. (eq level (org-get-at-bol 'level))))
  8332. (org-agenda-next-item 1)
  8333. (overlay-put ov 'face 'region)
  8334. (if (or arg force-arg) (funcall cmd arg) (funcall cmd))
  8335. (when (not delete) (org-agenda-next-item 1))
  8336. (delete-overlay ov)))))))
  8337. ;; org-agenda-[schedule,deadline,date-prompt,todo,[toggle]archive*,
  8338. ;; kill,set-property,set-effort] commands may loop over agenda
  8339. ;; entries. Commands `org-agenda-set-tags' and `org-agenda-bulk-mark'
  8340. ;; use their own mechanisms on active regions.
  8341. (defmacro org-agenda-maybe-loop (cmd arg force-arg delete &rest body)
  8342. "Maybe loop over agenda entries and perform CMD.
  8343. Pass ARG, FORCE-ARG, DELETE and BODY to `org-agenda-do-in-region'."
  8344. (declare (debug t))
  8345. `(if (and (called-interactively-p 'any)
  8346. org-agenda-loop-over-headlines-in-active-region
  8347. (org-region-active-p))
  8348. (org-agenda-do-in-region
  8349. (region-beginning) (region-end) ,cmd ,arg ,force-arg ,delete)
  8350. ,@body))
  8351. (defun org-agenda-kill ()
  8352. "Kill the entry or subtree belonging to the current agenda entry."
  8353. (interactive)
  8354. (or (eq major-mode 'org-agenda-mode) (user-error "Not in agenda"))
  8355. (org-agenda-maybe-loop
  8356. #'org-agenda-kill nil nil t
  8357. (let* ((bufname-orig (buffer-name))
  8358. (marker (or (org-get-at-bol 'org-marker)
  8359. (org-agenda-error)))
  8360. (buffer (marker-buffer marker))
  8361. (pos (marker-position marker))
  8362. (type (org-get-at-bol 'type))
  8363. dbeg dend (n 0))
  8364. (org-with-remote-undo buffer
  8365. (with-current-buffer buffer
  8366. (save-excursion
  8367. (goto-char pos)
  8368. (if (and (derived-mode-p 'org-mode) (not (member type '("sexp"))))
  8369. (setq dbeg (progn (org-back-to-heading t) (point))
  8370. dend (org-end-of-subtree t t))
  8371. (setq dbeg (point-at-bol)
  8372. dend (min (point-max) (1+ (point-at-eol)))))
  8373. (goto-char dbeg)
  8374. (while (re-search-forward "^[ \t]*\\S-" dend t) (setq n (1+ n)))))
  8375. (when (or (eq t org-agenda-confirm-kill)
  8376. (and (numberp org-agenda-confirm-kill)
  8377. (> n org-agenda-confirm-kill)))
  8378. (let ((win-conf (current-window-configuration)))
  8379. (unwind-protect
  8380. (and
  8381. (prog2
  8382. (org-agenda-tree-to-indirect-buffer nil)
  8383. (not (y-or-n-p
  8384. (format "Delete entry with %d lines in buffer \"%s\"? "
  8385. n (buffer-name buffer))))
  8386. (kill-buffer org-last-indirect-buffer))
  8387. (error "Abort"))
  8388. (set-window-configuration win-conf))))
  8389. (let ((org-agenda-buffer-name bufname-orig))
  8390. (org-remove-subtree-entries-from-agenda buffer dbeg dend))
  8391. (with-current-buffer buffer (delete-region dbeg dend))
  8392. (message "Agenda item and source killed")))))
  8393. (defvar org-archive-default-command) ; defined in org-archive.el
  8394. (defun org-agenda-archive-default ()
  8395. "Archive the entry or subtree belonging to the current agenda entry."
  8396. (interactive)
  8397. (require 'org-archive)
  8398. (funcall-interactively
  8399. #'org-agenda-archive-with org-archive-default-command))
  8400. (defun org-agenda-archive-default-with-confirmation ()
  8401. "Archive the entry or subtree belonging to the current agenda entry."
  8402. (interactive)
  8403. (require 'org-archive)
  8404. (funcall-interactively
  8405. #'org-agenda-archive-with org-archive-default-command 'confirm))
  8406. (defun org-agenda-archive ()
  8407. "Archive the entry or subtree belonging to the current agenda entry."
  8408. (interactive)
  8409. (funcall-interactively
  8410. #'org-agenda-archive-with 'org-archive-subtree))
  8411. (defun org-agenda-archive-to-archive-sibling ()
  8412. "Move the entry to the archive sibling."
  8413. (interactive)
  8414. (funcall-interactively
  8415. #'org-agenda-archive-with 'org-archive-to-archive-sibling))
  8416. (defvar org-archive-from-agenda)
  8417. (defun org-agenda-archive-with (cmd &optional confirm)
  8418. "Move the entry to the archive sibling."
  8419. (interactive)
  8420. (or (eq major-mode 'org-agenda-mode) (user-error "Not in agenda"))
  8421. (org-agenda-maybe-loop
  8422. #'org-agenda-archive-with cmd nil t
  8423. (let* ((bufname-orig (buffer-name))
  8424. (marker (or (org-get-at-bol 'org-marker)
  8425. (org-agenda-error)))
  8426. (buffer (marker-buffer marker))
  8427. (pos (marker-position marker)))
  8428. (org-with-remote-undo buffer
  8429. (with-current-buffer buffer
  8430. (if (derived-mode-p 'org-mode)
  8431. (if (and confirm
  8432. (not (y-or-n-p "Archive this subtree or entry? ")))
  8433. (error "Abort")
  8434. (save-window-excursion
  8435. (goto-char pos)
  8436. (let ((org-agenda-buffer-name bufname-orig))
  8437. (org-remove-subtree-entries-from-agenda))
  8438. (org-back-to-heading t)
  8439. (let ((org-archive-from-agenda t))
  8440. (funcall cmd))))
  8441. (error "Archiving works only in Org files")))))))
  8442. (defun org-remove-subtree-entries-from-agenda (&optional buf beg end)
  8443. "Remove all lines in the agenda that correspond to a given subtree.
  8444. The subtree is the one in buffer BUF, starting at BEG and ending at END.
  8445. If this information is not given, the function uses the tree at point."
  8446. (let ((buf (or buf (current-buffer))) m p)
  8447. (save-excursion
  8448. (unless (and beg end)
  8449. (org-back-to-heading t)
  8450. (setq beg (point))
  8451. (org-end-of-subtree t)
  8452. (setq end (point)))
  8453. (set-buffer (get-buffer org-agenda-buffer-name))
  8454. (save-excursion
  8455. (goto-char (point-max))
  8456. (beginning-of-line 1)
  8457. (while (not (bobp))
  8458. (when (and (setq m (org-get-at-bol 'org-marker))
  8459. (equal buf (marker-buffer m))
  8460. (setq p (marker-position m))
  8461. (>= p beg)
  8462. (< p end))
  8463. (let ((inhibit-read-only t))
  8464. (delete-region (point-at-bol) (1+ (point-at-eol)))))
  8465. (beginning-of-line 0))))))
  8466. (defun org-agenda-refile (&optional goto rfloc no-update)
  8467. "Refile the item at point.
  8468. When called with `\\[universal-argument] \\[universal-argument]', \
  8469. go to the location of the last
  8470. refiled item.
  8471. When called with `\\[universal-argument] \\[universal-argument] \
  8472. \\[universal-argument]' prefix or when GOTO is 0, clear
  8473. the refile cache.
  8474. RFLOC can be a refile location obtained in a different way.
  8475. When NO-UPDATE is non-nil, don't redo the agenda buffer."
  8476. (interactive "P")
  8477. (cond
  8478. ((member goto '(0 (64)))
  8479. (org-refile-cache-clear))
  8480. ((equal goto '(16))
  8481. (org-refile-goto-last-stored))
  8482. (t
  8483. (let* ((buffer-orig (buffer-name))
  8484. (marker (or (org-get-at-bol 'org-hd-marker)
  8485. (org-agenda-error)))
  8486. (buffer (marker-buffer marker))
  8487. ;; (pos (marker-position marker))
  8488. (rfloc (or rfloc
  8489. (org-refile-get-location
  8490. (if goto "Goto" "Refile to") buffer
  8491. org-refile-allow-creating-parent-nodes))))
  8492. (with-current-buffer buffer
  8493. (org-with-wide-buffer
  8494. (goto-char marker)
  8495. (let ((org-agenda-buffer-name buffer-orig))
  8496. (org-remove-subtree-entries-from-agenda))
  8497. (org-refile goto buffer rfloc))))
  8498. (unless no-update (org-agenda-redo)))))
  8499. (defun org-agenda-open-link (&optional arg)
  8500. "Open the link(s) in the current entry, if any.
  8501. This looks for a link in the displayed line in the agenda.
  8502. It also looks at the text of the entry itself."
  8503. (interactive "P")
  8504. (let* ((marker (or (org-get-at-bol 'org-hd-marker)
  8505. (org-get-at-bol 'org-marker)))
  8506. (buffer (and marker (marker-buffer marker)))
  8507. (prefix (buffer-substring (point-at-bol) (point-at-eol)))
  8508. (lkall (and buffer (org-offer-links-in-entry
  8509. buffer marker arg prefix)))
  8510. (lk0 (car lkall))
  8511. (lk (if (stringp lk0) (list lk0) lk0))
  8512. (lkend (cdr lkall))
  8513. trg)
  8514. (cond
  8515. ((and buffer lk)
  8516. (mapcar (lambda(l)
  8517. (with-current-buffer buffer
  8518. (setq trg (and (string-match org-link-bracket-re l)
  8519. (match-string 1 l)))
  8520. (if (or (not trg) (string-match org-link-any-re trg))
  8521. ;; Don't use `org-with-wide-buffer' here as
  8522. ;; opening the link may result in moving the point
  8523. (save-restriction
  8524. (widen)
  8525. (goto-char marker)
  8526. (when (search-forward l nil lkend)
  8527. (goto-char (match-beginning 0))
  8528. (org-open-at-point)))
  8529. ;; This is an internal link, widen the buffer
  8530. ;; FIXME: use `org-switch-to-buffer-other-window'?
  8531. (switch-to-buffer-other-window buffer)
  8532. (widen)
  8533. (goto-char marker)
  8534. (when (search-forward l nil lkend)
  8535. (goto-char (match-beginning 0))
  8536. (org-open-at-point)))))
  8537. lk))
  8538. ((or (org-in-regexp (concat "\\(" org-link-bracket-re "\\)"))
  8539. (save-excursion
  8540. (beginning-of-line 1)
  8541. (looking-at (concat ".*?\\(" org-link-bracket-re "\\)"))))
  8542. (org-link-open-from-string (match-string 1)))
  8543. (t (message "No link to open here")))))
  8544. (defun org-agenda-copy-local-variable (var)
  8545. "Get a variable from a referenced buffer and install it here."
  8546. (let ((m (org-get-at-bol 'org-marker)))
  8547. (when (and m (buffer-live-p (marker-buffer m)))
  8548. (set (make-local-variable var)
  8549. (with-current-buffer (marker-buffer m)
  8550. (symbol-value var))))))
  8551. (defun org-agenda-switch-to (&optional delete-other-windows)
  8552. "Go to the Org mode file which contains the item at point.
  8553. When optional argument DELETE-OTHER-WINDOWS is non-nil, the
  8554. displayed Org file fills the frame."
  8555. (interactive)
  8556. (if (and org-return-follows-link
  8557. (not (org-get-at-bol 'org-marker))
  8558. (org-in-regexp org-link-bracket-re))
  8559. (org-link-open-from-string (match-string 0))
  8560. (let* ((marker (or (org-get-at-bol 'org-marker)
  8561. (org-agenda-error)))
  8562. (buffer (marker-buffer marker))
  8563. (pos (marker-position marker)))
  8564. (unless buffer (user-error "Trying to switch to non-existent buffer"))
  8565. (pop-to-buffer-same-window buffer)
  8566. (when delete-other-windows (delete-other-windows))
  8567. (widen)
  8568. (goto-char pos)
  8569. (when (derived-mode-p 'org-mode)
  8570. (org-show-context 'agenda)
  8571. (run-hooks 'org-agenda-after-show-hook)))))
  8572. (defun org-agenda-goto-mouse (ev)
  8573. "Go to the Org file which contains the item at the mouse click."
  8574. (interactive "e")
  8575. (mouse-set-point ev)
  8576. (org-agenda-goto))
  8577. (defun org-agenda-show (&optional full-entry)
  8578. "Display the Org file which contains the item at point.
  8579. With prefix argument FULL-ENTRY, make the entire entry visible
  8580. if it was hidden in the outline."
  8581. (interactive "P")
  8582. (let ((win (selected-window)))
  8583. (org-agenda-goto t)
  8584. (when full-entry (org-show-entry))
  8585. (select-window win)))
  8586. (defvar org-agenda-show-window nil)
  8587. (defun org-agenda-show-and-scroll-up (&optional arg)
  8588. "Display the Org file which contains the item at point.
  8589. When called repeatedly, scroll the window that is displaying the buffer.
  8590. With a `\\[universal-argument]' prefix argument, display the item, but \
  8591. fold drawers."
  8592. (interactive "P")
  8593. (let ((win (selected-window)))
  8594. (if (and (window-live-p org-agenda-show-window)
  8595. (eq this-command last-command))
  8596. (progn
  8597. (select-window org-agenda-show-window)
  8598. (ignore-errors (scroll-up)))
  8599. (org-agenda-goto t)
  8600. (org-show-entry)
  8601. (if arg (org-cycle-hide-drawers 'children)
  8602. (org-with-wide-buffer
  8603. (narrow-to-region (org-entry-beginning-position)
  8604. (org-entry-end-position))
  8605. (org-show-all '(drawers))))
  8606. (setq org-agenda-show-window (selected-window)))
  8607. (select-window win)))
  8608. (defun org-agenda-show-scroll-down ()
  8609. "Scroll down the window showing the agenda."
  8610. (interactive)
  8611. (let ((win (selected-window)))
  8612. (when (window-live-p org-agenda-show-window)
  8613. (select-window org-agenda-show-window)
  8614. (ignore-errors (scroll-down))
  8615. (select-window win))))
  8616. (defun org-agenda-show-1 (&optional more)
  8617. "Display the Org file which contains the item at point.
  8618. The prefix arg selects the amount of information to display:
  8619. 0 hide the subtree
  8620. 1 just show the entry according to defaults.
  8621. 2 show the children view
  8622. 3 show the subtree view
  8623. 4 show the entire subtree and any drawers
  8624. With prefix argument FULL-ENTRY, make the entire entry visible
  8625. if it was hidden in the outline."
  8626. (interactive "p")
  8627. (let ((win (selected-window)))
  8628. (org-agenda-goto t)
  8629. (org-back-to-heading)
  8630. (set-window-start (selected-window) (point-at-bol))
  8631. (cond
  8632. ((= more 0)
  8633. (org-flag-subtree t)
  8634. (save-excursion
  8635. (org-back-to-heading)
  8636. (run-hook-with-args 'org-cycle-hook 'folded))
  8637. (message "Remote: FOLDED"))
  8638. ((and (called-interactively-p 'any) (= more 1))
  8639. (message "Remote: show with default settings"))
  8640. ((= more 2)
  8641. (outline-show-entry)
  8642. (org-show-children)
  8643. (save-excursion
  8644. (org-back-to-heading)
  8645. (run-hook-with-args 'org-cycle-hook 'children))
  8646. (message "Remote: CHILDREN"))
  8647. ((= more 3)
  8648. (outline-show-subtree)
  8649. (save-excursion
  8650. (org-back-to-heading)
  8651. (run-hook-with-args 'org-cycle-hook 'subtree))
  8652. (message "Remote: SUBTREE"))
  8653. ((> more 3)
  8654. (outline-show-subtree)
  8655. (message "Remote: SUBTREE AND ALL DRAWERS")))
  8656. (select-window win)))
  8657. (defvar org-agenda-cycle-counter nil)
  8658. (defun org-agenda-cycle-show (&optional n)
  8659. "Show the current entry in another window, with default settings.
  8660. Default settings are taken from `org-show-context-detail'. When
  8661. use repeatedly in immediate succession, the remote entry will
  8662. cycle through visibility
  8663. children -> subtree -> folded
  8664. When called with a numeric prefix arg, that arg will be passed through to
  8665. `org-agenda-show-1'. For the interpretation of that argument, see the
  8666. docstring of `org-agenda-show-1'."
  8667. (interactive "P")
  8668. (if (integerp n)
  8669. (setq org-agenda-cycle-counter n)
  8670. (if (not (eq last-command this-command))
  8671. (setq org-agenda-cycle-counter 1)
  8672. (if (equal org-agenda-cycle-counter 0)
  8673. (setq org-agenda-cycle-counter 2)
  8674. (setq org-agenda-cycle-counter (1+ org-agenda-cycle-counter))
  8675. (when (> org-agenda-cycle-counter 3)
  8676. (setq org-agenda-cycle-counter 0)))))
  8677. (org-agenda-show-1 org-agenda-cycle-counter))
  8678. (defun org-agenda-recenter (arg)
  8679. "Display the Org file which contains the item at point and recenter."
  8680. (interactive "P")
  8681. (let ((win (selected-window)))
  8682. (org-agenda-goto t)
  8683. (recenter arg)
  8684. (select-window win)))
  8685. (defun org-agenda-show-mouse (ev)
  8686. "Display the Org file which contains the item at the mouse click."
  8687. (interactive "e")
  8688. (mouse-set-point ev)
  8689. (org-agenda-show))
  8690. (defun org-agenda-check-no-diary ()
  8691. "Check if the entry is a diary link and abort if yes."
  8692. (when (org-get-at-bol 'org-agenda-diary-link)
  8693. (org-agenda-error)))
  8694. (defun org-agenda-error ()
  8695. "Throw an error when a command is not allowed in the agenda."
  8696. (user-error "Command not allowed in this line"))
  8697. (defun org-agenda-tree-to-indirect-buffer (arg)
  8698. "Show the subtree corresponding to the current entry in an indirect buffer.
  8699. This calls the command `org-tree-to-indirect-buffer' from the original buffer.
  8700. With a numerical prefix ARG, go up to this level and then take that tree.
  8701. With a negative numeric ARG, go up by this number of levels.
  8702. With a `\\[universal-argument]' prefix, make a separate frame for this tree, \
  8703. i.e. don't use
  8704. the dedicated frame."
  8705. (interactive "P")
  8706. (if current-prefix-arg
  8707. (org-agenda-do-tree-to-indirect-buffer arg)
  8708. (let ((agenda-buffer (buffer-name))
  8709. (agenda-window (selected-window))
  8710. (indirect-window
  8711. (and org-last-indirect-buffer
  8712. (get-buffer-window org-last-indirect-buffer))))
  8713. (save-window-excursion (org-agenda-do-tree-to-indirect-buffer arg))
  8714. (unless (or (eq org-indirect-buffer-display 'new-frame)
  8715. (eq org-indirect-buffer-display 'dedicated-frame))
  8716. (unwind-protect
  8717. (unless (and indirect-window (window-live-p indirect-window))
  8718. (setq indirect-window (split-window agenda-window)))
  8719. (and indirect-window (select-window indirect-window))
  8720. (switch-to-buffer org-last-indirect-buffer :norecord)
  8721. (fit-window-to-buffer indirect-window)))
  8722. (select-window (get-buffer-window agenda-buffer))
  8723. (setq org-agenda-last-indirect-buffer org-last-indirect-buffer))))
  8724. (defun org-agenda-do-tree-to-indirect-buffer (arg)
  8725. "Same as `org-agenda-tree-to-indirect-buffer' without saving window."
  8726. (org-agenda-check-no-diary)
  8727. (let* ((marker (or (org-get-at-bol 'org-marker)
  8728. (org-agenda-error)))
  8729. (buffer (marker-buffer marker))
  8730. (pos (marker-position marker)))
  8731. (with-current-buffer buffer
  8732. (save-excursion
  8733. (goto-char pos)
  8734. (org-tree-to-indirect-buffer arg)))))
  8735. (defvar org-last-heading-marker (make-marker)
  8736. "Marker pointing to the headline that last changed its TODO state
  8737. by a remote command from the agenda.")
  8738. (defun org-agenda-todo-nextset ()
  8739. "Switch TODO entry to next sequence."
  8740. (interactive)
  8741. (org-agenda-todo 'nextset))
  8742. (defun org-agenda-todo-previousset ()
  8743. "Switch TODO entry to previous sequence."
  8744. (interactive)
  8745. (org-agenda-todo 'previousset))
  8746. (defvar org-agenda-headline-snapshot-before-repeat)
  8747. (defun org-agenda-todo (&optional arg)
  8748. "Cycle TODO state of line at point, also in Org file.
  8749. This changes the line at point, all other lines in the agenda referring to
  8750. the same tree node, and the headline of the tree node in the Org file."
  8751. (interactive "P")
  8752. (org-agenda-check-no-diary)
  8753. (org-agenda-maybe-loop
  8754. #'org-agenda-todo arg nil nil
  8755. (let* ((col (current-column))
  8756. (marker (or (org-get-at-bol 'org-marker)
  8757. (org-agenda-error)))
  8758. (buffer (marker-buffer marker))
  8759. (pos (marker-position marker))
  8760. (hdmarker (org-get-at-bol 'org-hd-marker))
  8761. (todayp (org-agenda-today-p (org-get-at-bol 'day)))
  8762. (inhibit-read-only t)
  8763. org-loop-over-headlines-in-active-region
  8764. org-agenda-headline-snapshot-before-repeat newhead just-one)
  8765. (org-with-remote-undo buffer
  8766. (with-current-buffer buffer
  8767. (widen)
  8768. (goto-char pos)
  8769. (org-show-context 'agenda)
  8770. (let ((current-prefix-arg arg))
  8771. (call-interactively 'org-todo))
  8772. (and (bolp) (forward-char 1))
  8773. (setq newhead (org-get-heading))
  8774. (when (and org-agenda-headline-snapshot-before-repeat
  8775. (not (equal org-agenda-headline-snapshot-before-repeat
  8776. newhead))
  8777. todayp)
  8778. (setq newhead org-agenda-headline-snapshot-before-repeat
  8779. just-one t))
  8780. (save-excursion
  8781. (org-back-to-heading)
  8782. (move-marker org-last-heading-marker (point))))
  8783. (beginning-of-line 1)
  8784. (save-window-excursion
  8785. (org-agenda-change-all-lines newhead hdmarker 'fixface just-one))
  8786. (when (bound-and-true-p org-clock-out-when-done)
  8787. (string-match (concat "^" (regexp-opt org-done-keywords-for-agenda))
  8788. newhead)
  8789. (org-agenda-unmark-clocking-task))
  8790. (org-move-to-column col)
  8791. (org-agenda-mark-clocking-task)))))
  8792. (defun org-agenda-add-note (&optional _arg)
  8793. "Add a time-stamped note to the entry at point."
  8794. (interactive) ;; "P"
  8795. (org-agenda-check-no-diary)
  8796. (let* ((marker (or (org-get-at-bol 'org-marker)
  8797. (org-agenda-error)))
  8798. (buffer (marker-buffer marker))
  8799. (pos (marker-position marker))
  8800. (_hdmarker (org-get-at-bol 'org-hd-marker))
  8801. (inhibit-read-only t))
  8802. (with-current-buffer buffer
  8803. (widen)
  8804. (goto-char pos)
  8805. (org-show-context 'agenda)
  8806. (org-add-note))))
  8807. (defun org-agenda-change-all-lines (newhead hdmarker
  8808. &optional fixface just-this)
  8809. "Change all lines in the agenda buffer which match HDMARKER.
  8810. The new content of the line will be NEWHEAD (as modified by
  8811. `org-agenda-format-item'). HDMARKER is checked with
  8812. `equal' against all `org-hd-marker' text properties in the file.
  8813. If FIXFACE is non-nil, the face of each item is modified according to
  8814. the new TODO state.
  8815. If JUST-THIS is non-nil, change just the current line, not all.
  8816. If FORCE-TAGS is non-nil, the car of it returns the new tags."
  8817. (let* ((inhibit-read-only t)
  8818. (line (org-current-line))
  8819. (org-agenda-buffer (current-buffer))
  8820. (thetags (with-current-buffer (marker-buffer hdmarker)
  8821. (org-get-tags hdmarker)))
  8822. props m undone-face done-face finish new dotime level cat tags) ;; pl
  8823. (save-excursion
  8824. (goto-char (point-max))
  8825. (beginning-of-line 1)
  8826. (while (not finish)
  8827. (setq finish (bobp))
  8828. (when (and (setq m (org-get-at-bol 'org-hd-marker))
  8829. (or (not just-this) (= (org-current-line) line))
  8830. (equal m hdmarker))
  8831. (setq props (text-properties-at (point))
  8832. dotime (org-get-at-bol 'dotime)
  8833. cat (org-agenda-get-category)
  8834. level (org-get-at-bol 'level)
  8835. tags thetags
  8836. new
  8837. (let ((org-prefix-format-compiled
  8838. (or (get-text-property (min (1- (point-max)) (point)) 'format)
  8839. org-prefix-format-compiled))
  8840. (extra (org-get-at-bol 'extra)))
  8841. (with-current-buffer (marker-buffer hdmarker)
  8842. (org-with-wide-buffer
  8843. (org-agenda-format-item extra newhead level cat tags dotime))))
  8844. ;; pl (text-property-any (point-at-bol) (point-at-eol) 'org-heading t)
  8845. undone-face (org-get-at-bol 'undone-face)
  8846. done-face (org-get-at-bol 'done-face))
  8847. (beginning-of-line 1)
  8848. (cond
  8849. ((equal new "") (delete-region (point) (line-beginning-position 2)))
  8850. ((looking-at ".*")
  8851. ;; When replacing the whole line, preserve bulk mark
  8852. ;; overlay, if any.
  8853. (let ((mark (catch :overlay
  8854. (dolist (o (overlays-in (point) (+ 2 (point))))
  8855. (when (eq (overlay-get o 'type)
  8856. 'org-marked-entry-overlay)
  8857. (throw :overlay o))))))
  8858. (replace-match new t t)
  8859. (beginning-of-line)
  8860. (when mark (move-overlay mark (point) (+ 2 (point)))))
  8861. (add-text-properties (point-at-bol) (point-at-eol) props)
  8862. (when fixface
  8863. (add-text-properties
  8864. (point-at-bol) (point-at-eol)
  8865. (list 'face
  8866. (if org-last-todo-state-is-todo
  8867. undone-face done-face))))
  8868. (org-agenda-highlight-todo 'line)
  8869. (beginning-of-line 1))
  8870. (t (error "Line update did not work")))
  8871. (save-restriction
  8872. (narrow-to-region (point-at-bol) (point-at-eol))
  8873. (org-agenda-finalize)))
  8874. (beginning-of-line 0)))))
  8875. (defun org-agenda-align-tags (&optional line)
  8876. "Align all tags in agenda items to `org-agenda-tags-column'.
  8877. When optional argument LINE is non-nil, align tags only on the
  8878. current line."
  8879. (let ((inhibit-read-only t)
  8880. (org-agenda-tags-column (if (eq 'auto org-agenda-tags-column)
  8881. (- (window-text-width))
  8882. org-agenda-tags-column))
  8883. (end (and line (line-end-position)))
  8884. l c)
  8885. (save-excursion
  8886. (goto-char (if line (line-beginning-position) (point-min)))
  8887. (while (re-search-forward org-tag-group-re end t)
  8888. (add-text-properties
  8889. (match-beginning 1) (match-end 1)
  8890. (list 'face (delq nil (let ((prop (get-text-property
  8891. (match-beginning 1) 'face)))
  8892. (or (listp prop) (setq prop (list prop)))
  8893. (if (memq 'org-tag prop)
  8894. prop
  8895. (cons 'org-tag prop))))))
  8896. (setq l (string-width (match-string 1))
  8897. c (if (< org-agenda-tags-column 0)
  8898. (- (abs org-agenda-tags-column) l)
  8899. org-agenda-tags-column))
  8900. (goto-char (match-beginning 1))
  8901. (delete-region (save-excursion (skip-chars-backward " \t") (point))
  8902. (point))
  8903. (insert (org-add-props
  8904. (make-string (max 1 (- c (current-column))) ?\s)
  8905. (plist-put (copy-sequence (text-properties-at (point)))
  8906. 'face nil))))
  8907. (goto-char (point-min))
  8908. (org-font-lock-add-tag-faces (point-max)))))
  8909. (defun org-agenda-priority-up ()
  8910. "Increase the priority of line at point, also in Org file."
  8911. (interactive)
  8912. (org-agenda-priority 'up))
  8913. (defun org-agenda-priority-down ()
  8914. "Decrease the priority of line at point, also in Org file."
  8915. (interactive)
  8916. (org-agenda-priority 'down))
  8917. (defun org-agenda-priority (&optional force-direction)
  8918. "Set the priority of line at point, also in Org file.
  8919. This changes the line at point, all other lines in the agenda referring to
  8920. the same tree node, and the headline of the tree node in the Org file.
  8921. Called with a universal prefix arg, show the priority instead of setting it."
  8922. (interactive "P")
  8923. (if (equal force-direction '(4))
  8924. (org-priority-show)
  8925. (unless org-priority-enable-commands
  8926. (user-error "Priority commands are disabled"))
  8927. (org-agenda-check-no-diary)
  8928. (let* ((col (current-column))
  8929. ;; (marker (or (org-get-at-bol 'org-marker)
  8930. ;; (org-agenda-error)))
  8931. (hdmarker (org-get-at-bol 'org-hd-marker))
  8932. (buffer (marker-buffer hdmarker))
  8933. (pos (marker-position hdmarker))
  8934. (inhibit-read-only t)
  8935. newhead)
  8936. (org-with-remote-undo buffer
  8937. (with-current-buffer buffer
  8938. (widen)
  8939. (goto-char pos)
  8940. (org-show-context 'agenda)
  8941. (org-priority force-direction)
  8942. (end-of-line 1)
  8943. (setq newhead (org-get-heading)))
  8944. (org-agenda-change-all-lines newhead hdmarker)
  8945. (org-move-to-column col)))))
  8946. ;; FIXME: should fix the tags property of the agenda line.
  8947. (defun org-agenda-set-tags (&optional tag onoff)
  8948. "Set tags for the current headline."
  8949. (interactive)
  8950. (org-agenda-check-no-diary)
  8951. (if (and (org-region-active-p) (called-interactively-p 'any))
  8952. (call-interactively 'org-change-tag-in-region)
  8953. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8954. (org-agenda-error)))
  8955. (buffer (marker-buffer hdmarker))
  8956. (pos (marker-position hdmarker))
  8957. (inhibit-read-only t)
  8958. newhead)
  8959. (org-with-remote-undo buffer
  8960. (with-current-buffer buffer
  8961. (widen)
  8962. (goto-char pos)
  8963. (org-show-context 'agenda)
  8964. (if tag
  8965. (org-toggle-tag tag onoff)
  8966. (call-interactively #'org-set-tags-command))
  8967. (end-of-line 1)
  8968. (setq newhead (org-get-heading)))
  8969. (org-agenda-change-all-lines newhead hdmarker)
  8970. (beginning-of-line 1)))))
  8971. (defun org-agenda-set-property ()
  8972. "Set a property for the current headline."
  8973. (interactive)
  8974. (org-agenda-check-no-diary)
  8975. (org-agenda-maybe-loop
  8976. #'org-agenda-set-property nil nil nil
  8977. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8978. (org-agenda-error)))
  8979. (buffer (marker-buffer hdmarker))
  8980. (pos (marker-position hdmarker))
  8981. (inhibit-read-only t)
  8982. ) ;; newhead
  8983. (org-with-remote-undo buffer
  8984. (with-current-buffer buffer
  8985. (widen)
  8986. (goto-char pos)
  8987. (org-show-context 'agenda)
  8988. (call-interactively 'org-set-property))))))
  8989. (defun org-agenda-set-effort ()
  8990. "Set the effort property for the current headline."
  8991. (interactive)
  8992. (org-agenda-check-no-diary)
  8993. (org-agenda-maybe-loop
  8994. #'org-agenda-set-effort nil nil nil
  8995. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8996. (org-agenda-error)))
  8997. (buffer (marker-buffer hdmarker))
  8998. (pos (marker-position hdmarker))
  8999. (inhibit-read-only t)
  9000. newhead)
  9001. (org-with-remote-undo buffer
  9002. (with-current-buffer buffer
  9003. (widen)
  9004. (goto-char pos)
  9005. (org-show-context 'agenda)
  9006. (call-interactively 'org-set-effort)
  9007. (end-of-line 1)
  9008. (setq newhead (org-get-heading)))
  9009. (org-agenda-change-all-lines newhead hdmarker)))))
  9010. (defun org-agenda-toggle-archive-tag ()
  9011. "Toggle the archive tag for the current entry."
  9012. (interactive)
  9013. (org-agenda-check-no-diary)
  9014. (org-agenda-maybe-loop
  9015. #'org-agenda-toggle-archive-tag nil nil nil
  9016. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  9017. (org-agenda-error)))
  9018. (buffer (marker-buffer hdmarker))
  9019. (pos (marker-position hdmarker))
  9020. (inhibit-read-only t)
  9021. newhead)
  9022. (org-with-remote-undo buffer
  9023. (with-current-buffer buffer
  9024. (widen)
  9025. (goto-char pos)
  9026. (org-show-context 'agenda)
  9027. (call-interactively 'org-toggle-archive-tag)
  9028. (end-of-line 1)
  9029. (setq newhead (org-get-heading)))
  9030. (org-agenda-change-all-lines newhead hdmarker)
  9031. (beginning-of-line 1)))))
  9032. (defun org-agenda-do-date-later (arg)
  9033. (interactive "P")
  9034. (cond
  9035. ((or (equal arg '(16))
  9036. (memq last-command
  9037. '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
  9038. (setq this-command 'org-agenda-date-later-minutes)
  9039. (org-agenda-date-later-minutes 1))
  9040. ((or (equal arg '(4))
  9041. (memq last-command
  9042. '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
  9043. (setq this-command 'org-agenda-date-later-hours)
  9044. (org-agenda-date-later-hours 1))
  9045. (t
  9046. (org-agenda-date-later (prefix-numeric-value arg)))))
  9047. (defun org-agenda-do-date-earlier (arg)
  9048. (interactive "P")
  9049. (cond
  9050. ((or (equal arg '(16))
  9051. (memq last-command
  9052. '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
  9053. (setq this-command 'org-agenda-date-earlier-minutes)
  9054. (org-agenda-date-earlier-minutes 1))
  9055. ((or (equal arg '(4))
  9056. (memq last-command
  9057. '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
  9058. (setq this-command 'org-agenda-date-earlier-hours)
  9059. (org-agenda-date-earlier-hours 1))
  9060. (t
  9061. (org-agenda-date-earlier (prefix-numeric-value arg)))))
  9062. (defun org-agenda-date-later (arg &optional what)
  9063. "Change the date of this item to ARG day(s) later."
  9064. (interactive "p")
  9065. (org-agenda-check-type t 'agenda)
  9066. (org-agenda-check-no-diary)
  9067. (let* ((marker (or (org-get-at-bol 'org-marker)
  9068. (org-agenda-error)))
  9069. (buffer (marker-buffer marker))
  9070. (pos (marker-position marker))
  9071. cdate today)
  9072. (org-with-remote-undo buffer
  9073. (with-current-buffer buffer
  9074. (widen)
  9075. (goto-char pos)
  9076. (unless (org-at-timestamp-p 'lax) (error "Cannot find time stamp"))
  9077. (when (and org-agenda-move-date-from-past-immediately-to-today
  9078. (equal arg 1)
  9079. (or (not what) (eq what 'day))
  9080. (not (save-match-data (org-at-date-range-p))))
  9081. (setq cdate (org-parse-time-string (match-string 0) 'nodefault)
  9082. cdate (calendar-absolute-from-gregorian
  9083. (list (nth 4 cdate) (nth 3 cdate) (nth 5 cdate)))
  9084. today (org-today))
  9085. (when (> today cdate)
  9086. ;; immediately shift to today
  9087. (setq arg (- today cdate))))
  9088. (org-timestamp-change arg (or what 'day))
  9089. (when (and (org-at-date-range-p)
  9090. (re-search-backward org-tr-regexp-both (point-at-bol)))
  9091. (let ((end org-last-changed-timestamp))
  9092. (org-timestamp-change arg (or what 'day))
  9093. (setq org-last-changed-timestamp
  9094. (concat org-last-changed-timestamp "--" end)))))
  9095. (org-agenda-show-new-time marker org-last-changed-timestamp))
  9096. (message "Time stamp changed to %s" org-last-changed-timestamp)))
  9097. (defun org-agenda-date-earlier (arg &optional what)
  9098. "Change the date of this item to ARG day(s) earlier."
  9099. (interactive "p")
  9100. (org-agenda-date-later (- arg) what))
  9101. (defun org-agenda-date-later-minutes (arg)
  9102. "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
  9103. (interactive "p")
  9104. (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
  9105. (org-agenda-date-later arg 'minute))
  9106. (defun org-agenda-date-earlier-minutes (arg)
  9107. "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
  9108. (interactive "p")
  9109. (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
  9110. (org-agenda-date-earlier arg 'minute))
  9111. (defun org-agenda-date-later-hours (arg)
  9112. "Change the time of this item, in hour steps."
  9113. (interactive "p")
  9114. (org-agenda-date-later arg 'hour))
  9115. (defun org-agenda-date-earlier-hours (arg)
  9116. "Change the time of this item, in hour steps."
  9117. (interactive "p")
  9118. (org-agenda-date-earlier arg 'hour))
  9119. (defun org-agenda-show-new-time (marker stamp &optional prefix)
  9120. "Show new date stamp via text properties."
  9121. ;; We use text properties to make this undoable
  9122. (let ((inhibit-read-only t))
  9123. (setq stamp (concat prefix " => " stamp " "))
  9124. (save-excursion
  9125. (goto-char (point-max))
  9126. (while (not (bobp))
  9127. (when (equal marker (org-get-at-bol 'org-marker))
  9128. (remove-text-properties (line-beginning-position)
  9129. (line-end-position)
  9130. '(display nil))
  9131. (org-move-to-column
  9132. (- (/ (window-width nil t) (window-font-width)) (length stamp)) t)
  9133. (add-text-properties
  9134. (1- (point)) (point-at-eol)
  9135. (list 'display (org-add-props stamp nil
  9136. 'face '(secondary-selection default))))
  9137. (beginning-of-line 1))
  9138. (beginning-of-line 0)))))
  9139. (defun org-agenda-date-prompt (arg)
  9140. "Change the date of this item. Date is prompted for, with default today.
  9141. The prefix ARG is passed to the `org-time-stamp' command and can therefore
  9142. be used to request time specification in the time stamp."
  9143. (interactive "P")
  9144. (org-agenda-check-type t 'agenda)
  9145. (org-agenda-check-no-diary)
  9146. (org-agenda-maybe-loop
  9147. #'org-agenda-date-prompt arg t nil
  9148. (let* ((marker (or (org-get-at-bol 'org-marker)
  9149. (org-agenda-error)))
  9150. (buffer (marker-buffer marker))
  9151. (pos (marker-position marker)))
  9152. (org-with-remote-undo buffer
  9153. (with-current-buffer buffer
  9154. (widen)
  9155. (goto-char pos)
  9156. (unless (org-at-timestamp-p 'lax) (error "Cannot find time stamp"))
  9157. (org-time-stamp arg (equal (char-after (match-beginning 0)) ?\[)))
  9158. (org-agenda-show-new-time marker org-last-changed-timestamp))
  9159. (message "Time stamp changed to %s" org-last-changed-timestamp))))
  9160. (defun org-agenda-schedule (arg &optional time)
  9161. "Schedule the item at point.
  9162. ARG is passed through to `org-schedule'."
  9163. (interactive "P")
  9164. (org-agenda-check-type t 'agenda 'todo 'tags 'search)
  9165. (org-agenda-check-no-diary)
  9166. (org-agenda-maybe-loop
  9167. #'org-agenda-schedule arg t nil
  9168. (let* ((marker (or (org-get-at-bol 'org-marker)
  9169. (org-agenda-error)))
  9170. ;; (type (marker-insertion-type marker))
  9171. (buffer (marker-buffer marker))
  9172. (pos (marker-position marker))
  9173. ts)
  9174. (set-marker-insertion-type marker t)
  9175. (org-with-remote-undo buffer
  9176. (with-current-buffer buffer
  9177. (widen)
  9178. (goto-char pos)
  9179. (setq ts (org-schedule arg time)))
  9180. (org-agenda-show-new-time marker ts " S"))
  9181. (message "%s" ts))))
  9182. (defun org-agenda-deadline (arg &optional time)
  9183. "Schedule the item at point.
  9184. ARG is passed through to `org-deadline'."
  9185. (interactive "P")
  9186. (org-agenda-check-type t 'agenda 'todo 'tags 'search)
  9187. (org-agenda-check-no-diary)
  9188. (org-agenda-maybe-loop
  9189. #'org-agenda-deadline arg t nil
  9190. (let* ((marker (or (org-get-at-bol 'org-marker)
  9191. (org-agenda-error)))
  9192. (buffer (marker-buffer marker))
  9193. (pos (marker-position marker))
  9194. ts)
  9195. (org-with-remote-undo buffer
  9196. (with-current-buffer buffer
  9197. (widen)
  9198. (goto-char pos)
  9199. (setq ts (org-deadline arg time)))
  9200. (org-agenda-show-new-time marker ts " D"))
  9201. (message "%s" ts))))
  9202. (defun org-agenda-clock-in (&optional arg)
  9203. "Start the clock on the currently selected item."
  9204. (interactive "P")
  9205. (org-agenda-check-no-diary)
  9206. (if (equal arg '(4))
  9207. (org-clock-in arg)
  9208. (let* ((marker (or (org-get-at-bol 'org-marker)
  9209. (org-agenda-error)))
  9210. (hdmarker (or (org-get-at-bol 'org-hd-marker) marker))
  9211. (pos (marker-position marker))
  9212. (col (current-column))
  9213. newhead)
  9214. (org-with-remote-undo (marker-buffer marker)
  9215. (with-current-buffer (marker-buffer marker)
  9216. (widen)
  9217. (goto-char pos)
  9218. (org-show-context 'agenda)
  9219. (org-clock-in arg)
  9220. (setq newhead (org-get-heading)))
  9221. (org-agenda-change-all-lines newhead hdmarker))
  9222. (org-move-to-column col))))
  9223. (defun org-agenda-clock-out ()
  9224. "Stop the currently running clock."
  9225. (interactive)
  9226. (unless (marker-buffer org-clock-marker)
  9227. (user-error "No running clock"))
  9228. (let ((marker (make-marker)) (col (current-column)) newhead)
  9229. (org-with-remote-undo (marker-buffer org-clock-marker)
  9230. (with-current-buffer (marker-buffer org-clock-marker)
  9231. (org-with-wide-buffer
  9232. (goto-char org-clock-marker)
  9233. (org-back-to-heading t)
  9234. (move-marker marker (point))
  9235. (org-clock-out)
  9236. (setq newhead (org-get-heading)))))
  9237. (org-agenda-change-all-lines newhead marker)
  9238. (move-marker marker nil)
  9239. (org-move-to-column col)
  9240. (org-agenda-unmark-clocking-task)))
  9241. (defun org-agenda-clock-cancel (&optional _arg)
  9242. "Cancel the currently running clock."
  9243. (interactive) ;; "P"
  9244. (unless (marker-buffer org-clock-marker)
  9245. (user-error "No running clock"))
  9246. (org-with-remote-undo (marker-buffer org-clock-marker)
  9247. (org-clock-cancel)))
  9248. (defun org-agenda-clock-goto ()
  9249. "Jump to the currently clocked in task within the agenda.
  9250. If the currently clocked in task is not listed in the agenda
  9251. buffer, display it in another window."
  9252. (interactive)
  9253. (let (pos)
  9254. (mapc (lambda (o)
  9255. (when (eq (overlay-get o 'type) 'org-agenda-clocking)
  9256. (setq pos (overlay-start o))))
  9257. (overlays-in (point-min) (point-max)))
  9258. (cond (pos (goto-char pos))
  9259. ;; If the currently clocked entry is not in the agenda
  9260. ;; buffer, we visit it in another window:
  9261. ((bound-and-true-p org-clock-current-task)
  9262. (org-switch-to-buffer-other-window (org-clock-goto)))
  9263. (t (message "No running clock, use `C-c C-x C-j' to jump to the most recent one")))))
  9264. (defun org-agenda-diary-entry-in-org-file ()
  9265. "Make a diary entry in the file `org-agenda-diary-file'."
  9266. (let (d1 d2 char (text "") dp1 dp2)
  9267. (if (equal (buffer-name) "*Calendar*")
  9268. (setq d1 (calendar-cursor-to-date t)
  9269. d2 (car calendar-mark-ring))
  9270. (setq dp1 (get-text-property (point-at-bol) 'day))
  9271. (unless dp1 (user-error "No date defined in current line"))
  9272. (setq d1 (calendar-gregorian-from-absolute dp1)
  9273. d2 (and (ignore-errors (mark))
  9274. (save-excursion
  9275. (goto-char (mark))
  9276. (setq dp2 (get-text-property (point-at-bol) 'day)))
  9277. (calendar-gregorian-from-absolute dp2))))
  9278. (message "Diary entry: [d]ay [a]nniversary [b]lock [j]ump to date tree")
  9279. (setq char (read-char-exclusive))
  9280. (cond
  9281. ((equal char ?d)
  9282. (setq text (read-string "Day entry: "))
  9283. (org-agenda-add-entry-to-org-agenda-diary-file 'day text d1)
  9284. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  9285. ((equal char ?a)
  9286. (setq d1 (list (car d1) (nth 1 d1)
  9287. (read-number (format "Reference year [%d]: " (nth 2 d1))
  9288. (nth 2 d1))))
  9289. (setq text (read-string "Anniversary (use %d to show years): "))
  9290. (org-agenda-add-entry-to-org-agenda-diary-file 'anniversary text d1)
  9291. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  9292. ((equal char ?b)
  9293. (setq text (read-string "Block entry: "))
  9294. (unless (and d1 d2 (not (equal d1 d2)))
  9295. (user-error "No block of days selected"))
  9296. (org-agenda-add-entry-to-org-agenda-diary-file 'block text d1 d2)
  9297. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  9298. ((equal char ?j)
  9299. (org-switch-to-buffer-other-window
  9300. (find-file-noselect org-agenda-diary-file))
  9301. (require 'org-datetree)
  9302. (org-datetree-find-date-create d1)
  9303. (org-reveal t))
  9304. (t (user-error "Invalid selection character `%c'" char)))))
  9305. (defcustom org-agenda-insert-diary-strategy 'date-tree
  9306. "Where in `org-agenda-diary-file' should new entries be added?
  9307. Valid values:
  9308. date-tree in the date tree, as first child of the date
  9309. date-tree-last in the date tree, as last child of the date
  9310. top-level as top-level entries at the end of the file."
  9311. :group 'org-agenda
  9312. :type '(choice
  9313. (const :tag "first in a date tree" date-tree)
  9314. (const :tag "last in a date tree" date-tree-last)
  9315. (const :tag "as top level at end of file" top-level)))
  9316. (defcustom org-agenda-insert-diary-extract-time nil
  9317. "Non-nil means extract any time specification from the diary entry."
  9318. :group 'org-agenda
  9319. :version "24.1"
  9320. :type 'boolean)
  9321. (defcustom org-agenda-bulk-mark-char ">"
  9322. "A single-character string to be used as the bulk mark."
  9323. :group 'org-agenda
  9324. :version "24.1"
  9325. :type 'string)
  9326. (defun org-agenda-add-entry-to-org-agenda-diary-file (type text &optional d1 d2)
  9327. "Add a diary entry with TYPE to `org-agenda-diary-file'.
  9328. If TEXT is not empty, it will become the headline of the new entry, and
  9329. the resulting entry will not be shown. When TEXT is empty, switch to
  9330. `org-agenda-diary-file' and let the user finish the entry there."
  9331. (let ((cw (current-window-configuration)))
  9332. (org-switch-to-buffer-other-window
  9333. (find-file-noselect org-agenda-diary-file))
  9334. (widen)
  9335. (goto-char (point-min))
  9336. (cl-case type
  9337. (anniversary
  9338. (or (re-search-forward "^\\*[ \t]+Anniversaries" nil t)
  9339. (progn
  9340. (or (org-at-heading-p t)
  9341. (progn
  9342. (outline-next-heading)
  9343. (insert "* Anniversaries\n\n")
  9344. (beginning-of-line -1)))))
  9345. (outline-next-heading)
  9346. (org-back-over-empty-lines)
  9347. (backward-char 1)
  9348. (insert "\n")
  9349. (insert (format "%%%%(org-anniversary %d %2d %2d) %s"
  9350. (nth 2 d1) (car d1) (nth 1 d1) text)))
  9351. (day
  9352. (let ((org-prefix-has-time t)
  9353. (org-agenda-time-leading-zero t)
  9354. fmt time time2)
  9355. (when org-agenda-insert-diary-extract-time
  9356. ;; Use org-agenda-format-item to parse text for a time-range and
  9357. ;; remove it. FIXME: This is a hack, we should refactor
  9358. ;; that function to make time extraction available separately
  9359. (setq fmt (org-agenda-format-item nil text nil nil nil t)
  9360. time (get-text-property 0 'time fmt)
  9361. time2 (if (> (length time) 0)
  9362. ;; split-string removes trailing ...... if
  9363. ;; no end time given. First space
  9364. ;; separates time from date.
  9365. (concat " " (car (split-string time "\\.")))
  9366. nil)
  9367. text (get-text-property 0 'txt fmt)))
  9368. (if (eq org-agenda-insert-diary-strategy 'top-level)
  9369. (org-agenda-insert-diary-as-top-level text)
  9370. (require 'org-datetree)
  9371. (org-datetree-find-date-create d1)
  9372. (org-agenda-insert-diary-make-new-entry text))
  9373. (org-insert-time-stamp (org-time-from-absolute
  9374. (calendar-absolute-from-gregorian d1))
  9375. nil nil nil nil time2))
  9376. (end-of-line 0))
  9377. ((block) ;; Wrap this in (strictly unnecessary) parens because
  9378. ;; otherwise the indentation gets confused by the
  9379. ;; special meaning of 'block
  9380. (when (> (calendar-absolute-from-gregorian d1)
  9381. (calendar-absolute-from-gregorian d2))
  9382. (setq d1 (prog1 d2 (setq d2 d1))))
  9383. (if (eq org-agenda-insert-diary-strategy 'top-level)
  9384. (org-agenda-insert-diary-as-top-level text)
  9385. (require 'org-datetree)
  9386. (org-datetree-find-date-create d1)
  9387. (org-agenda-insert-diary-make-new-entry text))
  9388. (org-insert-time-stamp (org-time-from-absolute
  9389. (calendar-absolute-from-gregorian d1)))
  9390. (insert "--")
  9391. (org-insert-time-stamp (org-time-from-absolute
  9392. (calendar-absolute-from-gregorian d2)))
  9393. (end-of-line 0)))
  9394. (if (string-match "\\S-" text)
  9395. (progn
  9396. (set-window-configuration cw)
  9397. (message "%s entry added to %s"
  9398. (capitalize (symbol-name type))
  9399. (abbreviate-file-name org-agenda-diary-file)))
  9400. (org-reveal t)
  9401. (message "Please finish entry here"))))
  9402. (defun org-agenda-insert-diary-as-top-level (text)
  9403. "Make new entry as a top-level entry at the end of the file.
  9404. Add TEXT as headline, and position the cursor in the second line so that
  9405. a timestamp can be added there."
  9406. (widen)
  9407. (goto-char (point-max))
  9408. (unless (bolp) (insert "\n"))
  9409. (org-insert-heading nil t t)
  9410. (insert text)
  9411. (org-end-of-meta-data)
  9412. (unless (bolp) (insert "\n"))
  9413. (when org-adapt-indentation (indent-to-column 2)))
  9414. (defun org-agenda-insert-diary-make-new-entry (text)
  9415. "Make a new entry with TEXT as a child of the current subtree.
  9416. Position the point in the heading's first body line so that
  9417. a timestamp can be added there."
  9418. (cond
  9419. ((eq org-agenda-insert-diary-strategy 'date-tree-last)
  9420. (end-of-line)
  9421. (org-insert-heading '(4) t)
  9422. (org-do-demote))
  9423. (t
  9424. (outline-next-heading)
  9425. (org-back-over-empty-lines)
  9426. (unless (looking-at "[ \t]*$") (save-excursion (insert "\n")))
  9427. (org-insert-heading nil t)
  9428. (org-do-demote)))
  9429. (let ((col (current-column)))
  9430. (insert text)
  9431. (org-end-of-meta-data)
  9432. ;; Ensure point is left on a blank line, at proper indentation.
  9433. (unless (bolp) (insert "\n"))
  9434. (unless (looking-at-p "^[ \t]*$") (save-excursion (insert "\n")))
  9435. (when org-adapt-indentation (indent-to-column col)))
  9436. (org-show-set-visibility 'lineage))
  9437. (defun org-agenda-diary-entry ()
  9438. "Make a diary entry, like the `i' command from the calendar.
  9439. All the standard commands work: block, weekly etc.
  9440. When `org-agenda-diary-file' points to a file,
  9441. `org-agenda-diary-entry-in-org-file' is called instead to create
  9442. entries in that Org file."
  9443. (interactive)
  9444. (if (not (eq org-agenda-diary-file 'diary-file))
  9445. (org-agenda-diary-entry-in-org-file)
  9446. (require 'diary-lib)
  9447. (let* ((char (read-char-exclusive
  9448. "Diary entry: [d]ay [w]eekly [m]onthly [y]early\
  9449. [a]nniversary [b]lock [c]yclic"))
  9450. (cmd (cdr (assoc char
  9451. '((?d . diary-insert-entry)
  9452. (?w . diary-insert-weekly-entry)
  9453. (?m . diary-insert-monthly-entry)
  9454. (?y . diary-insert-yearly-entry)
  9455. (?a . diary-insert-anniversary-entry)
  9456. (?b . diary-insert-block-entry)
  9457. (?c . diary-insert-cyclic-entry)))))
  9458. (oldf (symbol-function 'calendar-cursor-to-date))
  9459. ;; (buf (get-file-buffer (substitute-in-file-name diary-file)))
  9460. (point (point))
  9461. (mark (or (mark t) (point))))
  9462. (unless cmd
  9463. (user-error "No command associated with <%c>" char))
  9464. (unless (and (get-text-property point 'day)
  9465. (or (not (equal ?b char))
  9466. (get-text-property mark 'day)))
  9467. (user-error "Don't know which date to use for diary entry"))
  9468. ;; We implement this by hacking the `calendar-cursor-to-date' function
  9469. ;; and the `calendar-mark-ring' variable. Saves a lot of code.
  9470. (let ((calendar-mark-ring
  9471. (list (calendar-gregorian-from-absolute
  9472. (or (get-text-property mark 'day)
  9473. (get-text-property point 'day))))))
  9474. (unwind-protect
  9475. (progn
  9476. (fset 'calendar-cursor-to-date
  9477. (lambda (&optional _error _dummy)
  9478. (calendar-gregorian-from-absolute
  9479. (get-text-property point 'day))))
  9480. (call-interactively cmd))
  9481. (fset 'calendar-cursor-to-date oldf))))))
  9482. (defun org-agenda-execute-calendar-command (cmd)
  9483. "Execute a calendar command from the agenda with date from cursor."
  9484. (org-agenda-check-type t 'agenda)
  9485. (require 'diary-lib)
  9486. (unless (get-text-property (min (1- (point-max)) (point)) 'day)
  9487. (user-error "Don't know which date to use for the calendar command"))
  9488. (let* ((oldf (symbol-function 'calendar-cursor-to-date))
  9489. (point (point))
  9490. (date (calendar-gregorian-from-absolute
  9491. (get-text-property point 'day))))
  9492. ;; the following 2 vars are needed in the calendar
  9493. (org-dlet
  9494. ((displayed-month (car date))
  9495. (displayed-year (nth 2 date)))
  9496. (unwind-protect
  9497. (progn
  9498. (fset 'calendar-cursor-to-date
  9499. (lambda (&optional _error _dummy)
  9500. (calendar-gregorian-from-absolute
  9501. (get-text-property point 'day))))
  9502. (call-interactively cmd))
  9503. (fset 'calendar-cursor-to-date oldf)))))
  9504. (defun org-agenda-phases-of-moon ()
  9505. "Display the phases of the moon for the 3 months around the cursor date."
  9506. (interactive)
  9507. (org-agenda-execute-calendar-command 'calendar-lunar-phases))
  9508. (defun org-agenda-holidays ()
  9509. "Display the holidays for the 3 months around the cursor date."
  9510. (interactive)
  9511. (org-agenda-execute-calendar-command 'calendar-list-holidays))
  9512. (defvar calendar-longitude) ; defined in calendar.el
  9513. (defvar calendar-latitude) ; defined in calendar.el
  9514. (defvar calendar-location-name) ; defined in calendar.el
  9515. (defun org-agenda-sunrise-sunset (arg)
  9516. "Display sunrise and sunset for the cursor date.
  9517. Latitude and longitude can be specified with the variables
  9518. `calendar-latitude' and `calendar-longitude'. When called with prefix
  9519. argument, latitude and longitude will be prompted for."
  9520. (interactive "P")
  9521. (require 'solar)
  9522. (let ((calendar-longitude (if arg nil calendar-longitude))
  9523. (calendar-latitude (if arg nil calendar-latitude))
  9524. (calendar-location-name
  9525. (if arg "the given coordinates" calendar-location-name)))
  9526. (org-agenda-execute-calendar-command 'calendar-sunrise-sunset)))
  9527. (defun org-agenda-goto-calendar ()
  9528. "Open the Emacs calendar with the date at the cursor."
  9529. (interactive)
  9530. (org-agenda-check-type t 'agenda)
  9531. (let* ((day (or (get-text-property (min (1- (point-max)) (point)) 'day)
  9532. (user-error "Don't know which date to open in calendar")))
  9533. (date (calendar-gregorian-from-absolute day))
  9534. (calendar-move-hook nil)
  9535. (calendar-view-holidays-initially-flag nil)
  9536. (calendar-view-diary-initially-flag nil))
  9537. (calendar)
  9538. (calendar-goto-date date)))
  9539. ;;;###autoload
  9540. (defun org-calendar-goto-agenda ()
  9541. "Compute the Org agenda for the calendar date displayed at the cursor.
  9542. This is a command that has to be installed in `calendar-mode-map'."
  9543. (interactive)
  9544. ;; Temporarily disable sticky agenda since user clearly wants to
  9545. ;; refresh view anyway.
  9546. (let ((org-agenda-buffer-tmp-name "*Org Agenda(a)*")
  9547. (org-agenda-sticky nil))
  9548. (org-agenda-list nil (calendar-absolute-from-gregorian
  9549. (calendar-cursor-to-date))
  9550. nil)))
  9551. (defun org-agenda-convert-date ()
  9552. (interactive)
  9553. (org-agenda-check-type t 'agenda)
  9554. (let ((day (get-text-property (min (1- (point-max)) (point)) 'day))
  9555. date s)
  9556. (unless day
  9557. (user-error "Don't know which date to convert"))
  9558. (setq date (calendar-gregorian-from-absolute day))
  9559. (setq s (concat
  9560. "Gregorian: " (calendar-date-string date) "\n"
  9561. "ISO: " (calendar-iso-date-string date) "\n"
  9562. "Day of Yr: " (calendar-day-of-year-string date) "\n"
  9563. "Julian: " (calendar-julian-date-string date) "\n"
  9564. "Astron. JD: " (calendar-astro-date-string date)
  9565. " (Julian date number at noon UTC)\n"
  9566. "Hebrew: " (calendar-hebrew-date-string date) " (until sunset)\n"
  9567. "Islamic: " (calendar-islamic-date-string date) " (until sunset)\n"
  9568. "French: " (calendar-french-date-string date) "\n"
  9569. "Bahá’í: " (calendar-bahai-date-string date) " (until sunset)\n"
  9570. "Mayan: " (calendar-mayan-date-string date) "\n"
  9571. "Coptic: " (calendar-coptic-date-string date) "\n"
  9572. "Ethiopic: " (calendar-ethiopic-date-string date) "\n"
  9573. "Persian: " (calendar-persian-date-string date) "\n"
  9574. "Chinese: " (calendar-chinese-date-string date) "\n"))
  9575. (with-output-to-temp-buffer "*Dates*"
  9576. (princ s))
  9577. (org-fit-window-to-buffer (get-buffer-window "*Dates*"))))
  9578. ;;; Bulk commands
  9579. (defun org-agenda-bulk-marked-p ()
  9580. "Non-nil when current entry is marked for bulk action."
  9581. (eq (get-char-property (point-at-bol) 'type)
  9582. 'org-marked-entry-overlay))
  9583. (defun org-agenda-bulk-mark (&optional arg)
  9584. "Mark entries for future bulk action.
  9585. When ARG is nil or one and region is not active then mark the
  9586. entry at point.
  9587. When ARG is nil or one and region is active then mark the entries
  9588. in the region.
  9589. When ARG is greater than one mark ARG lines."
  9590. (interactive "p")
  9591. (when (and (or (not arg) (= arg 1)) (use-region-p))
  9592. (setq arg (count-lines (region-beginning) (region-end)))
  9593. (goto-char (region-beginning))
  9594. (deactivate-mark))
  9595. (dotimes (_ (or arg 1))
  9596. (unless (org-get-at-bol 'org-agenda-diary-link)
  9597. (let* ((m (org-get-at-bol 'org-hd-marker))
  9598. ov)
  9599. (unless (org-agenda-bulk-marked-p)
  9600. (unless m (user-error "Nothing to mark at point"))
  9601. (push m org-agenda-bulk-marked-entries)
  9602. (setq ov (make-overlay (point-at-bol) (+ 2 (point-at-bol))))
  9603. (org-overlay-display ov (concat org-agenda-bulk-mark-char " ")
  9604. (org-get-todo-face "TODO")
  9605. 'evaporate)
  9606. (overlay-put ov 'type 'org-marked-entry-overlay))
  9607. (end-of-line 1)
  9608. (or (ignore-errors
  9609. (goto-char (next-single-property-change (point) 'org-hd-marker)))
  9610. (beginning-of-line 2))
  9611. (while (and (get-char-property (point) 'invisible) (not (eobp)))
  9612. (beginning-of-line 2)))))
  9613. (message "%d entries marked for bulk action"
  9614. (length org-agenda-bulk-marked-entries)))
  9615. (defun org-agenda-bulk-mark-all ()
  9616. "Mark all entries for future agenda bulk action."
  9617. (interactive)
  9618. (org-agenda-bulk-mark-regexp "."))
  9619. (defun org-agenda-bulk-mark-regexp (regexp)
  9620. "Mark entries matching REGEXP for future agenda bulk action."
  9621. (interactive "sMark entries matching regexp: ")
  9622. (let ((entries-marked 0) txt-at-point)
  9623. (save-excursion
  9624. (goto-char (point-min))
  9625. (goto-char (next-single-property-change (point) 'org-hd-marker))
  9626. (while (and (re-search-forward regexp nil t)
  9627. (setq txt-at-point
  9628. (get-text-property (match-beginning 0) 'txt)))
  9629. (if (get-char-property (point) 'invisible)
  9630. (beginning-of-line 2)
  9631. (when (string-match-p regexp txt-at-point)
  9632. (setq entries-marked (1+ entries-marked))
  9633. (call-interactively 'org-agenda-bulk-mark)))))
  9634. (unless entries-marked
  9635. (message "No entry matching this regexp."))))
  9636. (defun org-agenda-bulk-unmark (&optional arg)
  9637. "Unmark the entry at point for future bulk action."
  9638. (interactive "P")
  9639. (if arg
  9640. (org-agenda-bulk-unmark-all)
  9641. (cond ((org-agenda-bulk-marked-p)
  9642. (org-agenda-bulk-remove-overlays
  9643. (point-at-bol) (+ 2 (point-at-bol)))
  9644. (setq org-agenda-bulk-marked-entries
  9645. (delete (org-get-at-bol 'org-hd-marker)
  9646. org-agenda-bulk-marked-entries))
  9647. (end-of-line 1)
  9648. (or (ignore-errors
  9649. (goto-char (next-single-property-change (point) 'txt)))
  9650. (beginning-of-line 2))
  9651. (while (and (get-char-property (point) 'invisible) (not (eobp)))
  9652. (beginning-of-line 2))
  9653. (message "%d entries left marked for bulk action"
  9654. (length org-agenda-bulk-marked-entries)))
  9655. (t (message "No entry to unmark here")))))
  9656. (defun org-agenda-bulk-toggle-all ()
  9657. "Toggle all marks for bulk action."
  9658. (interactive)
  9659. (save-excursion
  9660. (goto-char (point-min))
  9661. (while (ignore-errors
  9662. (goto-char (next-single-property-change (point) 'org-hd-marker)))
  9663. (org-agenda-bulk-toggle))))
  9664. (defun org-agenda-bulk-toggle ()
  9665. "Toggle the mark at point for bulk action."
  9666. (interactive)
  9667. (if (org-agenda-bulk-marked-p)
  9668. (org-agenda-bulk-unmark)
  9669. (org-agenda-bulk-mark)))
  9670. (defun org-agenda-bulk-remove-overlays (&optional beg end)
  9671. "Remove the mark overlays between BEG and END in the agenda buffer.
  9672. BEG and END default to the buffer limits.
  9673. This only removes the overlays, it does not remove the markers
  9674. from the list in `org-agenda-bulk-marked-entries'."
  9675. (interactive)
  9676. (mapc (lambda (ov)
  9677. (and (eq (overlay-get ov 'type) 'org-marked-entry-overlay)
  9678. (delete-overlay ov)))
  9679. (overlays-in (or beg (point-min)) (or end (point-max)))))
  9680. (defun org-agenda-bulk-unmark-all ()
  9681. "Remove all marks in the agenda buffer.
  9682. This will remove the markers and the overlays."
  9683. (interactive)
  9684. (if (null org-agenda-bulk-marked-entries)
  9685. (message "No entry to unmark")
  9686. (setq org-agenda-bulk-marked-entries nil)
  9687. (org-agenda-bulk-remove-overlays (point-min) (point-max))))
  9688. (defcustom org-agenda-persistent-marks nil
  9689. "Non-nil means marked items will stay marked after a bulk action.
  9690. You can toggle this interactively by typing `p' when prompted for a
  9691. bulk action."
  9692. :group 'org-agenda
  9693. :version "24.1"
  9694. :type 'boolean)
  9695. (defcustom org-agenda-loop-over-headlines-in-active-region t
  9696. "Shall some commands act upon headlines in the active region?
  9697. When set to t, some commands will be performed in all headlines
  9698. within the active region.
  9699. When set to `start-level', some commands will be performed in all
  9700. headlines within the active region, provided that these headlines
  9701. are of the same level than the first one.
  9702. When set to a regular expression, those commands will be
  9703. performed on the matching headlines within the active region.
  9704. The list of commands is: `org-agenda-schedule',
  9705. `org-agenda-deadline', `org-agenda-date-prompt',
  9706. `org-agenda-todo', `org-agenda-archive*', `org-agenda-kill'.
  9707. See `org-loop-over-headlines-in-active-region' for the equivalent
  9708. option for Org buffers."
  9709. :type '(choice (const :tag "Don't loop" nil)
  9710. (const :tag "All headlines in active region" t)
  9711. (const :tag "In active region, headlines at the same level than the first one" start-level)
  9712. (regexp :tag "Regular expression matcher"))
  9713. :version "27.1"
  9714. :package-version '(Org . "9.4")
  9715. :group 'org-agenda)
  9716. (defun org-agenda-bulk-action (&optional arg)
  9717. "Execute an remote-editing action on all marked entries.
  9718. The prefix arg is passed through to the command if possible."
  9719. (interactive "P")
  9720. ;; When there is no mark, act on the agenda entry at point.
  9721. (if (not org-agenda-bulk-marked-entries)
  9722. (save-excursion (org-agenda-bulk-mark)))
  9723. (dolist (m org-agenda-bulk-marked-entries)
  9724. (unless (and (markerp m)
  9725. (marker-buffer m)
  9726. (buffer-live-p (marker-buffer m))
  9727. (marker-position m))
  9728. (user-error "Marker %s for bulk command is invalid" m)))
  9729. ;; Prompt for the bulk command.
  9730. (org-unlogged-message
  9731. (concat "Bulk (" (if org-agenda-persistent-marks "" "don't ") "[p]ersist marks): "
  9732. "[$]arch [A]rch->sib [t]odo [+/-]tag [s]chd [d]eadline [r]efile "
  9733. "[S]catter [f]unction "
  9734. (and org-agenda-bulk-custom-functions
  9735. (format " Custom: [%s]"
  9736. (mapconcat (lambda (f) (char-to-string (car f)))
  9737. org-agenda-bulk-custom-functions
  9738. "")))))
  9739. (catch 'exit
  9740. (let* ((org-log-refile (if org-log-refile 'time nil))
  9741. (entries (reverse org-agenda-bulk-marked-entries))
  9742. (org-overriding-default-time
  9743. (and (get-text-property (point) 'org-agenda-date-header)
  9744. (org-get-cursor-date)))
  9745. redo-at-end
  9746. cmd)
  9747. (pcase (read-char-exclusive)
  9748. (?p
  9749. (let ((org-agenda-persistent-marks
  9750. (not org-agenda-persistent-marks)))
  9751. (org-agenda-bulk-action)
  9752. (throw 'exit nil)))
  9753. (?$
  9754. (setq cmd #'org-agenda-archive))
  9755. (?A
  9756. (setq cmd #'org-agenda-archive-to-archive-sibling))
  9757. ((or ?r ?w)
  9758. (let ((refile-location
  9759. (org-refile-get-location
  9760. "Refile to"
  9761. (marker-buffer (car entries))
  9762. org-refile-allow-creating-parent-nodes)))
  9763. (when (nth 3 refile-location)
  9764. (setcar (nthcdr 3 refile-location)
  9765. (move-marker
  9766. (make-marker)
  9767. (nth 3 refile-location)
  9768. (or (get-file-buffer (nth 1 refile-location))
  9769. (find-buffer-visiting (nth 1 refile-location))
  9770. (error "This should not happen")))))
  9771. (setq cmd (lambda () (org-agenda-refile nil refile-location t)))
  9772. (setq redo-at-end t)))
  9773. (?t
  9774. (let ((state (completing-read
  9775. "Todo state: "
  9776. (with-current-buffer (marker-buffer (car entries))
  9777. (mapcar #'list org-todo-keywords-1)))))
  9778. (setq cmd (lambda ()
  9779. (let ((org-inhibit-blocking t)
  9780. (org-inhibit-logging 'note))
  9781. (org-agenda-todo state))))))
  9782. ((and (or ?- ?+) action)
  9783. (let ((tag (completing-read
  9784. (format "Tag to %s: " (if (eq action ?+) "add" "remove"))
  9785. (with-current-buffer (marker-buffer (car entries))
  9786. (delq nil
  9787. (mapcar (lambda (x) (and (stringp (car x)) x))
  9788. org-current-tag-alist))))))
  9789. (setq cmd
  9790. (lambda ()
  9791. (org-agenda-set-tags tag
  9792. (if (eq action ?+) 'on 'off))))))
  9793. ((and (or ?s ?d) c)
  9794. (let* ((schedule? (eq c ?s))
  9795. (prompt (if schedule? "(Re)Schedule to" "(Re)Set Deadline to"))
  9796. (time
  9797. (and (not arg)
  9798. (let ((new (org-read-date
  9799. nil nil nil prompt org-overriding-default-time)))
  9800. ;; A "double plus" answer applies to every
  9801. ;; scheduled time. Do not turn it into
  9802. ;; a fixed date yet.
  9803. (if (string-match-p "\\`[ \t]*\\+\\+"
  9804. org-read-date-final-answer)
  9805. org-read-date-final-answer
  9806. new)))))
  9807. ;; Make sure to not prompt for a note when bulk
  9808. ;; rescheduling/resetting deadline as Org cannot cope with
  9809. ;; simultaneous notes. Besides, it could be annoying
  9810. ;; depending on the number of marked items.
  9811. (setq cmd
  9812. (if schedule?
  9813. (lambda ()
  9814. (let ((org-log-reschedule
  9815. (and org-log-reschedule 'time)))
  9816. (org-agenda-schedule arg time)))
  9817. (lambda ()
  9818. (let ((org-log-redeadline (and org-log-redeadline 'time)))
  9819. (org-agenda-deadline arg time)))))))
  9820. (?S
  9821. (unless (org-agenda-check-type nil 'agenda 'todo)
  9822. (user-error "Can't scatter tasks in \"%s\" agenda view" org-agenda-type))
  9823. (let ((days (read-number
  9824. (format "Scatter tasks across how many %sdays: "
  9825. (if arg "week" ""))
  9826. 7)))
  9827. (setq cmd
  9828. (lambda ()
  9829. (let ((distance (1+ (random days))))
  9830. (when arg
  9831. (let ((dist distance)
  9832. (day-of-week
  9833. (calendar-day-of-week
  9834. (calendar-gregorian-from-absolute (org-today)))))
  9835. (dotimes (_ (1+ dist))
  9836. (while (member day-of-week org-agenda-weekend-days)
  9837. (cl-incf distance)
  9838. (cl-incf day-of-week)
  9839. (when (= day-of-week 7)
  9840. (setq day-of-week 0)))
  9841. (cl-incf day-of-week)
  9842. (when (= day-of-week 7)
  9843. (setq day-of-week 0)))))
  9844. ;; Silently fail when try to replan a sexp entry.
  9845. (ignore-errors
  9846. (let* ((date (calendar-gregorian-from-absolute
  9847. (+ (org-today) distance)))
  9848. (time (encode-time 0 0 0 (nth 1 date) (nth 0 date)
  9849. (nth 2 date))))
  9850. (org-agenda-schedule nil time))))))))
  9851. (?f
  9852. (setq cmd
  9853. (intern
  9854. (completing-read "Function: " obarray #'fboundp t nil nil))))
  9855. (action
  9856. (setq cmd
  9857. (pcase (assoc action org-agenda-bulk-custom-functions)
  9858. (`(,_ ,fn)
  9859. fn)
  9860. (`(,_ ,fn ,arg-fn)
  9861. (apply #'apply-partially fn (funcall arg-fn)))
  9862. (_
  9863. (user-error "Invalid bulk action: %c" action))))
  9864. (setq redo-at-end t)))
  9865. ;; Sort the markers, to make sure that parents are handled
  9866. ;; before children.
  9867. (setq entries (sort entries
  9868. (lambda (a b)
  9869. (cond
  9870. ((eq (marker-buffer a) (marker-buffer b))
  9871. (< (marker-position a) (marker-position b)))
  9872. (t
  9873. (string< (buffer-name (marker-buffer a))
  9874. (buffer-name (marker-buffer b))))))))
  9875. ;; Now loop over all markers and apply CMD.
  9876. (let ((processed 0)
  9877. (skipped 0))
  9878. (dolist (e entries)
  9879. (let ((pos (text-property-any (point-min) (point-max) 'org-hd-marker e)))
  9880. (if (not pos)
  9881. (progn (message "Skipping removed entry at %s" e)
  9882. (cl-incf skipped))
  9883. (goto-char pos)
  9884. (let (org-loop-over-headlines-in-active-region) (funcall cmd))
  9885. ;; `post-command-hook' is not run yet. We make sure any
  9886. ;; pending log note is processed.
  9887. (when (or (memq 'org-add-log-note (default-value 'post-command-hook))
  9888. (memq 'org-add-log-note post-command-hook))
  9889. (org-add-log-note))
  9890. (cl-incf processed))))
  9891. (when redo-at-end (org-agenda-redo))
  9892. (unless org-agenda-persistent-marks (org-agenda-bulk-unmark-all))
  9893. (message "Acted on %d entries%s%s"
  9894. processed
  9895. (if (= skipped 0)
  9896. ""
  9897. (format ", skipped %d (disappeared before their turn)"
  9898. skipped))
  9899. (if (not org-agenda-persistent-marks) "" " (kept marked)"))))))
  9900. (defun org-agenda-capture (&optional with-time)
  9901. "Call `org-capture' with the date at point.
  9902. With a `C-1' prefix, use the HH:MM value at point (if any) or the
  9903. current HH:MM time."
  9904. (interactive "P")
  9905. (if (not (eq major-mode 'org-agenda-mode))
  9906. (user-error "You cannot do this outside of agenda buffers")
  9907. (let ((org-overriding-default-time
  9908. (org-get-cursor-date (equal with-time 1))))
  9909. (call-interactively 'org-capture))))
  9910. ;;; Dragging agenda lines forward/backward
  9911. (defun org-agenda-reapply-filters ()
  9912. "Re-apply all agenda filters."
  9913. (mapcar
  9914. (lambda(f) (when (car f) (org-agenda-filter-apply (car f) (cadr f) t)))
  9915. `((,org-agenda-tag-filter tag)
  9916. (,org-agenda-category-filter category)
  9917. (,org-agenda-regexp-filter regexp)
  9918. (,org-agenda-effort-filter effort)
  9919. (,(get 'org-agenda-tag-filter :preset-filter) tag)
  9920. (,(get 'org-agenda-category-filter :preset-filter) category)
  9921. (,(get 'org-agenda-effort-filter :preset-filter) effort)
  9922. (,(get 'org-agenda-regexp-filter :preset-filter) regexp))))
  9923. (defun org-agenda-drag-line-forward (arg &optional backward)
  9924. "Drag an agenda line forward by ARG lines.
  9925. When the optional argument `backward' is non-nil, move backward."
  9926. (interactive "p")
  9927. (let ((inhibit-read-only t) lst line)
  9928. (if (or (not (get-text-property (point) 'txt))
  9929. (save-excursion
  9930. (dotimes (_ arg)
  9931. (move-beginning-of-line (if backward 0 2))
  9932. (push (not (get-text-property (point) 'txt)) lst))
  9933. (delq nil lst)))
  9934. (message "Cannot move line forward")
  9935. (let ((end (save-excursion (move-beginning-of-line 2) (point))))
  9936. (move-beginning-of-line 1)
  9937. (setq line (buffer-substring (point) end))
  9938. (delete-region (point) end)
  9939. (move-beginning-of-line (funcall (if backward '1- '1+) arg))
  9940. (insert line)
  9941. (org-agenda-reapply-filters)
  9942. (org-agenda-mark-clocking-task)
  9943. (move-beginning-of-line 0)))))
  9944. (defun org-agenda-drag-line-backward (arg)
  9945. "Drag an agenda line backward by ARG lines."
  9946. (interactive "p")
  9947. (org-agenda-drag-line-forward arg t))
  9948. ;;; Flagging notes
  9949. (defun org-agenda-show-the-flagging-note ()
  9950. "Display the flagging note in the other window.
  9951. When called a second time in direct sequence, offer to remove the FLAGGING
  9952. tag and (if present) the flagging note."
  9953. (interactive)
  9954. (let ((hdmarker (org-get-at-bol 'org-hd-marker))
  9955. (win (selected-window))
  9956. note) ;; heading newhead
  9957. (unless hdmarker
  9958. (user-error "No linked entry at point"))
  9959. (if (and (eq this-command last-command)
  9960. (y-or-n-p "Unflag and remove any flagging note? "))
  9961. (progn
  9962. (org-agenda-remove-flag hdmarker)
  9963. (let ((win (get-buffer-window "*Flagging Note*")))
  9964. (and win (delete-window win)))
  9965. (message "Entry unflagged"))
  9966. (setq note (org-entry-get hdmarker "THEFLAGGINGNOTE"))
  9967. (unless note
  9968. (user-error "No flagging note"))
  9969. (org-kill-new note)
  9970. (org-switch-to-buffer-other-window "*Flagging Note*")
  9971. (erase-buffer)
  9972. (insert note)
  9973. (goto-char (point-min))
  9974. (while (re-search-forward "\\\\n" nil t)
  9975. (replace-match "\n" t t))
  9976. (goto-char (point-min))
  9977. (select-window win)
  9978. (message "%s" (substitute-command-keys "Flagging note pushed to \
  9979. kill ring. Press `\\[org-agenda-show-the-flagging-note]' again to remove \
  9980. tag and note")))))
  9981. (defun org-agenda-remove-flag (marker)
  9982. "Remove the FLAGGED tag and any flagging note in the entry."
  9983. (let ((newhead
  9984. (org-with-point-at marker
  9985. (org-toggle-tag "FLAGGED" 'off)
  9986. (org-entry-delete nil "THEFLAGGINGNOTE")
  9987. (org-get-heading))))
  9988. (org-agenda-change-all-lines newhead marker)
  9989. (message "Entry unflagged")))
  9990. (defun org-agenda-get-any-marker (&optional pos)
  9991. (or (get-text-property (or pos (point-at-bol)) 'org-hd-marker)
  9992. (get-text-property (or pos (point-at-bol)) 'org-marker)))
  9993. ;;; Appointment reminders
  9994. (defvar appt-time-msg-list) ; defined in appt.el
  9995. ;;;###autoload
  9996. (defun org-agenda-to-appt (&optional refresh filter &rest args)
  9997. "Activate appointments found in `org-agenda-files'.
  9998. With a `\\[universal-argument]' prefix, refresh the list of \
  9999. appointments.
  10000. If FILTER is t, interactively prompt the user for a regular
  10001. expression, and filter out entries that don't match it.
  10002. If FILTER is a string, use this string as a regular expression
  10003. for filtering entries out.
  10004. If FILTER is a function, filter out entries against which
  10005. calling the function returns nil. This function takes one
  10006. argument: an entry from `org-agenda-get-day-entries'.
  10007. FILTER can also be an alist with the car of each cell being
  10008. either `headline' or `category'. For example:
  10009. \\='((headline \"IMPORTANT\")
  10010. (category \"Work\"))
  10011. will only add headlines containing IMPORTANT or headlines
  10012. belonging to the \"Work\" category.
  10013. ARGS are symbols indicating what kind of entries to consider.
  10014. By default `org-agenda-to-appt' will use :deadline*, :scheduled*
  10015. \(i.e., deadlines and scheduled items with a hh:mm specification)
  10016. and :timestamp entries. See the docstring of `org-diary' for
  10017. details and examples.
  10018. If an entry has a APPT_WARNTIME property, its value will be used
  10019. to override `appt-message-warning-time'."
  10020. (interactive "P")
  10021. (when refresh (setq appt-time-msg-list nil))
  10022. (when (eq filter t)
  10023. (setq filter (read-from-minibuffer "Regexp filter: ")))
  10024. (let* ((cnt 0) ; count added events
  10025. (scope (or args '(:deadline* :scheduled* :timestamp)))
  10026. (org-agenda-new-buffers nil)
  10027. (org-deadline-warning-days 0)
  10028. ;; Do not use `org-today' here because appt only takes
  10029. ;; time and without date as argument, so it may pass wrong
  10030. ;; information otherwise
  10031. (today (org-date-to-gregorian
  10032. (time-to-days nil)))
  10033. (org-agenda-restrict nil)
  10034. (files (org-agenda-files 'unrestricted)) entries file
  10035. (org-agenda-buffer nil))
  10036. ;; Get all entries which may contain an appt
  10037. (org-agenda-prepare-buffers files)
  10038. (while (setq file (pop files))
  10039. (setq entries
  10040. (delq nil
  10041. (append entries
  10042. (apply #'org-agenda-get-day-entries
  10043. file today scope)))))
  10044. ;; Map through entries and find if we should filter them out
  10045. (mapc
  10046. (lambda (x)
  10047. (let* ((evt (org-trim
  10048. (replace-regexp-in-string
  10049. org-link-bracket-re "\\2"
  10050. (or (get-text-property 1 'txt x) ""))))
  10051. (cat (get-text-property (1- (length x)) 'org-category x))
  10052. (tod (get-text-property 1 'time-of-day x))
  10053. (ok (or (null filter)
  10054. (and (stringp filter) (string-match filter evt))
  10055. (and (functionp filter) (funcall filter x))
  10056. (and (listp filter)
  10057. (let ((cat-filter (cadr (assq 'category filter)))
  10058. (evt-filter (cadr (assq 'headline filter))))
  10059. (or (and (stringp cat-filter)
  10060. (string-match cat-filter cat))
  10061. (and (stringp evt-filter)
  10062. (string-match evt-filter evt)))))))
  10063. (wrn (get-text-property 1 'warntime x)))
  10064. ;; FIXME: Shall we remove text-properties for the appt text?
  10065. ;; (setq evt (set-text-properties 0 (length evt) nil evt))
  10066. (when (and ok tod (not (string-match "\\`DONE\\|CANCELLED" evt)))
  10067. (setq tod (concat "00" (number-to-string tod)))
  10068. (setq tod (when (string-match
  10069. "\\([0-9]\\{1,2\\}\\)\\([0-9]\\{2\\}\\)\\'" tod)
  10070. (concat (match-string 1 tod) ":"
  10071. (match-string 2 tod))))
  10072. (when (appt-add tod evt wrn)
  10073. (setq cnt (1+ cnt))))))
  10074. entries)
  10075. (org-release-buffers org-agenda-new-buffers)
  10076. (if (eq cnt 0)
  10077. (message "No event to add")
  10078. (message "Added %d event%s for today" cnt (if (> cnt 1) "s" "")))))
  10079. (defun org-agenda-today-p (date)
  10080. "Non-nil when DATE means today.
  10081. DATE is either a list of the form (month day year) or a number of
  10082. days as returned by `calendar-absolute-from-gregorian' or
  10083. `org-today'. This function considers `org-extend-today-until'
  10084. when defining today."
  10085. (eq (org-today)
  10086. (if (consp date) (calendar-absolute-from-gregorian date) date)))
  10087. (defun org-agenda-todo-yesterday (&optional arg)
  10088. "Like `org-agenda-todo' but the time of change will be 23:59 of yesterday."
  10089. (interactive "P")
  10090. (let* ((org-use-effective-time t)
  10091. (hour (nth 2 (decode-time (org-current-time))))
  10092. (org-extend-today-until (1+ hour)))
  10093. (org-agenda-todo arg)))
  10094. (defun org-agenda-ctrl-c-ctrl-c ()
  10095. "Set tags in agenda buffer."
  10096. (interactive)
  10097. (org-agenda-set-tags))
  10098. (provide 'org-agenda)
  10099. ;;; org-agenda.el ends here